<?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/"
	>

<channel>
	<title>Ansis World &#187; osm</title>
	<atom:link href="http://ansi.interblc.com/tag/osm/feed/" rel="self" type="application/rss+xml" />
	<link>http://ansi.interblc.com</link>
	<description>Family, Work, Life</description>
	<lastBuildDate>Mon, 08 Feb 2010 09:30:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Bikemap Routes on Garmin GPS</title>
		<link>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/</link>
		<comments>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 11:30:28 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[GPS]]></category>
		<category><![CDATA[bikemap]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[gpsbabel]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=270</guid>
		<description><![CDATA[Moin I love Peters Bikemap.net page. Using this service to plan all my bike tours. Unfortunately my Garmin (GPSmap 60) does not understand the gpx file from Bikemap export. I wrote this little script to modify and split the route into smaller routes. GPSmap 60 only handle 250 points per route. Therefore the script splits [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>I love <a href="http://www.bodenseepeter.de/" target="_blank">Peters</a> <a href="http://www.bikemap.net/" target="_blank">Bikemap.net</a> page. Using this service to plan all my bike tours. Unfortunately my Garmin (GPSmap 60) does not understand the gpx file from Bikemap export. I wrote this little script to modify and split the route into smaller routes. GPSmap 60 only handle 250 points per route. Therefore the script splits the route into smaller pieces, renames the note names into &#8220;rtept&#8221; resp. &#8220;rte&#8221; and uploads the route via USB to the connected garmin.</p>
<p>What you need to run this script are <a href="http://www.gpsbabel.org/" target="_blank">gpsbabel</a> and the unix commands: sed, split,cut and head .</p>
<p>Here it is, as usually no guarantee.</p>
<pre>#!/bin/bash
filename=$1

gpsbabel -i gpx -f ${filename} -o csv -F out.csv
split -l 200 out.csv splits
rm out.csv

for i in `ls splits*`
do
 gpsbabel -i csv -f ${i} -o gpx -F ${i}.gpx
 sed 's/wpt/rtept/' ${i}.gpx &gt; out
 rm ${i}.gpx
 mv out ${i}.gpx
 rm ${i}

 linenumber=`wc -l ${i}.gpx | cut -d " " -f 1`
 let linenumber-=1

 sed -n 10,${linenumber}p ${i}.gpx &gt;a.gpx

 rm ${i}.gpx

 cat ${filename} | head -n 9  &gt;${i}.gpx
 echo "&lt;rte&gt;"                &gt;&gt;${i}.gpx
 cat a.gpx                   &gt;&gt;${i}.gpx
 echo "&lt;/rte&gt;"               &gt;&gt;${i}.gpx
 echo "&lt;/gpx&gt;"               &gt;&gt;${i}.gpx
 rm a.gpx

 sudo gpsbabel -r -i gpx -f ${i}.gpx -o garmin -F usb:0
 rm ${i}.gpx
done</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/06/13/bikemap-routes-on-garmin-gps/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>OpenStreetMap in one year as a video</title>
		<link>http://ansi.interblc.com/2009/02/07/osm-in-one-year/</link>
		<comments>http://ansi.interblc.com/2009/02/07/osm-in-one-year/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 13:16:24 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Movie]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[osm]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=205</guid>
		<description><![CDATA[Moin ItoWorld produced an impressing Video on OpenStreetMap mapping. Its absolutely impressing how fast a community can develop something like OpenStreetMap. Crowdsourcing is not only about shifting the work towards a community. Its more about how a community can change the world. Meanwhile countries like USA or the Netherlands are disclosing their maps for OpenStreetMap. [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p><a href="http://vimeo.com/itoworld" target="_blank">ItoWorld</a> produced an impressing Video on <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a> mapping. Its absolutely impressing how fast a community can develop something like OpenStreetMap. <a href="http://en.wikipedia.org/wiki/Crowdsourcing" target="_blank">Crowdsourcing</a> is not only about shifting the work towards a community. Its more about how a community can change the world. Meanwhile countries like USA or the Netherlands are disclosing their maps for OpenStreetMap. Take a look at the video and you will understand why OSM will change the world.</p>
<p><object width="400" height="225" data="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=2598878&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
<a href="http://vimeo.com/2598878">OSM 2008: A Year of Edits</a> from <a href="http://vimeo.com/itoworld">ItoWorld</a> on <a href="http://vimeo.com">Vimeo</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2009/02/07/osm-in-one-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStreetMap</title>
		<link>http://ansi.interblc.com/2008/09/30/openstreetmap/</link>
		<comments>http://ansi.interblc.com/2008/09/30/openstreetmap/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:42:38 +0000</pubDate>
		<dc:creator>Ansi</dc:creator>
				<category><![CDATA[Gutenberg2.0]]></category>
		<category><![CDATA[Web2.0]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[osm]]></category>

		<guid isPermaLink="false">http://ansi.interblc.com/?p=54</guid>
		<description><![CDATA[Moin Last weekend on the Barcamp in Stuttgart (#bc0711) I learned more about OpenStreetMap. Extreme impressing! What I really liked was the tremendous power of communities. Peter gave a very good presentation on Openstreetmap. Presentation: Openstreetmap im Tourismus View SlideShare presentation or Upload your own. (tags: barcamp castlecamp) Here are the live examples: Buenos Aires [...]]]></description>
			<content:encoded><![CDATA[<p>Moin</p>
<p>Last weekend on the Barcamp in <a href="http://bcstuttgart.mixxt.de/" target="_blank">Stuttgart</a> (<a href="http://hashtags.org/tag/bc0711/" target="_blank">#bc0711</a>) I learned more about <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a>. Extreme impressing! What I really liked was the tremendous power of communities. <a href="https://www.xing.com/profile/Peter_Eich" target="_blank">Peter</a> gave a very good presentation on Openstreetmap.</p>
<p>Presentation:</p>
<div id="__ss_598639" style="width: 425px; text-align: left;"><a style="font:14px Helvetica,Arial,Sans-serif;display:block;margin:12px 0 3px 0;text-decoration:underline;" title="Openstreetmap im Tourismus" href="http://www.slideshare.net/muesli/openstreetmap-im-tourismus-presentation?type=powerpoint">Openstreetmap im Tourismus</a><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slideshare.net/swf/ssplayer2.swf?doc=osmeinfhrunghf-1221464218006171-9&amp;stripped_title=openstreetmap-im-tourismus-presentation" /><embed type="application/x-shockwave-flash" width="425" height="355" src="http://static.slideshare.net/swf/ssplayer2.swf?doc=osmeinfhrunghf-1221464218006171-9&amp;stripped_title=openstreetmap-im-tourismus-presentation" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div style="font-size: 11px; font-family: tahoma,arial; height: 26px; padding-top: 2px;">View SlideShare <a style="text-decoration:underline;" title="View Openstreetmap im Tourismus on SlideShare" href="http://www.slideshare.net/muesli/openstreetmap-im-tourismus-presentation?type=powerpoint">presentation</a> or <a style="text-decoration:underline;" href="http://www.slideshare.net/upload?type=powerpoint">Upload</a> your own. (tags: <a style="text-decoration:underline;" href="http://slideshare.net/tag/barcamp">barcamp</a> <a style="text-decoration:underline;" href="http://slideshare.net/tag/castlecamp">castlecamp</a>)</div>
</div>
<p>Here are the live examples:</p>
<h2>Buenos Aires</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/?ie=UTF8&amp;ll=-34.689686,-58.422546&amp;spn=0.759943,0.870667&amp;z=10&amp;output=embed&amp;s=AARTsJqzARj-Z8VnW5pkPMLMmZbqrJcYpw"></iframe><br /><small><a href="http://maps.google.de/?ie=UTF8&amp;ll=-34.689686,-58.422546&amp;spn=0.759943,0.870667&amp;z=10&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small></p>
<h3>OpenStreetMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=-58.832,-35.038,-58.083,-34.192&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=-34.614999999999995&#038;lon=-58.457499999999996&#038;zoom=10&#038;layers=0B00FTFT">View Larger Map</a></small></p>
<h2>Hanoi:</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?f=q&amp;hl=de&amp;geocode=&amp;q=Hanoi&amp;ie=UTF8&amp;z=12&amp;ll=21.07489,105.853958&amp;output=embed&amp;s=AARTsJrOf4CCj5ZIkOvv70pi01AbL9sSWQ"></iframe><br /><small><a href="http://maps.google.de/maps?f=q&amp;hl=de&amp;geocode=&amp;q=Hanoi&amp;ie=UTF8&amp;z=12&amp;ll=21.07489,105.853958&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small> </p>
<h3>OpenStreepMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=105.7563,20.9133,105.9437,21.1533&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=21.0333&#038;lon=105.85&#038;zoom=12&#038;layers=0B00FTFT">View Larger Map</a></small> </p>
<h2>Kapstadt:</h2>
<h3>Google:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/?ie=UTF8&amp;ll=-33.917438,18.445015&amp;spn=0.09587,0.108833&amp;z=13&amp;output=embed&amp;s=AARTsJqzARj-Z8VnW5pkPMLMmZbqrJcYpw"></iframe><br /><small><a href="http://maps.google.de/?ie=UTF8&amp;ll=-33.917438,18.445015&amp;spn=0.09587,0.108833&amp;z=13&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small></p>
<h3>OpenStreetMap:</h3>
<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://www.openstreetmap.org/export/embed.html?bbox=18.38,-33.9763,18.4738,-33.8697&#038;layer=osmarender" style="border: 1px solid black"></iframe><br /><small><a href="http://www.openstreetmap.org/?lat=-33.923&#038;lon=18.4269&#038;zoom=12&#038;layers=0B00FTFT">View Larger Map</a></small></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://ansi.interblc.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://ansi.interblc.com/2008/09/30/openstreetmap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
