Thursday, 15 June 2017

Thinking about how I can save all these blog posts as a book or an InDesign document....

I've been looking at ways to convert the blogs I've been writing over the last year, into a more recognisable text that can be imported into MS Word, or into Adobe InDesign etc.

As I'm using Google's 'Blogger' and Blogspot for my regular updates, it seems that some time ago, the organisation removed the "export" to MS Word function from the 'Blogger' tools.  I've therefore only been able to find the 'Backup' option within blogger, that simply 'dumps' a full XML file to disk.
Looking at resources like W3C.org, which is a HUGE repository and has lots of the Web format standards on-line, (The World Wide Web Consortium (W3C) is an international community that develops open standards to ensure the long-term growth of the Web), the following considerations could be ascertained.

So, the things I need to consider are;

  • The 'Atom' format is used by Google
  • A 'Transformation' file required by MS Word.
  • A need to create a Book-and-Word-Style Sheet, using Cascading Style Sheets format (CSS).

Special thanks to Alex Milowski who wrote the original Atom user case in the repository on W3C as a wiki, at https://www.w3.org/wiki/Atom which allowed the AtomTransform[XSL] to be created/ciphered and checked... and the original Atom Syndication Format, written way back in 2005, at https://tools.ietf.org/html/rfc4287

The simple coding was originally written by the brilliant CSS & Web design 'guru' David Kutcher, (based just west of Boston, in Easthampton, Massachusetts).

AtomTransform.xsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<xsl:stylesheet
  version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:atom="http://www.w3.org/2005/Atom"
  exclude-result-prefixes="atom"
>
  <xsl:template match="/">
    <html>
      <head>
    <link rel="stylesheet" href="style.css" />
     
      </head>
      <body>
 
 
          <xsl:apply-templates select="atom:feed/atom:entry[atom:category/@term='http://schemas.google.com/blogger/2008/kind#post']">
        <xsl:sort select="position()" data-type="number" order="descending"/>
      </xsl:apply-templates>
 
      </body>
    </html>
  </xsl:template>
 
  <xsl:template match="atom:entry[atom:category/@term='http://schemas.google.com/blogger/2008/kind#post']">
      <h1><xsl:value-of select="atom:title"/></h1>     
      <h2><xsl:value-of select="atom:author/atom:name"/></h2>
     <h3><xsl:value-of select="substring(atom:published,0,11)" /></h3>
<xsl:value-of select="atom:content"  disable-output-escaping="yes" />
  </xsl:template>
</xsl:stylesheet>

This makes the import/open in Word with specific headers and footers found in the XML file and treated like a database formatting.

Once the blogger archive .xml file has been saved from the 'backup' in google, and then on loading into the MSWord application, simply use the "Open" [Browse] and then select the Google Blogger.XML file, but ensure it is opened using the 'drop down' [open] dialogue button.  This allows you to open the file with an XML transform file, which is simply a format and data selection based on the above code written with an editor or in Notepad and saved with a *.xsl suffix. e.g. AtomTransform.xsl   -  MS Word may find it's own style sheet called style.css from the myriad files with that name already [in a registry somewhere!], but if not, and it's probably not necessary, (I didn't need to do this as it sorted itself out).  In this case, if all the above doesn't work, and it's just good practice anyway, create a .css style sheet. (Thanks to David again!)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
body {
    font-size1.0em;
    font-weight:    normal;
}
table{
  display: table;
}
 
tr{
  border: 1px solid red;
  display: table-row;
}
 
th{
  font-weight: bold;
  text-decoration: underline;
  padding: 0.5em 1.0em 1.0em 1.0em;
}
 
td{
  padding: 1.0em;
  vertical-align: top;
}
 
h1 {
    font-weight: bold;
    font-size3.0em;
}
h2 {
    font-weight: bold;
    font-size2.0em;
}
h3 {
    text-transform: uppercase;
    font-size1.5em;
}

So the way I did this was to create the above in Notepad and save it as [style sheet name, e.g. Style.css], that is, with the .css suffix.

Then , [again, only if necessary], but in the original xml file, it may be necessary to redirect a pointer within the XML code.  Edit the [backup-archive].xml in Notepad and change the following lines:

<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
to be
<?xml-stylesheet href="AtomTransform.xsl" type="text/xsl"?>

This will make sure that it points the xml-stylesheet to "AtomTransform.xsl" or whatever else we've decided to call it.

Conclusions & Next steps;


  1. The outcome is a perfectly formatted Word file which incorporated the date of the blog, AND the pictures too! - Brilliant!
  2. The next plan is to create a document with Chapters, which I can do with some slight hacking to the .xls code above, to recognise and then sort my 'Labels' tags, such as Book ReviewCreative InnovationDigital Media ConceptsDigital Media ProcessesDrawingsGallery VisitGuest LectureIdeasLectureLecture NotesMajor ProjectPracticeReflectionsResearchRotor ExhibitionSymposiumTMA1401TMA1402TMA1403TMA1404TMA1407TutorialWorkshop  and so on.  
  3. But the only issue I see here is that if I add to these labels, I will need to add code each time, so I'm thinking about how to do this automatically (I'm sure it's possible, but I'm very rusty when it comes to coding)...

