<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jodi Pfister</title>
	<atom:link href="http://jodipfister.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jodipfister.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 08 May 2011 03:31:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='jodipfister.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jodi Pfister</title>
		<link>http://jodipfister.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://jodipfister.wordpress.com/osd.xml" title="Jodi Pfister" />
	<atom:link rel='hub' href='http://jodipfister.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Smellscape: Updated Documentation</title>
		<link>http://jodipfister.wordpress.com/2011/05/07/smellscape-updated/</link>
		<comments>http://jodipfister.wordpress.com/2011/05/07/smellscape-updated/#comments</comments>
		<pubDate>Sun, 08 May 2011 02:12:06 +0000</pubDate>
		<dc:creator>jodipfister</dc:creator>
				<category><![CDATA[Directed Research]]></category>

		<guid isPermaLink="false">http://jodipfister.wordpress.com/?p=239</guid>
		<description><![CDATA[This video shows the updated interaction of the iPhone application and the website database. The collaborative map can be viewed at http://jodipfister.com/testsmap.php. The database is currently gathering only the latitude and longitude position from the iPhone when the &#8220;Stop Tracking&#8221; button is pressed. Ideally, when all the features are implemented to upload to the database, they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=239&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="text-align:center; display: block;"><a href="http://jodipfister.wordpress.com/2011/05/07/smellscape-updated/"><img src="http://img.youtube.com/vi/9PsmMYwE2Lw/2.jpg" alt="" /></a></span><br />
This <a href="http://www.youtube.com/watch?v=9PsmMYwE2Lw">video</a> shows the updated interaction of the iPhone application and the website database. The collaborative map can be viewed at <a href="http://jodipfister.com/testsmap.php">http://jodipfister.com/testsmap.php</a>. The database is currently gathering only the latitude and longitude position from the iPhone when the &#8220;Stop Tracking&#8221; button is pressed. Ideally, when all the features are implemented to upload to the database, they would all be added together in one group upload submission as a single entry to the database.</p>
<p>In order to get the coordinated to be uploaded to the database, they need to be set as global variables so they are accessible in other functions. In the GPS location function, the latitude and longitude coordinates are passed to the two global variables to store the latest current location. Once in a while, this locks up the phone when trying to get the last coordinates from the phone from the slight variations in the phone movement and which latitude and longitude numbers are being passed. On the button action for &#8220;Stop Tracking&#8221; the php url is called which is set to input a query of the latitude and longitude into the database. This is done like a regular php database script which requires logging into the database with a username and password then connecting to the database.</p>
<p><strong>Database Connection:</strong><br />
These are the few lines of code in the iPhone application which make the connection:</p>
<p>NSURL *url = [[NSURL alloc] initWithString:[NSString stringWithFormat:@"http://www.mywebsite.com/thephpscript.php?lat=%@&amp;lng=%@",coordLat,coordLng]]; //the lat, lng is for the php script and the coordLat, coordLng is teh global variables set in the iPhone application for each coordinate</p>
<p>NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];<br />
NSData *urlData;<br />
NSURLResponse *response;<br />
urlData = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&amp;response error:nil]; //this is all needed to connect and send out the information to the url</p>
<p>Then the following is added into the head portion of the thephpscript.php:<br />
$_SERVER(&#8216;QUERY_STRING&#8217;);<br />
$latitude = $_GET['lat']; //stores the query input in the url into the variable $latitude<br />
$longitude = $_GET['lng']; //stores the query input in the url into the variable $longitude</p>
<p>Then the values need to be added to the database:<br />
$sql = (&#8220;INSERT INTO tablename (lat, lng) //lat, lng are the column names in the database<br />
VALUES (\&#8221;$latitude\&#8221;,\&#8221;$longitude\&#8221;)&#8221;);</p>
<p>The map page that displays the latitude and longitude values from the database variables are then pulled up by requesting all the stored coordinates and placing a nose icon marker at each location.</p>
<p><strong>References:<br />
</strong>There are some code references available online through the iPhone developer website.<br />
<a href="http://developer.apple.com/library/ios/navigation/">http://developer.apple.com/library/ios/navigation/</a></p>
<p>There are frameworks that are available for use which have a lot of different functions that you need to complete your application but examples of how to use them are necessary for the beginner since the simple explanations on the developer site are not enough to explain how to use them and where to put everything you need. Finding out which framework is needed for the application is only know from previous use or web searching for references of what function is needed. A listing of the frameworks can be found here: <a href="http://developer.apple.com/library/ios/navigation/#section=Frameworks">http://developer.apple.com/library/ios/navigation/#section=Frameworks</a>.</p>
<p>Other difficulties include have a key-pair and certificate match up from the iPhone and computer paired together with the developers name. It wasn&#8217;t as simple as to download the certificate and drop it into the key access. A new certificate had to be made from the computer which the iPhone application would be uploaded from and uploaded to the developer site. Then they would issue you a certificate that would have to be downloaded and dropped into the key access. This creates the signing pair between the request and the certificate which was causing a lot of problems when just trying to upload the application for trial and error on the iPhone. To obtain a developers license, it costs $99 per year and is available at <a href="http://developer.apple.com/programs/start/register/create.php">http://developer.apple.com/programs/start/register/create.php </a>.</p>
<p>I&#8217;m still lacking a complete understanding of the syntax for the iPhone which is a combination of Cocoa Touch which seems to have more to do with button and interface interaction, Objective C which is the general syntax of the rest of the iPhone coding with headers and main files, and the frameworks which can be added into the individual applications.</p>
<p><strong>Smellscape Application:<br />
</strong>This project is left wide open for the users to input anything that they correlate to the sense of smell. The application requires a translation between the smell being sensed to a visual or audio component. The only constraints for the visual is the limitation of how many url addresses should be placed in the database. Once these values are filled up for the one smell location, no more can be added for the single entry. So, for each scent entry there can be 8 images with the urls that take up the 8 database text lines for the single coordinate. The images are added as a type of layering of scent; a visual description of an event or an object and how it constructs the scent. There is no specific order to which scent comes first, they are just added in the order in which they are input. This leaves the image choices up to the user which varies from person to person. The same smell can be described in many different ways because of a person&#8217;s recollection to past experiences of the scent.</p>
<p>The audio component is also wide open in which it can be seen as a current verbal description of the smell and the events that are ongoing at the time of recording or as a historical account of a memory of interaction which the scent and what it reminds someone of. This causes a displacement between the existing smell and the origin location of the historical memory establishing a link between different coordinate locations around the globe.</p>
<p>The important feature of this application is the collective gathering of all users experiences of scent which varies in images that are included and audio portions. These point back to personal experiences and the way in which a single scent can bring about something different from person to person.</p>
<br />Filed under: <a href='http://jodipfister.wordpress.com/category/directed-research/'>Directed Research</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jodipfister.wordpress.com/239/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jodipfister.wordpress.com/239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jodipfister.wordpress.com/239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=239&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jodipfister.wordpress.com/2011/05/07/smellscape-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2563bd328ce83fb956106c0b19b39db9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jodipfister</media:title>
		</media:content>
	</item>
		<item>
		<title>Smellscape: iPhone Application Development</title>
		<link>http://jodipfister.wordpress.com/2011/04/26/smellscape-iphone-application-development/</link>
		<comments>http://jodipfister.wordpress.com/2011/04/26/smellscape-iphone-application-development/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 07:46:28 +0000</pubDate>
		<dc:creator>jodipfister</dc:creator>
				<category><![CDATA[Mobile Media Workshop]]></category>

		<guid isPermaLink="false">http://jodipfister.wordpress.com/?p=226</guid>
		<description><![CDATA[  Smellscape This iPhone application allows users to map experiences of olfaction in their everyday life. Through the use of this application, users can record their spatial experience with a geographically located scent by translating into an auditory and/or visual component. The auditory translation can range from a simple description of the scent to a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=226&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><em><a href="http://jodipfister.files.wordpress.com/2011/04/icon.png"><img class="alignnone size-full wp-image-229" title="Smellscape" src="http://jodipfister.files.wordpress.com/2011/04/icon.png?w=600" alt=""   /></a>  Smellscape</em></strong></p>
<p><strong><em></em></strong>This iPhone application allows users to map experiences of olfaction in their everyday life. Through the use of this application, users can record their spatial experience with a geographically located scent by translating into an auditory and/or visual component. The auditory translation can range from a simple description of the scent to a story which involved a past encounter with the scent. The visual translation allows for the user to select a range of 10 images to describe the scent. These translations are attached o the GPS location generated by the phone and timestamped. The user can then add to the collective database by submitting their scent record to the <a href="http://jodipfister.com"><em>Smellscape</em></a> website. The <em>Smellscape</em> website contains all the information uploaded by all users of the iPhone application.</p>
<p>Screenshots of application:<br />
<a href="http://farm6.static.flickr.com/5147/5656865458_6800ac21d0_m.jpg"><img class="alignnone" title="figure1" src="http://farm6.static.flickr.com/5147/5656865458_6800ac21d0_m.jpg" alt="" width="77" height="144" /></a><br />
(figure1)<br />
To launch application, select the <em>Smellscape</em> application.<br />
<a href="http://farm6.static.flickr.com/5141/5656865516_fa92b36477_m.jpg"><img class="alignnone" title="figure2" src="http://farm6.static.flickr.com/5141/5656865516_fa92b36477_m.jpg" alt="" width="77" height="144" /></a><br />
(figure2)<br />
Opens to a map screen to obtain your GPS location.<br />
<a href="http://farm6.static.flickr.com/5184/5656865578_cdb020a13f_m.jpg"><img class="alignnone" title="figure3" src="http://farm6.static.flickr.com/5184/5656865578_cdb020a13f_m.jpg" alt="" width="77" height="144" /></a><br />
(figure3)<br />
Select the &#8220;Start Tracking&#8221; button to find your position on the map. Your GPS location will be traced with a blue line as you move around and the map will rotate based on the position of your iPhone so that the map always faces up according to the compass direction your phone is positioned in space. When your location is settled for the origin of the scent you want to record, select the &#8220;Stop Tracking&#8221; button.<br />
<a href="http://farm6.static.flickr.com/5261/5656292875_07b6e71e20_m.jpg"><img class="alignnone" title="figure4" src="http://farm6.static.flickr.com/5261/5656292875_07b6e71e20_m.jpg" alt="" width="77" height="144" /></a><br />
(figure4)<br />
After the &#8220;Stop Tracking&#8221; button is pressed, a window pops up providing the notification that your location information has been added to the iPhone&#8217;s internal database. If you select &#8220;Start Tracking&#8221; again, the new position will replace the old stored GPS location. The window also provides directions on what to do next, &#8220;Add Audio and/or Visual&#8221;.<br />
<a href="http://farm6.static.flickr.com/5309/5656865694_f0c6b9a929_m.jpg"><img class="alignnone" title="figure5" src="http://farm6.static.flickr.com/5309/5656865694_f0c6b9a929_m.jpg" alt="" width="77" height="144" /></a><br />
(figure5)<br />
To continue, you must press return on the window and it will bring you back to the map screen. The &#8220;Audio&#8221; and &#8220;Visual&#8221; tabs are available at the bottom of the <em>Smellscape</em> application window. If you choose to add a sound component, continue to figure 6. If you choose to only add an image component, continue to figure 11.<br />
<a href="http://farm6.static.flickr.com/5225/5656293001_80d25ef319_m.jpg"><img class="alignnone" title="figure6" src="http://farm6.static.flickr.com/5225/5656293001_80d25ef319_m.jpg" alt="" width="77" height="144" /></a><br />
(figure6)<br />
After you select the &#8220;Audio&#8221; tab at the bottom of the window, a new screen will appear. This shows the capability to record an audio component to attach to the scent location recorded on the map.<br />
<a href="http://farm6.static.flickr.com/5225/5656293081_5044d7412d_m.jpg"><img class="alignnone" title="figure7" src="http://farm6.static.flickr.com/5225/5656293081_5044d7412d_m.jpg" alt="" width="77" height="144" /></a><br />
(figure7)<br />
To begin recording, press the &#8220;Record Audio&#8221; button. Then begin speaking.<br />
<a href="http://farm6.static.flickr.com/5024/5656293141_e5f3c05232_m.jpg"><img class="alignnone" title="figure8" src="http://farm6.static.flickr.com/5024/5656293141_e5f3c05232_m.jpg" alt="" width="77" height="144" /></a><br />
(figure8)<br />
While you are recording audio, the &#8220;Record Audio&#8221; button changes its title to &#8220;Stop Recording&#8221; for when you finish.<br />
<a href="http://farm6.static.flickr.com/5101/5656865944_29db5a5442_m.jpg"><img class="alignnone" title="figure9" src="http://farm6.static.flickr.com/5101/5656865944_29db5a5442_m.jpg" alt="" width="77" height="144" /></a><br />
(figure9)<br />
When you finish recording, press the &#8220;Stop Recording&#8221; button. You can then play back the file to listen to it. If you are not happy with the recording, simply press the &#8220;Record Audio&#8221; button again and talk.<br />
<a href="http://farm6.static.flickr.com/5104/5656293279_3a22f12d25_m.jpg"><img class="alignnone" title="figure10" src="http://farm6.static.flickr.com/5104/5656293279_3a22f12d25_m.jpg" alt="" width="77" height="144" /></a><br />
(figure10)<br />
When the file is completed, you can attach the audio file to the GPS location by selecting the &#8220;Add Story&#8221; button. This will add the audio file to the database.<br />
<a href="http://farm6.static.flickr.com/5029/5656866036_e1693bacdd_m.jpg"><img class="alignnone" title="figure11" src="http://farm6.static.flickr.com/5029/5656866036_e1693bacdd_m.jpg" alt="" width="77" height="144" /></a><br />
(figure11)<br />
There is another tab located at the bottom of the <em>Smellscape</em> window for &#8220;Visual&#8221;. After you select the &#8220;Visual&#8221; tab at the bottom of the window, another screen will appear. This will allow you to add images to describe the scent at the GPS location creating a visual component to attach to the scent location recorded on the map. The screen loads <em>Google Image Search </em>so you can search for any images that relate to or describe the scent.<br />
<a href="http://farm6.static.flickr.com/5188/5656866090_b6a905277f_m.jpg"><img class="alignnone" title="figure12" src="http://farm6.static.flickr.com/5188/5656866090_b6a905277f_m.jpg" alt="" width="77" height="144" /></a><br />
(figure12)<br />
Click onto the <em>Google </em>search bar. The keyboard will then appear on the screen. Type in the search line a word that describes the scent.<br />
<a href="http://farm6.static.flickr.com/5142/5656293425_bdb7ab03ba_m.jpg"><img class="alignnone" title="figure13" src="http://farm6.static.flickr.com/5142/5656293425_bdb7ab03ba_m.jpg" alt="" width="77" height="144" /></a><br />
(figure13)<br />
Then press the &#8220;Search&#8221; button to begin the image search.<br />
<a href="http://farm6.static.flickr.com/5225/5656866208_4c32d98aea_m.jpg"><img class="alignnone" title="figure14" src="http://farm6.static.flickr.com/5225/5656866208_4c32d98aea_m.jpg" alt="" width="77" height="144" /></a><br />
(figure14)<br />
This will display the image results. You can scroll through the window to find the perfect image that best describes the scent at the location.<br />
<a href="http://farm6.static.flickr.com/5104/5656866268_e9472f4a33_m.jpg"><img class="alignnone" title="figure15" src="http://farm6.static.flickr.com/5104/5656866268_e9472f4a33_m.jpg" alt="" width="77" height="144" /></a><br />
(figure15)<br />
When you find the image, click on it to select it.<br />
<a href="http://farm6.static.flickr.com/5145/5656866330_30f0b80c1a_m.jpg"><img class="alignnone" title="figure16" src="http://farm6.static.flickr.com/5145/5656866330_30f0b80c1a_m.jpg" alt="" width="77" height="144" /></a><br />
(figure16)<br />
This will bring up an option to see the image full size. Select the text &#8220;See full size image&#8221;.<br />
<a href="http://farm6.static.flickr.com/5190/5656293661_9f03918218_m.jpg"><img class="alignnone" title="figure17" src="http://farm6.static.flickr.com/5190/5656293661_9f03918218_m.jpg" alt="" width="77" height="144" /></a><br />
(figure17)<br />
The image is then loaded to fit the window of the iPhone.<br />
<a href="http://farm6.static.flickr.com/5181/5656293715_da069e1b77_m.jpg"><img class="alignnone" title="figure18" src="http://farm6.static.flickr.com/5181/5656293715_da069e1b77_m.jpg" alt="" width="77" height="144" /></a><br />
(figure18)<br />
If this is the image you want to add to the location, select the &#8220;Add Image&#8221; button. This will add the URL of the image to the database.<br />
<a href="http://farm6.static.flickr.com/5187/5656866520_361a7e0611_m.jpg"><img class="alignnone" title="figure19" src="http://farm6.static.flickr.com/5187/5656866520_361a7e0611_m.jpg" alt="" width="77" height="144" /></a><br />
(figure19)<br />
If you would like to add a layered scent description because there is more than one word to describe the scent at the location, press the &#8220;Reset&#8221; button.<br />
<a href="http://farm6.static.flickr.com/5142/5656866560_f4a33c5c5a_m.jpg"><img class="alignnone" title="figure20" src="http://farm6.static.flickr.com/5142/5656866560_f4a33c5c5a_m.jpg" alt="" width="77" height="144" /></a><br />
(figure20)<br />
This will bring you back to the <em>Google Image Search</em> page. From here you would continue to add up to 10 images to the database for the location.<br />
<a href="http://farm6.static.flickr.com/5150/5656866630_7aec44fbcc_m.jpg"><img class="alignnone" title="figure21" src="http://farm6.static.flickr.com/5150/5656866630_7aec44fbcc_m.jpg" alt="" width="77" height="144" /></a><br />
(figure21)<br />
After the audio and/or visual components are added, you can select the &#8220;Contribute&#8221; tab at the bottom of the <em>Smellscape</em> window. This will load the <em>Smellscape</em> website that contains all of the uploaded scent locations and translations from the application users. All locations will be seen based on the time of day the scent occurred. The icons grow and shrink based on the timestamp of the uploaded scent information. They only appear 2 hours before the recorded timestamp and 2 hours after. All other times of the day, the icon will not be displayed representing the temporality of smells. As it approached the 2 hour marks, the icon will appear as a small dot increasing in size to the time the scent was recorded. Then will begin to shrink again for the remaining 2 hours.<br />
<a href="http://farm6.static.flickr.com/5104/5656866718_5c39df6914_m.jpg"><img class="alignnone" title="figure22" src="http://farm6.static.flickr.com/5104/5656866718_5c39df6914_m.jpg" alt="" width="77" height="144" /></a><br />
(figure22)<br />
By pressing the &#8220;Add Smell&#8221; button, you upload your scent information to the collective database online available for all <em>Smellscape</em> application users.<br />
<a href="http://farm6.static.flickr.com/5146/5656866800_e4a4343c01_m.jpg"><img class="alignnone" title="figure23" src="http://farm6.static.flickr.com/5146/5656866800_e4a4343c01_m.jpg" alt="" width="77" height="144" /></a><br />
(figure23)<br />
This will add a nose icon to the recorded GPS scent location. The icon will be larger in size because the scent was just recorded and is within the 4 hour visibility range.<br />
<a href="http://farm6.static.flickr.com/5027/5656866870_789081a183_m.jpg"><img class="alignnone" title="figure24" src="http://farm6.static.flickr.com/5027/5656866870_789081a183_m.jpg" alt="" width="77" height="144" /></a><br />
(figure24)<br />
You can then select a nose icon to view the attached information. This will display the audio and/or visual components. If you select the speaker icon, it will play the attached audio file. Or you can choose to pan through the uploaded images.<br />
<a href="http://farm6.static.flickr.com/5070/5656294355_9403643aeb_m.jpg"><img class="alignnone" title="figure25" src="http://farm6.static.flickr.com/5070/5656294355_9403643aeb_m.jpg" alt="" width="77" height="144" /></a><br />
(figure25)<br />
If the location does not contain an audio file, the speaker icon will represent this still displaying the attached scent descriptive images.</p>
<p><em>Smellscape Demonstration:</em></p>
<span style="text-align:center; display: block;"><a href="http://jodipfister.wordpress.com/2011/04/26/smellscape-iphone-application-development/"><img src="http://img.youtube.com/vi/WVzSZwOiLts/2.jpg" alt="" /></a></span>
<br />Filed under: <a href='http://jodipfister.wordpress.com/category/mobile-media-workshop/'>Mobile Media Workshop</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jodipfister.wordpress.com/226/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jodipfister.wordpress.com/226/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jodipfister.wordpress.com/226/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=226&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jodipfister.wordpress.com/2011/04/26/smellscape-iphone-application-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2563bd328ce83fb956106c0b19b39db9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jodipfister</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/04/icon.png" medium="image">
			<media:title type="html">Smellscape</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5147/5656865458_6800ac21d0_m.jpg" medium="image">
			<media:title type="html">figure1</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5141/5656865516_fa92b36477_m.jpg" medium="image">
			<media:title type="html">figure2</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5184/5656865578_cdb020a13f_m.jpg" medium="image">
			<media:title type="html">figure3</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5261/5656292875_07b6e71e20_m.jpg" medium="image">
			<media:title type="html">figure4</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5309/5656865694_f0c6b9a929_m.jpg" medium="image">
			<media:title type="html">figure5</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5225/5656293001_80d25ef319_m.jpg" medium="image">
			<media:title type="html">figure6</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5225/5656293081_5044d7412d_m.jpg" medium="image">
			<media:title type="html">figure7</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5024/5656293141_e5f3c05232_m.jpg" medium="image">
			<media:title type="html">figure8</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5101/5656865944_29db5a5442_m.jpg" medium="image">
			<media:title type="html">figure9</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5104/5656293279_3a22f12d25_m.jpg" medium="image">
			<media:title type="html">figure10</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5029/5656866036_e1693bacdd_m.jpg" medium="image">
			<media:title type="html">figure11</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5188/5656866090_b6a905277f_m.jpg" medium="image">
			<media:title type="html">figure12</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5142/5656293425_bdb7ab03ba_m.jpg" medium="image">
			<media:title type="html">figure13</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5225/5656866208_4c32d98aea_m.jpg" medium="image">
			<media:title type="html">figure14</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5104/5656866268_e9472f4a33_m.jpg" medium="image">
			<media:title type="html">figure15</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5145/5656866330_30f0b80c1a_m.jpg" medium="image">
			<media:title type="html">figure16</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5190/5656293661_9f03918218_m.jpg" medium="image">
			<media:title type="html">figure17</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5181/5656293715_da069e1b77_m.jpg" medium="image">
			<media:title type="html">figure18</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5187/5656866520_361a7e0611_m.jpg" medium="image">
			<media:title type="html">figure19</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5142/5656866560_f4a33c5c5a_m.jpg" medium="image">
			<media:title type="html">figure20</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5150/5656866630_7aec44fbcc_m.jpg" medium="image">
			<media:title type="html">figure21</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5104/5656866718_5c39df6914_m.jpg" medium="image">
			<media:title type="html">figure22</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5146/5656866800_e4a4343c01_m.jpg" medium="image">
			<media:title type="html">figure23</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5027/5656866870_789081a183_m.jpg" medium="image">
			<media:title type="html">figure24</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5070/5656294355_9403643aeb_m.jpg" medium="image">
			<media:title type="html">figure25</media:title>
		</media:content>
	</item>
		<item>
		<title>SmellScape: iPhone Application Proposal</title>
		<link>http://jodipfister.wordpress.com/2011/03/21/smellscape-iphone-application-proposal/</link>
		<comments>http://jodipfister.wordpress.com/2011/03/21/smellscape-iphone-application-proposal/#comments</comments>
		<pubDate>Mon, 21 Mar 2011 20:42:50 +0000</pubDate>
		<dc:creator>jodipfister</dc:creator>
				<category><![CDATA[Mobile Media Workshop]]></category>

		<guid isPermaLink="false">http://jodipfister.wordpress.com/?p=201</guid>
		<description><![CDATA[SmellScape This iPhone application will allow users to map experiences of olfaction in their everyday life. Through the use of this application, users can visually represent smells in the environment based on predefined categories. The categories include Animals, Death, Earth, Events, Food, Garbage, Materials, Plants and Pollution. Inside of these six main topics are subcategories which further define possible [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=201&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics1.jpg?w=225"></a><a href="http://jodipfister.files.wordpress.com/2011/03/smellmapgraphic.jpg?w=300"><img class="alignnone size-medium wp-image-213" title="SmellMapGraphic" src="http://jodipfister.files.wordpress.com/2011/03/smellmapgraphic.jpg?w=400" alt="" width="400" height="266.6" /></a></p>
<p><span style="color:#000000;"><strong><em>SmellScape</em></strong></span></p>
<p><span style="color:#000000;"><strong><em></em></strong>This iPhone application will allow users to map experiences of olfaction in their everyday life. Through the use of this application, users can visually represent smells in the environment based on predefined categories. The categories include <em>Animals</em>, <em>Death</em>, <em>Earth</em>, <em>Events</em>, <em>Food</em>, <em>Garbage</em>, <em>Materials</em>, <em>Plants </em>and <em>Pollutio</em><em>n</em>. Inside of these six main topics are subcategories which further define possible types of smells that could exist in the atmosphere.</span></p>
<p><span style="color:#000000;">So, how do you use this application? Once the app is downloaded onto your iPhone, simply take a walk. When you launch <em>SmellScape (figure 1)</em>, you GPS location will be shown on a map on the screen <em>(figure 2)</em>. If this is not your location, you can pan around with your fingers and reset your location. This is the location at which the scents will be registered and centered on. Once your location is found, there are four options available at the bottom of the screen. Since there are no recorded smells yet, lets add one by selecting the <em>Add Scent </em>icon.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics1.jpg?w=225"></a><a href="http://jodipfister.files.wordpress.com/2011/03/smellmapgraphic.jpg"></a><span style="color:#000000;"><img class="alignnone size-medium wp-image-210" title="IphoneGraphics1" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics1.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
<span style="color:#000000;"> figure 1</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics2.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-209" title="IphoneGraphics2" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics2.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 2</span></p>
<p><span style="color:#000000;">Once the <em>Add Scent</em> icon is selected, a menu will pop up <em>(figure 3)</em>. This menu contains nine main categories of scent. Select a corresponding image to the type of smell that you are recording. There may be several scents associated to describe the atmospheric conditions, but this will be the first or one of the layers. For instance, here we will select the main category <em>Food</em>.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics3.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-208" title="IphoneGraphics3" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics3.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 3</span></p>
<p><span style="color:#000000;">When the <em>Food </em>icon is pressed, a new window pops up with the subcategories defined under food <em>(figure 4)</em>. These are the graphics that will appear on the map describing the scent at your GPS location. Make the selection which best describes the food aroma in the air. Here we have selected <em>Fruits</em>.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics4.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-207" title="IphoneGraphics4" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics4.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 4</span></p>
<p><span style="color:#000000;">The fruit icon shows up on the map in the default color black <em>(figure 5)</em>. You can relocate the scent in your GPS location by dragging around the icon image. You can also resize the fruit by pinching and zooming with your fingers <em>(figure 6)</em>. This scale increase or decrease will represent the surrounding area in which it is spread.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics5.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-206" title="IphoneGraphics5" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics5.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 5</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics6.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-205" title="IphoneGraphics6" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics6.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span></a></p>
<p><span style="color:#000000;">figure 6</span></p>
<p><span style="color:#000000;">Now we are unclear as to what specific fruit this visual icon is actually representing. So, we will add color to the icon to give it more distinction rather than leaving it as the default black color which could possibly suggest that the fruit was rotted. So, we will select the <em>Color</em> icon at the bottom of the screen. Once the <em>Color</em> icon is selected, a color menu will pop up <em>(figure 7)</em>.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics7.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-204" title="IphoneGraphics7" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics7.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 7</span></p>
<p><span style="color:#000000;">Select the color that best represents the type of fruit is smells like. The graphic will change color on the map <em>(figure </em>8<em>)</em>. Here we selected <em>Orange</em> so that this could be an orange fruit smell outside. Now there can be multiple layers to a scent when we describe it. There is never a clear this is this smell. We use the phrase &#8216;it smells like&#8230;&#8217; to describe scent and usually this description consists of more than one object. So lets keep layering on the descriptive odors in the air.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics8.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-203" title="IphoneGraphics8" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics8.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 8</span></p>
<p><span style="color:#000000;">The next category chosen here from <em>Add Scent</em> was an <em>Animal </em>and <em>Cat</em>. The color selected was brown. This is just a guess as to what kind of cat this may have been. If we selected yellow, it could possibly be a lion. Now we come across the possibility that the cat smell is not as strong as the orange smell. So, to represent the strength or intensity, we use transparency <em>(figure 9)</em>. This allows us to see the overlapping aromatic descriptions of what we have encountered and visual iconic pieces of memory chosen to describe it.</span></p>
<p><a href="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics9.jpg?w=225"><span style="color:#000000;"><img class="alignnone size-medium wp-image-202" title="IphoneGraphics9" src="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics9.jpg?w=135&#038;h=180" alt="" width="135" height="180" /></span><br />
</a><span style="color:#000000;">figure 9</span></p>
<p><span style="color:#000000;">Scent is subjective so the visual context displayed in the application is your description of the smell. Someone else may choose to describe it differently based on their experience with the scent and how they relate to it. This application is meant to bring all of these visual ties of memory to a mapping environment describing the places which surround us.</span></p>
<p><span style="color:#000000;"><strong>Working Categories and Subcategories<br />
</strong><em>Animals<br />
</em>Sponges, Jellyfish</span><br />
<span style="color:#000000;"> Sea urchins, starfish</span><br />
<span style="color:#000000;"> Amphibians</span><br />
<span style="color:#000000;"> Reptiles</span><br />
<span style="color:#000000;"> Birds</span><br />
<span style="color:#000000;"> Mammals: Humans, Whales, Elephants, Cats, Rodents, Bats, Marsupials, Monkeys, Rabbits</span><br />
<span style="color:#000000;"> Crabs</span><br />
<span style="color:#000000;"> Insects</span><br />
<span style="color:#000000;"> Earthworms, Leeches</span></p>
<p><span style="color:#000000;"><em>Earth<br />
</em>Water</span><br />
<span style="color:#000000;"> Dirt</span><br />
<span style="color:#000000;"> Trees: Leaves</span><br />
<span style="color:#000000;"> Grass</span><br />
<span style="color:#000000;"> Rocks</span><br />
<span style="color:#000000;"> Coal</span></p>
<p><span style="color:#000000;"><em>Events<br />
</em>Christmas: Pine Trees</span><br />
<span style="color:#000000;"> Thanksgiving</span><br />
<span style="color:#000000;"> Fourth of July: Fireworks</span><br />
<span style="color:#000000;"> Easter: Colored Eggs</span><br />
<span style="color:#000000;"> Halloween</span><br />
<span style="color:#000000;"> Memorial Day</span><br />
<span style="color:#000000;"> St. Patrick’s Day</span><br />
<span style="color:#000000;"> Valentines Day</span><br />
<span style="color:#000000;"> New Years</span><br />
<span style="color:#000000;"> Birthdays</span><br />
<span style="color:#000000;"> Picnics</span></p>
<p><span style="color:#000000;"><em>Food<br />
</em>Grains</span><br />
<span style="color:#000000;"> Vegetables</span><br />
<span style="color:#000000;"> Fruits</span><br />
<span style="color:#000000;"> Fats and Oils</span><br />
<span style="color:#000000;"> Milk and Dairy</span><br />
<span style="color:#000000;"> Meat</span><br />
<span style="color:#000000;"> Beans: Coffee</span><br />
<span style="color:#000000;"> Fish</span><br />
<span style="color:#000000;"> Nuts</span><br />
<span style="color:#000000;"> Spices</span><br />
<span style="color:#000000;"> Herbs</span><br />
<span style="color:#000000;"> Preservatives: Sugar</span></p>
<p><span style="color:#000000;"><em>Garbage<br />
</em>Feces</span><br />
<span style="color:#000000;"> Trash</span><br />
<span style="color:#000000;"> Landfills: Sulfur Dioxide</span></p>
<p><span style="color:#000000;"><em>Materials<br />
</em>Glass</span><br />
<span style="color:#000000;"> Paper</span><br />
<span style="color:#000000;"> Concrete</span><br />
<span style="color:#000000;"> Metal</span><br />
<span style="color:#000000;"> Plastic / Vinyl</span><br />
<span style="color:#000000;"> Drywall</span><br />
<span style="color:#000000;"> Plaster</span><br />
<span style="color:#000000;"> Ceramics</span><br />
<span style="color:#000000;"> Fabric</span><br />
<span style="color:#000000;"> Nylon</span><br />
<span style="color:#000000;"> Rubber</span></p>
<p><span style="color:#000000;"><em>Plants<br />
</em>Flowers</span><br />
<span style="color:#000000;"> Leaves</span><br />
<span style="color:#000000;"> Trees</span></p>
<p><span style="color:#000000;"><em>Pollution<br />
</em>Gasoline / Fuel</span><br />
<span style="color:#000000;"> VOCs: Paints / Finishes, Cleaning Products, Emissions, Formaldehyde</span><br />
<span style="color:#000000;"> Chemicals</span><br />
<span style="color:#000000;"> Smoke</span><br />
<span style="color:#000000;"> Fire</span><br />
<span style="color:#000000;"> Dust</span><br />
<span style="color:#000000;"> Adhesives / Glue</span></p>
<br />Filed under: <a href='http://jodipfister.wordpress.com/category/mobile-media-workshop/'>Mobile Media Workshop</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jodipfister.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jodipfister.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jodipfister.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=201&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jodipfister.wordpress.com/2011/03/21/smellscape-iphone-application-proposal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2563bd328ce83fb956106c0b19b39db9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jodipfister</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/smellmapgraphic.jpg?w=300" medium="image">
			<media:title type="html">SmellMapGraphic</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics1.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics1</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics2.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics2</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics3.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics3</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics4.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics4</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics5.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics5</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics6.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics6</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics7.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics7</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics8.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics8</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/03/iphonegraphics9.jpg?w=225" medium="image">
			<media:title type="html">IphoneGraphics9</media:title>
		</media:content>
	</item>
		<item>
		<title>Territories of Olfaction</title>
		<link>http://jodipfister.wordpress.com/2011/02/06/territories-of-olfaction/</link>
		<comments>http://jodipfister.wordpress.com/2011/02/06/territories-of-olfaction/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 01:17:59 +0000</pubDate>
		<dc:creator>jodipfister</dc:creator>
				<category><![CDATA[Death]]></category>
		<category><![CDATA[Directed Research]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Garden]]></category>
		<category><![CDATA[Medical]]></category>
		<category><![CDATA[Perfume]]></category>
		<category><![CDATA[Pollution]]></category>
		<category><![CDATA[Urban]]></category>
		<category><![CDATA[Anna Barbara]]></category>
		<category><![CDATA[Anthony Perliss]]></category>
		<category><![CDATA[Clino Trini Castelli]]></category>
		<category><![CDATA[Gaetano Pesce]]></category>
		<category><![CDATA[Marcel Provost]]></category>
		<category><![CDATA[Marek Piotrowski]]></category>
		<category><![CDATA[Olafur Eliasson]]></category>
		<category><![CDATA[Patrick Süskind]]></category>
		<category><![CDATA[Peter Zumthor]]></category>
		<category><![CDATA[Petra Blaisse]]></category>
		<category><![CDATA[Philippe Rahm]]></category>
		<category><![CDATA[Toshiko Mori]]></category>
		<category><![CDATA[Wilhelm Haarmann]]></category>
		<category><![CDATA[Yukio Nakagawa]]></category>

		<guid isPermaLink="false">http://jodipfister.wordpress.com/?p=28</guid>
		<description><![CDATA[Medical / Pharmacy and Death: odors return to earth (decompose &#38; gases escape) human excrement ritual incense / perfumes embalming, entombment cremation embalm-fragrances balsams (myrrh, storax) spices wrapped around body medical &#8211; disinfectants herbs to treat sick &#38; dying vapors (essence) scents &#38; cosmetics desire, pleasure, seduction, memory blood &#8211; violence / death sacrifices Aztec [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=28&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Medical / Pharmacy and Death</strong>:</span><br />
<span style="color:#000000;"> odors return to earth (decompose &amp; gases escape)</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">human excrement</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">ritual incense / perfumes</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">embalming, entombment cremation</span><br />
<span style="color:#000000;"> embalm-fragrances</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">balsams (myrrh, storax)</span><br />
<span style="color:#000000;"> spices wrapped around body</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">medical &#8211; disinfectants</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">herbs to treat sick &amp; dying</span><br />
<span style="color:#000000;"> vapors (essence)</span><br />
<span style="color:#000000;"> scents &amp; cosmetics</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">desire, pleasure, seduction, memory</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">blood &#8211; violence / death</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">sacrifices Aztec cities</span><br />
<span style="color:#000000;"> smell of death</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">birth &#8211; deodorized feminine products (menstruation)</span><br />
<span style="color:#000000;"> incense = divine spirits</span><br />
<span style="color:#000000;"> sulfur = evil spirits</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">rotten eggs</span><br />
<span style="color:#000000;"> volcano &amp; lava</span><br />
<span style="color:#000000;"> fire &amp; burning</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">animals &#8211; find food or attract mates</span></div>
<div style="margin-left:20px;padding-bottom:30px;"><span style="color:#000000;">emotional force &amp; attraction<span id="more-28"></span><br />
</span></div>
<div style="margin-left:0;padding-bottom:10px;"><span style="color:#000000;">1)PROJECT: <strong><em>l&#8217;Ossuaire Municipal</em>, Catacombs of Paris</strong></span><br />
<span style="color:#808080;">The catacombs of Paris, which originally began as stone mines 20 meters below the streets of Paris, were re-purposed during the 18<sup>th</sup> century as burial grounds to house the bones of around six million people.  The construction began shortly after an incident on May 30, 1780 when a wall collapsed between a Parisian restaurant and a cemetery exposing the overcrowded human remains condition present in all of the Parisian cemeteries.  These were victims of the black plague, war, starvation and other illnesses whose bodies were piled on top of each other in mass graves.  The cadavers of dead bodies posed a health risk and concern for the citizens of Paris. Between 1785 and 1814 all of the bones from the cemeteries and were relocated into the tunnels of the mines. The serpentine tunnels pose a connection with the serpent luring Adam and Eve in the Bible to eat the forbidden fruit; and evil spirit of the devil.  While the visual components contain bones and earth underground. Decomposition of the bodies has already occurred so the stench of the release of chemicals (a smell similar to ammonia) is not present in the catacombs.  However, after the tunnels were first filled with the cadavers, air flow was lacking. So, wells were drilled to the surface to refresh the underground air. At first, smoke rose up through the wells releasing the odorous decomposing gases into the public air. Now these gases are no longer inside the tunnels, but the odor of death still lingers inside the walls through the cold air, ground water, burning fire torch, dirt, soil, stone and bones. The mines themselves are quite cold giving a chill to the bone as one walks through the unknown remnants of lives past in the jumbled mix of inhabitants.</span></div>
<div style="margin-left:0;padding-bottom:10px;"><a href="http://prestonparish.wordpress.com/2010/02/14/paris-day-3-enter-the-catacombs/"><span style="color:#c0c0c0;"><br />
</span></a><a href="http://prestonparish.files.wordpress.com/2010/02/img_0471.jpg"><img class="alignnone" title="l'Ossuaire Municipal" src="http://prestonparish.files.wordpress.com/2010/02/img_0471.jpg?w=100&#038;h=75" alt="" width="100" height="75" /> </a><a href="http://prestonparish.files.wordpress.com/2010/02/img_0522.jpg"><img class="alignnone" title="l'Ossuaire Municipal" src="http://prestonparish.files.wordpress.com/2010/02/img_0522.jpg?w=100&#038;h=75" alt="" width="100" height="75" /> </a><a href="http://exploration.urban.free.fr/carrieres/plaque7.jpg"><img class="alignnone" title="l'Ossuaire Municipal" src="http://exploration.urban.free.fr/carrieres/plaque7.jpg" alt="" width="100" height="75" /></a> <a href="http://exploration.urban.free.fr/carrieres/fontis-catacombes.jpg"><img title="l'Ossuaire Municipal" src="http://exploration.urban.free.fr/carrieres/fontis-catacombes.jpg" alt="" width="100" height="75" /></a> <img class="alignnone" title="l'Ossuaire Municipal" src="http://exploration.urban.free.fr/carrieres/catacombs-map.jpg" alt="" width="100" height="75" /></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://prestonparish.wordpress.com/2010/02/14/paris-day-3-enter-the-catacombs/"></p>
<p>http://prestonparish.wordpress.com/2010/02/14/paris-day-3-enter-the-catacombs/</a></p>
<p><a href="http://magazine.istopover.com/2011/01/13/visit-the-catacombs-of-paris/"></p>
<p>http://magazine.istopover.com/2011/01/13/visit-the-catacombs-of-paris/</a></p>
<p><a href="http://www.carrieres.explographies.com/indexus.htm"></p>
<p>http://www.carrieres.explographies.com/indexus.htm</a></div>
<div style="margin-left:0;padding-bottom:10px;"><span style="color:#000000;">2)PROJECT: <strong><em>Buron Odore del Cristo</em>, Philippe Rahm</strong></span><br />
<span style="color:#808080;">Swiss Architect Philippe Rahm and J.G. Décosterd explore the symbolic and spirituality of odor, <em>Buron Odore del Cristo</em> (<em>The Sweet Odor of Christ</em>) which was created for the exhibition “Dal Paradiso a ofll’Inferno” (“From Heaven to Hell”) in 2004.  In this project space disappears and becomes a spiritual place with no boundaries or walls.  Instead of using light to symbolically represent the divine, Rahm uses air. The place is a bodily exchange with Christ.  An artificial mushroom was hung upside-down attached to the ceiling dropping all the way to the floor releasing these scents into the air for anyone who entered the tomb. For the Catholic Church, its followers take in the Body of Christ through a wafer and the scent associated with the wafer is a stale piece of bread and the Blood of Christ as a cup of wine. <em>Buron Odore del Cristo </em>replaces this association with emanating smells of incense, myrrh and cinnamon; holy odors that are used inside the Church. This approach is to not take the body of Christ into oneself but to go inside Christ and be one with Him; smell him as if He were there. The scents were derived from narrative texts which described the smell of Christ.  With the help of perfumers Christopher Sheldrake and Christine Nagel, the odor of Christ was developed and placed inside of a tomb.</span></div>
<div style="margin-left:0;padding-bottom:40px;"><a href="http://www.bevilacqualamasa.it/english/archivio/2004_San%20Marco_1229/pagina.html"><span style="color:#000000;">http://www.bevilacqualamasa.it/english/archivio/2004_San%20Marco_1229/pagina.html</span></a></div>
<div style="margin-left:0;padding-bottom:20px;"><span style="color:#000000;">3)PROJECT: <strong><em>FlatWorld</em>, ICT</strong></span><br />
<span style="color:#808080;"><em>FlatWorld</em> is a completely digital environment with three-dimensional models humans to interact with. The project began in 2009 and is currently being used as a training environment for soldiers. The participants can walk or run through a space where the walls consist of rear-projection flat panel screens which depict a room interior, views of the outside or of the building’s exterior. Adding props to the scene adds to the reality of the environment blending into the space and the projected panel walls. The panels simulate a multitude of geographic locations such as a city in the Middle East. Sound effects are synchronized with the rendered graphics as well as lighting to represent explosions or a lightning storm. The scene further enhanced to create a more realistic environment through which smells including burned charcoal are pumped into the room making the trainee feel fully immersed into the scene. The addition of smell helps the soldiers to remember their training when they enter the war zone. In this digital training environment, smells of death, fire, oil, gun powder, and so forth add to the realism of the scenario preparing them for future combat.</span></div>
<div style="margin-left:0;padding-bottom:0;"><a href="http://planetjeff.net/ut/CaveUT_Images/FlatworldProjectCaveUT_BIG.gif"><img class="alignnone" title="FlatWorld" src="http://planetjeff.net/ut/CaveUT_Images/FlatworldProjectCaveUT_BIG.gif" alt="" width="100" height="75" /></a> <a href="http://ict.usc.edu/images/uploads/projects/flatworld_lg1.jpg"><img class="alignnone" title="FlatWorld" src="http://ict.usc.edu/images/uploads/projects/flatworld_lg1.jpg" alt="" width="100" height="75" /></a> <a href="http://ict.usc.edu/images/uploads/projects/flatworld_lg2.jpg"><img class="alignnone" title="FlatWorld" src="http://ict.usc.edu/images/uploads/projects/flatworld_lg2.jpg" alt="" width="100" height="75" /></a> <a href="http://media.defenseindustrydaily.com/images/MIL_US_Army_ICT_FlatWorld_Simulation_lg.jpg"><img class="alignnone" title="FlatWorld" src="http://media.defenseindustrydaily.com/images/MIL_US_Army_ICT_FlatWorld_Simulation_lg.jpg" alt="" width="100" height="75" /></a> <a href="http://jodipfister.files.wordpress.com/2011/02/room2big.jpg?w=300"><img class="alignnone" title="FlatWorld" src="http://jodipfister.files.wordpress.com/2011/02/room2big.jpg?w=100&#038;h=75" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://ict.usc.edu/projects/flatworld/"><br />
</a><a href="http://ict.usc.edu/projects/flatworld/"></p>
<p>http://ict.usc.edu/projects/flatworld/</a></p>
<p><a href="http://www.ndep.us/FlatWorld"></p>
<p>http://www.ndep.us/FlatWorld</a></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Perfumes</strong>:</span><br />
<span style="color:#000000;"> 3 parts (notes)</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">top-notice first &amp; first to disappear</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">top: citrus, fruit, spice</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">middle (heart)</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">middle: floral</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">bottom (bases-most persistent)</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">base: woody, musky, amber</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">question: perfumery</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">what are the combinations and what are their associated concentrations?</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">construction of a perfume</span><br />
<span style="color:#000000;"> components that structure the smell</span></div>
<div style="margin-left:60px;padding-bottom:0;"><span style="color:#000000;">ornament, details</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">scent formula for architecture</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">perfume corrected (corrects) ugliness</span></div>
<div style="margin-left:0;padding-bottom:20px;"><span style="color:#000000;">1)PROJECT: <em><strong>Léviathan Thot, </strong></em><strong>Ernesto Neto</strong></span><br />
<span style="color:#808080;">As part of the Paris Autumn Festival, Neto displayed <em>Léviathan Thot</em> in the Panthéon, Paris<span style="font-family:&quot;"> </span> in 2006. Neto used tulle and polystyrene suspended from the ceiling to create a new relationship between space and the body. The translucent skin allowed for visitors to see the scents establishing a tension wanting to touch and play with the hanging floral stigma releasing more scents into the air. Through the passage of time, the scent dissipated into the space and would visitors would need to interact with it again (spray more perfume into the room).Like perfume which encompasses the space all around, <em>Léviathan Thot </em>provided a new spatialized scent formula which worked with gravity to place smells directly in front of the nose like a top note. The aromatic combination included black pepper, powdered cloves, turmeric, ginger and sand representing a flower with unique colors and perfume. The chandelier was intended to be touched, seen and smelled. Residue of the different spices and herbs left circles on the floor as a remnant of the installation (like the base of the perfume).</span></div>
<div style="margin-left:0;padding-bottom:20px;"><span style="color:#000000;"><a href="http://jodipfister.files.wordpress.com/2011/02/ernesto_netoeobicho.jpg?w=300"><img class="alignnone" title="Léviathan Thot" src="http://jodipfister.files.wordpress.com/2011/02/ernesto_netoeobicho.jpg?w=100&#038;h=75" alt="" width="100" height="75" /></a> <a href="http://jodipfister.files.wordpress.com/2011/02/ernesto_neto_01.jpg?w=300"><img class="alignnone" title="Léviathan Thot" src="http://jodipfister.files.wordpress.com/2011/02/ernesto_neto_01.jpg?w=100&#038;h=75" alt="" width="100" height="75" /> </a><a href="http://farm1.static.flickr.com/112/301112868_17df8adeae_z.jpg?zz=1"><img class="alignnone" title="Léviathan Thot" src="http://farm1.static.flickr.com/112/301112868_17df8adeae_z.jpg?zz=1" alt="" width="100" height="75" /> </a><a href="http://miraquecosa.files.wordpress.com/2009/05/ernesto_neto_macro_mentre_niente_accade_while_nothing_happens_2008_lycra_legno_spezie_sabbia_foto_giorgio_benni_copyright_ernesto_neto_gallery.jpg"><img class="alignnone" title="Léviathan Thot" src="http://miraquecosa.files.wordpress.com/2009/05/ernesto_neto_macro_mentre_niente_accade_while_nothing_happens_2008_lycra_legno_spezie_sabbia_foto_giorgio_benni_copyright_ernesto_neto_gallery.jpg?w=100&#038;h=75" alt="" width="100" height="75" /> </a><a href="http://rion.nu/v5/post/092506/CRW_0341med.jpg"><img class="alignnone" title="Léviathan Thot" src="http://rion.nu/v5/post/092506/CRW_0341med.jpg" alt="" width="100" height="75" /></a><br />
</span></div>
<div style="margin-left:0;padding-bottom:40px;"><a href="http://architecture.org.nz/2009/09/22/video-of-the-week-xxxii-site-specific-mini-series-iii/#more-2069"><span style="color:#000000;"><br />
</span></a><a href="http://architecture.org.nz/2009/09/22/video-of-the-week-xxxii-site-specific-mini-series-iii/#more-2069"><span style="color:#000000;">http://architecture.org.nz/2009/09/22/video-of-the-week-xxxii-site-specific-mini-series-iii/#more-2069</span></a><br />
<span style="color:#000000;"><a href="http://www.festival-automne.com/leviathan-thot-spectacle79.html"><span style="color:#000000;"><br />
</span></a><a href="http://www.festival-automne.com/leviathan-thot-spectacle79.html"><span style="color:#000000;">http://www.festival-automne.com/leviathan-thot-spectacle79.html</span></a></span></div>
<div style="margin-left:0;padding-bottom:20px;"><span style="color:#000000;">2)PROJECT: <strong><em>The Smell of Fear</em>, Sissel Tolaas</strong><strong><br />
</strong></span><span style="color:#808080;">In 2007, Tolaas collected sweat from nine men who were placed in a fear inducing situation by a device placed under their armpits. The sweat was placed into a spray bottle and each spray bottle labeled 1 through 9. The bottles were displayed on a store shelf just like perfume. Bottle 1 was described to have the scent of bug spray, bottle 2 to have the scent of a skunk and syrup bouquet, bottle 3 to have the scent of beer and cologne, bottle 4 to have the scent of a bar of soap while bottle 7 had the scent of a  musky body odor and bottle 8 the most pungent of the group. As perfume was developed to mask personal odors, the <em>Smell of Fear</em> collected these personal body odors and made them into a type of perfume. The scents created deodorant type notes that were pungent enough to make one gag. The odors were also sprayed around the space, on pieces of paper, painted into the walls (like a scratch and sniff).</span></div>
<div style="margin-left:0;padding-bottom:20px;"><span style="color:#000000;"><a href="http://www.mediartchina.org/files/artistonly/%E5%9B%BE%E7%89%87%203.png"><img class="alignnone" title="The Smell of Fear" src="http://www.mediartchina.org/files/artistonly/%E5%9B%BE%E7%89%87%203.png" alt="" width="100" height="75" /> </a><a href="http://jodipfister.files.wordpress.com/2011/02/sisseltolaas.jpg?w=300"><img class="alignnone" title="The Smell of Fear" src="http://jodipfister.files.wordpress.com/2011/02/sisseltolaas.jpg?w=100&#038;h=75" alt="" width="100" height="75" /> </a><a href="http://www.olfactorialist.com/wp-content/uploads/2010/09/st_01.jpg"><img class="alignnone" title="The Smell of Fear" src="http://www.olfactorialist.com/wp-content/uploads/2010/09/st_01.jpg" alt="" width="100" height="75" /> </a><a href="http://blog.pittimmagine.com/Blog/FRAGRANZE_8_SISSEL_TOLAAS-6924.jpg"><img class="alignnone" title="The Smell of Fear" src="http://blog.pittimmagine.com/Blog/FRAGRANZE_8_SISSEL_TOLAAS-6924.jpg" alt="" width="100" height="75" /> </a><a href="http://scienceblogs.com/oscillator/armpits.jpg"><img class="alignnone" title="The Smell of Fear" src="http://scienceblogs.com/oscillator/armpits.jpg" alt="" width="100" height="75" /></a><br />
</span></div>
<div style="margin-left:0;padding-bottom:40px;"><a href="http://www.pitch.com/2007-02-01/culture/smells-like/"><span style="color:#000000;"><br />
</span></a><a href="http://www.pitch.com/2007-02-01/culture/smells-like/"><span style="color:#000000;">http://www.pitch.com/2007-02-01/culture/smells-like/</span></a><br />
<a href="http://www.wired.com/wired/archive/15.05/posts_odor.html"><span style="color:#000000;"><br />
</span></a><a href="http://www.wired.com/wired/archive/15.05/posts_odor.html"><span style="color:#000000;">http://www.wired.com/wired/archive/15.05/posts_odor.html</span></a></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Food</strong>:</span><br />
<span style="color:#000000;"> quality (state of decomposition)</span></div>
<div style="margin-left:20px;padding-bottom:30px;"><span style="color:#000000;">bacteria (aging, fermentation)</span><br />
<span style="color:#000000;"> preserve with spices, honey, vinegar<br />
</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">1)PROJECT: <strong><em>Made In Italy</em>, Gaetano Pesce</strong></span><br />
<span style="color:#808080;"> The smell of food is an incredible source of olfaction. It has the ability to indicate if something is fresh or spoiled and rotten. Some foods need bacteria to ferment and age, while bacteria in other foods cause it to be inedible. Gaetano Pesce uses perishable foods in his exhibits such as <em>Made in Italy</em>. This piece also shows the passage of time and its relationship to smells and decomposition. Typical foods and drinks were displayed to the public and left to spoil. Items that needed to be refrigerated were exposed to the air of the space. Other foods that should have been sealed and contained were left open. This provided the visitors with a unique olfactory experience of time from the day of original exhibition opening when all items were fresh to the closing when the food was aged.</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">2)PROJECT: </span><span class="accent"><span style="color:#000000;"><strong><em>MCDXCII</em>, Sita Kuratomi Bhaumik</strong></span><br />
<span style="color:#808080;">In <em>A Sensory Feast </em>2011, <em>MCDXCII</em> by </span></span><span class="accent" style="color:#808080;">Sita Kuratomi Bhaumik uses the Asian spice curry mixed with the sweetness of sugar to exhibit a golden toned Asian arrangement. The two food choices are not foods that will decompose but rather preserve. The Orient used spices and flavorings during the Baroque period keeping food from going bad. Bhaumik uses this concept of preservation to create a picture of a floral arrangement of spices that is reminiscent of Asian culture. Accenting the table runner are gold chocolate candy wrappers, a sweet food that could melt or decay over time is removed from the display. This leaves the trace of wrappers, the idea that it did exist at one point in time as one thing is now another. These are wrapped over found items in the work of objects in Asian culture that have evolved over time. </span></div>
<div style="margin-left:0;padding-bottom:20px;"><a href="http://opp-m.com/1/1/9/9119/thumbnails/s9krc6zM.jpg"><img class="alignnone" title="MCDXCII" src="http://opp-m.com/1/1/9/9119/thumbnails/s9krc6zM.jpg" alt="" width="100" height="75" /></a> <a href="http://opp-m.com/1/1/9/9119/thumbnails/IXuTh5mb.jpg"><img class="alignnone" title="MCDXCII" src="http://opp-m.com/1/1/9/9119/thumbnails/IXuTh5mb.jpg" alt="" width="100" height="75" /></a> <a href="http://opp-m.com/1/1/9/9119/thumbnails/V8wxSV6V.jpg"><img class="alignnone" title="MCDXCII" src="http://opp-m.com/1/1/9/9119/thumbnails/V8wxSV6V.jpg" alt="" width="100" height="75" /></a> <a href="http://opp-m.com/1/1/9/9119/thumbnails/pgT3CwVTf8KVXNWI.jpg"><img class="alignnone" title="MCDXCII" src="http://opp-m.com/1/1/9/9119/thumbnails/pgT3CwVTf8KVXNWI.jpg" alt="" width="100" height="75" /></a> <a href="http://opp-m.com/1/1/9/9119/thumbnails/CdWendg_KpquZJ0F.jpg"><img class="alignnone" title="MCDXCII" src="http://opp-m.com/1/1/9/9119/thumbnails/CdWendg_KpquZJ0F.jpg" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.somarts.org/2011/01/22/a-sensory-feast-art-food-and-asian-american-identity/"><br />
<span style="color:#000000;">http://www.somarts.org/2011/01/22/a-sensory-feast-art-food-and-asian-american-identity/</span></a><br />
<a href="http://sitabhaumik.com/section/160890_MCDXCII.html"><br />
<span style="color:#000000;"> http://sitabhaumik.com/section/160890_MCDXCII.html</span></a></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"> 3)PROJECT: <em><strong>Eating the City</strong></em><strong>, Song Dong<br />
</strong><span style="color:#808080;"><em>Eating the City</em> is a series of installations by Song Dong beginning in 2006. He recreates a mini-replica of the city in wafers, cookies, biscuits and candy. Viewers are presented with a sweet olfactory experience of the city rather than the usual urban stench of steam, garbage, and other urban pollution odors. Because food is an edible product, Dong explores it the temporality of a city through a decomposing, non-permanent material. The public is allowed to nibble the exhibit as their human footprint changes the daily footprint of the modern city landscape.</span></span></div>
<div style="margin-left:0;padding-bottom:20px;"><a href="http://anygivenname.org/load/2007/10/5_china_song_dong.jpg"><img class="alignnone" title="Eat the City" src="http://anygivenname.org/load/2007/10/5_china_song_dong.jpg" alt="" width="100" height="75" /></a> <a href="http://www.frogview.com/uploadimages401/49ba46f3ebe619.88152736frogview-gallery.jpg"><img class="alignnone" title="Eat the City" src="http://www.frogview.com/uploadimages401/49ba46f3ebe619.88152736frogview-gallery.jpg" alt="" width="100" height="75" /></a> <a href="http://chinadigitaltimes.net/wp-content/uploads/mt-old/Song-Dong-city.jpg"><img class="alignnone" title="Eat the City" src="http://chinadigitaltimes.net/wp-content/uploads/mt-old/Song-Dong-city.jpg" alt="" width="100" height="75" /></a> <a href="http://cache3.asset-cache.net/xc/56907876.jpg?v=1&amp;c=IWSAsset&amp;k=2&amp;d=77BFBA49EF878921F7C3FC3F69D929FD33747DD5F8305F6E154A4EA23898E93A2A6D85221C598F0CB01E70F2B3269972"><img class="alignnone" title="Eat the City" src="http://cache3.asset-cache.net/xc/56907876.jpg?v=1&amp;c=IWSAsset&amp;k=2&amp;d=77BFBA49EF878921F7C3FC3F69D929FD33747DD5F8305F6E154A4EA23898E93A2A6D85221C598F0CB01E70F2B3269972" alt="" width="100" height="75" /></a> <a href="http://www.odditycentral.com/wp-content/uploads/2010/12/Eating-the-City-Shanghai2.jpg"><img class="alignnone" title="Eat the City" src="http://farm1.static.flickr.com/41/102938851_0ab62b2537_z.jpg?zz=1" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.treehugger.com/files/2006/02/eating_the_city.php"><br />
<span style="color:#000000;">http://www.treehugger.com/files/2006/02/eating_the_city.php</span></a><br />
<a href="http://www.whatsonsanya.com/tag-Eat%20the%20City.html"><br />
<span style="color:#000000;"> http://www.whatsonsanya.com/tag-Eat%20the%20City.html</span></a></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Gardens:</strong></span><br />
<span style="color:#000000;"> alhambra (metaphor) &#8211; interpretation of celestial garden</span><br />
<span style="color:#000000;"> arabic culture &#8211; rose water &amp; secret gardens</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">plants, trees, flowers</span><br />
<span style="color:#000000;"> scent sources / seasonal</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">scent garden vs. zen garden</span></div>
<div style="margin-left:20px;padding-bottom:30px;"><span style="color:#000000;">lavender &#8211; clean, home, calm, soothe<br />
</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">1)PROJECT:</span> <span style="color:#000000;"><strong><em>Onde Onirique</em>, Yukio Nakagawa<br />
</strong><span style="color:#808080;">In opposition to the tradition blooming olfactory experience of many floral scents in the garden, Nakagawa looks at the meditative state of the zen garden. The rocks, stones and soil of a typical zen garden replace plant life and are found in <em>Onde Onitique </em>which was installed in 2003. The garden was sustained for three months inside the Hermes Space in Tokyo. The sand was replaced with lavender blossoms Nakagawa dyed cobalt blue. The flower arrangement of the petals and path visitors could walk was created by them; moved around, brushed aside or thrown into the air. The exhibition space of glass blocks and a row of columns was offset by w</span></span><span style="color:#808080;">hite gauze suspended from the ceiling making the space look like a beach. With all of the senses working together, one felt calm and relaxed inside the space. </span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"><a href="http://www.designboom.com/contemporary/ondes/1.jpg"><img class="alignnone" title="Onde Onirique" src="http://www.designboom.com/contemporary/ondes/1.jpg" alt="" width="100" height="75" /> </a><a href="http://www.designboom.com/contemporary/ondes/6.jpg"><img class="alignnone" title="Onde Onirique" src="http://www.designboom.com/contemporary/ondes/6.jpg" alt="" width="100" height="75" /> </a><a href="http://www.designboom.com/contemporary/ondes/7.jpg"><img class="alignnone" title="Onde Onirique" src="http://www.designboom.com/contemporary/ondes/7.jpg" alt="" width="100" height="75" /> </a><a href="http://www.designboom.com/contemporary/ondes/10.jpg"><img class="alignnone" title="Onde Onirique" src="http://www.designboom.com/contemporary/ondes/10.jpg" alt="" width="100" height="75" /> </a><a href="http://aromastrategist.files.wordpress.com/2009/12/3.jpg?w=300&amp;h=234"><img class="alignnone" title="Onde Onirique" src="http://aromastrategist.files.wordpress.com/2009/12/3.jpg?w=100&#038;h=234&#038;h=75" alt="" width="100" height="75" /></a><br />
</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"><a href="http://aromamuse.com/2009/12/01/aromatic-art-onde-onirique/">http://aromamuse.com/2009/12/01/aromatic-art-onde-onirique/<br />
</a><br />
<a href="http://www.designboom.com/contemporary/ondesoniriques.html">http://www.designboom.com/contemporary/ondesoniriques.html</a><br />
</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"> 2)PROJECT: <em><strong>Arabic and Islamic Gardens</strong></em></span><br />
<span style="color:#808080;">The design of garden space was primarily guided by religious beliefs. The Arabic culture is full of these secret gardens enclosed in walls where paradise was inside. A symmetrical formal four square layout features water and shade for the hot climate. This represented harmony and beauty. A central pool or fountain is found in the center of the grid in which water channels run out from separating the garden squares. Planted in the garden are fruit trees which symbolize life, roses, other fragrant flowers and vegetables. It was very import to plant trees that would provide shade and coolness accompanied by the water feature. The rose petals also serve another purpose in the religion. Rose-water or petals adorn the path of an important person cleansing the way with a sweet smell of divinity and power.</span></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.hotels-spain-accommodation.com/andalucia/granada/generalife/generalife-muslim-gardens.jpg"><img class="alignnone" title="Arabic Garden" src="http://www.hotels-spain-accommodation.com/andalucia/granada/generalife/generalife-muslim-gardens.jpg" alt="" width="100" height="75" /></a> <a href="http://karim74.files.wordpress.com/2009/06/paris-mosque-in-france-garden.jpg"><img class="alignnone" title="Arabic Gardens" src="http://karim74.files.wordpress.com/2009/06/paris-mosque-in-france-garden.jpg?w=100&#038;h=75" alt="" width="100" height="75" /></a> <a href="http://farm3.static.flickr.com/2219/2342986634_fbe8991630.jpg"><img class="alignnone" title="Arabic Gardens" src="http://farm3.static.flickr.com/2219/2342986634_fbe8991630.jpg" alt="" width="100" height="75" /></a> <a href="http://www.faculty.de.gcsu.edu/~rviau/ids/Artworks/islamicgardens/p9.jpg"><img class="alignnone" title="Arabic Gardens" src="http://www.faculty.de.gcsu.edu/~rviau/ids/Artworks/islamicgardens/p9.jpg" alt="" width="100" height="75" /></a> <a href="http://images.travelpod.com/users/jawad/aotearoa.1056312000.dscn6719.jpg"><img class="alignnone" title="Arabic Gardens" src="http://images.travelpod.com/users/jawad/aotearoa.1056312000.dscn6719.jpg" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.thefragrantgarden.com/index.php?option=com_content&amp;view=article&amp;id=130&amp;Itemid=91"><span style="color:#000000;"><br />
</span></a><a href="http://www.thefragrantgarden.com/index.php?option=com_content&amp;view=article&amp;id=130&amp;Itemid=91"><span style="color:#000000;">http://www.thefragrantgarden.com/index.php?option=com_content&amp;view=article&amp;id=130&amp;Itemid=91</span></a><br />
<a href="http://www.suite101.com/article.cfm/arabic_islamic_architecture/21567"></p>
<p>http://www.suite101.com/article.cfm/arabic_islamic_architecture/21567</a></p>
<p><a href="http://www.wikihow.com/Create-a-Garden-with-Persian,-Arabic-or-Islamic-Influences"></p>
<p>http://www.wikihow.com/Create-a-Garden-with-Persian,-Arabic-or-Islamic-Influences</a></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"> 3)PROJECT: <strong><em>The Mediated Motion</em>, Olafur Eliasson &amp; </strong><strong>Günther Vogt<br />
</strong><span style="color:#808080;">Eliasson translates the meditative quality of a garden and installs it in 2001 with the help of landscape architect Günther Vogt into the Kunsthaus Bregenz building designed by Peter Zumthor. The sterile architecture was released through the introduction and  combination of uneven earth, fogginess, and surrounding aromas. The glass and cement architecture of the space reached new levels of insight encompassed inperfumes, fog, water, plants and soil. Sight, smells and textures filled the air with earth, fungus and duckweed thus providing a sensory experience bringing to light time and space by memory and surroundings.  All four floors were filled with wooden staircases and footbridges led one through the space. There was a floor of mushrooms, a watery plane covered with duckweed which was accessed by a wooden deck, a platform of sloping packed earth and a rope bridge which hung across a foggy room. </span></span></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.kunsthaus-bregenz.at/eliasson/Wasser.jpg"><img class="alignnone" title="mediated motion  " src="http://www.kunsthaus-bregenz.at/eliasson/Wasser.jpg" alt="" width="100" height="75" /></a> <a href="http://www.kunsthaus-bregenz.at/eliasson/Haengebruecke.jpg"><img class="alignnone" title="mediated motion  " src="http://www.kunsthaus-bregenz.at/eliasson/Haengebruecke.jpg" alt="" width="100" height="75" /> </a><a href="http://www.kunsthaus-bregenz.at/eliasson/Lehmerde.jpg"><img class="alignnone" title="mediated motion  " src="http://www.kunsthaus-bregenz.at/eliasson/Lehmerde.jpg" alt="" width="100" height="75" /> </a><a href="http://kaganof.com/kagablog/wp-content/uploads/2008/12/12872w_01installation10g.jpg"><img class="alignnone" title="mediated motion  " src="http://kaganof.com/kagablog/wp-content/uploads/2008/12/12872w_01installation10g.jpg" alt="" width="100" height="75" /> </a><a href="http://www.olafureliasson.net/works/w_bilder/Themediatedmotion_03.jpg"><img class="alignnone" title="mediated motion  " src="http://www.olafureliasson.net/works/w_bilder/Themediatedmotion_03.jpg" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.kunsthaus-bregenz.at/ehtml/aus_elias.htm"><span style="color:#000000;">http://www.kunsthaus-bregenz.at/ehtml/aus_elias.htm</span></a></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Pollution / Urban</strong>:</span><br />
<span style="color:#000000;"> pollution &#8211; air quality</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">disposing of wastes</span><br />
<span style="color:#000000;"> air pollution</span><br />
<span style="color:#000000;"> car exhaust</span><br />
<span style="color:#000000;"> VOCs &#8211; lethal &amp; pungent</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">materials that absorb odor &#8211; sponges</span><br />
<span style="color:#000000;"> dust &#8211; odor of time passed</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#339966;"><br />
<span style="color:#000000;"> 1)PROJECT: <strong><em>Concrete Lattices</em>, Jodi Pfister</strong></span></span><br />
<span style="color:#808080;">Route I-190 state highway in Erie and Niagara counties provides motorists with an interesting drive. It is visually diverse ranging from the city skyline of downtown Buffalo, the waterfront along the Niagara River, industrial areas, landfills, gas storage tanks, ecology reserves, gas storage tanks and commercial districts. Each of these views provides different accompanying smells containing pollutants in the air. Concrete Lattices analyzes the polluted air masses using wind patterns through the area for all months of the year.  Four sites were chosen along the I-190 in between these areas to reduce the amount of pollution through the use of photosynthesis and olfaction. The sites are set up on a lattice concrete net system (which act as a sponge absorbing nearby pollutants in the air) taking advantage of the drag forces caused by the passing vehicular traffic and wind flow through the use of wind pollinating plants.  The seeds planted inside of the lattices would be able to spread throughout the area and continue growth of the system.</span><a href="http://www.acsu.buffalo.edu/~pfister2/cl_site3render2_sm.jpg"></a><a href="http://www.acsu.buffalo.edu/~pfister2/cl_site3render1_sm.jpg"></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.acsu.buffalo.edu/~pfister2/cl_site3render2_sm.jpg"></a><a href="http://www.acsu.buffalo.edu/~pfister2/cl_site3render1_sm.jpg"><img class="alignnone" title="Concrete Lattices" src="http://www.acsu.buffalo.edu/~pfister2/cl_site3render1_sm.jpg" alt="" width="100" height="75" /></a> <img class="alignnone" title="Concrete Lattices" src="http://www.acsu.buffalo.edu/~pfister2/cl_site3render2_sm.jpg" alt="" width="100" height="75" /> <a href="http://www.acsu.buffalo.edu/~pfister2/cl_site3render5_sm.jpg"><img class="alignnone" title="Concrete Lattices" src="http://www.acsu.buffalo.edu/~pfister2/cl_site3render5_sm.jpg" alt="" width="100" height="75" /></a> <a href="http://www.acsu.buffalo.edu/~pfister2/Mums(3).JPG"><img class="alignnone" title="Concrete Lattices" src="http://www.acsu.buffalo.edu/~pfister2/Mums(3).JPG" alt="" width="100" height="75" /></a> <a href="http://www.acsu.buffalo.edu/~pfister2/432Vermont(2).JPG"><img class="alignnone" title="Concrete Lattices" src="http://www.acsu.buffalo.edu/~pfister2/432Vermont(2).JPG" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.acsu.buffalo.edu/~pfister2/projects.html"><span style="color:#000000;">http://www.acsu.buffalo.edu/~pfister2/projects.html</span></a></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">2)PROJECT:  <strong><em>The Whiff of Uncertainty</em>, Esther Wu<br />
</strong><span style="color:#808080;">Esther Wu plotted the spread of the smell of baking donuts from <em>Dunkin Donuts</em> for a series of 11 days. During each day, one single time was recorded with the spread of the smells as detected by her nose in the surrounding location on her walk home from school. She also recorded the wind patterns, dew point, temperature and time all affecting the results of the olfactory spread looking for a pattern of scent. The diagrams show that on colder days, the scent lingered closer to <em>Dunkin Donuts</em> but became harder to detect as the temperatures dropped. This is shown on one of the days that had the coldest temperature and the lowest dew point. The warmer weather allowed for more evaporation of the scent into the atmosphere so the spread of the baking odors followed the wind patterns leaving the vicinity of where Wu walked past. The diagrams show the building as the center point of the odor canopy. From there, the canopy radiates out depending on the comparison factor (wind, dew point and temperature). Each circle shows the spread range in distance the nose detected and is color coded according to the provided scale. The conclusions of the project did not find any scent pattern only the result that the experiment needed more sniffers for over a year&#8217;s time. </span></span> <strong> </strong></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://farm6.static.flickr.com/5172/5423595586_37db0b3d77.jpg"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5172/5423595586_37db0b3d77.jpg" alt="" width="100" height="75" /></a> <a href="http://farm6.static.flickr.com/5053/5422991963_3f82f9d925.jpg"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5053/5422991963_3f82f9d925.jpg" alt="" width="100" height="75" /> </a><a href="http://farm6.static.flickr.com/5251/5422992017_f373220974.jpg"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5251/5422992017_f373220974.jpg" alt="" width="100" height="75" /> </a><a href="http://farm6.static.flickr.com/5180/5422992101_41f20aab3e.jpg"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5180/5422992101_41f20aab3e.jpg" alt="" width="100" height="75" /> </a><a href="http://farm6.static.flickr.com/5014/5422992293_559424f197.jpg"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5014/5422992293_559424f197.jpg" alt="" width="100" height="75" /></a></div>
<div style="margin-left:0;padding-bottom:30px;"><a href="http://www.estherwu.com/"><span style="color:#000000;">http://www.estherwu.com/</span></a></div>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span><br />
<span style="color:#000000;"> </span></p>
<div style="margin-left:0;padding-top:30px;"><span style="color:#000000;"><strong>About Odor &amp; Its Relationships</strong>:</span><br />
<span style="color:#000000;"> smeller&#8217;s judgment</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">(taste, quality, memory)</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">odor duration (time)</span><br />
<span style="color:#000000;"> concentration (strength)</span><br />
<span style="color:#000000;"> breathable (cannot avoid scents)</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">have scent &#8211; invades space</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">odors &#8211; proximity, social relations, distance, habitation</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">nose height &#8211; level of scent</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">highest concentration of odor just above ground level dissipate higher up in air</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">perception of height</span><br />
<span style="color:#000000;"> odor mostly moves in a horizontal direction or attached to objects</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">methods of delivering scents</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">burning &#8211; rise upwards &amp; distribute</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">placing pastel oils &#8211; put on beads, hands, statues, altars</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">evaporation &#8211; myrrh, spices</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">light, heat, and humidity</span><br />
<span style="color:#000000;"> break down scents (evaporate it)</span></div>
<div style="margin-left:60px;padding-bottom:0;"><span style="color:#000000;">shield scents from ultraviolet light &amp; evaporation to preserve)</span></div>
<div style="margin-left:0;padding-bottom:10px;"><span style="color:#000000;">smell &#8211; idea of immortality</span><br />
<span style="color:#000000;"> uses: marketing, communication, art</span><br />
<span style="color:#000000;"> first synthesized substance was vanilla by <strong>Wilhelm Haarmann</strong></span></div>
<div style="margin-left:0;padding-bottom:0;"><em><span style="color:#000000;">natural odors:</span></em></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">climate, region, orientation, pressure, humidity, air temperature</span></div>
<div style="margin-left:0;padding-bottom:0;"><em><span style="color:#000000;">iconic odors:</span></em></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">materials in space</span></div>
<div style="margin-left:0;padding-bottom:0;"><em><span style="color:#000000;">artificial odors:</span></em></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">forced introduction into space</span></div>
<div style="margin-left:0;padding-bottom:0;"><em><span style="color:#000000;">human odors:</span></em></div>
<div style="margin-left:20px;padding-bottom:30px;"><span style="color:#000000;">clothing, people, what doing</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Early Architecture</strong>:</span><br />
<span style="color:#000000;"> close to the ground</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">bodies, feces, decomposition</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">industrial age &#8211; elevated architecture</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">hygiene / cleanliness</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">smooth surfaces &#8211; cannot collect garbage</span><br />
<span style="color:#000000;"> allow for organisms to run off the surface</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">applying scents to a space became hygienic rather than for desire or seduction</span></div>
<div style="margin-left:40px;padding-bottom:0;">
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">deodorizing spaces</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">purifying the air</span><br />
<span style="color:#000000;"> ventilation</span><br />
<span style="color:#000000;"> air filtering</span></div>
</div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">japanese bathrooms</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">apart from main building in grove of leaves and moss</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">gaze out into garden</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">churches</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">incense smell makes you feel humble (manipulation)</span><br />
<span style="color:#000000;"> lighting oil &amp; wax / candles eliminated with electricity</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">identity of a place is determined by its odors</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">sandalwood &#8211; material scented to resist worms &amp; mold</span><br />
<span style="color:#000000;"> smoke &#8211; cigarettes, cigars, pipes tobacco factories</span><br />
<span style="color:#000000;"> tea &amp; coffee &#8211; release with heat &amp; steam</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">tea &#8211; meditation coffee-healing</span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;">physiological architecture &#8211; remove the boundaries / walls of structure</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">a place never has the same odors during the day as it does night</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">activities change, temperature</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">scent &#8211; nearness / intimacy / physical</span></div>
<div style="margin-left:40px;padding-bottom:0;"><span style="color:#000000;">erotic sense</span><br />
<span style="color:#000000;"> position body is space in relation to a smell</span></div>
<div style="margin-left:20px;padding-bottom:0;"><span style="color:#000000;">odor carries the mind to a place different from the one currently in</span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;">‘vaporizer&#8217; emit scent into air</span><br />
<span style="color:#000000;"> ‘olfactometers’ &#8211; emit activated carbon</span></div>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span><br />
<span style="color:#000000;"> </span></p>
<div style="margin-left:0;padding-top:30px;padding-bottom:30px;"><span style="color:#000000;"><strong>Notes:<br />
Barbara, Anna and Anthony Perliss. “<em>Invisible Architecture: Experiencing Places through the Sense of Smell</em>.”  Skira Editore S.p.A. Pallazzo Casati Stampa, Milano, Italy: 2006. Print.</strong> </span></div>
<div style="margin-left:0;padding-bottom:30px;"><span style="color:#000000;"><strong>Scent References:</strong></span><br />
<span style="color:#000000;"> <strong> Roland Barthes &#8211; </strong>feces is the most nauseating of olfactory experiences</span><br />
<span style="color:#000000;"> <strong>Maurice Roucel </strong>- perfumer (scented wallpaper (lasts for years &#8211; to lose smell, remove papers)<strong><br />
</strong></span></div>
<div style="margin-left:0;padding-bottom:0;"><span style="color:#000000;"><strong>Precedence:<br />
PROJECT: “<em>Made In Italy</em>” by: Gaetano Pesce<br />
</strong>food &amp; drinks decomposing over time<strong><br />
PROJECT: “<em>Buron Odore del Cristo</em>” by: Philippe Rahm</strong> </span><br />
<span style="color:#000000;"> church &#8211; open a tomb and feel the odor of Christ as described in different texts</span><br />
<span style="color:#000000;"> upside down mushroom emanating incense, myrrh, &amp; cinnamon (holy odors to soothe, beatify, heal)</span><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Paradise Now</em>” by: Philippe Rahm</strong></span><br />
<span style="color:#000000;"> odor is physical limits of the earthly garden (musk, aloe, milk, honey, wine, incense)</span><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Inside  Outside</em>” by: Petra Blaisse</strong></span><br />
<span style="color:#000000;"> gardens</span><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Library of Trees</em>” by: </strong><strong>Petra Blaisse</strong></span><br />
<span style="color:#000000;"> gardens</span><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Onde Onirique</em>” or “<em>Oneiric Wave</em>” by: Yukio Nakagawa</strong></span><br />
<span style="color:#000000;"> gardens</span><br />
<a href="http://aromamuse.com/2009/12/01/aromatic-art-onde-onirique/"><span style="color:#000000;">http://aromamuse.com/2009/12/01/aromatic-art-onde-onirique/</span></a><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Tenku Sange</em>” or “<em>Paradise</em>” by: Yukio Nakagawa</strong></span><br />
<span style="color:#000000;"> gardens</span><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>Hormonorium Room</em>”, “<em>Melatonin Room</em>”, “<em>Omnisports Room</em>” by: Philippe Rahm</strong> Architectural room play with scents</span><br />
<span style="color:#000000;"> hormones, melatonin and sports</span><br />
<a href="http://www.philipperahm.com/data/projects/hormonorium/index.html"><span style="color:#000000;">http://www.philipperahm.com/data/projects/hormonorium/index.html</span></a><br />
<span style="color:#000000;"> <strong>PROJECT: “<em>La Camera Linda</em>” or &#8220;<em>The Clean Room</em>&#8221; 1986 by: Clino Trini Castelli &amp; Marek Piotrowski</strong><br />
filtered technological room for the noseless man<strong><br />
PROJECT: “Casa di Bahia” or “Bahia House” by: Gaetano Pesce</strong><br />
seven smell pavilions<br />
&#8216;<em>The Scent of Materials</em>&#8216;<br />
</span><a href="http://www.dailytonic.com/bahia-house-in-brazil-by-gaetano-pesce/"><span style="color:#000000;">http://www.dailytonic.com/bahia-house-in-brazil-by-gaetano-pesce/</span></a><br />
<span style="color:#000000;"> <strong> PROJECT: “<em>The Mediated Motion</em>” 2001 by: Olafur Eliasson &amp; </strong><strong>Günther Vogt</strong></span><br />
<span style="color:#000000;"> architecture of perfumes, fog, water, plants, soil<br />
</span><a href="http://www.kunsthaus-bregenz.at/ehtml/aus_elias.htm"><span style="color:#000000;">http://www.kunsthaus-bregenz.at/ehtml/aus_elias.ht</span></a></div>
<div id="_mcePaste" class="mcePaste" style="position:absolute;left:-10000px;top:1140px;width:1px;height:1px;overflow:hidden;">http://planetjeff.net/ut/CaveUT_Images/FlatworldProjectCaveUT_BIG.gif</div>
<br />Filed under: <a href='http://jodipfister.wordpress.com/category/directed-research/death/'>Death</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/'>Directed Research</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/food/'>Food</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/garden/'>Garden</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/medical/'>Medical</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/perfume/'>Perfume</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/pollution/'>Pollution</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/urban/'>Urban</a> Tagged: <a href='http://jodipfister.wordpress.com/tag/anna-barbara/'>Anna Barbara</a>, <a href='http://jodipfister.wordpress.com/tag/anthony-perliss/'>Anthony Perliss</a>, <a href='http://jodipfister.wordpress.com/tag/clino-trini-castelli/'>Clino Trini Castelli</a>, <a href='http://jodipfister.wordpress.com/tag/gaetano-pesce/'>Gaetano Pesce</a>, <a href='http://jodipfister.wordpress.com/tag/marcel-provost/'>Marcel Provost</a>, <a href='http://jodipfister.wordpress.com/tag/marek-piotrowski/'>Marek Piotrowski</a>, <a href='http://jodipfister.wordpress.com/tag/olafur-eliasson/'>Olafur Eliasson</a>, <a href='http://jodipfister.wordpress.com/tag/patrick-suskind/'>Patrick Süskind</a>, <a href='http://jodipfister.wordpress.com/tag/peter-zumthor/'>Peter Zumthor</a>, <a href='http://jodipfister.wordpress.com/tag/petra-blaisse/'>Petra Blaisse</a>, <a href='http://jodipfister.wordpress.com/tag/philippe-rahm/'>Philippe Rahm</a>, <a href='http://jodipfister.wordpress.com/tag/toshiko-mori/'>Toshiko Mori</a>, <a href='http://jodipfister.wordpress.com/tag/wilhelm-haarmann/'>Wilhelm Haarmann</a>, <a href='http://jodipfister.wordpress.com/tag/yukio-nakagawa/'>Yukio Nakagawa</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jodipfister.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jodipfister.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jodipfister.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=28&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jodipfister.wordpress.com/2011/02/06/territories-of-olfaction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2563bd328ce83fb956106c0b19b39db9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jodipfister</media:title>
		</media:content>

		<media:content url="http://prestonparish.files.wordpress.com/2010/02/img_0471.jpg" medium="image">
			<media:title type="html">l'Ossuaire Municipal</media:title>
		</media:content>

		<media:content url="http://prestonparish.files.wordpress.com/2010/02/img_0522.jpg" medium="image">
			<media:title type="html">l'Ossuaire Municipal</media:title>
		</media:content>

		<media:content url="http://exploration.urban.free.fr/carrieres/plaque7.jpg" medium="image">
			<media:title type="html">l'Ossuaire Municipal</media:title>
		</media:content>

		<media:content url="http://exploration.urban.free.fr/carrieres/fontis-catacombes.jpg" medium="image">
			<media:title type="html">l'Ossuaire Municipal</media:title>
		</media:content>

		<media:content url="http://exploration.urban.free.fr/carrieres/catacombs-map.jpg" medium="image">
			<media:title type="html">l'Ossuaire Municipal</media:title>
		</media:content>

		<media:content url="http://planetjeff.net/ut/CaveUT_Images/FlatworldProjectCaveUT_BIG.gif" medium="image">
			<media:title type="html">FlatWorld</media:title>
		</media:content>

		<media:content url="http://ict.usc.edu/images/uploads/projects/flatworld_lg1.jpg" medium="image">
			<media:title type="html">FlatWorld</media:title>
		</media:content>

		<media:content url="http://ict.usc.edu/images/uploads/projects/flatworld_lg2.jpg" medium="image">
			<media:title type="html">FlatWorld</media:title>
		</media:content>

		<media:content url="http://media.defenseindustrydaily.com/images/MIL_US_Army_ICT_FlatWorld_Simulation_lg.jpg" medium="image">
			<media:title type="html">FlatWorld</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/02/room2big.jpg?w=300" medium="image">
			<media:title type="html">FlatWorld</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/02/ernesto_netoeobicho.jpg?w=300" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/02/ernesto_neto_01.jpg?w=300" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/112/301112868_17df8adeae_z.jpg?zz=1" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://miraquecosa.files.wordpress.com/2009/05/ernesto_neto_macro_mentre_niente_accade_while_nothing_happens_2008_lycra_legno_spezie_sabbia_foto_giorgio_benni_copyright_ernesto_neto_gallery.jpg" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://rion.nu/v5/post/092506/CRW_0341med.jpg" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://www.mediartchina.org/files/artistonly/%E5%9B%BE%E7%89%87%203.png" medium="image">
			<media:title type="html">The Smell of Fear</media:title>
		</media:content>

		<media:content url="http://jodipfister.files.wordpress.com/2011/02/sisseltolaas.jpg?w=300" medium="image">
			<media:title type="html">The Smell of Fear</media:title>
		</media:content>

		<media:content url="http://www.olfactorialist.com/wp-content/uploads/2010/09/st_01.jpg" medium="image">
			<media:title type="html">The Smell of Fear</media:title>
		</media:content>

		<media:content url="http://blog.pittimmagine.com/Blog/FRAGRANZE_8_SISSEL_TOLAAS-6924.jpg" medium="image">
			<media:title type="html">The Smell of Fear</media:title>
		</media:content>

		<media:content url="http://scienceblogs.com/oscillator/armpits.jpg" medium="image">
			<media:title type="html">The Smell of Fear</media:title>
		</media:content>

		<media:content url="http://opp-m.com/1/1/9/9119/thumbnails/s9krc6zM.jpg" medium="image">
			<media:title type="html">MCDXCII</media:title>
		</media:content>

		<media:content url="http://opp-m.com/1/1/9/9119/thumbnails/IXuTh5mb.jpg" medium="image">
			<media:title type="html">MCDXCII</media:title>
		</media:content>

		<media:content url="http://opp-m.com/1/1/9/9119/thumbnails/V8wxSV6V.jpg" medium="image">
			<media:title type="html">MCDXCII</media:title>
		</media:content>

		<media:content url="http://opp-m.com/1/1/9/9119/thumbnails/pgT3CwVTf8KVXNWI.jpg" medium="image">
			<media:title type="html">MCDXCII</media:title>
		</media:content>

		<media:content url="http://opp-m.com/1/1/9/9119/thumbnails/CdWendg_KpquZJ0F.jpg" medium="image">
			<media:title type="html">MCDXCII</media:title>
		</media:content>

		<media:content url="http://anygivenname.org/load/2007/10/5_china_song_dong.jpg" medium="image">
			<media:title type="html">Eat the City</media:title>
		</media:content>

		<media:content url="http://www.frogview.com/uploadimages401/49ba46f3ebe619.88152736frogview-gallery.jpg" medium="image">
			<media:title type="html">Eat the City</media:title>
		</media:content>

		<media:content url="http://chinadigitaltimes.net/wp-content/uploads/mt-old/Song-Dong-city.jpg" medium="image">
			<media:title type="html">Eat the City</media:title>
		</media:content>

		<media:content url="http://cache3.asset-cache.net/xc/56907876.jpg?v=1&#038;c=IWSAsset&#038;k=2&#038;d=77BFBA49EF878921F7C3FC3F69D929FD33747DD5F8305F6E154A4EA23898E93A2A6D85221C598F0CB01E70F2B3269972" medium="image">
			<media:title type="html">Eat the City</media:title>
		</media:content>

		<media:content url="http://farm1.static.flickr.com/41/102938851_0ab62b2537_z.jpg?zz=1" medium="image">
			<media:title type="html">Eat the City</media:title>
		</media:content>

		<media:content url="http://www.designboom.com/contemporary/ondes/1.jpg" medium="image">
			<media:title type="html">Onde Onirique</media:title>
		</media:content>

		<media:content url="http://www.designboom.com/contemporary/ondes/6.jpg" medium="image">
			<media:title type="html">Onde Onirique</media:title>
		</media:content>

		<media:content url="http://www.designboom.com/contemporary/ondes/7.jpg" medium="image">
			<media:title type="html">Onde Onirique</media:title>
		</media:content>

		<media:content url="http://www.designboom.com/contemporary/ondes/10.jpg" medium="image">
			<media:title type="html">Onde Onirique</media:title>
		</media:content>

		<media:content url="http://aromastrategist.files.wordpress.com/2009/12/3.jpg?w=300&#038;h=234" medium="image">
			<media:title type="html">Onde Onirique</media:title>
		</media:content>

		<media:content url="http://www.hotels-spain-accommodation.com/andalucia/granada/generalife/generalife-muslim-gardens.jpg" medium="image">
			<media:title type="html">Arabic Garden</media:title>
		</media:content>

		<media:content url="http://karim74.files.wordpress.com/2009/06/paris-mosque-in-france-garden.jpg" medium="image">
			<media:title type="html">Arabic Gardens</media:title>
		</media:content>

		<media:content url="http://farm3.static.flickr.com/2219/2342986634_fbe8991630.jpg" medium="image">
			<media:title type="html">Arabic Gardens</media:title>
		</media:content>

		<media:content url="http://www.faculty.de.gcsu.edu/~rviau/ids/Artworks/islamicgardens/p9.jpg" medium="image">
			<media:title type="html">Arabic Gardens</media:title>
		</media:content>

		<media:content url="http://images.travelpod.com/users/jawad/aotearoa.1056312000.dscn6719.jpg" medium="image">
			<media:title type="html">Arabic Gardens</media:title>
		</media:content>

		<media:content url="http://www.kunsthaus-bregenz.at/eliasson/Wasser.jpg" medium="image">
			<media:title type="html">mediated motion  </media:title>
		</media:content>

		<media:content url="http://www.kunsthaus-bregenz.at/eliasson/Haengebruecke.jpg" medium="image">
			<media:title type="html">mediated motion  </media:title>
		</media:content>

		<media:content url="http://www.kunsthaus-bregenz.at/eliasson/Lehmerde.jpg" medium="image">
			<media:title type="html">mediated motion  </media:title>
		</media:content>

		<media:content url="http://kaganof.com/kagablog/wp-content/uploads/2008/12/12872w_01installation10g.jpg" medium="image">
			<media:title type="html">mediated motion  </media:title>
		</media:content>

		<media:content url="http://www.olafureliasson.net/works/w_bilder/Themediatedmotion_03.jpg" medium="image">
			<media:title type="html">mediated motion  </media:title>
		</media:content>

		<media:content url="http://www.acsu.buffalo.edu/~pfister2/cl_site3render1_sm.jpg" medium="image">
			<media:title type="html">Concrete Lattices</media:title>
		</media:content>

		<media:content url="http://www.acsu.buffalo.edu/~pfister2/cl_site3render2_sm.jpg" medium="image">
			<media:title type="html">Concrete Lattices</media:title>
		</media:content>

		<media:content url="http://www.acsu.buffalo.edu/~pfister2/cl_site3render5_sm.jpg" medium="image">
			<media:title type="html">Concrete Lattices</media:title>
		</media:content>

		<media:content url="http://www.acsu.buffalo.edu/~pfister2/Mums(3).JPG" medium="image">
			<media:title type="html">Concrete Lattices</media:title>
		</media:content>

		<media:content url="http://www.acsu.buffalo.edu/~pfister2/432Vermont(2).JPG" medium="image">
			<media:title type="html">Concrete Lattices</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5172/5423595586_37db0b3d77.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5053/5422991963_3f82f9d925.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5251/5422992017_f373220974.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5180/5422992101_41f20aab3e.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5014/5422992293_559424f197.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>
	</item>
		<item>
		<title>Spatialized Olfaction</title>
		<link>http://jodipfister.wordpress.com/2011/01/27/spatialized-olfaction/</link>
		<comments>http://jodipfister.wordpress.com/2011/01/27/spatialized-olfaction/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 16:21:21 +0000</pubDate>
		<dc:creator>jodipfister</dc:creator>
				<category><![CDATA[Directed Research]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[Identification]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://jodipfister.wordpress.com/?p=20</guid>
		<description><![CDATA[The following projects and/or research attempt to spatialize olfaction in dimensional space. http://www.odditycentral.com/news/chinese-artist-creates-edible-model-of-shanghai.html Artist: Song Dong Project: Eating the City Overview: Mini replica of the city made out of biscuits, wafers, cookies and candy. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; http://www.nytimes.com/interactive/2009/08/29/opinion/20090829-smell-map-feature.html Artist: Jason Logan Project: Scents and the City Overview: Documenting personal experience of common and recurrent summer smells in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=20&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="color:#000000;"><strong></strong>The following projects and/or research attempt to spatialize olfaction in dimensional space.</span></p>
<p><a href="http://farm6.static.flickr.com/5300/5393326926_88e10ce407.jpg"><span style="color:#000000;"><img class="alignnone" title="Eating the City" src="http://farm6.static.flickr.com/5300/5393326926_88e10ce407_m.jpg" alt="" width="240" height="153" /></span></a><br />
<a href="http://www.odditycentral.com/news/chinese-artist-creates-edible-model-of-shanghai.html"><span style="color:#000000;">http://www.odditycentral.com/news/chinese-artist-creates-edible-model-of-shanghai.html</span></a><br />
<strong><span style="color:#000000;"> Artist: Song Dong</span></strong><br />
<strong> <span style="color:#000000;"> Project: Eating the City</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> Mini replica of the city made out of biscuits, wafers, cookies and candy.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span><span style="color:#000000;"><span id="more-20"></span></span></p>
<p><a href="http://farm6.static.flickr.com/5132/5392729579_27b57850da.jpg"><span style="color:#000000;"><img class="alignnone" title="Scents and the City" src="http://farm6.static.flickr.com/5132/5392729579_27b57850da_m.jpg" alt="" width="240" height="171" /></span></a><br />
<a href="http://www.nytimes.com/interactive/2009/08/29/opinion/20090829-smell-map-feature.html"><span style="color:#000000;">http://www.nytimes.com/interactive/2009/08/29/opinion/20090829-smell-map-feature.html</span></a><br />
<strong><span style="color:#000000;"> Artist: Jason Logan</span></strong><br />
<strong> <span style="color:#000000;"> Project: Scents and the City</span></strong><a href="http://www.nytimes.com/interactive/2009/08/29/opinion/20090829-smell-map-feature.html"><br />
</a><span style="color:#000000;">Overview:</span><br />
<span style="color:#000000;"> Documenting personal experience of common and recurrent summer smells in NYC.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5139/5393326948_9c4461c68f.jpg"><span style="color:#000000;"><img class="alignnone" title="Talking Nose" src="http://farm6.static.flickr.com/5139/5393326948_9c4461c68f_m.jpg" alt="" width="240" height="180" /></span></a> <a href="http://farm6.static.flickr.com/5173/5392729571_0d54ffa68a.jpg"><span style="color:#000000;"><img class="alignnone" title="Talking Nose" src="http://farm6.static.flickr.com/5173/5392729571_0d54ffa68a_m.jpg" alt="" width="240" height="180" /></span></a><br />
<a href="http://www.ediblegeography.com/talking-nose/"><span style="color:#000000;">http://www.ediblegeography.com/talking-nose/</span></a><br />
<strong><span style="color:#000000;"> Artist: Sissel Tolaas</span></strong><br />
<strong> <span style="color:#000000;"> Project: Talking Nose</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> A study of Mexico City’s environmental chemical signals in its over two hundred different neighborhoods which researches and identifies the key smells of each.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5291/5393326992_ca9f25cacb.jpg"><span style="color:#000000;"><img class="alignnone" title="Whiff of Uncertainty" src="http://farm6.static.flickr.com/5291/5393326992_ca9f25cacb_m.jpg" alt="" width="240" height="185" /></span></a><br />
<a href="http://www.estherwu.com/"><span style="color:#000000;">http://www.estherwu.com/</span></a><br />
<strong><span style="color:#000000;"> Artist: Esther Wu</span></strong><br />
<strong> <span style="color:#000000;"> Project: The Whiff of Uncertainty</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> Recording the time, location and duration of baking at Dunkin’ Donuts to look for a scent pattern.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5058/5393327158_16e0fc0a05.jpg"><span style="color:#000000;"><img class="alignnone" title="The Highline and the Idea of Elevated Space" src="http://farm6.static.flickr.com/5058/5393327158_16e0fc0a05_m.jpg" alt="" width="240" height="162" /></span></a><br />
<a href="http://georginabister.com/blog/"><span style="color:#000000;">http://georginabister.com/blog/</span></a><br />
<strong><span style="color:#000000;"> Artist: Georgina Bister</span></strong><br />
<strong> <span style="color:#000000;"> Project: The Highline and the Idea of Elevated Space</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> N/A</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5175/5393327178_7dd6ab26b2.jpg"><span style="color:#000000;"><img class="alignnone" title="Smell It" src="http://farm6.static.flickr.com/5175/5393327178_7dd6ab26b2_m.jpg" alt="" width="240" height="120" /></span></a><br />
<a href="http://www.jennymarketou.com/works_2008_7.html"><span style="color:#000000;">http://www.jennymarketou.com/works_2008_7.html</span></a><br />
<strong><span style="color:#000000;"> Artist: Jenny Marketou</span></strong><br />
<strong> <span style="color:#000000;"> Project: Smell It</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> The map urges the visitors while walking to discover and to record olfactory experiences among the urban concrete as a challenge and a thrill and finally upon return to the gallery to make their olfactory notations in color directly on the smell map.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5060/5392729767_8b5d10cf1d.jpg"><span style="color:#000000;"><img class="alignnone" title="Léviathan Thot" src="http://farm6.static.flickr.com/5060/5392729767_8b5d10cf1d_m.jpg" alt="" width="240" height="120" /></span></a><br />
<a href="http://nikicrosslab.blogspot.com/2010/04/ernesto-neto.html"><span style="color:#000000;">http://nikicrosslab.blogspot.com/2010/04/ernesto-neto.html</span></a><br />
<strong><span style="color:#000000;"> Artist: Ernesto Neto</span></strong><br />
<strong> <span style="color:#000000;"> Project: Léviathan Thot</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> Working with herbs in bags suspended from the ceiling leaking on the floor and leaving color patterns.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5212/5393327258_f22e5b03ff.jpg"><span style="color:#000000;"><img class="alignnone" title="Curious Emissions of CGEUK" src="http://farm6.static.flickr.com/5212/5393327258_f22e5b03ff_m.jpg" alt="" width="161" height="240" /></span></a><br />
<a href="http://wayoftherodent.com/bonus/CGEUK%20Judith%20Mann.htm"><span style="color:#000000;">http://wayoftherodent.com/bonus/CGEUK%20Judith%20Mann.htm</span></a><br />
<strong><span style="color:#000000;"> Artist: Judith Mann</span></strong><br />
<strong> <span style="color:#000000;"> Project: The Curious Emissions of CGEUK</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> A smell map of the CGEUK (Classic Gaming Expo UK) event.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5220/5392729799_c6d13c905c.jpg"><span style="color:#000000;"><img class="alignnone" title="Desert Ants use Olfaction for Navigation" src="http://farm6.static.flickr.com/5220/5392729799_c6d13c905c_m.jpg" alt="" width="240" height="180" /></span></a><br />
<a href="http://www.physorg.com/news187360582.html"><span style="color:#000000;">http://www.physorg.com/news187360582.html</span></a><br />
<strong><span style="color:#000000;"> Research Facility: Max Planck Institute for Chemical Ecology</span></strong><br />
<strong> <span style="color:#000000;"> Topic: Desert Ants use Olfaction for Navigation</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> Desert ants use olfactory clues to navigate back to their nests by memorizing several scent sources in the vicinity.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5057/5392729807_7bb94846ed.jpg"><span style="color:#000000;"><img class="alignnone" title="Smell of Outer Space Recreated for NASA" src="http://farm6.static.flickr.com/5057/5392729807_7bb94846ed_m.jpg" alt="" width="119" height="240" /></span></a><br />
<a href="http://www.physorg.com/news187360582.html"><span style="color:#000000;">http://www.physorg.com/news187360582.html</span></a><br />
<strong><span style="color:#000000;"> Research Facility: NASA</span></strong><br />
<strong> <span style="color:#000000;"> Topic: Smell of Outer Space Recreated for NASA</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> Outer space smells like metal, fried steak and welding. Chemists are recreating the smell in order to train NASA astronauts.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5138/5392729821_cdb25d5a0f.jpg"><span style="color:#000000;"><img class="alignnone" title="Carbon Food Print" src="http://farm6.static.flickr.com/5138/5392729821_cdb25d5a0f_m.jpg" alt="" width="240" height="234" /></span></a><br />
<a href="http://carbonfoodprint-foodpairing.blogspot.com/"><span style="color:#000000;">http://carbonfoodprint-foodpairing.blogspot.com/</span></a><br />
<strong><span style="color:#000000;"> Research Facility: Sense for Taste</span></strong><br />
<strong> <span style="color:#000000;"> Topic: Carbon Food Print</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> The orange wheel shows different scent categories of key odorants of an orange. Picking one product from each color will recreate the smell of an orange.</span></p>
<p><span style="color:#808080;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p><a href="http://farm6.static.flickr.com/5136/5393327266_fccea2cb5e.jpg"><span style="color:#000000;"><img class="alignnone" title="Exploring Olfactory Perception Space" src="http://farm6.static.flickr.com/5136/5393327266_fccea2cb5e_m.jpg" alt="" width="240" height="207" /></span></a><br />
<a href="http://www.inb.uni-luebeck.de/forschung/eops/?searchterm=None"><span style="color:#000000;">http://www.inb.uni-luebeck.de/forschung/eops/?searchterm=None</span></a><br />
<strong><span style="color:#000000;"> Research Facility: Institut für Neuro- und Bioinformatik</span></strong><br />
<strong> <span style="color:#000000;"> Topic: Exploring Olfactory Perception Space</span></strong><br />
<span style="color:#000000;"> Overview:</span><br />
<span style="color:#000000;"> This olfactory map provides a new study for the olfactory system related to olfactory perception rather than the structure of chemical compounds.</span></p>
<br />Filed under: <a href='http://jodipfister.wordpress.com/category/directed-research/'>Directed Research</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/food/'>Food</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/identification/'>Identification</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/navigation/'>Navigation</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/patterns/'>Patterns</a>, <a href='http://jodipfister.wordpress.com/category/directed-research/training/'>Training</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jodipfister.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jodipfister.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jodipfister.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jodipfister.wordpress.com&amp;blog=15511617&amp;post=20&amp;subd=jodipfister&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://jodipfister.wordpress.com/2011/01/27/spatialized-olfaction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2563bd328ce83fb956106c0b19b39db9?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">jodipfister</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5300/5393326926_88e10ce407_m.jpg" medium="image">
			<media:title type="html">Eating the City</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5132/5392729579_27b57850da_m.jpg" medium="image">
			<media:title type="html">Scents and the City</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5139/5393326948_9c4461c68f_m.jpg" medium="image">
			<media:title type="html">Talking Nose</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5173/5392729571_0d54ffa68a_m.jpg" medium="image">
			<media:title type="html">Talking Nose</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5291/5393326992_ca9f25cacb_m.jpg" medium="image">
			<media:title type="html">Whiff of Uncertainty</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5058/5393327158_16e0fc0a05_m.jpg" medium="image">
			<media:title type="html">The Highline and the Idea of Elevated Space</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5175/5393327178_7dd6ab26b2_m.jpg" medium="image">
			<media:title type="html">Smell It</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5060/5392729767_8b5d10cf1d_m.jpg" medium="image">
			<media:title type="html">Léviathan Thot</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5212/5393327258_f22e5b03ff_m.jpg" medium="image">
			<media:title type="html">Curious Emissions of CGEUK</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5220/5392729799_c6d13c905c_m.jpg" medium="image">
			<media:title type="html">Desert Ants use Olfaction for Navigation</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5057/5392729807_7bb94846ed_m.jpg" medium="image">
			<media:title type="html">Smell of Outer Space Recreated for NASA</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5138/5392729821_cdb25d5a0f_m.jpg" medium="image">
			<media:title type="html">Carbon Food Print</media:title>
		</media:content>

		<media:content url="http://farm6.static.flickr.com/5136/5393327266_fccea2cb5e_m.jpg" medium="image">
			<media:title type="html">Exploring Olfactory Perception Space</media:title>
		</media:content>
	</item>
	</channel>
</rss>
