<?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>geolabs</title>
	<atom:link href="http://geolabs.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://geolabs.wordpress.com</link>
	<description>°°°°°°°°°°°°°°°°°°°°</description>
	<lastBuildDate>Wed, 31 Aug 2011 08:54:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='geolabs.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>geolabs</title>
		<link>http://geolabs.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://geolabs.wordpress.com/osd.xml" title="geolabs" />
	<atom:link rel='hub' href='http://geolabs.wordpress.com/?pushpress=hub'/>
		<item>
		<title>R combined gps-track plot of spatial intensity</title>
		<link>http://geolabs.wordpress.com/2011/08/30/r-combined-gps-track-plot-of-spatial-intensity/</link>
		<comments>http://geolabs.wordpress.com/2011/08/30/r-combined-gps-track-plot-of-spatial-intensity/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:07:11 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Time-Space Geography]]></category>
		<category><![CDATA[everyday life]]></category>
		<category><![CDATA[GPS-Tracking]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[spatial intensity]]></category>
		<category><![CDATA[time-space analysis]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=59</guid>
		<description><![CDATA[To get a quick impression about the temporal usage of places it is helpful to generate a plot of the trackpoints spatial density (intensity). As the 3d visualisation also has disadvantages, a combination with a 2D plot is useful to interpretate the data. The data used in this example is a gps record of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=59&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To get a quick impression about the temporal usage of places it is helpful to generate a plot of the trackpoints spatial density (intensity).</p>
<div id="attachment_60" class="wp-caption alignnone" style="width: 440px"><a href="http://geolabs.files.wordpress.com/2011/08/proband_02intensity_overview_spatstat_anonym.png"><img class="size-large wp-image-60  " title="proband_02intensity_overview_spatstat_anonym" src="http://geolabs.files.wordpress.com/2011/08/proband_02intensity_overview_spatstat_anonym.png?w=430&#038;h=215" alt="combined plot of spatial intensity" width="430" height="215" /></a><p class="wp-caption-text">Spatial intensity 2D/3D</p></div>
<p>As the 3d visualisation also has disadvantages, a combination with a 2D plot is useful to interpretate the data. The data used in this example is a gps record of the &#8220;everyday life&#8221; of a test person.</p>
<p>Code snippet:</p>
<p>###################################################<br />
## 3d/2D Plot density with spatstat density.ppp<br />
###################################################</p>
<p>bb_utm &lt;- qbbox(lat = tripdata_utm_num[,2], lon = tripdata_utm_num[,1]) #Boundingbox<br />
Rect &lt;- owin(c(bb_utm$lonR[1]-500, bb_utm$lonR[2]+1800), c(bb_utm$latR[1]-500, bb_utm$latR[2]+500))<br />
P_all &lt;- ppp(tripdata_utm_num[,1], tripdata_utm_num[,2], window=Rect)   #  opt: marks=datetime<br />
PPP_all &lt;- as.ppp(P_all)<br />
den &lt;- density(PPP_all, sigma = 70)</p>
<p>cutted_den &lt;- den  # Wertebereich abschneiden für Extreme<br />
cutvalue &lt;- 0.0020   # Erfahrungswert<br />
cutted_den$v[cutted_den$v&gt;=cutvalue] &lt;-cutvalue</p>
<p>png(paste(plotpath,proband,&#8221;intensity_overview_spatstat_v3.png&#8221;, sep=&#8221;"),2400,1200);  # Plot Dichte 3D<br />
layout(matrix(c(1,2), 2, 2, byrow = TRUE), widths=c(1,1))<br />
persp(cutted_den , col=&#8221;grey&#8221;, d=1, ticktype=&#8221;detailed&#8221;, cex.lab=4, cex.axis=4, zlim=c(range(cutted_den$v)[1],cutvalue), phi=30, theta=-20, xlab=&#8221;longitude&#8221;, ylab=&#8221;latitude&#8221;, zlab=&#8221;density&#8221;, main=paste(proband, &#8220;Räumliche Intensität&#8221;))<br />
couleurs  &lt;- tail(topo.colors(trunc(1.4 * 100)),100)<br />
couleurs[1] &lt;- &#8220;#0400ff&#8221;<br />
plot(cutted_den , col=couleurs, ticktype=&#8221;detailed&#8221;, xlab=&#8221;longitude&#8221;, ylab=&#8221;latitude&#8221;, cex.lab=5, cex.axis=5, main=paste(proband, &#8220;Räumliche Intensität 2D&#8221;))<br />
#points(SP_UTM@coords[,1], SP_UTM@coords[,2], cex=0.05, col=&#8221;grey&#8221;)<br />
points(SP_wp_UTM@coords[,1], SP_wp_UTM@coords[,2], cex=2, col=&#8221;red&#8221;)<br />
text(SP_wp_UTM@coords[,1], SP_wp_UTM@coords[,2], labels=daten_wp$wpOpen, cex=1, adj=c(0,-1), col=&#8221;red&#8221;)</p>
<p>dev.off()</p>
<p># If you use any code, please refer to or cite this site (see about geolabs)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=59&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2011/08/30/r-combined-gps-track-plot-of-spatial-intensity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabs.files.wordpress.com/2011/08/proband_02intensity_overview_spatstat_anonym.png?w=1024" medium="image">
			<media:title type="html">proband_02intensity_overview_spatstat_anonym</media:title>
		</media:content>
	</item>
		<item>
		<title>Hägerstrand Time-Space Cube</title>
		<link>http://geolabs.wordpress.com/2010/11/30/hagerstrand-time-space-cube/</link>
		<comments>http://geolabs.wordpress.com/2010/11/30/hagerstrand-time-space-cube/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 10:53:44 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Time-Space Geography]]></category>
		<category><![CDATA[everyday life]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[routines]]></category>
		<category><![CDATA[time-space analysis]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=37</guid>
		<description><![CDATA[&#160; With the rgl package it&#8217;s possible to interact with the 3d visualization of the timespace tracks. Code example: plot3d(lon,lat,timedate, xlim=range(lon), ylim=range(lat), zlim=range(timedate), ticktype=&#8221;detailed&#8221;, xlab=&#8221;longitude&#8221;, ylab=&#8221;latitude&#8221;, zlab=&#8221;Date&#8221;, col= as.POSIXlt(daten[,"Date"])$mday, type=&#8221;l&#8221;, main=plottitle) In the posted example individual waypoints were added by drawing vertical lines.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=37&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_43" class="wp-caption alignnone" style="width: 490px"><a href="http://geolabs.files.wordpress.com/2010/11/proband_05_timespacecube-e12911177939001.png"><img class="size-full wp-image-43 " title="Timespacecube" src="http://geolabs.files.wordpress.com/2010/11/proband_05_timespacecube-e12911177939001.png?w=480&#038;h=418" alt="" width="480" height="418" /></a><p class="wp-caption-text">Hägerstrand time-space cube with R</p></div>
<p>&nbsp;</p>
<p>With the rgl package it&#8217;s possible to interact with the 3d visualization of the timespace tracks.</p>
<p>Code example:<br />
plot3d(lon,lat,timedate, xlim=range(lon), ylim=range(lat), zlim=range(timedate), ticktype=&#8221;detailed&#8221;, xlab=&#8221;longitude&#8221;, ylab=&#8221;latitude&#8221;, zlab=&#8221;Date&#8221;, col= as.POSIXlt(daten[,"Date"])$mday, type=&#8221;l&#8221;, main=plottitle)</p>
<p>In the posted example individual waypoints were added by drawing vertical lines.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=37&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2010/11/30/hagerstrand-time-space-cube/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabs.files.wordpress.com/2010/11/proband_05_timespacecube-e12911177939001.png" medium="image">
			<media:title type="html">Timespacecube</media:title>
		</media:content>
	</item>
		<item>
		<title>Time-Space Cloud with R</title>
		<link>http://geolabs.wordpress.com/2010/02/22/time-space-cloud-with-r/</link>
		<comments>http://geolabs.wordpress.com/2010/02/22/time-space-cloud-with-r/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 12:48:24 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Time-Space Geography]]></category>
		<category><![CDATA[GPS-Tracking]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[time-space analysis]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=24</guid>
		<description><![CDATA[Here comes another option to analyze a TimeSpace-Track with R. A lattice cloud plots every recorded trackpoint into a 3d-time-space-cube. As the data (planar point pattern) is marked with the daytime, cluster of everyday routines become visible. Here the direct comparison between a function of density and the time-space-cloud. &#160; &#160; Code example: cloud(time_hours ~ [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=24&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here comes another option to analyze a TimeSpace-Track with R. A lattice cloud plots every recorded trackpoint into a 3d-time-space-cube. As the data (planar point pattern) is marked with the daytime, cluster of everyday routines become visible.</p>
<p>Here the direct comparison between a function of density and the time-space-cloud.</p>
<div id="attachment_27" class="wp-caption alignnone" style="width: 490px"><a href="http://geolabs.files.wordpress.com/2010/02/alle_daten_-timespacecloud_1-647078-328652867-5484114-84609772-e1266846619267.png"><img class="size-full wp-image-27" title="alle_daten_ timespacecloud_1 647078.328652867 5484114.84609772" src="http://geolabs.files.wordpress.com/2010/02/alle_daten_-timespacecloud_1-647078-328652867-5484114-84609772-e1266846801186.png?w=480&#038;h=348" alt="" width="480" height="348" /></a><p class="wp-caption-text">Time space Clowd</p></div>
<p>&nbsp;</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://geolabs.files.wordpress.com/2010/02/alle_daten_dichte_overview_perp_uz647078-3286528675484114-84609772-e1266845932568.png"><img title="alle_daten_dichte_overview_perp_uz647078.3286528675484114.84609772" src="http://geolabs.files.wordpress.com/2010/02/alle_daten_dichte_overview_perp_uz647078-3286528675484114-84609772-e1266846720936.png?w=480&#038;h=292" alt="" width="480" height="292" /></a><p class="wp-caption-text">spatstat density plot</p></div>
<p>&nbsp;</p>
<p>Code example:</p>
<p>cloud(time_hours ~ PPP_selection$x * PPP_selection$y, data = daten, zlim = c(23,0), xlim = c(653000,643000), screen = list(z = 160, x = 120), panel.aspect = 0.75, xlab = &#8220;Longitude&#8221;, ylab = &#8220;Latitude&#8221;, zlab = &#8220;Time&#8221;, scales = list(z = list(arrows = FALSE, distance = 2), x = list(arrows =FALSE, distance = 2), y = list(arrows = FALSE, distande = 2)),)</p>
<p>This examle is inspired by: http://lmdvr.r-forge.r-project.org/ (Figure 6.2)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=24&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2010/02/22/time-space-cloud-with-r/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabs.files.wordpress.com/2010/02/alle_daten_-timespacecloud_1-647078-328652867-5484114-84609772-e1266846801186.png" medium="image">
			<media:title type="html">alle_daten_ timespacecloud_1 647078.328652867 5484114.84609772</media:title>
		</media:content>

		<media:content url="http://geolabs.files.wordpress.com/2010/02/alle_daten_dichte_overview_perp_uz647078-3286528675484114-84609772-e1266846720936.png" medium="image">
			<media:title type="html">alle_daten_dichte_overview_perp_uz647078.3286528675484114.84609772</media:title>
		</media:content>
	</item>
		<item>
		<title>Time-Space Analysis with R</title>
		<link>http://geolabs.wordpress.com/2010/02/06/time-space-analysis-with-r/</link>
		<comments>http://geolabs.wordpress.com/2010/02/06/time-space-analysis-with-r/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:41:38 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Time-Space Geography]]></category>
		<category><![CDATA[everyday life]]></category>
		<category><![CDATA[GPS-Tracking]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[time-space analysis]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=7</guid>
		<description><![CDATA[Beside the visualisation of TimeSpace Tracks, I&#8217;m trying to find a way to analyze GPX-Tracks with statistical software. This are the first results with R (The R Project for Statistical Computing): &#160; ^This graph is a result of the analysis with the package trip (Spatial analysis of animal track data). Unfortunatelly i&#8217;m do not understand [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=7&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Beside the visualisation of TimeSpace Tracks, I&#8217;m trying to find a way to analyze GPX-Tracks with statistical software. This are the first results with R (The R Project for Statistical Computing):</p>
<div class="wp-caption alignnone" style="width: 310px"><a href="http://geolabor.files.wordpress.com/2010/01/25_26_november_-trip_timespend.png"><img title="25_26_november_  trip_timespend" src="http://geolabor.files.wordpress.com/2010/01/25_26_november_-trip_timespend.png?w=300&#038;h=300" alt="" width="300" height="300" /></a><p class="wp-caption-text">GPS track analized with R package &quot;trip&quot;</p></div>
<p>&nbsp;</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://geolabor.files.wordpress.com/2010/01/25_26_november_-dichte_overview_perp1.png"><img title="Trackpoints as a density function (25_26_november_   dichte_overview_perp)" src="http://geolabor.files.wordpress.com/2010/01/25_26_november_-dichte_overview_perp1-e1264949864515.png?w=480&#038;h=480" alt="" width="480" height="480" /></a><p class="wp-caption-text">density plot 3D</p></div>
<p>^This graph is a result of the analysis with the package trip (Spatial analysis of animal track data). Unfortunatelly i&#8217;m do not understand witch scale is used by the package.</p>
<p>^Trackpoints as a function of density.</p>
<p>Since there is a trackpoint recorded every 10 sec., it is possible to interpretate the density of the trackpoints as time-spend.</p>
<p>This is a two day track. The highest peak in the right corner is my home (Nuremberg). The peaks in the backstage are both university in Erlangen. The path on the rigth side I did with my bicycle, the left one with the train.</p>
<p>But how to examine specific areas?</p>
<div id="attachment_18" class="wp-caption alignnone" style="width: 489px"><a href="http://geolabs.files.wordpress.com/2010/02/alle_daten_-dichte_overview_perp_uz-e1266081864408.png"><img class="size-full wp-image-18" title="alle_daten_ dichte_overview_perp_uz" src="http://geolabs.files.wordpress.com/2010/02/alle_daten_-dichte_overview_perp_uz-e1266081864408.png?w=479&#038;h=344" alt="" width="479" height="344" /></a><p class="wp-caption-text">trackdata density plot 3D</p></div>
<p>&nbsp;</p>
<p>^1500 m arround my house in the city center.</p>
<p>With clickppp() from the spatstat package it&#8217;s possible to choose e.g. a point with the mouse:</p>
<p>####### Example Code:<br />
plot(tripdata_utm) # plots the recorded trackpoints (converted to UTM)<br />
P_center &lt;- clickppp(n=1, win=Rect, add=TRUE, main=NULL, hook=NULL) # Select a point in the plot with the mouse<br />
center &lt;- as.data.frame(P_center)<br />
D &lt;- disc(radius = 1500, centre = c(center[,1], center[,2])) # create a disc window<br />
P_selection &lt;- ppp(tripdata_utm_num[,1], tripdata_utm_num[,2], window=D) # reduce the data with the window</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_-dichte_overview.png"><img title="29_nov_weihnachtsmarkt_  dichte_overview" src="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_-dichte_overview.png?w=480&#038;h=480" alt="" width="480" height="480" /></a><p class="wp-caption-text">density plot 2D</p></div>
<p>&nbsp;</p>
<p>^Another function of density (2D).</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_qqcount_persp1-e1264952492324.png"><img title="29_nov_weihnachtsmarkt_QQcount_persp" src="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_qqcount_persp1-e1264952492324.png?w=480&#038;h=480" alt="" width="480" height="480" /></a><p class="wp-caption-text">qqcout plot</p></div>
<p>&nbsp;</p>
<p>^Trackpoints as a function of time.</p>
<p>Here the trackpoints are divided by a grid and counted. Since the device records the position every 10 sec. The qqcount can be clearly interpreted as time-spend.</p>
<p>The next step is to add this data to a gis layer.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=7&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2010/02/06/time-space-analysis-with-r/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/25_26_november_-trip_timespend.png?w=300" medium="image">
			<media:title type="html">25_26_november_  trip_timespend</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/25_26_november_-dichte_overview_perp1-e1264949864515.png" medium="image">
			<media:title type="html">Trackpoints as a density function (25_26_november_   dichte_overview_perp)</media:title>
		</media:content>

		<media:content url="http://geolabs.files.wordpress.com/2010/02/alle_daten_-dichte_overview_perp_uz-e1266081864408.png" medium="image">
			<media:title type="html">alle_daten_ dichte_overview_perp_uz</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_-dichte_overview.png" medium="image">
			<media:title type="html">29_nov_weihnachtsmarkt_  dichte_overview</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/29_nov_weihnachtsmarkt_qqcount_persp1-e1264952492324.png" medium="image">
			<media:title type="html">29_nov_weihnachtsmarkt_QQcount_persp</media:title>
		</media:content>
	</item>
		<item>
		<title>Time-Space Visualisation with 3dsMax</title>
		<link>http://geolabs.wordpress.com/2010/02/06/time-space-visualisation-with-3dsmax/</link>
		<comments>http://geolabs.wordpress.com/2010/02/06/time-space-visualisation-with-3dsmax/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 10:28:47 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Time-Space Geography]]></category>
		<category><![CDATA[3ds Max]]></category>
		<category><![CDATA[GPS-Tracking]]></category>
		<category><![CDATA[time-space analysis]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=5</guid>
		<description><![CDATA[Visualisation of an Event (Bardentreffen) in Nuremberg. The GPX-Track was converted via JavaScript to MaxScript (with UTM coordinates). Finally the Track builds itself in 3dsMax. &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=5&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Visualisation of an Event (Bardentreffen) in Nuremberg.</p>
<p>The GPX-Track was converted via JavaScript to MaxScript (with UTM coordinates). Finally the Track builds itself in 3dsMax.</p>
<div class="wp-caption alignnone" style="width: 490px"><a href="http://geolabor.files.wordpress.com/2010/01/bardentreffen.jpg"><img title="bardentreffen" src="http://geolabor.files.wordpress.com/2010/01/bardentreffen.jpg?w=480&#038;h=360" alt="" width="480" height="360" /></a><p class="wp-caption-text">gps track as timespace data in 3dsmax</p></div>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=5&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2010/02/06/time-space-visualisation-with-3dsmax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/bardentreffen.jpg" medium="image">
			<media:title type="html">bardentreffen</media:title>
		</media:content>
	</item>
		<item>
		<title>Consumption and Shopping as an Event</title>
		<link>http://geolabs.wordpress.com/2010/02/06/consumption-and-shopping-as-an-event/</link>
		<comments>http://geolabs.wordpress.com/2010/02/06/consumption-and-shopping-as-an-event/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 11:27:12 +0000</pubDate>
		<dc:creator>Benedikt Orlowski</dc:creator>
				<category><![CDATA[Geography of Consumption]]></category>
		<category><![CDATA[Consumption]]></category>
		<category><![CDATA[GPS-Tracking]]></category>
		<category><![CDATA[R]]></category>
		<category><![CDATA[Shopping]]></category>

		<guid isPermaLink="false">http://geolabs.wordpress.com/?p=3</guid>
		<description><![CDATA[This is an recent project about consumption and the categorization of consumers. The whole survey you can explore on: http://www.geographie.uni-erlangen.de/projects/konsum/ (german!). For the evaluation, R was used. &#8220;Der Verhaltensraum des Konsumenten – The Space of Consumer Behaviour&#8221; The Space shows the consumer in the center of a two dimensional abstract space. He is able to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=3&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is an recent project about consumption and the categorization of  consumers. The whole survey you can explore on: <a href="http://www.geographie.uni-erlangen.de/projects/konsum/">http://www.geographie.uni-erlangen.de/projects/konsum/ </a> (german!).<br />
For the evaluation, R was used.</p>
<p><a href="http://geolabor.files.wordpress.com/2010/01/bild-13-e1264953915231.png"><img title="Space of  Consumer Behaviour" src="http://geolabor.files.wordpress.com/2010/01/bild-13-e1264953915231.png?w=480&#038;h=359" alt="" width="480" height="359" /></a></p>
<p>&#8220;Der Verhaltensraum des Konsumenten – The Space of Consumer Behaviour&#8221;</p>
<p>The Space shows the consumer in the center of a two dimensional abstract space. He is able to &#8220;move&#8221; to every point in the coordinate system. Each buy he takes a new position. The first dimension is the dimension of hedonism (buying – shopping), the second is the dimension of autonomy. They are both independent. 31 test persons took part in the survey. They filled out a diary about their buys.</p>
<p><a href="http://geolabor.files.wordpress.com/2010/01/bild-15.png"><img title="Track of person 3 in the  &quot;space of shopping-behaviour&quot;" src="http://geolabor.files.wordpress.com/2010/01/bild-15.png?w=352&#038;h=316" alt="" width="352" height="316" /></a></p>
<p>This is a sample person with 16 buys. The arrows indicate the direction of time, the circle grows for each buy at the same position.</p>
<p><a href="http://geolabor.files.wordpress.com/2010/01/bild-14.png"><img title="Comparison of two places" src="http://geolabor.files.wordpress.com/2010/01/bild-14.png?w=480&#038;h=222" alt="" width="480" height="222" /></a></p>
<p>This graph compares the buys of different people in the same category of shops.<br />
It shows a clustering towards hedonism in fashion shops and a clustering towards buying in drugstores.<br />
More on the <a href="http://www.geographie.uni-erlangen.de/projects/konsum/">project homepage</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/geolabs.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/geolabs.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/geolabs.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=geolabs.wordpress.com&amp;blog=11769087&amp;post=3&amp;subd=geolabs&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://geolabs.wordpress.com/2010/02/06/consumption-and-shopping-as-an-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a86d3d20cbf734b0fbda7c34aac5c95?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bene</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/bild-13-e1264953915231.png" medium="image">
			<media:title type="html">Space of  Consumer Behaviour</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/bild-15.png" medium="image">
			<media:title type="html">Track of person 3 in the  &#34;space of shopping-behaviour&#34;</media:title>
		</media:content>

		<media:content url="http://geolabor.files.wordpress.com/2010/01/bild-14.png" medium="image">
			<media:title type="html">Comparison of two places</media:title>
		</media:content>
	</item>
	</channel>
</rss>