References:


  • Atom Syndication Format, (2005), at https://tools.ietf.org/html/rfc4287
  • Kutcher, D. (2013) , http://www.blogxpertise.com/  (Easthampton, Massachusetts). Retrieved 15/6/2017.
  • Milowski, A. (no published date). Atom user case in the repository on W3C as a wiki, at https://www.w3.org/wiki/Atom  Retrieved 15/6/2017.


Tuesday, 13 June 2017

Further thoughts on my discussions with Dr Juliet MacDonald, Friday 10th of June 2017.


  • In thinking about how I have been setting out my reflective essay, some of the things that Dr MacDonald suggested last Friday make complete sense, now that I have had time to rethink and digest the long conversation that we had, which was extremely useful.


The numbering of my headings should perhaps be removed as they provide too much granularity, especially in the subheadings/header two and header three styles, should be lost, as an essay is much more flowing normally. The main headings are fine, but the others should perhaps just provide an aide memoir for structure. Juliet recommended that a more flowing reflective essay tends to have a lot fewer subheadings and should not be broken up too much as it becomes granular.

This makes sense because if the essay is too granular it becomes linear, and by ideas of meandering means that I'm looking for a kind of non-linear journey. Juliet pointed out that it's important for me to keep a focus on balance and destination especially as my reader may struggle if there are too many tangents.

One of the techniques that I think is probably a wise thing for me to follow with the idea of planting "seeds" early in the discussion so if there is any meandering to be done, the reader is able to understand where I will be going with my discussion. Juliet asked me if I was going to be using any of the drawings that I have created, and while it is my intention, I find that what I often tend to do is to translate a visual shorthand into a sketch through associations and playing around with different routes.

The digital media drawings will form a significant part of my final outcome and should, therefore, be included towards the end of my essay, as it is my intention to submit the paper essay in July, with conclusions to produce the physical artefacts and outputs through the end of July and August. Therefore if the writing forms 70% of my submission, then it makes sense that the bulk of this is submitted earlier, and the artistic, physical artefacts come about from my research outcomes and conclusions. This makes sense to me because it seems highly likely that the work I'm doing may not end at the completion of my masters, as it could well form a body of work that can be built on through further study perhaps at the next level?
I'm not saying that it is open-ended, but indeed, preparation for a future piece of work that can become ongoing. The journey hasn't finished.

The artefacts that I produce between July and the end of August must be polished and fit for purpose, in their own right but can also open into other things as well. These artefacts should provide good tasters of visual components that could come from my findings

We then discussed the potential outputs, such as very large format drawings, very large format engravings or woodcuts, and also concepts around using 3-D devices such as Oculus Rift or the new HTC immersive virtual reality environment. However, with the time available to me, I am a little uncomfortable that I have the technical competency or indeed the possible time to complete anything much of substance using the 3-D route.

What I am considering seriously instead, however, is based on some ideas that I observed when researching William Kentridge and his Documenta 13 piece entitled "The Refusal of Time" (2012). Taking this idea of projected images on all four sides of the room has an appeal where I would be able to use some of my existing drawings, supplemented with speculative drawings imagined from JA Baker's The Peregrine. These images can then be juxtaposed and layered (which is different from Kentridge's technique), through Adobe's Creative Cloud suite, and the various layers potentially have the same drawing can be slightly shifted. Thus, creating a sensation not too dissimilar from parallax shift, based on the head bobbing motions that a Peregrine Falcon almost always adopts whenever it is not flying, sitting on a perch or other vantage point.

I've already made an approach to the technician's manager, to try and source a space. By projecting the line drawings on all four walls, my observations of Peregrine behaviour can be articulated perhaps through this medium?

Creating some sort of confusion and for the viewer to step out of their normal perceptions is key to my physical artwork being a success. The sensation of three-dimensional witty being recreated through the two-dimensional drawings requires an element of parallax. The element of recognising something that is hard to read, through some sort of movement (of an enormous still image) with other pictures layered behind to create parallax, through projected images of layers, or even multiple layers that can shift is my concept. In itself, this is probably quite a big project but is realistically achievable for me to do rather than some kind of three-dimensional virtual reality computer-based 3-D project. Dr MacDonald agreed that the idea sounded very plausible and was confident with encouragement.

Fundamental to my own project is Helen Macdonald's discovery in her book "H is for Hawk" (2014) that Hawks are unable to seemingly understand two-dimensional line drawings, and yet tie that together on a visual plane with JA Baker's book "The Peregrine" (1967). Apparently, Macdonald's book was indeed influenced by Baker's earlier book. Dr MacDonald had read that section of the book slightly differently to myself, since her interpretation was that even though this was a line drawing, it may not necessarily be a drawing of edges, in the kind of style that I have been rendering. However, what it did bring to Juliet's mind was an excellent reference to work by an illustrator and storyteller Ernest Seaton Thompson, around the mid 19th century, who although English-born, spent many years in the Canadian wilderness as a trapper. His experiences allowed him to produce many books of a genre of naturalist writing, but in the margin, on many pages, he provided some lovely, very straightforward and minimal, yet readily recognisable sketches (as mini sketches), almost similar to those on my storyboard. Juliet very kindly provided me later with URL links to some of his books, which are now in the public domain and not subject to U.S. copyright as he died in 1946.

