<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>openstreetmap &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/openstreetmap/</link>
	<description>Feed of posts on WordPress.com tagged "openstreetmap"</description>
	<pubDate>Thu, 03 Dec 2009 17:14:53 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Import OpenStreetMap data into GeoServer/PostGIS]]></title>
<link>http://gismemento.wordpress.com/2009/12/02/import-openstreetmap-data-into-geoserverpostgis/</link>
<pubDate>Wed, 02 Dec 2009 22:45:35 +0000</pubDate>
<dc:creator>Helder Nunes</dc:creator>
<guid>http://gismemento.wordpress.com/2009/12/02/import-openstreetmap-data-into-geoserverpostgis/</guid>
<description><![CDATA[It is possible to download map data from the OpenStreetMap (OSM) dataset in a number of ways. The fu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>It is possible to download map data from the OpenStreetMap (OSM) dataset in a number of ways. The full dataset is available from the OSM website <a href="http://" target="_blank">download</a> area. This dataset (Planet.osm) is a large file, currently about 4GB when compressed and about 100GB when uncompressed. It is also possible to select smaller areas to download. Data normally comes in the form of XML formatted .osm files (an OpenStreetMap markup language).</p>
<p>I have downloaded today a part of the city of Porto using the OSM API,  converted it into shape files, added a new store to geoserver (using those shape files) and finaly visualized the new layers in GoogleEarth and uDig.</p>
<p><strong> </strong></p>
<ul>
<li><strong>Obtaining the contents from OpenStreetMap using the OSM API</strong></li>
</ul>
<p style="padding-left:30px;">First you will have to define your region specified by a bounding box which consists of a minimum and maximum latitude and longitude. An easy way to accomplish that task is to use Google Earth. Hovering the mouse in the desired corner of the rectangle to export, look at the coordinates and take notes (you only need two coordinates - opposite corners of the rectangle).</p>
<p style="padding-left:30px;">Then use those values to create the HTTP request using the folowing URL:</p>
<blockquote><p>http://api.openstreetmap.org/api/0.6/map?bbox=left,bottom,right,top</p></blockquote>
<p style="padding-left:30px;">for example:</p>
<blockquote><p><span style="color:#000000;"><span style="text-decoration:none;"><a href="http://api.openstreetmap.org/api/0.6/map?bbox=11.54,48.14,11.543,48.145" target="_blank">http://api.openstreetmap.org/api/0.6/map?bbox=11.54,48.14,11.543,48.145</a></span></span></p></blockquote>
<p style="padding-left:30px;">Where left is the maximum longitude, right is the value for the minimum longitude, bottom the minimum latitude and top the maximum latitude.</p>
<p style="padding-left:30px;">However there is a constraint, the API is limited to bounding boxes of about 0.5 degree by 0.5 degree. For larger areas you could try <a title="Osmxapi" href="http://wiki.openstreetmap.org/wiki/Osmxapi" target="_blank">Osmxapi</a> like so (this will also return a .osm file):</p>
<blockquote><p><a href="http://www.informationfreeway.org/api/0.6/map?bbox=11.54,48.14,11.543,48.145" target="_blank">http://www.informationfreeway.org/api/0.6/map?bbox=11.54,48.14,11.543,48.145</a></p></blockquote>
<p style="padding-left:30px;">The .osm file is not currently not supported by geoserver, so we got 2 ways to get around this. Convert it to shape files, or insert directly in PostGIS database. However I discovered a <a href="http://download.geofabrik.de/osm/" target="_blank">Web page</a> that offers subsets of the original OSM dataset. They do this by dividing the datasets by country offering the information both in .osm or .shp files, very handy.</p>
<ul>
<li><strong>Convert .osm files to shape</strong></li>
</ul>
<p style="padding-left:30px;">Not easy to find, cause I did it in Windows OS, but there is an application out there called <em>osm2shp</em>, which comes with a GUI that does this conversion in a very easy way. If having trouble finding it, just ask me. If you are working in linux, you&#8217;re be glad to know that Ubuntu (and Debian-based OSes) repositories have this package.</p>
<ul>
<li><strong>Creating a datastore in geoserver uing the new shape files</strong></li>
</ul>
<p style="padding-left:30px;">The output of the previous convertion can be copied to the data folder in the geoserver path. Just create a folder (for instance <em>osmdata</em>) containing the shape files in:</p>
<p style="padding-left:30px;">path\to\geoserver\data_dir\data\osmdata</p>
<p style="padding-left:30px;">then create a new datastore using the GeoServer Web interface. (<a href="http://docs.geoserver.org/2.0.0/user/gettingstarted/shapefile-quickstart/index.html" target="_blank">check this tutorial</a>)</p>
<p style="padding-left:30px;">Just pay attention so that the projection of the source data be configured as 900913, the projection used in Google Maps, and the default for OpenStreetMap.</p>
<ul>
<li><strong>Direct input into PostGIS database</strong></li>
</ul>
<p style="padding-left:30px;">There is a converter that allows you to load the OpenStreetMap data into PostGIS called <em>osm2pgsql</em>.  This program is a package available on Debian-based distributions (such as Ubuntu), and is also available as a binary on Windows.</p>
<p style="padding-left:30px;">Running the command:</p>
<blockquote><p>osm2pgsql -E 900913 -d myDataBase TheOsmFile.osm</p></blockquote>
<p style="padding-left:30px;">This will process the XML information and load the data into a PostGIS database called “myDataBase”. The -E defines the projection of the source data, which in this case is 900913, the projection used in Google Maps, and the default for OpenStreetMap.</p>
<p style="padding-left:30px;">If successful, the database will contain the following tables:</p>
<p style="padding-left:60px;"><code>planet_osm_line<br />
planet_osm_point<br />
planet_osm_polygon<br />
planet_osm_roads</code></p>
<p style="padding-left:30px;">There are two different tables that contain line data, <code>planet_osm_line </code>and <code>planet_osm_roads</code>. The former includes railroads, subways, and other linear information.  The latter is made up exclusively of roads.  The <code>planet_osm_point</code> table has a range of data: subway stations, shopping centers, universities, and even brothels. Lastly the <code>planet_osm_polygon</code> table has, but is not limited to, parks, bodies of water, and even buildings in certain urban areas.</p>
<p style="padding-left:30px;">After these steps map info can be easily viewed in GIS apps like uDig/ArcView. The GeoServer Web interface also has directs links for KML for previewing the layer in GoogleEarth if installed.</p>
<p style="padding-left:30px;">Also today, I had a small rendez-vous with openLayers and I was able to visualize the new OSM data in a Web page. It is quite easy to create and customize, but have a peek in the <a href="http://blog.geoserver.org/wp-content/uploads/openstreetmaphtml.zip">sources</a> that I used as a guide. I will have to explore this some day later.</p>
<p><span style="color:#000000;"><strong><span style="color:#808080;">Information sources: </span></strong></span></p>
<p style="padding-left:30px;"><a href="http://blog.geoserver.org/2009/01/30/geoserver-and-openstreetmap/" target="_blank"><span style="color:#000000;"><span style="text-decoration:none;"><span style="color:#808080;">http://blog.geoserver.org/2009/01/30/geoserver-and-openstreetmap/</span></span></span></a><span style="color:#808080;"> </span></p>
<p style="padding-left:30px;"><a href="http://wiki.openstreetmap.org/wiki/Getting_Data" target="_blank"><span style="color:#000000;"><span style="text-decoration:none;"><span style="color:#808080;">http://wiki.openstreetmap.org/wiki/Getting_Data</span></span></span></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Making the invisible visible: matching West Midlands ICT SMEs with business opportunities]]></title>
<link>http://wmro.wordpress.com/2009/12/02/making-the-invisible-visible-matching-west-midlands-ict-smes-with-business-opportunities/</link>
<pubDate>Wed, 02 Dec 2009 12:30:07 +0000</pubDate>
<dc:creator>Andrina Dhillon</dc:creator>
<guid>http://wmro.wordpress.com/2009/12/02/making-the-invisible-visible-matching-west-midlands-ict-smes-with-business-opportunities/</guid>
<description><![CDATA[West Midlands Regional Development Agency, Advantage West  Midlands (AWM) has unveiled its latest in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright size-full wp-image-4845" title="AWMist West Midlands ICT Cluster logo" src="http://wmro.wordpress.com/files/2009/12/ict-cluster-awmist-logo.png" alt="West Midlands ICT Cluster AWMist" width="274" height="53" />West Midlands Regional Development Agency, Advantage West  Midlands (AWM) has unveiled its latest initiative to stimulate and develop the high technology sector.</p>
<p><a title="A Web Map-based Information Search Tool" href="http://www.awmist.org">AWMist</a> (A Web Map-based Information Search Tool) is the first regional interface of its kind where collaboration, business opportunity building, and partnerships can be easily forged between the region&#8217;s ICT <abbr title="Small to Medium Enterprises">SMEs</abbr> (Small to Medium Enterprises) and those who can support and assist them, such as funding agencies, universities and business support projects.</p>
<p><!--more-->A major challenge  for the West Midlands&#8217; ICT industry is that the excellent innovation and entrepreneurship present in the region is represented by small companies below the radar of many large organisations. Matching a SME with a business opportunity is difficult and time-consuming, with no one place to quickly search and find a partner or solution provider.</p>
<p>Mike Musson, the <a title="West Midlands ICT Cluster" href="http://www.wmictcluster.org/">ICT Cluster</a> Manager for AWM said:</p>
<blockquote><p>‘With AWMist we will be taking a large step forward to exhibiting the breadth and depth of ICT skill and innovation in the West Midlands, which is traditionally associated with manufacturing rather than the knowledge economy. We will be making the invisible visible. Such is the enthusiasm for AWMist that other regional clusters are joining including Digital Media, Photonics, Electronics and Medical Technologies.’</p></blockquote>
<p style="text-align:center;"><img class="size-full wp-image-4842 aligncenter" title="Mike Musson and AWMist" src="http://wmro.wordpress.com/files/2009/12/mike-musson-awmist_v1-0_image_gw.jpg" alt="Mike Musson, West Midlands ICT Cluster Manager" width="400" height="301" /></p>
<p>Advantage West Midlands chose <a title="Free editable map of the whole world" href="http://www.openstreetmap.com/">OpenStreetMap</a> (OSM) as its base map for AWMist, which was a breakthrough for OSM.</p>
<p>The application was developed by leading OSM contributor Frederik Ramm’s company <a href="http://www.geofabrik.de/">Geofabrik</a>,  in intense competition with companies offering more traditional map solutions.</p>
<p><a href="http://www.awmist.org"><img class="alignnone size-full wp-image-4836" title="AWMist screengrab (450px) GW" src="http://wmro.wordpress.com/files/2009/12/awmist-screengrab-450px_v1-0_image_gw.jpg" alt="Screenshot of AWMist.org (A Web Map-based Information Search Tool)" width="450" height="324" /></a><br />
Screenshot: <a href="http://www.awmist.org">www.awmist.org</a></p>
<p>AWM chose OSM for its open commercial terms and lack of technical restrictions when compared to rival map providers.</p>
<p>The fact that the data for the West Midlands was collected and maintained locally was also a factor in the decision. The activities of local mappers in quickly reflecting changes to produce a dynamic map also weighed in OSM&#8217;s favour.</p>
<p>AWMist is released now to the region’s ICT businesses for population with data of their choice to maximise their attraction for business partners and will go live to the world in January 2010.</p>
<p>Participating businesses and agencies will have multiple levels of viewing and editing for company profiles and contacts, and will be able to search and filter according to the nature of the opportunity. A restricted view only mode will be available for those outside the West Midlands and the AWM ICT cluster .</p>
<p>AWM aim to grow the population of participating businesses and organisations to a European-wide audience. AWM will be using the tool globally to promote the West Midlands&#8217; ICT businesses.</p>
<p>To preview the site visit <a href="http://www.awmist.org/">www.awmist.org</a>.</p>
<p><em>This guest post was written by <a href="http://www.openstreetmap.org">Brian Prangle</a> with contributions from <a href="http://take21.org/blog/">Andrew Mackenzie</a>.</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Noi elemente pe harta Galațiului (IV)]]></title>
<link>http://mapguy.wordpress.com/2009/11/29/noi-elemente-pe-harta-gala%c8%9biului-iv/</link>
<pubDate>Sun, 29 Nov 2009 22:00:00 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/29/noi-elemente-pe-harta-gala%c8%9biului-iv/</guid>
<description><![CDATA[Zilele trecute am adus mici completări în Mazepa (1 și 2), în zona cunoscută ca și &#8220;la BR-uri]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Zilele trecute am adus mici completări în Mazepa (1 și 2), în zona cunoscută ca și &#8220;<a title="harta Galațiului" href="http://www.openmap.ro/index.php?lat=45.43082&#38;lon=28.04523&#38;zoom=17&#38;layers=0B00FTTTTTFFT">la BR-uri</a>&#8220;:</p>
<div id="attachment_755" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/bruribefore.png"><img class="size-medium wp-image-755" title="Mazepa înainte" src="http://mapguy.wordpress.com/files/2009/11/bruribefore.png?w=300" alt="Mazepa înainte" width="300" height="200" /></a><p class="wp-caption-text">Mazepa înainte</p></div>
<div id="attachment_756" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/bruriafter.png"><img class="size-medium wp-image-756" title="Mazepa după" src="http://mapguy.wordpress.com/files/2009/11/bruriafter.png?w=300" alt="Mazepa după" width="300" height="200" /></a><p class="wp-caption-text">Mazepa după</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tumarati s neznancima]]></title>
<link>http://akuzativ.wordpress.com/2009/11/29/tumarati-s-neznancima/</link>
<pubDate>Sun, 29 Nov 2009 20:27:54 +0000</pubDate>
<dc:creator>mdimjasevic</dc:creator>
<guid>http://akuzativ.wordpress.com/2009/11/29/tumarati-s-neznancima/</guid>
<description><![CDATA[Ovaj vikend zimovao sam u Zagrebu. Nisam otišao kući jer je danas bila zabava. Zabava je bila temats]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ovaj vikend zimovao sam u Zagrebu. Nisam otišao kući jer je danas bila zabava. Zabava je bila tematska &#8211; obavezno je trebalo ponijeti GPS-uređaj, fotoaparat, kartu i nešto dobre volje. Radi se o <a href="http://wiki.openstreetmap.org/wiki/Mapping_weekends">vikendu kartiranja</a> Zagreba, točnije kvartova Borongaj i Trnava za kartu <a href="http://www.openstreetmap.org/">OpenStreetMap</a> o kojom sam već <a href="http://akuzativ.wordpress.com/2009/09/27/volonterizam-koketiranje-s-bezumljem/">pisao</a>. Ti kvartovi do sada su na spomenutom OpenStreetMapu bili nešto slabije označeni pa se <a href="http://wiki.openstreetmap.org/wiki/16.11.2009_-_drugo_okupljanje#Mapping_party">nekolicina nas</a> okupila u hladno nedjeljno jutro i odlučila to promijeniti. Podijelili smo područja pa svaki njime zavladali &#8211; vozili smo se spomenutim kvartovima i tumarali bespućima bezbrojnih uskih ulica &#8211; neki autima, neki biciklima. Većinu ljudi s kojima sam se danas okupio nisam prethodno poznavao, a nisu ni oni bili u nešto boljoj poziciji i to nas nije sprečavalo da se dobro zabavimo, kartiramo, a kasnije i sjednemo na koji šiš-ćevap, pivu i malo luka. Prisutni su bili skoro svih uzrasta i oba spola. U srijedu ćemo se ponovno okupiti kako bismo sakupljene podatke unijeli u OpenStreetMap. I nekoliko fotki za kraj&#8230; za sada nema jer WordPress nešto pretjerano dugo učitava slike.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Noi elemente pe harta Galațiului (III)]]></title>
<link>http://mapguy.wordpress.com/2009/11/28/noi-elemente-pe-harta-gala%c8%9biului-iii/</link>
<pubDate>Sat, 28 Nov 2009 20:56:33 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/28/noi-elemente-pe-harta-gala%c8%9biului-iii/</guid>
<description><![CDATA[Și iată cum au apărut și clădirile din zona portului: Zona Portului înainte Zona Portului după]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Și iată cum au apărut și clădirile din <a title="harta Galațiului" href="http://www.openmap.ro/index.php?lat=45.43253&#38;lon=28.06269&#38;zoom=17&#38;layers=0B00FTTTTTFFT">zona portului</a>:</p>
<div id="attachment_750" class="wp-caption alignleft" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/portuluibefore.png"><img class="size-medium wp-image-750" title="Zona Portului înainte" src="http://mapguy.wordpress.com/files/2009/11/portuluibefore.png?w=300" alt="Zona Portului înainte" width="300" height="250" /></a><p class="wp-caption-text">Zona Portului înainte</p></div>
<div id="attachment_752" class="wp-caption alignleft" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/portuluiafter.png"><img class="size-medium wp-image-752" title="Zona Portului după" src="http://mapguy.wordpress.com/files/2009/11/portuluiafter.png?w=300" alt="Zona Portului după" width="300" height="250" /></a><p class="wp-caption-text">Zona Portului după</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Noi elemente pe harta Galațiului (II)]]></title>
<link>http://mapguy.wordpress.com/2009/11/27/noi-elemente-pe-harta-gala%c8%9biului-ii/</link>
<pubDate>Fri, 27 Nov 2009 07:56:04 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/27/noi-elemente-pe-harta-gala%c8%9biului-ii/</guid>
<description><![CDATA[Continuăm cu blocurile din zona gării, unde avem atât clădiri vechi cât și blocuri ANL de doar 4 ani]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Continuăm cu blocurile din zona gării, unde avem atât clădiri vechi cât și blocuri ANL de doar 4 ani:</p>
<div id="attachment_746" class="wp-caption alignleft" style="width: 160px"><a href="http://mapguy.wordpress.com/files/2009/11/garabefore.png"><img class="size-medium wp-image-746" title="Zona gării înainte" src="http://mapguy.wordpress.com/files/2009/11/garabefore.png?w=150" alt="Zona gării înainte" width="150" height="300" /></a><p class="wp-caption-text">Zona gării înainte</p></div>
<div id="attachment_747" class="wp-caption alignleft" style="width: 160px"><a href="http://mapguy.wordpress.com/files/2009/11/garaafter.png"><img class="size-medium wp-image-747" title="Zona gării după" src="http://mapguy.wordpress.com/files/2009/11/garaafter.png?w=150" alt="Zona gării după" width="150" height="300" /></a><p class="wp-caption-text">Zona gării după</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenStreetMap in Athens – as accurate as London]]></title>
<link>http://povesham.wordpress.com/2009/11/25/openstreetmap-in-athens-%e2%80%93-as-accurate-as-london/</link>
<pubDate>Wed, 25 Nov 2009 23:01:26 +0000</pubDate>
<dc:creator>mukih</dc:creator>
<guid>http://povesham.wordpress.com/2009/11/25/openstreetmap-in-athens-%e2%80%93-as-accurate-as-london/</guid>
<description><![CDATA[Most of the work that we carried out at UCL in evaluating the quality of OpenStreetMap is focused on]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Most of the work that we carried out <a href="http://www.cege.ucl.ac.uk/research" target="_blank">at UCL</a> in <strong>evaluating the quality of<a href="http://openstreetmap.org" target="_blank"> OpenStreetMap</a></strong> is <strong><a href="http://wp.me/p7DNf-2O">focused on England</a>, and particularly on London</strong>. This is mainly due to the accessibility of comparative datasets. The reason for this was the availability of data, as the <a href="http://www.ordnancesurvey.co.uk/oswebsite/partnerships/research/" target="_blank">Ordnance Survey research unit</a> kindly provided me with the <a href="http://www.ordnancesurvey.co.uk/oswebsite/products/meridian2/" target="_blank">full Meridian 2 dataset</a> for comparison. More detailed comparison, for which we used <a href="http://www.ordnancesurvey.co.uk/osmastermapitn/" target="_blank">MasterMap</a>, came from the <a href="http://edina.ac.uk/digimap/" target="_blank">wonderful Digimap service</a>, though because of the time that it takes to process it we were limited in the size of the area that was used for comparison.</p>
<p>One of the open questions that remained was <strong>the accuracy of data collection in other parts of the world</strong>. Luckily, Ourania (Rania) Kounadi, who studied our <a href="http://www.cege.ucl.ac.uk/teaching/postgraduate/gis" target="_blank">MSc in GIS at UCL</a>, had access to <strong>detailed maps of Athens</strong>. She used a <strong>1:10,000 map from the <a href="http://en.wikipedia.org/wiki/Hellenic_Military_Geographical_Service" target="_blank">Hellenic Military Geographic Service (HGMS)</a></strong> and focused on an area of 25 square kilometres at the centre of the city. The roads were digitised from the HGMS map, and then the <a href="http://www.geog.ucsb.edu/~good/papers/261.pdf">Goodchild-Hunter procedure</a> was used to evaluate the positional accuracy.</p>
<p>The results show that for <strong>most of the roads in the evaluation area there was an overlap of 69% to  100%</strong> between OSM and HGMS datasets. The average overlap was very close to 90%. Her analysis also included attribute and completeness evaluation, showing that the quality is high on these aspects too.</p>
<div id="attachment_191" class="wp-caption alignleft" style="width: 224px"><a href="http://povesham.wordpress.com/files/2009/11/athensosm.jpg"><img class="size-medium wp-image-191" title="OSM positional accuracy for Athens" src="http://povesham.wordpress.com/files/2009/11/athensosm.jpg?w=214" alt="" width="214" height="300" /></a><p class="wp-caption-text">OSM positional accuracy for Athens</p></div>
<p>So a pattern is starting to emerge showing that <strong>the quality of OSM data is indeed good</strong> in terms of positional accuracy. This is surprising at first glance – how come people who are not necessarily trained in geographical data collection and do not use rigorous quality assurance processes produce data that is as good as the authoritative data?</p>
<p><a href="http://www.ucl.ac.uk/~ucfamha/OSM%20data%20analysis%20070808_web.pdf" target="_blank">My explanation for this,</a> as <strong>I’ve written in my paper about OSM quality</strong>, is that it ‘demonstrates the importance of the infrastructure, which is funded by the private and public sector and which allows the volunteers to do their work without significant personal investment. The GPS system and the receivers allow untrained users to automatically acquire their position accurately, and thus simplify the process of gathering geographical information. This is, in a way, the culmination of the process in which highly trained surveyors were replaced by technicians, with the introduction of high-accuracy GPS receivers in the construction and mapping industries over the last decade. The imagery also provides such an infrastructure function – the images were processed, rectified and georeferenced by experts and thus, an OSM volunteer who uses this imagery for digitising benefits from the good positional accuracy which is inherent in the image. So the issue here is not to compare the work of professionals and amateurs, but to understand that the amateurs are actually supported by the codified professionalised infrastructure and develop their skills through engagement with the project.’<br />
Rania’s dissertation <a href="http://homepages.ge.ucl.ac.uk/~mhaklay/pdf/Rania_OSM_dissertation.pdf" target="_blank">is available to download from here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Noi elemente pe harta Galațiului (I)]]></title>
<link>http://mapguy.wordpress.com/2009/11/25/noi-elemente-pe-harta-gala%c8%9biului-i/</link>
<pubDate>Wed, 25 Nov 2009 20:35:23 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/25/noi-elemente-pe-harta-gala%c8%9biului-i/</guid>
<description><![CDATA[Ca să justific pauza cam îndelungată de pe blog am să încep o luuuungă serie de articole care să dem]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ca să justific pauza cam îndelungată de pe blog am să încep o luuuungă serie de articole care să demonstreze că nu am stat chiar degeaba în ultima vreme. Pentru început am să vă prezint cum arăta zona pieței centrale acum o săptămână și cum arată <a title="harta României" href="http://www.openmap.ro/index.php?lat=45.44173&#38;lon=28.04781&#38;zoom=17&#38;layers=0B00FTTTTTFFT">acum</a>:</p>
<p>Înainte:</p>
<div id="attachment_738" class="wp-caption aligncenter" style="width: 210px"><a href="http://mapguy.wordpress.com/files/2009/11/piata1before.png"><img class="size-medium wp-image-738" title="Piața centrală, zona 1" src="http://mapguy.wordpress.com/files/2009/11/piata1before.png?w=200" alt="Piața centrală, zona 1" width="200" height="300" /></a><p class="wp-caption-text">Piața centrală, zona 1</p></div>
<div id="attachment_739" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/piata2before.png"><img class="size-medium wp-image-739" title="Piața centrală, zona 2" src="http://mapguy.wordpress.com/files/2009/11/piata2before.png?w=300" alt="Piața centrală, zona 2" width="300" height="230" /></a><p class="wp-caption-text">Piața centrală, zona 2</p></div>
<p>După:</p>
<div id="attachment_740" class="wp-caption aligncenter" style="width: 210px"><a href="http://mapguy.wordpress.com/files/2009/11/piata1after.png"><img class="size-medium wp-image-740" title="Piața centrală, zona 1 actualizată" src="http://mapguy.wordpress.com/files/2009/11/piata1after.png?w=200" alt="Piața centrală, zona 1 actualizată" width="200" height="300" /></a><p class="wp-caption-text">Piața centrală, zona 1 actualizată</p></div>
<div id="attachment_741" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/piata2after.png"><img class="size-medium wp-image-741" title="Piața centrală, zona 2 actualizată" src="http://mapguy.wordpress.com/files/2009/11/piata2after.png?w=300" alt="Piața centrală, zona 2 actualizată" width="300" height="230" /></a><p class="wp-caption-text">Piața centrală, zona 2 actualizată</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Înapoi la planșa de desenat]]></title>
<link>http://mapguy.wordpress.com/2009/11/20/inapoi-la-plan%c8%99a-de-desenat/</link>
<pubDate>Fri, 20 Nov 2009 22:11:58 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/20/inapoi-la-plan%c8%99a-de-desenat/</guid>
<description><![CDATA[Au trecut câteva zile de când nu am mai scris nimic pe blog. Nu am fost plecat pe nicăieri, nici nu ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Au trecut câteva zile de când nu am mai scris nimic pe blog. Nu am fost plecat pe nicăieri, nici nu am fost bolnav, pur și simplu am avut nevoie de un pic de pauză după ce în ultimile 2 luni am tras atât la servici cât și acasă. După o seară în care doar am răspuns la comentarii sau la niște mailuri, aseară m-a apucat nostalgia vremurilor trecute, când Galațiul lipsea de pe harta OSM, și când aveam mult de lucru. Așa că am început ușor cu o inventariere a track-urilor și a pozelor făcute prin Galați, și am mai completat pe ici pe colo.</p>
<p style="text-align:justify;">Probabil că ați observat că sunt câteva cartiere în oraș care sunt bine reprezentate la nivel de alee/stradă, dar lipsesc clădirile. Ei bine, cred că plimbările făcute la începutul acestui an, când am spus că trebuie să acopăr toate cartiere în care există blocuri și să le notez denumirea, o să apară în curând pe hartă. Am să încep cu zona pieței centrale care momentan lipsește de pe hartă, și după aceea am să trec la cartierele deja existente (M13, M14, M38, M39, M40, completare Aurel Vlaicu, completare Siderurgiștilor Vest, M20, M21, Portului). Cum probabil sunteți curioși care este metoda prin care culeg toate aceste date, am să pregătesc un mic articol cu câteva exemple (care din păcate se bazează foarte mult pe imaginile din Yahoo, deci nu se aplică decât în prea puține cazuri).</p>
<p style="text-align:justify;">Într-o vreme publicam articole cu o zonă de pe hartă, înainte și după ce i-am făcut o vizită pentru a vedea diferența. Cred că pe măsură ce am să adaug noi contribuții am să fac mici capturi ale zonei pentru a vedea diferențele.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Itinéraire complet entre Cossonay et Rivaz]]></title>
<link>http://viafrancigena.wordpress.com/2009/11/20/os/</link>
<pubDate>Fri, 20 Nov 2009 20:24:10 +0000</pubDate>
<dc:creator>viafrancigena</dc:creator>
<guid>http://viafrancigena.wordpress.com/2009/11/20/os/</guid>
<description><![CDATA[Cela fait maintenant plusieurs mois que je complète l&#8217;itinéraire de la Via Francigena sur Open]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://viafrancigena.wordpress.com/files/2009/11/imag0094.jpg"><img class="alignleft size-medium wp-image-69" title="La tonnelle au milieu des vignes" src="http://viafrancigena.wordpress.com/files/2009/11/imag0094.jpg?w=300" alt="" width="210" height="140" /></a>Cela fait maintenant plusieurs mois que je complète l&#8217;itinéraire de la Via Francigena sur OpenStreetMap. Voici un petit retour.</p>
<p><strong>Qu&#8217;est ce qu&#8217;OpenStreetMap (OSM)</strong></p>
<p>OSM est un projet collaboratif du même type que wikipedia sauf que cela concerne la cartographie. Sur OSM chacun est libre de reporter sur une carte commune ses points d&#8217;intérêt ou sa région. Pour voir à quoi cela ressemble : <a href="http://www.openstreetmap.org/">openstreetmap.org</a></p>
<p><strong>OSM et la VF</strong></p>
<p>Vous pouvez voir l&#8217;avancement des travaux sur : <a href="http://osm.lonvia.de/hiking.html?zoom=12&#38;lat=46.54784&#38;lon=6.71704&#38;layers=BT">http://osm.lonvia.de/hiking.html?zoom=12&#38;lat=46.54784&#38;lon=6.71704&#38;layers=BT</a></p>
<p>Maintenant l&#8217;itinéraire est complet entre Cossonay et Rivaz!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OSM-PH presentation video at SOTM'08]]></title>
<link>http://epsg4253.wordpress.com/2009/11/17/osm-ph-presentation-video-at-sotm08/</link>
<pubDate>Tue, 17 Nov 2009 10:36:59 +0000</pubDate>
<dc:creator>maning</dc:creator>
<guid>http://epsg4253.wordpress.com/2009/11/17/osm-ph-presentation-video-at-sotm08/</guid>
<description><![CDATA[Eugene reminded us that Andy finally uploaded the videos of Openstreetmap&#8217;s State of the Map C]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://vaes9.codedgraphic.com/">Eugene</a> <a href="http://lists.openstreetmap.org/pipermail/talk-ph/2009-November/001568.html">reminded</a> us that <a href="http://www.gravitystorm.co.uk/shine/archives/2009/11/02/state-of-the-map-2008-videos-online-at-last/">Andy finally uploaded the videos</a> of Openstreetmap&#8217;s <a href="http://wiki.openstreetmap.org/wiki/State_Of_The_Map_2008">State of the Map Conference last year in Limerick</a>.</p>
<p>I helped <a href="http://wiki.openstreetmap.org/wiki/User:Ewmjc">Mike</a> create the presentation material.  I think he gave a good overview of the status of mapping in the Philippines back then.</p>
<p><span style='text-align:center; display: block;'><br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=7097011&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=7097011&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object><br />
</span></p>
<p>In case your curious, that&#8217;s me in the first slide <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Work in progress]]></title>
<link>http://mapguy.wordpress.com/2009/11/16/work-in-progress/</link>
<pubDate>Mon, 16 Nov 2009 21:06:18 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/16/work-in-progress/</guid>
<description><![CDATA[După ce am trecut pe la un control oftalmologic care din fericire nu a scos nimic rău la iveală (dec]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">După ce am trecut pe la un control oftalmologic care din fericire nu a scos nimic rău la iveală (deci încă îmi permit să stau 12-14 ore pe zi cu ochii în monitor) am ajuns din nou să ma duelez cu Geoserver-ul și stilurile lui. Documentația oficială pentru versiunea 2.0 pe care o utilizez este mult prea slabă, din fericire cea pentru 1.7.x se aplică pentru cele mai multe probleme pe care vrei să le rezolvi (eu încă nu am găsit diferențe). În plus lumea a mai folosit Geoserver-ul și a documentat multe probleme de care s-au lovit la rândul lor.</p>
<p style="text-align:justify;">Am învățat cum pot pune o imagine grafică să se repete pe o linie, am pierdut câteva minute să fac 2 mici imagini care să se potrivească scopului meu, și apoi a început chinul modificării stilurilor deja existente. Datorită faptului că lucram direct pe calculatorul care servește drept server WMS pentru partea de transport în comun, pentru câteva minute această funcție nu a putut fi utilizată, dar imediat ce am trecut pe noua bază de date totul a revenit la normal. Acum însă mi-am dat de treabă la fiecare update al extractului României pe care vreau să îl încarc, și care va dura cu câteva minute mai mult.</p>
<p style="text-align:justify;">Rezultatul este vizibil pe <a title="harta României" href="http://www.openmap.ro/index.php?lat=46.52931&#38;lon=24.5473&#38;zoom=17&#38;layers=0B00FTTTTTTF">OpenMap.ro</a>, sper să vă placă.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Și duminica se muncește (dacă vrei)]]></title>
<link>http://mapguy.wordpress.com/2009/11/15/%c8%99i-duminica-se-munce%c8%99te-daca-vrei/</link>
<pubDate>Sun, 15 Nov 2009 21:19:28 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/15/%c8%99i-duminica-se-munce%c8%99te-daca-vrei/</guid>
<description><![CDATA[Probabil știți bancul cu japonezul care muncește 2 ore pentru împărat și 2 ore pentru Japonia. Eu lu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Probabil știți bancul cu japonezul care muncește 2 ore pentru împărat și 2 ore pentru Japonia. Eu lucrez duminica vreo 8 ore pentru mine și pentru comunitatea OSM. Nu mă laud, și nici nu mă plâng pentru că dacă nu mi-ar face plăcere să programez (vorbind în general) pur și simplu nu aș face-o (de fapt nici nu o consider muncă atât timp cât o fac din pasiune). Bun, să vedem ce a ieșit după aceste ore petrecute cu laptop-ul în brațe: am reușit să termin un mic script în Python care parsează o bază de date PostgreSQL/PostGIS încărcată deja cu datele din OSM (folosind modul slim de la osm2pgsql) și care permite (după agregarea  datelor) să randăm diferit porțiunile forward/backward din cadrul rutelor de transport public.</p>
<p style="text-align:justify;">Momentan nu am modificat stilul folosit de Geoserver pentru a pune săgeți de direcție pentru acele porțiuni dar am acces la acele date. Următorul pas la care mă gândesc este o grupare a rutelor pe porțiunile comune pentru a putea îmbunătăți modul în care sunt afișate numele traseelor (teoretic acum nu ar trebui să fie foarte dificil).</p>
<p style="text-align:justify;">Am mai trimis niște mailuri pe listă, am scris un post pe blog pe care tocmai ce îl citiți și s-a cam terminat ziua. Și weekend-ul. Mâine din nou la muncă, de data asta pe bani <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mult prea puțin timp liber]]></title>
<link>http://mapguy.wordpress.com/2009/11/14/mult-prea-pu%c8%9bin-timp-liber/</link>
<pubDate>Sat, 14 Nov 2009 23:13:28 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/14/mult-prea-pu%c8%9bin-timp-liber/</guid>
<description><![CDATA[Astăzi am pierdut mult timp încercând să adaug posibilitatea de a randa săgețile de direcție pe rute]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Astăzi am pierdut mult timp încercând să adaug posibilitatea de a randa săgețile de direcție pe rutele de transport în comun de pe <a title="harta României" href="http://www.openmap.ro">OpenMap.ro</a>. Din păcate se pare nu este foarte simplu, însă soluția care trebuie să fie implementată va rezolva și problema grupării în cazul afișării numerelor diferitelor rute. Dar va mai dura ceva timp până va fi gata.</p>
<p style="text-align:justify;">Între timp am luat legătura cu unul dintre grupurile ce promovează softul liber în România arătându-ne dispuși să facem mici prezentări legate de OpenStreetMap pentru cei care doresc să afle mai multe (din punctul meu de vedere softul liber merge mână în mână cu datele libere). Interesul este real, însă mai ales din zona Ardealului care îmi este cam inaccesibilă pentru un drum de o zi (cu mici excepții). Așa că mi-a trecut prin minte o idee nebunească ce constă într-un mic tur al României pentru a scoate la iveală acest proiect. Interesați? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cum sună caravana OSM?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenStreetMap and Ordnance Survey Meridian 2 - Progress maps]]></title>
<link>http://povesham.wordpress.com/2009/11/14/openstreetmap-and-ordnance-survey-meridian-2-progress-maps/</link>
<pubDate>Sat, 14 Nov 2009 18:03:10 +0000</pubDate>
<dc:creator>mukih</dc:creator>
<guid>http://povesham.wordpress.com/2009/11/14/openstreetmap-and-ordnance-survey-meridian-2-progress-maps/</guid>
<description><![CDATA[As part of an update of the work that I published in August 2008, I re-ran the comparison between th]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:left;">As part of an <a href="http://wp.me/p7DNf-P">update of the work that I published in August 2008</a>, I re-ran the <strong>comparison </strong>between the <strong><a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a></strong> and <strong><a title="MEridian 2" href="http://www.ordnancesurvey.co.uk/oswebsite/products/meridian2/" target="_blank">Ordnance Survey Meridian 2</a></strong> datasets. In a future post, I will provide a full report of this assessment. As I have now completed the evaluation for <strong>October 2009</strong> and a re-evaluation of the data from <strong>March 2008</strong>, I decided to publish some outputs. The map below shows the completeness of OpenStreetMap across England for the two periods. Click on the map to enlarge.</p>
<div id="attachment_175" class="wp-caption aligncenter" style="width: 378px"><a href="http://povesham.wordpress.com/files/2009/11/meridian-2-osm-0308-1009.jpg"><img class="size-large wp-image-175  " title="Meridian 2 - OSM Comparison -  Mar '08 / Oct '09" src="http://povesham.wordpress.com/files/2009/11/meridian-2-osm-0308-1009.jpg?w=1024" alt="Meridian 2 - OSM Comparison -  Mar '08 / Oct '09" width="368" height="256" /></a><p class="wp-caption-text">Meridian 2 - OSM Comparison - Mar &#39;08 / Oct &#39;09</p></div>
<p style="text-align:left;">The second set of maps show the <strong>estimation of completeness when attributes are considered</strong>. For this purpose, the calculation takes into account only line objects that are comparable to those in Meridian 2; thus not including features such as footpaths. The <a href="http://wiki.openstreetmap.org/wiki/Map_Features">following types of roads were used</a>: motorway, motorway_link, primary, primary_link, secondary, secondary_link, trunk, trunk_link, tertiary, tertiary_link, minor, unclassified and residential.</p>
<p>In addition, a test verified that the ‘name’ field is not empty. This is an indication that a street name or road number is included in the attributes of the objects, and thus it can be considered to be complete with basic attributes. In order to make the comparison appropriate, only objects that contain a road name or number in Meridian 2 were included.</p>
<p style="text-align:center;">
<div id="attachment_176" class="wp-caption aligncenter" style="width: 378px"><a href="http://povesham.wordpress.com/files/2009/11/meridian-2-osm-with-attributes-0308-1009.jpg"><img class="size-large wp-image-176  " title="Meridian 2 - OSM with Attributes Comparison -  Mar '08 / Oct '09" src="http://povesham.wordpress.com/files/2009/11/meridian-2-osm-with-attributes-0308-1009.jpg?w=1024" alt="Meridian 2 - OSM with Attributes Comparison -  Mar '08 / Oct '09" width="368" height="256" /></a><p class="wp-caption-text">Meridian 2 - OSM with Attributes Comparison - Mar &#39;08 / Oct &#39;09</p></div>
<p>The growth within just over a year and a half  is very impressive &#8211; rising from 27% in March 2008 to 65% in October 2009. When attributes are considered, it has risen from 7% to 25%. Notice that the criteria that I have set for this comparison are stringent than the one in the previous study, so the numbers &#8211; especially for the attribute completeness &#8211; are lower than those published in August 2008.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[new osm-ph garmin map (release nov-2009)]]></title>
<link>http://epsg4253.wordpress.com/2009/11/14/new-osm-ph-garmin-map-release-nov-2009/</link>
<pubDate>Sat, 14 Nov 2009 13:23:25 +0000</pubDate>
<dc:creator>maning</dc:creator>
<guid>http://epsg4253.wordpress.com/2009/11/14/new-osm-ph-garmin-map-release-nov-2009/</guid>
<description><![CDATA[I am pleased to announce the new release (20091114) of the OSM-PH Garmin GPS Map. This release is an]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignleft" src="http://farm4.static.flickr.com/3448/3386011477_4a79f7412e_s.jpg" alt="OSM Logo" /></p>
<p><img class="alignleft" src="http://farm3.static.flickr.com/2018/3526671517_da8017d13e_t.jpg" alt="Garmin Logo" /></p>
<p>I am pleased to announce the new release (20091114) of the OSM-PH Garmin GPS Map.  This release is another important milestone for the OSM-PH Garmin GPS Map project.</p>
<p style="text-align:center;"><strong>Get the map <a href="http://esambale.wikispaces.com/osmphil_garmin">here</a></strong></p>
<p>This is the third release who graduated from our new release cycle with several major improvements.  The general release cycle is every two months (1 month for pre-release testing and 1 month for the regular release). Big thanks to all those who tested and provided feedback.</p>
<p><strong>What&#8217;s new in this release</strong></p>
<ul>
<li> data as of 20091114, thanks to all the 350 contributors</li>
<li> 45,000 ++ kilometers of roads</li>
<li>Sea  polygon!</li>
<li> Beta of Address search!</li>
</ul>
<p>Known bugs</p>
<ul>
<li>Full address search may not work as expected</li>
<li>Some islands are &#8220;flooded&#8221; (coastline data issue)</li>
<li>POI icons not visible using 3D mode in some units</li>
</ul>
<p>Read on for the visual release log of this map.</p>
<p style="text-align:center;"><strong>Visual Release Log</strong></p>
<p style="text-align:center;">
<p style="text-align:left;"><em>Can you see the sea?</em></p>
<p style="text-align:left;">
<p style="text-align:center;"><img class="aligncenter" src="http://farm3.static.flickr.com/2513/4075373470_6f65d27fea_m.jpg" alt="sea poly" /></p>
<p style="text-align:center;"><em>Sea areas now rendered as dark blue polygon</em></p>
<p style="text-align:left;"><em>Address search</em></p>
<p style="text-align:left;">
<p style="text-align:center;"><img class="aligncenter" src="http://farm3.static.flickr.com/2528/4075404134_c5a23d273a_m.jpg" alt="address search" /></p>
<p style="text-align:center;"><em>You can now use that &#8220;Find Places&#8221; search window.</em></p>
<p style="text-align:left;"><em>Choose your own style</em></p>
<p style="text-align:left;"><em> </em></p>
<p>A new map style is added in the installer.  Big thanks to <a href="http://openstreetmap.org/user/Rally">Rally</a> for providing additional TYP styles.  You can find in the c:\Program Files\OSM-PH Garmin maps\&#8221; these files:</p>
<ul>
<li> OSMPH_MINIMAL_TYP.exe</li>
<li> OSMPH_RALLY_TYP_v2.6.exe</li>
</ul>
<p>To load any of the map style, simply double-click either of the file and then open MapSource.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://farm3.static.flickr.com/2667/4102876858_b49293308a.jpg" alt="typ_mosaic" /></p>
<p style="text-align:center;"><strong> </strong></p>
<p style="text-align:center;"><em>Different map styles rendered in <a href="http://www.qlandkarte.org/">QLandkarte GT</a>.  Default map style (right), OSM-PH Minimal (lower left), Rally&#8217;s map style (upper right).</em></p>
<p style="text-align:center;">That&#8217;s it! Enjoy!  As we prepare for the next batch of improvements, please continue updating the <a href="http://www.openstreetmap.org">map</a> and report bugs.  Happy GPSing!</p>
<p style="text-align:center;"><strong>Get the map <a href="http://esambale.wikispaces.com/osmphil_garmin">here</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Ericsson Labs promovează OpenStreetMap]]></title>
<link>http://mapguy.wordpress.com/2009/11/12/ericsson-labs-promoveaza-openstreetmap/</link>
<pubDate>Thu, 12 Nov 2009 21:39:25 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/12/ericsson-labs-promoveaza-openstreetmap/</guid>
<description><![CDATA[Am fost surprins să citesc de faptul că Ericsson Labs oferă suport pentru hărțile OSM în propria lib]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Am fost surprins să citesc de faptul că Ericsson Labs oferă suport pentru hărțile OSM în propria librărie Mobile Maps. Spre deosebire de Google Maps librăriile de la EL oferă suport pentru randarea dinamică a datelor vectoriale, personalizarea hărților și suport pentru majoritatea telefoanelor de pe piață, datorită faptului că sunt dezvoltate pentru Java ME și Android.</p>
<p style="text-align:justify;">Sunt oferite cu titlu de două aplicații (<a href="https://labs.ericsson.com/applications/guidu">Guidu</a> și <a href="https://labs.ericsson.com/applications/photocaching">Photocaching</a>) care folosesc această librărie <span style="text-decoration:line-through;">dar din păcate documentație este unul din punctele slabe deocamdată (pentru un astfel de produs e nevoie de un tutorial bine pus la punct)</span>. Am găsit în cele din urmă și două tutoriale (câte unul pentru fiecare platformă suportată) care pot fi încercate la adresa <a href="https://labs.ericsson.com/apis/mobile-maps/android-getting-started">https://labs.ericsson.com/apis/mobile-maps/android-getting-started</a> sau <a href="https://labs.ericsson.com/apis/mobile-maps/documentation/getting-started-tutorial">https://labs.ericsson.com/apis/mobile-maps/documentation/getting-started-tutorial</a>.</p>
<p style="text-align:justify;">
<div id="attachment_710" class="wp-caption aligncenter" style="width: 247px"><a href="http://mapguy.wordpress.com/files/2009/11/mobilemapsandroid.png"><img class="size-medium wp-image-710" title="Exemplu Mobile Maps pe emulatorul Android" src="http://mapguy.wordpress.com/files/2009/11/mobilemapsandroid.png?w=237" alt="Exemplu Mobile Maps pe emulatorul Android" width="237" height="300" /></a><p class="wp-caption-text">Exemplu Mobile Maps pe emulatorul Android</p></div>
<div id="attachment_711" class="wp-caption aligncenter" style="width: 253px"><a href="http://mapguy.wordpress.com/files/2009/11/mobilemapsj2me.jpg"><img class="size-full wp-image-711" title="Mobile Maps + J2ME" src="http://mapguy.wordpress.com/files/2009/11/mobilemapsj2me.jpg" alt="Mobile Maps + J2ME" width="243" height="324" /></a><p class="wp-caption-text">Mobile Maps + J2ME</p></div>
<p style="text-align:justify;">Sursa: <a href="https://labs.ericsson.com/apis/mobile-maps/blog/openstreetmap-android">https://labs.ericsson.com/apis/mobile-maps/blog/openstreetmap-android</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[OpenMap.ro la versiunea 0.2.5]]></title>
<link>http://mapguy.wordpress.com/2009/11/10/openmap-ro-la-versiunea-0-2-5/</link>
<pubDate>Tue, 10 Nov 2009 20:45:30 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/10/openmap-ro-la-versiunea-0-2-5/</guid>
<description><![CDATA[OpenMap.ro 0.2.5 Astăzi am făcut publice noile modificări la OpenMap.ro, și am schimbat versiunea la]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_693" class="wp-caption alignleft" style="width: 224px"><a href="http://www.openmap.ro"><img class="size-full wp-image-693  " title="OpenMap.ro 0.2.5" src="http://mapguy.wordpress.com/files/2009/11/openmap.png" alt="OpenMap.ro 0.2.5" width="214" height="76" /></a><p class="wp-caption-text">OpenMap.ro 0.2.5</p></div>
<p style="text-align:justify;">Astăzi am făcut publice noile modificări la <a title="harta României" href="http://www.openmap.ro">OpenMap.ro</a>, și am schimbat versiunea la 0.2.5. Încă nu mă simt pregătit să trec la 0.3 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> , aștept să adaug ceva mai important pentru întregul proiect. Iată pe scurt care sunt modificările de la versiunea 0.2.2, în ordinea importanței din punctul meu de vedere:</p>
<ul style="text-align:justify;">
<li>modul hibrid, ce combină imaginile satelitare Google cu tile-urile oferite de serverul WMS al <a href="http://www.alphatelecom.ro/">AlphaTelecom SRL</a>.</li>
<li>dezvoltarea unui overlay separat care să includă rutele de transport public existente în OpenStreetMap. Scopul este să arătăm ce se poate face cu datele din OSM precum și să atragem noi contribuitori.</li>
<li>integrarea OpenStreetBugs, o soluție simplă de a contribui la corectarea hărții OSM chiar și în lipsa timpului (necesar atât pentru înregistrarea traseelor, editarea datelor cât și pentru procesul de documentare). În acest caz e suficient un simplu click pe hartă și completarea câtorva informații despre problema observată.</li>
<li>adăgarea unui link pentru descărcarea hărții Garmin generată zilnic folosind datele cele mai actuale din OSM. În curând vor fi disponibile cel puțin 3 versiuni ale hărții ce vor putea fi descărcate.</li>
<li>posibilitatea marcării unei locații pe hartă pentru a putea fi ușor identificată folosind un permalink.</li>
</ul>
<p style="text-align:justify;">Deși lista de noi funcționalități ce sunt planificate este destul de lungă aștept ideile voastre aici sau pe <a href="http://lists.openstreetmap.org/listinfo/talk-ro">lista de discuții OSM România</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Statistică a numărului de contribuitori OSM, pe țări]]></title>
<link>http://mapguy.wordpress.com/2009/11/09/statistica-a-numarului-de-contribuitori-osm-pe-%c8%9bari/</link>
<pubDate>Mon, 09 Nov 2009 20:26:21 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/09/statistica-a-numarului-de-contribuitori-osm-pe-%c8%9bari/</guid>
<description><![CDATA[Tot citind informații despre ce se mai întâmplă cu OpenStreetMap am descoperit un document interesan]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Tot citind informații despre ce se mai întâmplă cu OpenStreetMap am descoperit un <a href="https://docs.google.com/fileview?id=0B-9Q6c9Ha_tmNGI1ZjUxZDUtNmIyZS00YWMzLTgwYTgtOWUyYjBlM2RkOWIy&#38;hl=en_GB">document interesant</a>. Ca să fac un rezumat, în ultimele 8 săptămâni 72 de utilizatori au făcut modificări pe teritoriul României, lucru care ne plasează pe locul 20 la nivel global și pe locul 17 la nivelul Europei. Germania este modelul de urmat cu nu mai puțin de 4363 de contribuitori activi, aproape jumătate din total. Impresionant!</p>
<p style="text-align:justify;">În ceea ce privește România, suntem pe un loc bun, dar sunt convins că putem mai mult <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Ce ar trebui să facem ca să atragem noi contribuitori? Aștept idei în comentarii.</p>
<div class="mceTemp mceIEcenter" style="text-align:justify;">
<dl class="wp-caption aligncenter">
<dt class="wp-caption-dt"><a href="http://mapguy.wordpress.com/files/2009/11/osmcontribution.jpg"><img class="size-medium wp-image-687" title="Contribuțiile OSM pe țări" src="http://mapguy.wordpress.com/files/2009/11/osmcontribution.jpg?w=300" alt="Contribuțiile OSM pe țări" width="300" height="265" /></a></dt>
<dd class="wp-caption-dd">Contribuțiile OSM pe țări</dd>
</dl>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Câteva zile prin Tirol]]></title>
<link>http://mapguy.wordpress.com/2009/11/08/cateva-zile-prin-tirol/</link>
<pubDate>Sun, 08 Nov 2009 08:06:51 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/08/cateva-zile-prin-tirol/</guid>
<description><![CDATA[După cele câteva zile petrecute în Viena, am luat drumul Tirolului. O recomandare pentru cei care fa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">După cele câteva zile petrecute în <a href="http://mapguy.wordpress.com/2009/11/04/cateva-zile-prin-viena/">Viena</a>, am luat drumul Tirolului. O recomandare pentru cei care fac același lucru, alimentați înainte să intrați pe autostradă, de obicei prețurile sunt măcar cu câtiva euro-cenți mai mici (diferența maximă văzută de mine a fost de 12 euro-cenți, în aceeași rețea de benzinării binențeles). După ce am studiat drumul și am discutat și cu <a href="http://lucianstanciu.ro/">Lucian</a> am hotărât să ieșim de pe autostradă imediat după ce trecem de Salzburg, și să o luăm pe drumuri naționale dar care sunt mult mai pitorești (Lofer &#8211; Sankt Johann in Tirol &#8211; Kitzbuhel &#8211; Westendorf a fost ruta aleasă). Cealaltă variantă era poate mai rapidă, dar mergeam mai mult pe autostradă și pierdeam farmecul caselor tiroleze pline de flori.</p>
<p style="text-align:justify;">Eram aproape de <a href="http://osm.org/go/0IdEe2uj-">Lofer</a> când mi-am dat seama că îmi lipsesc ochelarii polarizați (ieșisem dintr-un tunel și lumina era prea puternică, dar ia ochelarii de unde nu-s). Cu câțiva kilometri înainte de Salzburg am oprit la un OMV pentru a mânca un sandwich și a bea o cafea și binențeles am reușit să îi las pe  masă. Am stat un pic în dubiu dacă merită efortul (trebuia să intru pe autostradă, să merg pe sensul opus încă 10 kilometri după ce treceam de benzinărie și apoi să mă întorc, un ocol de vreo 60 de kilometri), dar mi-am zis că poate măcar în Austria lucrurile stau mai bine, și am căzut de acord cu soția că dacă găsim ochelarii luam în calcul serios să ne mutăm în zonă <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Binențeles ochelarii fuseseră găsiți de doamnele de serveau la OMV și puși la păstrare într-un sertar. Le-am mulțumit frumos și ne-am reluat drumul spre Westendorf parcă și mai bucuroși.</p>
<p style="text-align:justify;">Știam că <a href="http://osm.org/go/0IWfBC9PJ--">hotelul</a> nu e în stațiune ci undeva pe munte dar trebuie să recunosc că pantele destul de serioase precum și asfaltul impecabil m-au surprins total. L-am găsit pe Mattheus, cel care deține hotelul pregătind restaurantul pentru cină și am servit un <a href="http://en.wikipedia.org/wiki/Schnapps">schnapps</a> de bun-venit <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Am scos apoi bagajele din mașină și le-am dus în cameră, ca apoi să ne pregătim și noi de masă. După cină am coborât pe jos până în stațiune și cu un pic de noroc am găsit ultima hartă în fața biroului de informații (ne-a fost de mare folos pe munte).</p>
<p style="text-align:justify;">
<div id="attachment_658" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8460.jpg"><img class="size-medium wp-image-658" title="Vedere de la hotel spre o parte din Westendorf" src="http://mapguy.wordpress.com/files/2009/11/img_8460.jpg?w=300" alt="Vedere de la hotel spre o parte din Westendorf" width="300" height="225" /></a><p class="wp-caption-text">Vedere de la hotel spre o parte din Westendorf</p></div>
<p><!--more--></p>
<div id="attachment_659" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8484.jpg"><img class="size-medium wp-image-659" title="Casă tiroleză" src="http://mapguy.wordpress.com/files/2009/11/img_8484.jpg?w=300" alt="Casă tiroleză" width="300" height="225" /></a><p class="wp-caption-text">Casă tiroleză</p></div>
<div id="attachment_672" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8817.jpg"><img class="size-medium wp-image-672" title="Westendorf văzut noaptea" src="http://mapguy.wordpress.com/files/2009/11/img_8817.jpg?w=300" alt="Westendorf văzut noaptea" width="300" height="225" /></a><p class="wp-caption-text">Westendorf văzut noaptea</p></div>
<p>A doua zi am programat o urcare pe munte, măcar până la punctul de mijloc al telecabinei (<a href="http://osm.org/go/0IWfCdcOQ--">MittelStation</a>). Afară era un soare foarte puternic așa că urcatul pe munte a fost mai dificil decât am fi vrut. Deși speram să urcăm până în vârf nu am reușit acest lucru, dar am urcat un pic mai sus decât MittelStation <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . E clar că ne lipsea antrenamentul din Carpați, poate data viitoare o să fim mai pregătiți. Ne-am întors apoi la hotel și am luat mașina pentru a merge în stațiune. Aici am mâncat un platou extraordinar de șuncă cu doar 6 euro la Hotel Post, pe care trebuie neaparat să îl încercați. Am mai pierdut timpul un pic prin stațiune ca apoi să urcăm spre hotel pentru cină. M-am surprins chiar și pe mine reușind să mănânc ambele feluri, aerul de munte având grijă de apetitul meu (nu că am refuzat vreodată o mâncare bună).</p>
<div id="attachment_660" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8513.jpg"><img class="size-medium wp-image-660" title="Sportalm Vital Hotel văzut de sus" src="http://mapguy.wordpress.com/files/2009/11/img_8513.jpg?w=300" alt="Sportalm Vital Hotel văzut de sus" width="300" height="225" /></a><p class="wp-caption-text">Sportalm Vital Hotel văzut de sus</p></div>
<div id="attachment_661" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8524.jpg"><img class="size-medium wp-image-661" title="Cu parapanta" src="http://mapguy.wordpress.com/files/2009/11/img_8524.jpg?w=300" alt="Cu parapanta" width="300" height="225" /></a><p class="wp-caption-text">Cu parapanta</p></div>
<div id="attachment_662" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8538.jpg"><img class="size-medium wp-image-662" title="Westendorf văzut de sus" src="http://mapguy.wordpress.com/files/2009/11/img_8538.jpg?w=300" alt="Westendorf văzut de sus" width="300" height="225" /></a><p class="wp-caption-text">Westendorf văzut de sus</p></div>
<p style="text-align:justify;">A treia zi din păcate a început cu nori și ploaie. Stațiunea nu mai era vizibilă de la hotel, norii coborâseră jos de tot. Deși nu m-ar fi deranjat o altă plimbare pe munte a trebuit să ne urcăm în mașină, și am pus ca destinație <a href="http://osm.org/go/0IcS1iuJ-">Zell am See</a>. Lacul din zonă este superb, păstrat extrem de curat datorită faptului cu nu ai voie cu ambarcațiuni cu motor pe bază de petrol (bărcile pe care le poți închiria au motor electric, sau poți trece la un mic velier). Stațiunea nu este foarte mare, dar este animată mai ales în zona centrală. La prânz am mâncat o pizza foarte bună la un restauant aproape de gară, împreună cu un ștrudel cu mere delicios. A început apoi să plouă, și în plus am reușit să mă las înțepat de o albină chiar de picior (nici acum nu înțeleg cu s-a întâmplat asta). Abia plecasem din stațiune cu gândul să mergem și la Kaprun, când ploaia s-a pornit serios de nu mai reușeau ștergătoarele să facă față. Așa că am renunțat la alte vizite și ne-am întors spre Westendorf unde am moțăit restul zilei.</p>
<div id="attachment_663" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8576.jpg"><img class="size-medium wp-image-663" title="Plin de nori" src="http://mapguy.wordpress.com/files/2009/11/img_8576.jpg?w=300" alt="Plin de nori" width="300" height="225" /></a><p class="wp-caption-text">Plin de nori</p></div>
<div id="attachment_664" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8620.jpg"><img class="size-medium wp-image-664" title="Pe malul lacului, Grand Hotel" src="http://mapguy.wordpress.com/files/2009/11/img_8620.jpg?w=300" alt="Pe malul lacului, Grand Hotel" width="300" height="225" /></a><p class="wp-caption-text">Pe malul lacului, Grand Hotel</p></div>
<div id="attachment_665" class="wp-caption aligncenter" style="width: 235px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8653.jpg"><img class="size-medium wp-image-665" title="Biserica &#34;St. Hippolyt&#34;, Zell am See" src="http://mapguy.wordpress.com/files/2009/11/img_8653.jpg?w=225" alt="Biserica &#34;St. Hippolyt&#34;, Zell am See" width="225" height="300" /></a><p class="wp-caption-text">Biserica &#34;St. Hippolyt&#34;, Zell am See</p></div>
<p style="text-align:justify;">Ziua a patra a fost la fel de mohorâtă, așa că am pus în aplicare planul cu vizita la fabrica Swarowski de la Wattens și apoi la Innsbruck. <a href="http://osm.org/go/0IUar6Y7F--">Parcul creat in curtea fabricii de cristale</a> este foarte frumos, muzeul în sine este mai greu de digerat pentru cei care nu sunt interesați de modernism. Oricum cel mai mare cristal, domul și pasajul de gheață vă vor impresiona cu siguranță. Innsbruck-ul este un oraș superb, în <a href="http://osm.org/go/0IUHyVJ@W-">zona centrală</a> poți pierde zile întregi la diferitele terase sau magazine, totul învăluit în aerul de secol 18-19. Singura problemă: locurile de parcare extrem de greu de găsit, dar probabil că știind acest lucru acum, aș prefera să las mașina mai departe de centru și să mă mișc cu tramvaiele. Seara am încheiat-o cu o palincă bună servită la Lucian acasă, unde am povestit despre experiențele turistice din România și Austria.</p>
<div id="attachment_666" class="wp-caption aligncenter" style="width: 235px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8667.jpg"><img class="size-medium wp-image-666" title="Capul gigantului de la Kristallwelten" src="http://mapguy.wordpress.com/files/2009/11/img_8667.jpg?w=225" alt="Capul gigantului de la Kristallwelten" width="225" height="300" /></a><p class="wp-caption-text">Capul gigantului de la Kristallwelten</p></div>
<div id="attachment_667" class="wp-caption aligncenter" style="width: 235px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8683.jpg"><img class="size-medium wp-image-667" title="Cea mai mare piatră de bijuterii din lume - 300.000 de carate" src="http://mapguy.wordpress.com/files/2009/11/img_8683.jpg?w=225" alt="Cea mai mare piatră de bijuterii din lume - 300.000 de carate" width="225" height="300" /></a><p class="wp-caption-text">Cea mai mare piatră de bijuterii din lume - 300.000 de carate</p></div>
<div id="attachment_668" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8697.jpg"><img class="size-medium wp-image-668" title="Reflexii în Domul de cristal" src="http://mapguy.wordpress.com/files/2009/11/img_8697.jpg?w=300" alt="Reflexii în Domul de cristal" width="300" height="225" /></a><p class="wp-caption-text">Reflexii în Domul de cristal</p></div>
<div id="attachment_669" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8770.jpg"><img class="size-medium wp-image-669" title="Labirintul de la Kristallwelten" src="http://mapguy.wordpress.com/files/2009/11/img_8770.jpg?w=300" alt="Labirintul de la Kristallwelten" width="300" height="225" /></a><p class="wp-caption-text">Labirintul de la Kristallwelten</p></div>
<div id="attachment_670" class="wp-caption aligncenter" style="width: 235px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8783.jpg"><img class="size-medium wp-image-670" title="Alee pietonală în centrul Innsbruck-ului" src="http://mapguy.wordpress.com/files/2009/11/img_8783.jpg?w=225" alt="Alee pietonală în centrul Innsbruck-ului" width="225" height="300" /></a><p class="wp-caption-text">Alee pietonală în centrul Innsbruck-ului</p></div>
<div id="attachment_671" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8802.jpg"><img class="size-medium wp-image-671" title="Trambulina olimpică de la Innsbruck" src="http://mapguy.wordpress.com/files/2009/11/img_8802.jpg?w=300" alt="Trambulina olimpică de la Innsbruck" width="300" height="225" /></a><p class="wp-caption-text">Trambulina olimpică de la Innsbruck</p></div>
<p style="text-align:justify;">În a cincea zi soarele și-a făcut din nou apariția așa că pozele au căpătat culori mai vii. Am început ziua de plimbare cu o scurtă vizită prin <a href="http://osm.org/go/0IW17vCu--">Kitzbuhel</a>, apoi ne-am oprit la Aurach Wildlife Park unde ne-am minunat încă o dată (ca niște orășeni veritabili) de faptul că cerbii și căprioarele sunt libere și unele chiar au curajul să se apropie de vizitatori. Apoi am mers spre atracția principală a zilei, <a href="http://osm.org/go/0IWMOoEX">cea mai mare cascadă din Europa, Krimml</a>. Despre cascadă, doar un cuvânt: IMPRESIONANT!. Și acest cuvânt vine după ce am avut ocazia să văd mult mai cunoscuta Niagara, care sincer să fiu m-a cam dezamăgit. Căderea de apă de 400 de metri (în 3 trepte) este o adevărată demonstrație de forță a naturii. Poteca amenajată de-a lungul cascadei are câteva puncte de belvedere care oferă imagini diferite asupra cascadei și merită urcat până sus. De la cascadă am plecat pe Gerlos-Bundestrasse, o rută foarte pitorească care urcă până la peste 1600 de metri, de unde ai o priveliște superbă asupra lacului articial Speicher Durlaßboden și a ghețarului Wildgerloskees. Am înțeles și cum e așa de bine întreținută șoseaua respectivă, aproape de punctul maxim se colectează o taxă specială, lucru pe care l-aș vedea practicat și pe Transfăgărășan, dar numai după ce se asfaltează toată șoseaua.</p>
<div id="attachment_673" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8834.jpg"><img class="size-medium wp-image-673" title="Un Kitzbuhel pur tirolez" src="http://mapguy.wordpress.com/files/2009/11/img_8834.jpg?w=300" alt="Un Kitzbuhel pur tirolez" width="300" height="225" /></a><p class="wp-caption-text">Un Kitzbuhel pur tirolez</p></div>
<div id="attachment_674" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8874.jpg"><img class="size-medium wp-image-674" title="WildPark - cerbi și căprioare" src="http://mapguy.wordpress.com/files/2009/11/img_8874.jpg?w=300" alt="WildPark - cerbi și căprioare" width="300" height="225" /></a><p class="wp-caption-text">WildPark - cerbi și căprioare</p></div>
<div id="attachment_675" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8907.jpg"><img class="size-medium wp-image-675" title="WildPark - cerbi și căprioare" src="http://mapguy.wordpress.com/files/2009/11/img_8907.jpg?w=300" alt="WildPark - cerbi și căprioare" width="300" height="225" /></a><p class="wp-caption-text">WildPark - cerbi și căprioare</p></div>
<div id="attachment_676" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_8993.jpg"><img class="size-medium wp-image-676" title="Cascada Krimml văzută de jos" src="http://mapguy.wordpress.com/files/2009/11/img_8993.jpg?w=300" alt="Cascada Krimml văzută de jos" width="300" height="225" /></a><p class="wp-caption-text">Cascada Krimml văzută de jos</p></div>
<div id="attachment_677" class="wp-caption aligncenter" style="width: 235px"><a href="http://mapguy.wordpress.com/files/2009/11/img_9004.jpg"><img class="size-medium wp-image-677" title="Curcubeu la cascadă" src="http://mapguy.wordpress.com/files/2009/11/img_9004.jpg?w=225" alt="Curcubeu la cascadă" width="225" height="300" /></a><p class="wp-caption-text">Curcubeu la cascadă</p></div>
<div id="attachment_678" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_9048.jpg"><img class="size-medium wp-image-678" title="Cascada Krimml de la depărtare" src="http://mapguy.wordpress.com/files/2009/11/img_9048.jpg?w=300" alt="Cascada Krimml de la depărtare" width="300" height="225" /></a><p class="wp-caption-text">Cascada Krimml de la depărtare</p></div>
<div id="attachment_679" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_9049.jpg"><img class="size-medium wp-image-679" title="Lacul articial Speicher Durlaßboden" src="http://mapguy.wordpress.com/files/2009/11/img_9049.jpg?w=300" alt="Lacul articial Speicher Durlaßboden" width="300" height="225" /></a><p class="wp-caption-text">Lacul articial Speicher Durlaßboden</p></div>
<div id="attachment_680" class="wp-caption aligncenter" style="width: 310px"><a href="http://mapguy.wordpress.com/files/2009/11/img_9051.jpg"><img class="size-medium wp-image-680" title="Ghețarul Wildgerloskees" src="http://mapguy.wordpress.com/files/2009/11/img_9051.jpg?w=300" alt="Ghețarul Wildgerloskees" width="300" height="225" /></a><p class="wp-caption-text">Ghețarul Wildgerloskees</p></div>
<p style="text-align:center;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/mEGver-C4Dw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/mEGver-C4Dw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:justify;">Cam asta a fost vacanța din Austria, au urmat 2 zile petrecute pe drum, dar nu fără aventuri pe care le voi povesti altă dată.</p>
<p style="text-align:justify;">Acest articol participă la concursul organizat de <a href="http://arhiblog.ro">arhiblog.ro</a> și sponsorizat de <a title="tabara de vacanta" href="http://www.arsenalpark.ro/">Arsenal Park</a>.</p>
<p style="text-align:center;"><span style='text-align:center; display: block;'><br />
<object type="application/x-shockwave-flash" width="400" height="300" data="http://www.vimeo.com/moogaloop.swf?clip_id=7379211&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA"><param name="quality" value="best" /><param name="allowfullscreen" value="true" /><param name="scale" value="showAll" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=7379211&amp;server=www.vimeo.com&amp;fullscreen=1&amp;show_title=1&amp;show_byline=0&amp;show_portrait=0&amp;color=01AAEA" /></object><br />
</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Utilizarea hărții OSM pe dispozitive GPS]]></title>
<link>http://mapguy.wordpress.com/2009/11/07/utilizarea-har%c8%9bii-osm-pe-dispozitive-gps/</link>
<pubDate>Sat, 07 Nov 2009 21:52:00 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/07/utilizarea-har%c8%9bii-osm-pe-dispozitive-gps/</guid>
<description><![CDATA[Probabil că această întrebare și-o pun toți cei care care au aflat despre OpenStreetMap și nu sunt c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Probabil că această întrebare și-o pun toți cei care care au aflat despre OpenStreetMap și nu sunt convinși să contribuie la acest proiect. Și în cele ce urmează am să vă arăt cum puteți să utilizați această hartă.</p>
<p style="text-align:justify;">Cel mai cunoscut producător de receptoare GPS este Garmin, iar acum aveți posibilitatea să aveți propria hartă gratuită pe un astfel de dispozitiv. Iată mai jos câteva screenshot-uri de pe 2 astfel de receptoare (mulțumiri lui Ștefan și lui Francisc):</p>
<p>Garmin Oregon-550</p>
<div id="attachment_623" class="wp-caption aligncenter" style="width: 250px"><a href="http://mapguy.wordpress.com/files/2009/11/179.jpg"><img class="size-full wp-image-623" title="Harta OSM pe Oregon-550" src="http://mapguy.wordpress.com/files/2009/11/179.jpg" alt="Harta OSM pe Oregon-550" width="240" height="400" /></a><p class="wp-caption-text">Harta OSM pe Oregon-550</p></div>
<div id="attachment_624" class="wp-caption aligncenter" style="width: 250px"><a href="http://mapguy.wordpress.com/files/2009/11/324.jpg"><img class="size-full wp-image-624" title="Harta OSM pe Oregon-550" src="http://mapguy.wordpress.com/files/2009/11/324.jpg" alt="Harta OSM pe Oregon-550" width="240" height="400" /></a><p class="wp-caption-text">Harta OSM pe Oregon-550</p></div>
<div id="attachment_625" class="wp-caption aligncenter" style="width: 250px"><a href="http://mapguy.wordpress.com/files/2009/11/371.jpg"><img class="size-full wp-image-625" title="Harta OSM pe Oregon-550" src="http://mapguy.wordpress.com/files/2009/11/371.jpg" alt="Harta OSM pe Oregon-550" width="240" height="400" /></a><p class="wp-caption-text">Harta OSM pe Oregon-550</p></div>
<p><!--more-->Garmin Etrex Vista</p>
<div id="attachment_626" class="wp-caption aligncenter" style="width: 186px"><a href="http://mapguy.wordpress.com/files/2009/11/ffshgdj.png"><img class="size-full wp-image-626 " title="Harta OSM pe Garmin Etrex Vista" src="http://mapguy.wordpress.com/files/2009/11/ffshgdj.png" alt="Harta OSM pe Garmin Etrex Vista" width="176" height="220" /></a><p class="wp-caption-text">Harta OSM pe Garmin Etrex Vista</p></div>
<div id="attachment_627" class="wp-caption aligncenter" style="width: 186px"><a href="http://mapguy.wordpress.com/files/2009/11/gd.png"><img class="size-full wp-image-627" title="Harta OSM pe Garmin Etrex Vista" src="http://mapguy.wordpress.com/files/2009/11/gd.png" alt="Harta OSM pe Garmin Etrex Vista" width="176" height="220" /></a><p class="wp-caption-text">Harta OSM pe Garmin Etrex Vista</p></div>
<div id="attachment_629" class="wp-caption aligncenter" style="width: 186px"><a href="http://mapguy.wordpress.com/files/2009/11/gdfyj.png"><img class="size-full wp-image-629" title="Harta OSM pe Garmin Etrex Vista" src="http://mapguy.wordpress.com/files/2009/11/gdfyj.png" alt="Harta OSM pe Garmin Etrex Vista" width="176" height="220" /></a><p class="wp-caption-text">Harta OSM pe Garmin Etrex Vista</p></div>
<div id="attachment_631" class="wp-caption aligncenter" style="width: 186px"><a href="http://mapguy.wordpress.com/files/2009/11/jgdf.png"><img class="size-full wp-image-631" title="Harta OSM pe Garmin Etrex Vista" src="http://mapguy.wordpress.com/files/2009/11/jgdf.png" alt="Harta OSM pe Garmin Etrex Vista" width="176" height="220" /></a><p class="wp-caption-text">Harta OSM pe Garmin Etrex Vista</p></div>
<p style="text-align:justify;">După cum probabil se observă harta este rutabilă, deci aveți funcționalitatea completă a unui device GPS. Și <strong>lucrul cel mai important: nu aveți nevoie de un receptor Garmin pentru a utiliza această hartă, deoarece există aplicația <a href="http://www8.garmin.com/support/collection.jsp?product=010-11034-00">Garmin XT</a> ce funcționează pe platforme Palm, Symbian și Windows Mobile ce acoperă cea mai mare parte din piața smartphone-urilor.</strong></p>
<p style="text-align:justify;"><strong>Bonus</strong>: harta OSM cu informații topo (curbe de nivel). Puteți descărca un prim exemplu de aici: <a href="http://www.filehost.ro/604032/gmapsupp_romania_OSM_topo_50m_img/">http://www.filehost.ro/604032/gmapsupp_romania_OSM_topo_50m_img/</a>. Și iată câteva imagini care scot în evidență noile informații disponibile pe hartă:</p>
<div id="attachment_643" class="wp-caption aligncenter" style="width: 250px"><a href="http://mapguy.wordpress.com/files/2009/11/438.jpg"><img class="size-full wp-image-643" title="Harta OSM-topo pe Garmin" src="http://mapguy.wordpress.com/files/2009/11/438.jpg" alt="Harta OSM-topo pe Garmin" width="240" height="400" /></a><p class="wp-caption-text">Harta OSM-topo pe Garmin</p></div>
<div id="attachment_644" class="wp-caption aligncenter" style="width: 250px"><a href="http://mapguy.wordpress.com/files/2009/11/474.jpg"><img class="size-full wp-image-644" title="Harta OSM-topo pe Garmin" src="http://mapguy.wordpress.com/files/2009/11/474.jpg" alt="Harta OSM-topo pe Garmin" width="240" height="400" /></a><p class="wp-caption-text">Harta OSM-topo pe Garmin</p></div>
<p style="text-align:justify;">Sper că aceste informații v-au fost de folos și v-au convins că OSM nu este numai un proiect de viitor ci unul cu un prezent foarte folositor. Dacă ați folosit harta OSM (preferabil vectorial) pe alte dispozitive mobile v-aș ruga să lăsați mai multe amănunte în comentarii. Harta rutabilă OSM Romania poate fi descarcată de aici: <a href="http://osm.stilpu.org/garmin-routable/">http://osm.stilpu.org/garmin-routable/</a> fiind actualizată zilnic.</p>
<p style="text-align:left;">Spor la cartografiat și la utilizat!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linus’ Law and OpenStreetMap]]></title>
<link>http://povesham.wordpress.com/2009/11/07/linus%e2%80%99-law-and-openstreetmap/</link>
<pubDate>Sat, 07 Nov 2009 16:31:41 +0000</pubDate>
<dc:creator>mukih</dc:creator>
<guid>http://povesham.wordpress.com/2009/11/07/linus%e2%80%99-law-and-openstreetmap/</guid>
<description><![CDATA[One of the interesting questions that emerged from the work on the quality of OpenStreetMap (OSM) in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of the interesting questions that emerged from the work on the <strong>quality of OpenStreetMap (OSM)</strong> in particular, and Volunteered Geographical Information (VGI) in general, is the <strong>validity of the ‘<a href="http://en.wikipedia.org/wiki/Linus%27_Law" target="_blank">Linus’ Law</a>’</strong> for this type of information.</p>
<p>The law came from Open Source software development and states that ‘<a href="http://www.catb.org/~esr//writings/homesteading/cathedral-bazaar/ar01s04.html" target="_blank">Given enough eyeballs, all bugs are shallow</a>’ (Raymond, 2001, p.19). For mapping, I suggest that this can be translated into the <strong>number of contributors that have worked on a given area</strong>. The rationale behind it is that if there is only one contributor in an area he or she might inadvertently introduce some errors. For example, they might forget to survey a street or might position a feature in the wrong location. If there are several contributors, they might notice inaccuracies or ‘bugs’ and therefore the more users, the less ‘bugs’.</p>
<p>In my original analysis, I looked only <strong>at the number of contributors per square kilometre as a proxy for accuracy</strong>, and provided a visualisation of the difference across England.</p>
<p><a href="http://povesham.wordpress.com/files/2009/11/mmcomparison.png"><img class="alignright size-medium wp-image-167" title="MasterMap Comparison locations in London" src="http://povesham.wordpress.com/files/2009/11/mmcomparison.png?w=300" alt="MasterMap Comparison locations in London" width="300" height="214" /></a>During the past year, Aamer Ather and Sofia Basiouka looked at this issue, by <strong>comparing the positional accuracy of OSM in 125 sq km of London</strong>. Aamer carried out a <a href="http://wp.me/p7DNf-2e" target="_blank">detailed comparison of OSM</a> and the <a href="http://www.ordnancesurvey.co.uk/osmastermapitn/" target="_blank">Ordnance Survey MasterMap Integrated Transport Network (ITN) layer</a>. Sofia took the results from his study and divided them for each grid square, so it was possible to calculate an overall value for every cell. The value is <strong>the average of the overlap between OSM and OS objects, weighted by the length of the ITN object</strong>. The next step was to compare the results to the number of users at each grid square, as calculated from the nodes in the area.</p>
<p>The results show that, above 5 users, there is no clear pattern of improved quality. The graph below provide the details &#8211; but the pattern is that the quality, while generally very high, is not dependent on the number of users – so <strong>Linus’ Law does not apply to OSM</strong> (and probably not to VGI in general).</p>
<p><a href="http://povesham.wordpress.com/files/2009/11/osmusers.png"><img class="alignleft size-medium wp-image-169" style="border:3px solid white;" title="Number of OSM Users and positional accuracy compared to ITN" src="http://povesham.wordpress.com/files/2009/11/osmusers.png?w=300" alt="Number of OSM Users and positional accuracy compared to ITN" width="300" height="187" /></a> From looking at OSM data, my hypothesis is that, due to the participation inequality in OSM contribution (some users contribute a lot while others don’t contribute very much), the quality is actually linked to a specific user, and not to the number of users.<br />
Yet, I will qualify the conclusion with the statement that <strong>further research is necessary</strong>. Firstly, the analysis was carried out in London, so checking what is happening in other parts of the country where different users collected the data is necessary. Secondly, the analysis did not include the interesting range of 1 to 5 users, so it might be the case that there is rapid improvement in quality from 1 to 5 and then it doesn’t matter. Maybe the big change is from 1 to 3? Finally, the analysis focused on positional accuracy, and it is worth exploring the impact of the number of users on completeness.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How to make your own movie with OSM evolution - part I]]></title>
<link>http://mapguy.wordpress.com/2009/11/06/how-to-make-your-own-movie-with-osm-evolution-part-i/</link>
<pubDate>Fri, 06 Nov 2009 20:55:53 +0000</pubDate>
<dc:creator>mapguy</dc:creator>
<guid>http://mapguy.wordpress.com/2009/11/06/how-to-make-your-own-movie-with-osm-evolution-part-i/</guid>
<description><![CDATA[Because of the interest on my post with the movies I have created to show OSM evolution in some loca]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Because of the interest on my post with the movies I have created to show <a href="http://mapguy.wordpress.com/2009/10/28/evolu%C8%9Bia-openstreetmap-in-romania/">OSM evolution</a> in some locations in Romania, I have decided to write a tutorial with all the needed steps to create something similar. The tutorial will be splitted in two parts:<br />
1. Creating a country extract from older planet files<br />
2. Using mapnik and some simple scripts to create images for a specific area, and then compile those images in a MPEG movie.</p>
<p style="text-align:justify;">Just to make things clear, I used a Ubuntu 9.04 to get everything done. I am not sure how easy will be to have something similar on Windows, but it will be almost identical for any Linux distro.</p>
<p style="text-align:justify;">For the first part I would like to thank Frederik and Grant who pointed me to the right scripts, and also mentioned the differences between older OSM API&#8217;s and XML formats. The key to create a history of extracts for a country is to get older planet files and apply the correct scripts to them. For the planet files you may chose between the official provider <a href="http://planet.openstreetmap.org/">http://planet.openstreetmap.org/</a> and the mirror hosted by Heanet <a href="http://">http://ftp.heanet.ie/mirrors/openstreetmap.org/</a>.</p>
<p style="text-align:justify;">There are mutiple actions to be taken in order to get the extract, and these actions depends on the date of the file (which actually gives the version of the API). There is one common prerequisite, the country polygon. If you don&#8217;t have one already, you can probably get it from the Cloudmade&#8217;s download section (<a href="http://downloads.cloudmade.com/europe/romania/romania.poly">Romania&#8217;s polygon</a>). Once you have the polygon file you can start to download the planet files starting with the oldest one (for Romania I started with 20061205, the country was almost a blank canvas at that time).</p>
<p style="text-align:justify;">For planet files between 20061205 (and maybe older, but I haven&#8217;t tried it) and 20071003 the API version is 0.3 or 0.4 (the XML format is identical). So you will need a little bit of workaround to convert these to 0.5 that can be processed with current tools. Here are the steps in order to get the extract for 20061205:</p>
<pre style="padding-left:30px;text-align:justify;">$ sudo apt-get install subversion # needed if you didn't \
use SVN before on that machine
$ mkdir ~/svn
$ cd ~/svn
$ svn co -r 4779 http://svn.openstreetmap.org/\
applications/utils/osm-extract</pre>
<p style="text-align:justify;">The extract script will need the Math:Polygon Perl module, which yo can install using CPAN (I am not an expert, I followed some ideas found on the web and it worked. If you have problems I am not the guy to ask about Perl <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  ). You should also install some prerequisites:</p>
<pre style="padding-left:30px;text-align:justify;">$ sudo apt-get install lynx
$ sudo apt-get install ncftp
$ cpan</pre>
<p style="text-align:justify;">At the cpan prompt (that you will get after answering some questions) you should type:</p>
<pre style="padding-left:30px;text-align:justify;">cpan[1]&#62; install Math::Polygon</pre>
<p style="text-align:justify;">When the installation is finished you should be ready to start extracting your country.</p>
<pre style="padding-left:30px;text-align:justify;">$ mkdir ~/planet
$ cd ~/planet
$ wget http://ftp.heanet.ie/mirrors/openstreetmap.org/\
planet-061205.osm.bz2</pre>
<p style="text-align:justify;">At this time you are ready to create the extract, but first get the polygon file and copy it to the new ~/planet directory. After that you can start the extract:</p>
<pre style="padding-left:30px;text-align:justify;">$ ~/svn/osm-extract/polygons/extract-polygon.pl \
-i planet-061205.osm.bz2 -o MY_COUNTRY-061205.osm \
-p MY_POLYGON_FILE</pre>
<p style="text-align:justify;">Of course you should replace MY_COUNTRY and MY_POLYGON_FILE your the correct names to have everything up  and running. I would use Romania in the examples to keep things simple, but you should use your country name. This should take a while depending on the country and of course the power of the server you use. In the end you should get a new .osm file for your country. <strong>Note 1: that this file is in 0.4 (or 0.3) XML format so we need to convert it to 0.5</strong>. For this we will need to get another script from SVN:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd ~/svn
$ svn co http://svn.openstreetmap.org/applications/\
utils/conv05
$ cd ~/planet
$ mkdir 0.5
$ ~/svn/conv05/04to05.pl &#60;romania-061205.osm \
&#62;0.5/romania-061205.osm</pre>
<p style="text-align:justify;">After this step you should have a 0.5 compatible OSM extract of your country in the 0.5 directory.<strong> Note 2: If you get an error about a missing Perl package when starting a Perl script you should use CPAN to install it.</strong></p>
<p style="text-align:justify;">The next step is not mentioned anywhere from what I know but I have discovered that after the conversion you will get some ways that reference nodes without an ID. This can be fix easily using sed:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd ~/planet/0.5
$ sed 's&#124;&#60;nd ref=""/&#62;&#124;&#124;g' romania-061205.osm \
&#62;romania-061205.osm.temp
$ cp romania-061205.osm.temp romania-061205.osm</pre>
<p style="text-align:justify;">This is the final step of creating the extract. I usually validate such an extract by trying to open it in JOSM. If you get any errors while trying this leave a comment here or better post on the Talk list.</p>
<p style="text-align:justify;">You should repeat (probably you will create a small script) the above steps in order to get the extracts until 20071003 (inclusive). For example to get the 20061213 extract  the steps will be:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd ~/planet
$ wget http://ftp.heanet.ie/mirrors/openstreetmap.org/\
planet-061213.osm.bz2
$ ~/svn/osm-extract/polygons/extract-polygon.pl \
-i planet-061205.osm.bz2 -o romania-061205.osm -p romania.poly
$ ~/svn/conv05/04to05.pl &#60;romania-061213.osm \
&#62;0.5/romania-061213.osm
$ cd 0.5
$ sed 's&#124;&#60;nd ref=""/&#62;&#124;&#124;g' romania-061213.osm \
&#62;romania-061213.osm.temp
$ cp romania-061213.osm.temp romania-061213.osm</pre>
<p style="text-align:justify;">This concludes the part where we describe how to extract a pre-0.5 country file. For planet files starting with 20071010 the things are a little bit simples, because we don&#8217;t have to convert it. For 0.5 version files we can use Osmosis to create the extract, but first we need to donwload the latest version:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd ~
$ wget http://dev.openstreetmap.org/~bretth/osmosis-build/\
osmosis-latest-bin.tar.gz
$ tar zxf osmosis-latest-bin.tar.gz</pre>
<p style="text-align:justify;"><strong>Note 3: Osmosis needs Sun Java JRE 1.6, you should make sure you have it installed.</strong> For planet files from 20071010 up to 20090418 (inclusive) you should specify to Osmosis to use 0.5 tasks:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd planet
$ wget http://ftp.heanet.ie/mirrors/openstreetmap.org/\
planet-071010.osm.bz2
$ bzcat planet-071010.osm.bz2 &#124; ~/osmosis-0.31/bin/osmosis \
--read-xml-0.5 file=/dev/stdin --bounding-polygon-0.5 \
file=romania.poly  --write-xml-0.5 file=romania-071010.osm</pre>
<p style="text-align:justify;">Starting with 20090421 you can remove 0.5 suffix to the tasks:</p>
<pre style="padding-left:30px;text-align:justify;">$ cd planet
$ wget http://ftp.heanet.ie/mirrors/openstreetmap.org/\
planet-090429.osm.bz2
$ bzcat planet-090429.osm.bz2 &#124; ~/osmosis-0.31/bin/osmosis \
--read-xml file=/dev/stdin --bounding-polygon file=romania.poly \
--write-xml file=romania-090429.osm</pre>
<p style="text-align:justify;">Using the above steps you should be able to get a history of .osm files for your country. We (OSM Romania) are using a Git repository to store the planet extracts but this is not necessary. I will try to create some simple scripts that will generate images with date caption that should make things simpler for those who don&#8217;t want to use Git.</p>
<p style="text-align:justify;">To prepare for the next part of the tutorial I propose you to read the Mapnik install wiki page <a href="http://wiki.openstreetmap.org/wiki/Mapnik">http://wiki.openstreetmap.org/wiki/Mapnik</a>. We will use the generate_image.py script so you should make sure that you can generate images successfully using that script. You will probably find the PostGIS wiki page very useful as well <a href="http://wiki.openstreetmap.org/wiki/Mapnik/PostGIS">http://wiki.openstreetmap.org/wiki/Mapnik/PostGIS</a>. Also I recommend to compile osm2pgsql from source as described here: <a href="http://wiki.openstreetmap.org/wiki/Osm2pgsql">http://wiki.openstreetmap.org/wiki/Osm2pgsql</a>.</p>
<p style="text-align:justify;">I hope to have the second part ready until the end of the week, but I think in the meantime you have more than enough to play with. Questions are welcome in the comments.</p>
<p style="text-align:justify;">UPDATE:</p>
<p style="text-align:justify;">The readers have requested more information about using the planet weekly diff files to save bandwidth, so here it is: I used two different versions for the planetdiff tool, depending on the version of the API. For planet files/diffs before 20071010 (not included) I used the revision 4778 from SVN:</p>
<pre style="text-align:justify;padding-left:30px;">$ cd ~/svn
$ svn co -r 4778 http://svn.openstreetmap.org/\
applications/utils/planetdiff
</pre>
<p>You will need to compile the source for planetdiff, if you see any errors during compile time use the readme.txt file to find out what you need.</p>
<pre style="text-align:justify;padding-left:30px;">$ cd planetdiff; make
</pre>
<p>At this point you will have two binaries, planetdiff and planetpatch. You will use planetpatch for the following steps:</p>
<pre style="padding-left:30px;">$ ./planetpatch ~/planet-070718.osm.bz2 \
~/planet-070718-070725.diff.xml.bz2 &#124; bzip2 \
-6 &#62; planet-070725.osm.bz2
</pre>
<p>The above is just an example on how to generate planet file from 070725 using the old planet file from 070718 and the diff file. You should make sure that the paths to the above files are correct, I had everything in the home directory.</p>
<p>For newer planet files (starting with 071010) you can use the latest version of the planetdiff utility (which might also work for older planets, but I didn&#8217;t want to experiment). The process is exactly the same, but you shouldn&#8217;t provide the revision when you checkout the source code and also provide another directory as location:</p>
<pre style="text-align:justify;padding-left:30px;">$ cd ~/svn
$ svn co http://svn.openstreetmap.org/applications/\
utils/planetdiff pd
$ cd pd; make
$ ./planetpatch ~/planet-080423.osm.bz2 \
~/planet-080423-080430.diff.xml.bz2 &#124; bzip2 \
-6 &#62; planet-080430.osm.bz2
</pre>
<p>As I mentioned in the comments applying the weekly diff file is taking a long (almost a day on my machine, not very powerful indeed), so you will have to be patient.</p>
<div id="_mcePaste" style="overflow:hidden;position:absolute;left:-10000px;top:84px;width:1px;height:1px;text-align:justify;">http://downloads.cloudmade.com/europe/romania/romania.poly</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Où est Libres-Ailé(e)s dans les Cévennes?]]></title>
<link>http://librezele.wordpress.com/2009/11/06/ou-est-libres-ailees-dans-les-cevennes/</link>
<pubDate>Fri, 06 Nov 2009 15:52:16 +0000</pubDate>
<dc:creator>libre fan</dc:creator>
<guid>http://librezele.wordpress.com/2009/11/06/ou-est-libres-ailees-dans-les-cevennes/</guid>
<description><![CDATA[Nous avons fait un essai avec OpenStreetMap, projet libre de cartographie, suite à un billet de Fram]]></description>
<content:encoded><![CDATA[Nous avons fait un essai avec OpenStreetMap, projet libre de cartographie, suite à un billet de Fram]]></content:encoded>
</item>

</channel>
</rss>
