<?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>Blog-O-Tron 5000</title>
	<atom:link href="http://timebben.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://timebben.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 13 Jun 2010 14:01:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='timebben.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/f2ca722971748130d96105f383225176?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Blog-O-Tron 5000</title>
		<link>http://timebben.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://timebben.wordpress.com/osd.xml" title="Blog-O-Tron 5000" />
	<atom:link rel='hub' href='http://timebben.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Writing Shapefiles</title>
		<link>http://timebben.wordpress.com/2010/06/13/writing-shapefiles/</link>
		<comments>http://timebben.wordpress.com/2010/06/13/writing-shapefiles/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:01:50 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Surface]]></category>
		<category><![CDATA[easygisdotnet]]></category>
		<category><![CDATA[http://www.easygisdotnet.com/]]></category>
		<category><![CDATA[SchetsGIS]]></category>
		<category><![CDATA[Shapefile]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=55</guid>
		<description><![CDATA[At work I’m currently working on a fun project called SchetsGIS. Spatial planners are still printing maps and draw on overlays, the idea is to make the lives of the planners and other involved people a little bit easier by using the Microsoft Surface table for this. The project contains some nice features, I will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=55&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At work I’m currently working on a fun project called SchetsGIS. Spatial planners are still printing maps and draw on overlays, the idea is to make the lives of the planners and other involved people a little bit easier by using the Microsoft Surface table for this. The project contains some nice features, I will put up a video here later when I’m done with the first version. One of the features is to export the drawings usable within a GIS package for further processing, for now it is only .shp and .kml but probably there will be other extensions added in a later stadium like .mxd and .lyr.  </p>
<p>While browsing the internet in search for how to write a shapefile in .Net I only saw some open-source libraries for reading shapefiles but not writing until I came across <a href="http://www.easygisdotnet.com/">http://www.easygisdotnet.com/  </a></p>
<p>This is taken from their site:</p>
<p>Easy GIS .NET is a suite of .NET 2.0 GIS and mapping tools and controls to let developers easily incorporate GIS functionality into their applications. Our tools currently support ESRI shapefile format. </p>
<p>If you are looking for a free .NET Shapefile library don&#8217;t pay expensive licensing costs for a product that may not give you the same benefits of Easy GIS .NET. Not only is our Desktop version of Easy GIS .NET FREE, you may just find it outperforms expensive commercial software.</p>
<p>Here’s a small snippet how to write a shapefile:<br />
<code>            DbfFieldDesc[] fields = new DbfFieldDesc[]<br />
            {<br />
                new DbfFieldDesc { FieldName = "ID", FieldType = DbfFieldType.Number, FieldLength = 1, RecordOffset = 0 },<br />
                new DbfFieldDesc { FieldName = "TestField", FieldType = DbfFieldType.Character, FieldLength = 255, RecordOffset = 1 }<br />
            };</p>
<p>            ShapeFileWriter shpWriter = ShapeFileWriter.CreateWriter(shpFilePath, shapeName, ShapeType.Polygon, fields);</p>
<p>            foreach (Feature feature in featureList)<br />
            {<br />
                string[] fieldData = new string[]<br />
                {<br />
                   "0",<br />
                   "test"<br />
                };</p>
<p>                List vertices = new List();</p>
<p>                foreach (System.Windows.Point p in feature.GetPoints())<br />
                {<br />
                    vertices.Add(new PointF((float)p.X, (float)p.Y));<br />
                }</p>
<p>                shpWriter.AddRecord(vertices.ToArray(), vertices.Count, fieldData);<br />
            }<br />
            shpWriter.Close();</code></p>
<p>The .shx .dbf and .shp will be created but you have to create a .prj for the shape yourself. I used a normal TextWriter for it:<br />
     <code>       TextWriter tw = new StreamWriter(shpFilePath + "/" + shapeName + ".prj");<br />
            tw.WriteLine("PROJCS[\"RD_New\", GEOGCS[\"GCS_Amersfoort\", DATUM[\"D_Amersfoort\", SPHEROID[\"Bessel_1841\", 6377397.155, 299.1528128]], PRIMEM[\"Greenwich\", 0.0], UNIT[\"Degree\", 0.0174532925199433]], PROJECTION[\"Double_Stereographic\"], PARAMETER[\"False_Easting\", 155000.0], PARAMETER[\"False_Northing\", 463000.0], PARAMETER[\"Central_Meridian\", 5.38763888888889], PARAMETER[\"Scale_Factor\", 0.9999079], PARAMETER[\"Latitude_Of_Origin\", 52.15616055555555], UNIT[\"Meter\", 1.0]]");<br />
            tw.Close();</code></p>
<p>Be aware that a shapefile can only contain 1 geometry type within a Shapefile.</p>
<p>This is perfect for my project and really easy to use.</p>
<p>Here an example of my drawing and the exported shapefile in ArcMap (My drawing created with the Surface Simulator looks awfull but hey you get the idea)</p>
<p><a href="http://timebben.files.wordpress.com/2010/06/shapeexport.png"><img src="http://timebben.files.wordpress.com/2010/06/shapeexport.png?w=300&#038;h=119" alt="" title="shapeExport" width="300" height="119" class="aligncenter size-medium wp-image-56" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=55&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2010/06/13/writing-shapefiles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>

		<media:content url="http://timebben.files.wordpress.com/2010/06/shapeexport.png?w=300" medium="image">
			<media:title type="html">shapeExport</media:title>
		</media:content>
	</item>
		<item>
		<title>BruTile Silverlight</title>
		<link>http://timebben.wordpress.com/2010/02/07/brutile-silverlight/</link>
		<comments>http://timebben.wordpress.com/2010/02/07/brutile-silverlight/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 17:14:38 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[BruTile]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=42</guid>
		<description><![CDATA[BruTile is a open source C# library to access tile services for geodata, with support for WPF, Compact Framework, Microsoft Surface and Silverlight created by my colleague Paul den Dulk. The last few days I have been working on some extra features for BruTile and a GUI for the Silverlight version. What I added: - [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=42&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://timebben.files.wordpress.com/2010/02/brutsilv.png"><img src="http://timebben.files.wordpress.com/2010/02/brutsilv.png?w=300&#038;h=219" alt="" title="brutSilv" width="300" height="219" class="alignright size-medium wp-image-43" /></a><a href="http://brutile.codeplex.com/">BruTile</a> is a open source C# library to access tile services for geodata, with support for WPF, Compact Framework, Microsoft Surface and Silverlight created by my colleague <a href="http://pauldendulk.com/">Paul den Dulk</a>.<br />
The last few days I have been working on some extra features for BruTile and a GUI for the Silverlight version. </p>
<p>What I added:<br />
- Possibility to easily create a new layer based on the capabilities of a TMS tilecache, by giving up a url to the capabilities TileSourceTms(&#8220;http://t4.edugis.nl/tiles/Nederland 17e eeuw (Blaeu)/&#8221;) BruTile creates a layer for the given tilecache.<br />
- GoTo function using the great free service <a href="http://www.tinygeocoder.com/">Tiny Geocoder</a><br />
- Boundingbox zoom.<br />
- GUI for the Silverlight version of BruTile</p>
<p>You can view the BruTile Silverlight demo <a href="http://brutiledemo.appspot.com/">here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=42&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2010/02/07/brutile-silverlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>

		<media:content url="http://timebben.files.wordpress.com/2010/02/brutsilv.png?w=300" medium="image">
			<media:title type="html">brutSilv</media:title>
		</media:content>
	</item>
		<item>
		<title>Visualizing GPX Tracks</title>
		<link>http://timebben.wordpress.com/2010/02/07/visualizing-gpx-tracks/</link>
		<comments>http://timebben.wordpress.com/2010/02/07/visualizing-gpx-tracks/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 15:10:31 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gps logger]]></category>
		<category><![CDATA[gpx]]></category>
		<category><![CDATA[i-gotu]]></category>
		<category><![CDATA[processing]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=35</guid>
		<description><![CDATA[For a few days we tracked our daily travelling with the i-gotU device (GPS Logger) After collecting all the tracks in .gpx format Steven created a movie out of it with the help of Processing, an open source programming language and environment for people who want to program images, animation, and interactions. Most of the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=35&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For a few days we tracked our daily travelling with the i-gotU device (GPS Logger) After collecting all the tracks in .gpx format Steven created a movie out of it with the help of <a href="http://processing.org/">Processing</a>, an open source programming language and environment for people who want to program images, animation, and interactions. Most of the people who were tracking live around Amsterdam so the cool thing is that you can see Amsterdam slowly showing up.</p>
<p>More information can be found on <a href="http://blog.minst.net/2009/12/21/visualizing-gps-tracks-with-processing">Steven&#8217;s blog</a> and if you are interested in the project you can find the project <a href="https://launchpad.net/gpxrenderer">here</a></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='500' height='312' src='http://www.youtube.com/embed/PeeV33q-5zU?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=35&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2010/02/07/visualizing-gpx-tracks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>
	</item>
		<item>
		<title>Cyclorama&#8217;s on the Surface</title>
		<link>http://timebben.wordpress.com/2010/02/07/cycloramas-on-the-surface/</link>
		<comments>http://timebben.wordpress.com/2010/02/07/cycloramas-on-the-surface/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 14:33:43 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Surface]]></category>
		<category><![CDATA[Cyclomedia]]></category>
		<category><![CDATA[Cyclorama]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=33</guid>
		<description><![CDATA[Here a video to show off the possibility to show 360 cyclorama&#8217;s controlled with an object on the Surface. When you zoom in to streetlevel, the Surface contacts the Cyclomedia service and retrieves all cyclorama&#8217;s locations within a bounding box and shows the locations on the map. When you put the cyclorama object on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=33&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Here a video to show off the possibility to show 360 cyclorama&#8217;s controlled with an object on the Surface.</p>
<p>When you zoom in to streetlevel, the Surface contacts the Cyclomedia service and retrieves all cyclorama&#8217;s locations within a bounding box and shows the locations on the map. When you put the cyclorama object on the Surface it gets the nearest cyclorama and show it on the 2nd screen. The surface also checks the orientation of the object so that you can look around by rotating the object.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='500' height='312' src='http://www.youtube.com/embed/CdLcTaJzTmI?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=33&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2010/02/07/cycloramas-on-the-surface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>
	</item>
		<item>
		<title>Eagle 1 Surface Demo</title>
		<link>http://timebben.wordpress.com/2009/06/27/eagle-1-surface-demo/</link>
		<comments>http://timebben.wordpress.com/2009/06/27/eagle-1-surface-demo/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 11:09:43 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Surface]]></category>
		<category><![CDATA[Disaster Management]]></category>
		<category><![CDATA[Eagle 1]]></category>
		<category><![CDATA[Geodan]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=14</guid>
		<description><![CDATA[For an upcoming  <a title="Eagle 1" href="http://www.geodan.com/markets/public-order-and-safety/eagle/" target="_blank">Eagle 1</a> demonstration in Redmond, WA at the Microsoft Public Safety convention we had to create a Surface demo to show the possibilities of the Microsoft Surface for Eagle 1. Back then we were pretty new to creating apps for the Surface and we had 5 days time with the 2 of us to create something nice. In a meeting we decided the following should be in the demo.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=14&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For an upcoming  <a title="Eagle 1" href="http://www.geodan.com/markets/public-order-and-safety/eagle/" target="_blank">Eagle 1</a> demonstration in Redmond, WA at the Microsoft Public Safety convention we had to create a Surface demo to show the possibilities of the Microsoft Surface for Eagle 1. Back then we were pretty new to creating apps for the Surface and we had 5 days time with the 2 of us to create something nice. In a meeting we decided the following should be in the demo.</p>
<p>- <a href="http://resources.esri.com/arcgisserver/apis/silverlight/" target="_blank">ESRI WPF control</a> adjusted for touch input<br />
- Showing Symbols and geometries in the ESRI WPF control<br />
- Let an user upload images to a webservice and show an icon on the ESRI control, download and show the photo when pushed<br />
- Get position information from a moving fire engine trough GeoRSS and show the truck on the map<br />
- By placing a tag on the ESRI control, a Virtual Earth 3D view of that place should be shown on an external television<br />
- Showing layers (OSM, VE) in the ESRI control<br />
- Show <a href="http://www.codeplex.com/brutile" target="_blank">BruTile</a> on the surface (Open source tiling library created by our colleague <a href="http://pauldendulk.com/" target="_blank">Paul</a>)<br />
- Show incomming messages and keep track of all messages in a log<br />
- A Silverlight animation to show the working of Eagle 1<br />
- A document on the Surface where the user can scroll trough<br />
- Place most components in Scatter View Items so the user can arange the controls</p>
<p>In the next few days we created the demo and it turned out that creating applications for the Surface was actually not that hard, offcourse we had some minor problems but I think you always have some minor problems <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Here is a video of Eduardo playing with the demo on the 4th day so not all features where implemented yet.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='500' height='312' src='http://www.youtube.com/embed/h5YxM0w4Jos?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=14&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2009/06/27/eagle-1-surface-demo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>
	</item>
		<item>
		<title>NASA World Wind on the Microsoft Surface</title>
		<link>http://timebben.wordpress.com/2009/03/18/nasa-world-wind-on-the-microsoft-surface/</link>
		<comments>http://timebben.wordpress.com/2009/03/18/nasa-world-wind-on-the-microsoft-surface/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 18:58:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
				<category><![CDATA[Surface]]></category>

		<guid isPermaLink="false">http://timebben.wordpress.com/?p=3</guid>
		<description><![CDATA[We’ve been trying to get NASA World Wind to run on the Microsoft Surface, the first problem we ran into was that we didn&#8217;t got the current stable version (1.4) to run on the surface so we tried out the 1.4.1 alpha version which worked without any problems. The next thing to do was creating [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=3&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://research.geodan.nl/wp-content/themes/modularity-lite/images/slideshow/image5.jpg" alt="" width="220" height="97" />We’ve been trying to get NASA World Wind to run on the Microsoft Surface, the first problem we ran into was that we didn&#8217;t got the current stable version (1.4) to run on the surface so we tried out the <a href="http://www.softcns.com/Home-Hobby/review-NASA-World-Wind_36418.html" target="_blank">1.4.1 alpha</a> version which worked without any problems. The next thing to do was creating a plugin for Wold Wind which captures all contacts on the Surface, after some searching how to create a plugin we managed to capture the contacts from the World Wind window and added panning, zooming, tilting to certain gestures.</p>
<p>We didn&#8217;t had any applications running yet where we used a tag to control something in an application so we decided to create something for the World Wind application. We placed a fiducial underneath a compass and captured the orientation of it and converted the numbers to roll the globe.</p>
<p>The next thing to do is getting all the menu&#8217;s to work and give a better feeling to the zooming and panning but that&#8217;s for later.</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='500' height='312' src='http://www.youtube.com/embed/AEyioTtPsWk?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timebben.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timebben.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timebben.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timebben.wordpress.com&amp;blog=7011350&amp;post=3&amp;subd=timebben&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timebben.wordpress.com/2009/03/18/nasa-world-wind-on-the-microsoft-surface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/86742f111409338b7464ffb60a4fe579?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">timebben</media:title>
		</media:content>

		<media:content url="http://research.geodan.nl/wp-content/themes/modularity-lite/images/slideshow/image5.jpg" medium="image" />
	</item>
	</channel>
</rss>