A title of one of his books jumped out at me...  "The Book of Woodcraft and Indian Lore" published in 1912.  How could anyone not find this interesting?  On taking a look at this book, and many others, freely available through the internet archive, http://www.archive.org/ I could see immediately what Dr MacDonald was referring to.
Works by Ernest Seton-Thompson (1860-1946), from his essay,
The Slum-cat, in "Animal Heroes" (1912).  http://www.archive.org/details/animalheroesbeinseto
Sometimes, he represented through line breaks, the lost&found line style and an also, outline, rather than the full 'edge' of objects and animals, to provide sufficient in order to recognise a representation. Ernest Seaton Thompson produced some beautiful drawings through a kind of lost and found line style, with many parts only skipped over as blank space, but nevertheless provided sufficient detail (albeit very sparsely) for a viewer to recognise what may be happening in a particular scene.

Having reviewed some of these beautiful drawings and sketches after our discussion, Juliet has perfectly identified an excellent source of material for me to consider and potentially draw inspiration from. Seaton Thompson was able to capture minimal detail exquisitely and I thoroughly enjoyed looking through his books.

I still have a lot of work to do based on Dr MacDonald's previous recommendations to look at "Essential Cognitive Psychology" by Alan J Parkin (2000). In particular the chapter regarding visual perception. The psychologist, Marr, provides some excellent historical reference which Parkin builds on.

Finally, I explained my need to create the body of my essay as soon as I possibly can, so that I have sufficient material the cat I can begin to hone and craft into a short and meaningful essay. Much of my blogging will allow me to use this as a reference, together with my metaphors and play of words, as a creative process. Part of the artistic production may be intangible, but the writing is part of my creative practice, and the drawing becomes a meditative contemplation of the practice.

Conclusions:


  • I need to own a creative process of writing that works alongside drawing. 
  • I'm reassured that there are many contemporary artists such as Helen Martin and more recently work that I had seen by Tacita Dean. Juliet suggested some of the very large format chalk drawings that Tacita Dean had provided for Documenta 13 and I later reviewed these beautiful renderings. 
  • Having seen an earlier discussion on Tacita Dean and her creative methods using traditional cellulose film I recall that she mentioned some ideas that she had taken from the French writer René Daumal and his book "Mount Analogue". Further research on the book shows how impressive Tacita Dean has been in developing her chalk drawings. The original book by René Daumal in the early 20th century talks about a strange and mystical mountain that is far bigger than any known mountain on earth (such as Everest or K2 et cetera), and can only be found at a specific time of year and a day, when the sun lies at a particular angle to the earth. René Daumal was unable to complete his novel which also seems to be written as a kind of lifelong journey, and so his own destination was never realised. Indeed the quote taken from the book "The Art of Climbing Mountains" by Daumal seems particularly relevant through his comparison of the act of climbing with art itself. He states:
"Alpine-ism is the art of climbing mountains by confronting the greatest dangers with the greatest prudence. Art is used here to mean the accomplishment of knowledge in action… There is an art to finding your way in the lower regions by the memory of what you have seen when you were higher up stop when you can no longer see, you can at least still know."

References:

Baker, J.A. "The Peregrine" (1967), Penguin Books, London.
Kentridge, William.  (2012) - Documenta 13 piece entitled "The Refusal of Time", retrieved from https://www.youtube.com/watch?v=RtkA6qq4t40.
Macdonald, H.'s  "H is for Hawk" (2014), Vintage Books, Random House, London
Parkin, Alan J(2000) "Essential Cognitive Psychology" Psychology Press - M.U.A, Psychology Press, Taylor and Francis.
Seton-Thompson, E. (1912), "Animal Heroes", Retrieved from https://archive.org/details/animalheroesbeinseto


Sunday, 11 June 2017

Reflections on a meeting with Dr Juliet MacDonald, Friday 10th of June 2017.

Juliet started the conversation by congratulating me on the regularity of my blog posts and explained that she had enjoyed reading them. She stated that I clearly write a lot which is a healthy activity.

I provided Juliet with an initial draft of a storyboard, which I been concentrating on for most of the last few days, to help to layout the essay and the contents. My intention was to bounce the ideas of the storyboard off Dr MacDonald to make sure that my proposal to use nonacademic phrases as headings for my research and the reflective essay is appropriate for submission. Rather than the traditional form of an introduction, methodology, literature review and so on, I have decided to use headings which are taken from both JA Bakers The Peregrine (1967), together with phrases often used in falconry and hawking.

Headings for each of the chapters (slightly paraphrased) are therefore adapted, even though I am trying to follow the standard academic principles and thesis format. This creates a similar kind of structure, to become more "falcon-like".

For example, Introduction is replaced with "Beginnings"; and Methodology is replaced with "The Chase" And Findings I have replaced with "The Kill" and so on for similar headings and phrases. Those are the thoughts that I have at the moment, and Juliet liked the fact that it gives the document structure. It was recommended that I may reflect a little more on continuing this predatory structure, and in thinking about what does that say about how I am figuring out knowledge and learning with the structure of research? It is a nice way of organising the project as a kind of pursuit, and when I am considering a broad Vista in front of me of potential research material (just as a Peregrine looks upon the landscape and sees various forms of prey). Thus, I am able to narrow down and dive into a chase, a kill, grab it and consume it, then look around for the next meal. (Sustenance in other words, including intellectual digestion).


Dr MacDonald suggested that what should also be part of my essay structure/and/or introduction is either in the chase or before the chase, an idea of where I am flying above the ground, and I can see a vast territory and landscape below me? And there is a sense of "oh my goodness there is so much choice!" about the reference and research subjects. I confirmed that "the view of the landscape" is within my opening chapters, so I'm glad that Juliet clearly understands my approach so quickly!

In essence what I am attempting to do, after reflecting on a recent film that I managed to find after Dr Bailey's recommendation to research the works of WG (Max) Sebald (1944 to 2001) a creative writer and professor of the University of East Anglia.

In many of Sebald's books, he invites the reader to take a walk with him, literally, as he narrates his books through the journey and process of a walk. In a way, this is similar to JA Baker. An invitation to come on a voyage, to encourage a view as unaccompanied guidance. Sebald often starts with a literarily magnetic device and method which some have referred to as "fog". He commences the journey (the walk) as though staring through a thick layer of mist or fog, unsure of where he is going or the destination. This unclear goal, perhaps too distant to understand immediately, requires a method of meandering. I'm conscious that this is a similar trait that I have myself, as I often meander through my own writing and reflections. However, the metaphor I'm using is important to remember as river meanders, it has a final destination that takes many twists and turns. This is very different from drift, which arguably does not have a predefined target per see. Furthermore, it is a line if it is to be stretched out straight. Juliet pointed out correctly that a river flows from a higher point down to a lower level, and has direction and purpose, and in reflection, I think about as the river reaches its destination it often gets wider and slows down, which is not dissimilar to my own research processes.

Playing with different metaphors is part of my project, and Juliet has recognised this from my previous blogs. Various forms become different metaphors, in similar ways to Tim Ingold's metaphors in his book "Lines: a Brief History" (2007). All of these metaphors are useful ways of thinking about things according to Dr MacDonald and encouraged me to continue to use them, not only to articulate but also to reflect with.

The metaphor of a Peregrine's flight and the chase, hunting in the kill also has the connection to Tim Ingold's ideas of the line.

Finding threads and triggers through my writing is an essential component of it, and Juliet recommended that I introduced the ideas of Tim Ingold and his lines early in the essay. Once this reference has been made, I can then go on to expand on the whole notion of threads and connections, the walk, the line of flight, the line of enquiry, the chase and the kill et cetera.

While my storyboard is a useful tool in providing some structure to the reflective essay, it is important for me to remain flexible and to cut and paste the various sections of the storyboard and feel free to move them around to get a succinct and legitimate flow of ideas. Ultimately, the final part of the essay, that is the sections of "sustenance and digestion" (and digestions is a particularly poignant method of thinking about self-reflection), that should help me to explain. Thus, articulate what all of this research and the journey that I have taken means to me, and that is me as an individual. The thing that really captures that is the picture at the back of Helen Macdonald's book "Falcon" (2006), which shows a photograph of me walking through an underpass in London some 12 years ago, a reflection if you like of my own life with its various changes. A very different life that I had, but with a hint of escape that is subconsciously being suggested through the graffiti and artwork of the stencilled hooded goshawk to the right of the picture, on the underpass wall.


This photograph coincidently appears at the end of Macdonald's book, and it is my own intention to repeat its presentation and explanation at the end of my research essay. It provides a piece of magic, it could be a myth, and yet everything points to it being true. I, therefore, see it as clear opportunity to use the image in a very powerful way. Dr MacDonald agreed that this would be a good idea, as it also reflects my journey back to that point, and rediscovering that point through some weird intellectual journey.

Thursday, 8 June 2017

A short discussion with Dr Bailey to bounce ideas with ...

I had another productive meeting with Dr Bailey yesterday morning which moved me towards a renewed vigour to look for the works of Siebold and also to continue my reading of John Gray and the most recent book that I have acquired called Straw Dogs: Thoughts on Humans and Other Animals. (2002).

I will explain a little more about my meeting with Dr Bailey, but my mind had already been positioned somewhat by my recent readings of Gray. A couple of paragraphs should help the reader to understand my mindset first.

Gray's book starts with a quotation from Jacques Monod, which goes "all religions, nearly all philosophies, and even part of science testify to the unwearying, heroic effort of mankind desperately denying its contingency" (Jacques Monod, Molecular Biologist, 1910-1976).

The thrust of Straw Dogs is to justly articulate the actual human position in the world, which could be paraphrased and summarised as follows.
Despite our assumed sovereignty over and above everything else on the planet, we are just another animal: we believe that as humans, we are on a forward path of progress. However Gray points out that this is a myth. Indeed, the myths of religion, and even politics (such as the communist experiment on one hand, and fascism on the other extreme), and now dominated by liberal humanism are also no more than idealism or pious hopes.

So this illusion of progress is particularly impressive from an artistic point of view, as Gray spends the first chapter debunking most of our human myths. My eyes were raised in curiosity in the section which describes how Science (always being challenged by the Church), is proud of its reputation that it is based on logic and reason alone. This is exclaimed by its most vociferous (yet possibly less academic) supporters. However, in reality, (as such), it is in fact rooted in "faith, magic and trickery." In my own experience, this actually makes a huge amount of sense! Most scientific theories have indeed started as a hunch, and in a belief which may have never had a rational or logical source. I have been witness to the emotional pleadings from scientists, and those that are successful seem to be the ones that are able to secure funding for research through emotional, rather than rational or logical arguments alone.

The reason for Gray's positioning makes further sense in the next section, where he states "science works to entrench anthropocentrism. It encourages us to believe that, unlike any other animal, we can understand the natural world, and thereby bend it to our will." However, it is becoming clear from the advances in science (and here, read physics, quantum physics, genetics, microbiology et cetera), that not only our world but our universe can perhaps never be fully understood.

At last, is this the taste of humility?

Anyway, back to my meeting with Dr Bailey. My actions from the previous conversation I had had with Rowan was to create some kind of storyboard to help commence the production of my research essay. As it had only been a couple of days since we last spoke. I didn't have much to show her, other than a quote from Werner Hertzog which I mischievously repeated with a strong German accent;
 "I do not use a storyboard, it is an instrument of the cowards!" (Werner Hertzog)
However, I assured Rowan that this was pure mischief on my part, and I had been reading Graeme Harper's essay "Creative Writing: Words As Practice Led Research" (2008). This together with a paper by Lisa A. Mazzei (2014) entitled "Beyond Any Easy Sense: A Diffractive Analysis", an essay discussing Karen Barad's concept of a "diffractive methodological approach" (2007). These articulate the ideas of finding multiple insights through the readings of a multitude of sources. The red suggests that connections are made in unpredictable ways and so through reflection encourages new questions to be formed, with the outcome of generating alternative routes to knowledge.

Dr Bailey agreed that diffractive reading is an excellent method articulate my various sources of research material and recommended that I looked at an interview with Karen Barad, called material realities, the interviewer was Iris van do to in.

I need to consider carefully how I am doing the literature review for my essay. The intermingling, twisting and overlapping research threads of my enquiries are interesting in their own rights and the ideas of Tim Ingold and his discourse on "lines" is of particular use here. For all of this to finally become concrete through the unexplainable confrontation that I have been presented with, that is with my own reflection found in Helen MacDonald's book "Falcon" (2006). It provides genuinely interesting and exciting artistic research. Through this I can explain why creative research can be speculative, and why situated knowledge (which includes the work of Donna Haraway) can be so valuable.

My conversation with Rowan gave me new enthusiasm to continue, as it almost always does, - I'm feeling incredibly privileged and grateful to be able to have these short conversations with such a patient mentor.


Wednesday, 7 June 2017

Drawing, reflecting and meditating, setting out my plan for the essay.

Following my short discussion with Rowan earlier today, I thought it wise to allow the conversation to digest for a little while before writing up the contents. However, in preparation for a suggested storyboard for the reflective essay, I thought it would be useful to make some simple drawings of ideas that could be incorporated into the document. The notion I've been following from the objectives and aims that I articulated on my recent update summary, - that is of somehow getting a rapport with the object of attention (the peregrine), led me to contemplate thoughts of; 

What do we have in common with the other creatures we share this planet with? How are we both similar and different?

What is important to a Peregrine?

A renewed perspectival idea of repositioning our point of view can lead to entirely new forms of understanding. This in itself, is not new. But a near obsessive exploration from another species perspective can bring a liberation of thought and contemplation I think.


Reviewing a TED talk by Micheal Pollan (in 2006), he was able to draw interesting conclusions using such a method. For instance, he found that by looking at the world from the point of view of a different species is a
 "cure for the human disease of self-importance" -Michael Pollan (2006).
He also mentions 'The Cartesian system', that "we bend other species to our own will". And as an example of human absurdity, he states that "Since 1950 and 2000 the human population has doubled. However, meat production has increased FIVE fold…"   

We, as humans, don't just kill what we need, we are probably the only creature on the planet (other than perhaps the Fox?), to continue to kill and store food well beyond our actual needs...

This ties in well with the readings again of John Gray and Straw Dogs; Thoughts on Humans and Other Animals" (2002).

Monday, 5 June 2017

Notes and further thoughts on a productive discussion with Dr Juliet MacDonald, on Friday 2nd June 2017

Dr MacDonald opened the discussion with positive feedback that my series of recent blogs, although lengthy, are sufficiently concise and making connections between lots of different things.

I am quite reflective about my processes and how I capture all of this material, and so inevitably I'm thinking through how I have encountered things. It's really good to have that reflection through my blogs, and this form of recording allows me to analyse how things are happening, but also can be disseminated with critical thinking to the tutors.

In thinking further about this, I am concerned that my brevity could be improved, and one of the ways that I believe that this may be achieved is through critical reflective conclusions as summaries from time to time. This is useful not only for my tutors but also for me as when I do take the chance to go back and review previous blogs, it is often necessary to read them in their entirety. Bulleted conclusions at the end of each blog and a disciplined production of these should continue, therefore.

To reflect properly on blogs, I recognise that some succinct 'signposts' (as Dr Bailey likes to call them), are required.
I provided Dr MacDonald with the latest update together with the feedback from Richard Mulhearn on the previous module. I confirmed that I am still thinking that the essay will be the major part of my outcome, and I'm working towards putting the scaffolding together, or a storyboard of how the essay is going to be constructed. If this storyboard can be put together coherently, I can start adding and subtracting material rather than just trying to churn it all out at once. This is my plan for the written piece.

About the practice and my actual drawings, I haven't shown Juliet too much of these in the past, but I intend to more regularly display my experiments of what we may speculatively think a Peregrine might see, and what is important to it. I have been using both hand-drawn and computer/digitally manipulated images, particular views of cliff faces, original habitat locations of where peregrines are.


The line drawings that are hand drawn have been rendered with depictions of object edges that are thicker, where these object edges are of more significance and thinner where the information is tending to be more superfluous. The thicker edges are more important for a Peregrine to either avoid or land upon. This was my original concept, but I recognise that I may be anthropomorphizing, that is, creating a human interpretation, and so perhaps a more abstracted rendering could be more active. In this case, I have used the digitally manipulated Adobe Illustrator examples of the same image.

These digitally manipulated images have been rendered through post-production techniques, by using Adobe, to efficiently create edge detection, then converting the edges to line drawings, and then turning those line drawings into charcoal style lines with trailing leads and ends. This gives a kind of lost and found line style and feeling to the line itself, and it makes it interesting because of its oddness. Dr MacDonald commented that these digitally created images were denser and textured. My concern is that this density and texture may be too much? And I am still rather undecided as to which route I should pursue. Nevertheless, these experiments are helping me to take the practice forward. The hand-drawn images are much more recognisable as a humanly interpreted scene, whereas the digitally created and manipulated images create interesting 'byproducts'. For example, the sun-rays are digitised as an edge (as discussed in a previous blog). Digitisation isn't foolproof by any means, but again this is our own human interpretation perhaps. However, Juliet did like the digitally rendered, charcoal style line drawings through Adobe Illustrator because in her own words "they activated her imagination".

There are differences in process that I'm researching here, and Dr MacDonald helped me to articulate this.  When using a camera, there is a selective process in itself, as I have chosen to go and take a particular image based on my own preferences and aesthetic predilections of a composition. I have then taken the photograph of a landscape and made it into something new through a mechanical and digital process within that capture of light and how that data is then stored in a camera. In the digitally manipulated method, there is a continuity of the computer-centric algorithms which are built into the camera, built into PhotoShop, and integrated into Illustrator.

Using this computational data approach to generate an image still has my own input in an artistic sense, because I am in control of the various parameters of how I apply the different effects, thresholds of variability through these algorithms and so on. Whilst there is a sense of these digitised versions being more of a mechanical image, they still have my own interpretation from my eye and aesthetic choices being made. There is, therefore, a significant human input to it in either case.
The reception and selection of the images are only different processes. There is a lot of opportunities to reflect and discuss how my hand /eye manipulations, in both, are hand drawn, and the digital versions can manifest themselves. The computer won't make much distinction in things that are tonally similar, whereas I, as a human can make decisions between a rock edge, and eternal side as a distinction. In my conceptual working through these experiments, it does make sense that these decisions and distinctions would also matter to a Peregrine. Although we don't necessarily know!

Overall though, it's more likely that we are closer to a Peregrine when it comes to edge perception, then we are to a computer, that with current technology (that is available to us as practitioners of course), as computers are unable to distinguish three-dimensional objects purely through tonal comparative algorithms adequately. There is a need for a stereoscopic vision for this to occur, and our ability to then reflect on images that we see in front of us, and compare them with our experiences of three-dimensional objects. How we see, read and interpret light and space and colour is a fundamental difference between ourselves as humans (as animals generally, peregrines included of course), and the mechanical and algorithmic interpretations of computers.
It is an act of imagination, as Dr MacDonald pointed out, that what a Peregrine might see. It is therefore speculative and therefore by looking at various landscapes, such as these cliff faces, is useful because it calls us to think about differences concerning propensity, - that they (birds of prey) might have or might not have. Compared to a human being, and our own propensities, a bird is more likely to be happy to jump off a cliff edge and navigate through a landscape with alternative proclivities that the bird may bring to view. A bird will see it as a possible path or a possible route to take while it is flying, whereas we would only interpret such a rapidly presented series of images almost like an impending doom!
In Dr MacDonald's terms, humans are "not exactly rooted, gravitationally challenged". We are two-dimensional in many ways in the sense that we are "gravitationally challenged", (a brilliant phrase from Dr MacDonald), and we cannot simply just leap out from a rock face and free-fall, with an expectation of ourselves successfully navigating such landscapes. We may sometimes want to emotionally, but actually, we know that we can't. Therefore because of the way that I am exploring this through the practice of drawing and photography that enables us to start to think about what the fundamental differences could be between humans and peregrines. That non-ability to fly becomes a key difference between us, through these alternative propensities. That is how we might read a landscape, through an image, and how we might navigate it, what becomes potentially navigable.
It's useful to explore the differences and use these different processes. Dr MacDonald asked for clarification from Helen Macdonald's book H is for Hawk (2014), as to what type of drawing the Hawk had been looking at. On page 137, Helen Macdonald explains that "the drawing was in ink; it was stylised and sparse: it caught the feel and form of partridges, but there was no colour or detail to it."
So the lines were edges, and it was that which I have been pursuing. And so this is all about edge, and the edge is critical, the density of edge, what level of edge: and while the Adobe Illustrator images of mechanically picking out sides through edge detection, it is a spurious detection through colour and tonal differences, rather than perceived three-dimensional object edges.

What is interesting, is that humans can detect edges (as can all animals with more than one functioning eye), through stereoscopic vision, combined with experience and memory, and also movement and moving objects. But computers are far less able to construct and imagine, (as we can in our own mind's eye) as an edge variances in tonal and colour. We are quickly able to differentiate as humans, what are physical sides and edges.
Does this mean that human beings and animals are constructing in their minds, through imagination, based on experiences what a physical object 'is' in three dimensions, even when looking at a two-dimensional image or representation? In the digitally manipulated Adobe Illustrator, black-and-white images, while there is a lot of density of information, this two-dimensionality almost becomes something even less. It can't be called one-dimensional because this would just simply be an image rendered on a single linear plane (that is up and down only, or left and right only, or any other single horizon (azimuth) and would simply not be recognisable as anything other than a single line in itself).

Dr MacDonald explained that she had come across books about the psychology of visual perception and computers, and moreover computer programmers, who want computers to be better able to cope with edge detection and so they use theories such as Gestalt psychology.  In order to look for ways in which a computer, through its algorithms can start to make more intelligent decisions of what edge detection is, and what is depth, and what is coming towards you; and what is receding, what is space, and what is flat, from photographic images. They do use Gestalt principles of psychology and visual perception to try to build more intelligence and algorithms for this kind of work. The objective is to understand two-dimensional images to reinterpret them as three-dimensional images with surface, space and depth.

This is fascinating as it is a kind of way of thinking through all of those things. We also discussed my recent acquisition of Tim Ingold's Lines: a Brief History (2007) briefly. He talks about all sorts of different lines within this book, and Dr MacDonald suggested that he may indeed talk about edges, in particular, something that I need to look out for, while I'm reading it over the next few weeks. As yet I haven't found the specific references to edges, but I've only just started reading the book and look forward to much deeper scrutiny and later review.
Dr MacDonald reaffirmed Dr Bailey's recommendations that Ingold does explore lines of connections, lines of enquiry, lines of thought, and possibly even lines of flight, all of which are relevant to my project. He also talks about the wayfaring lines of experiences and travelling. He talks about lines of text and in textiles and threads. Genealogical lines, kinship diagrams and so on as different ways of presenting information. On a personal note, I found some of the symbols that were used within the chart of genealogical lines (as depicted as a circuit diagram), which are very similar to the symbols used for electronic components in circuit diagrams.

Within Tim Ingold's book, there is also a reference to the work of John Ruskin, who Dr MacDonald made a very direct link to my project, as Ruskin was first and foremost a geologist and he regularly drew small geological specimens.  It reminded Juliet of the cliff faces that I have been rendering. Working through lines, what they might represent and how they could be interpreted are all very useful research subjects, and Juliet was very encouraging for me to continue along this thread. This seems to be very appropriate landscape to pursue.

I've also been thinking about the ideas of perception and elevation as well, and I showed some rough sketches of speculative drawing, still on the theme of what's important to a Peregrine and what a Peregrine might see. By taking an original scene at ground level and then imagining the view from approximately 40 feet above, and then redrawing through imagination. The distant perspective and horizons remain the same, but the near space alters. The idea of elevating above the objects in the foreground and mid-ground creates a different sense of the visual field. Taken too far becomes a plan view which is more architectural, and not relevant to what I'm trying to explore. Nevertheless, these ideas are worth exploring. Juliet suggested if it may be possible to animate these types of views a bit like a Peregrine taking off from the ground somehow. By starting from the flat and working upwards?

It would be great to create some panorama of the digitally rendered images in an enormous format might be interesting. I could then pick out undulations and references that I would not be able to find in a small cropped picture. Or maybe even a large laser cut image? These are great ideas that Juliet helped me to work through and consider.

Dr MacDonald had also noticed that I had an interest in William Kentridge, and his ideas of animations are what I've been exploring.
I was worried that I have been doing much of my drawings from photographs rather than from outside primary sources, which would naturally be preferred artistic method. However, Juliet reassured me that, by producing sketches from photos, this is perfectly acceptable as a method.  I am creating images by using more imagination, particularly if drawing from a photo because there is less information. So it does become more speculative as a process. These are all good research methods through drawing, and I'm testing out what edges are what is readable as edges with speculation of what might be an edge for a Peregrine. Speculation on rising above the landscape is about imagining what flight might be, and what a flight path could be. This is all useful.

Lines of flight concerning speculation, thinking, connections, the way that I'm connecting different texts et cetera the temporal sense of timelines and so on. Those serendipitous moments are connecting lines as well. A complete network visually is a map of connections, almost becomes a topology as contour lines. How I have been encountering these different things needs to be put into the narrative of my essays. There is scope about leaving things open-ended, about not knowing is as much critical about things that we do know. Ideas work in both ways whether they are factual, mythical and unverified or whatever.

- Dr MacDonald confirmed an earlier statement that I had read in John Grey just a few days earlier. In - Silence of the Animals: On Progress and Other Myths (2013), regarding 'Myths' - "If there is a gap in knowledge we tend to try and construct something". - As touched on by Gray in examining Cognitive Dissonance, Leon Festinger When Prophesy Fails (1956). (Loc. 769 of 2550) and others.

Another area that could be useful for me to look at, (as suggested by Dr MacDonald), are "Situated Knowledges" by Donna Haraway. Ideas of primate vision, the organic versus the mechanical vision and digital vision that can be theorised through Haraway. She talks of situated knowledges, and this is a rich source of contemplation, which is an essay inside one of the publications. It is available on the Internet, and while very dense in places, (because she is writing in 1991 or sometime then), it is very much of its time. There is a PDF available, and it is worth reading, even though there are references from that era.  A Marxist-feminist standpoint, but also explores the Persistence of Vision, and vision as to what it means, the gaze and how vision is associated with knowledge and scientific practice. It is a polemic way of writing, which is her at her best writing: - "strident" according to Dr MacDonald. From a biologists point of view, this is very useful because it is all about different ways of seeing, and from an animal's point of view, in particular, her dog Cayenne. This sounds like a brilliant source of research material that I need to schedule for a review!

Thinking a little further about the conversation with Dr MacDonald, I recall that we talked briefly about how I had used Adobe Illustrator to vectorise the images. Vector-based image means that I'm able to make the images scalable to almost any size that I wish. The process, in brief, is as follows:
  • The initial image is processed in Adobe photo shop to clarify and reduce the number of colours to say eight. It is exported as a JPEG file which is imported into Adobe Illustrator.
  •  The next part is the process of vectorization. That creates the block lines which surround the detected colour boundaries. This creates pools of different colours with boundaries of solid lines.
  • Once this has been completed, and computational rendering has taken place, I convert the contents of all the block shapes into the transparent fill. This just leaves the outlines as lines on their own.
  • In Adobe Illustrator it is possible to select all of those lines and convert them to a different paintbrush style. The one I have chosen for these drawings is the charcoal paintbrush style.
By removing the colour and converting the outlines to the charcoal style, I'm trying to minimise the articulation of the image. This makes a very scalable image, and the line quality, as already mentioned contains a "lost and found" type of line style.

In keeping the detail of these drawings, it may be possible to create some panorama on a bigger scale as it is vectorised, but it is clear that more sophisticated and highly integrated detail, when expanded to a much larger format, or generally otherwise, requires a great deal of both compute power and computer memory. I'm a little bit doubtful that the technology available to me at the University has sufficient compute power and memory to fully create a three-dimensional, virtual reality style of rendering. However, this is something that I may consider pursuing. My own Windows-based system at home could I suppose be upgraded, although it already has a latest Intel Pentium i7 and 32 GB of RAM, and 16 GB of video RAM. It's quite a beastie!

Perhaps I need to talk with people like Steve Hibbert or Nick Deakin and others to see if it may be possible to either daisy chain some computers if necessary or at least to get a better feel for the likely computing platform that I might need for this kind of work?

I need to explore this further, but the suggestion by Dr MacDonald of making some kind of collage of these images is a very sound one. It is more than likely that this would be the only way for me to render such complex three-dimensional line images using Adobe Illustrator. In my imagination, one continuous single graphical vector file would seem to require a huge amount of memory on the face of it, but now after subsequent reflection and deliberation, because these are vector diagrams, based on algorithms of plotted lines, rather than individual pixel rendered bitmap images (where more detailed resolution simply requires a much greater magnification of memory), such vector plots require far less memory overhead. Indeed if these images are chopped up as frames for collages, then file size is reduced even further.

3-D Virtual reality through digital media production has taken leaps and bounds in technology over the past 10 years or so. Virtual reality glasses such as Oculus Rift and others maybe a route forward. Perhaps my own confidence is lacking somewhat because I believe that such a project is growing beyond my own limits of capability. The fear of this being much bigger and my capability worries me because of time constraints. Nevertheless, there is nothing to stop me considering putting some foundational ideas in place now to pursue at a later date, potentially after my Master's degrees complete. I will be a practising artist after all!

Dr MacDonald reassured me though, that it is within the nature of my project that it is expansive. In trying to visualise the topology of my project, Juliet reaffirmed that there seems to be a significant expansiveness to it. While planning for a PhD for example, this expansive trend should be avoided, however at Masters level, in my own project specifically, this expansive progress is part of my creative works. A lot of my project is about connecting things and so it is inevitable that not only the subject matter but points of interests expand. Those connections must go outwards to some extent and I am reminded here of the idea taken from the book Lines, by Tim Ingold, (2007),  where the author explained that her father was a microbiologist. He often drew representations of fungal mycelium. This idea of expanding fronds of an organism has been articulated before in a previous blog, but again it is reassuring to reflect upon it again here.

I recognise that it is a difficult balance in trying to strip things out to a minimum, such as colour detail and so on, but I know that I'm so inquisitive, curiosity gets the better of me all the time, and my nature seems to be to keep looking for more, and I struggle in holding back. However again, Juliet kindly reassured me by suggesting that this is simply this part of my own process. I should therefore not worry too much, and just accept that it is the nature and part of this project that I continue to connect things and bring in new subjects, research material and nodes of connectivity. Equally, these encourage different modes of thinking through what I'm trying to do too.this is no bad thing.

Subsequently, just thinking about this last paragraph, the idea of knowledge (and Ydrassil, the mythical Tree of Knowledge), when viewed from above, it's zenith, contained in my mind and my visual image of connections and nodes reminds me of networks within the brain, the axions and synapses at a microscopic level re-occur in the image of mycelium.

References:

Haraway, D.S. (1988). Situated Knowledges: The Science Question in Feminism and the Privilage of Partial Perspective. (In Feminist Studies, Vol 14, No. 3. Autumn 1988), pp. 575-599 [Retrieved from www.Jstor.org].
Ingold, T. (2007, 2016 ed). Lines: A brief History, Routledge, London.