<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml"
>

<channel>
	<title>Simone Cortesi &#187; english</title>
	<atom:link href="http://cortesi.com/topic/english/feed/" rel="self" type="application/rss+xml" />
	<link>http://cortesi.com</link>
	<description>stuff I care about: mostly openstreetmap, open source, geo-nerd...</description>
	<lastBuildDate>Mon, 14 May 2012 15:29:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Converting an Excel file with point coordinates from Gauss-Boaga to WGS84 and to KML file format</title>
		<link>http://cortesi.com/2012/04/converting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml/</link>
		<comments>http://cortesi.com/2012/04/converting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 00:22:48 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://cortesi.com/?p=163</guid>
		<description><![CDATA[Let&#8217;s say we have a file like the following, coming from a local mapping agency. It is a Microsoft Excel/LibreOffice where we have two columns for the X and Y coordinates represented in the Gauss-Boaga coordinate system, plus several informational columns containing non-geographic data. Here an hypotetical tabular data file: We need to convert it [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say we have a file like the following, coming from a local mapping agency. It is a Microsoft Excel/LibreOffice where we have two columns for the X and Y coordinates represented in the Gauss-Boaga coordinate system, plus several informational columns containing non-geographic data.</p>
<p>Here an hypotetical tabular data file:<br />

<table id="wp-table-reloaded-id-2-no-1" class="wp-table-reloaded wp-table-reloaded-id-2">
<thead>
	<tr class="row-1">
		<th class="column-1">POSX</th><th class="column-2">POSY</th><th class="column-3">height</th><th class="column-4">type</th>
	</tr>
</thead>
<tbody class="row-hover">
	<tr class="row-2">
		<td class="column-1">1722813.000</td><td class="column-2">5102614.000</td><td class="column-3">4.0</td><td class="column-4">Lanterne</td>
	</tr>
	<tr class="row-3">
		<td class="column-1">1722818.000</td><td class="column-2">5102572.000</td><td class="column-3">3.5</td><td class="column-4">Lanterne</td>
	</tr>
	<tr class="row-4">
		<td class="column-1">1722825.276</td><td class="column-2">5102541.078</td><td class="column-3">3.5</td><td class="column-4">Sfere</td>
	</tr>
	<tr class="row-5">
		<td class="column-1">1722838.000</td><td class="column-2">5102546.000</td><td class="column-3">3.5</td><td class="column-4">Sfere</td>
	</tr>
	<tr class="row-6">
		<td class="column-1">1722851.848</td><td class="column-2">5102550.524</td><td class="column-3">3.5</td><td class="column-4">Sfere</td>
	</tr>
	<tr class="row-7">
		<td class="column-1">1722814.747</td><td class="column-2">5102522.739</td><td class="column-3">4.0</td><td class="column-4">Sfere</td>
	</tr>
	<tr class="row-8">
		<td class="column-1">1722809.241</td><td class="column-2">5102501.789</td><td class="column-3">4.0</td><td class="column-4">Sfere</td>
	</tr>
</tbody>
</table>
</p>
<p>We need to convert it to KML in order to visualize the data in Google Earth. Google Earth makes use of the WGS84 coordinate system, so we are going to use the excellent <a href="http://www.gdal.org/">OGR/GDAL</a> command line software both for the coordinate conversion process (Gauss-Boaga &#8211;&gt; WGS84) and the data format conversion (CSV &#8211;&gt; KML).</p>
<p>It is a multi step process:</p>
<ul>
<li>Write the supporting files</li>
<ul>
<li>Create a CSV out of the spreadsheet</li>
<li>Create the data access VRT file</li>
</ul>
<ul>
<li>Create the  Gauss-Boaga rototranslation file</li>
</ul>
<li>Converting the files</li>
<ul>
<li>from CSV to SHP (still Gauss-Boaga)</li>
<li>from  SHP Gauss-Boaga to SHP WGS84</li>
<li>from SHP (WGS84) to KML</li>
</ul>
</ul>
<p>Let&#8217;s start: we need to prepare some support files to help us convert the data. First of all we need to export the data from the spreadsheet software to a Comma Separated Values (CSV) file. Which will look like this:</p>
<pre class="wp-code-highlight prettyprint">POSX,POSY,height,type
1722813.000,5102614.000,4.0,Lanterne
1722818.000,5102572.000,3.5,Lanterne
1722825.276,5102541.078,3.5,Sfere
1722838.000,5102546.000,3.5,Sfere
1722851.848,5102550.524,3.5,Sfere
1722814.747,5102522.739,4.0,Sfere
1722809.241,5102501.789,4.0,Sfere</pre>
<p>OGR supports a <a href="http://gdal.org/ogr/drv_vrt.html" rel="nofollow">virtual format</a> which allows specification via an XML file. If you convert your worksheet into a CSV, you can generate a VRT file to instruct GDAL on how to access the data. I&#8217;ve created my VRT file like the following, and saved it on the disk as <code>example.vrt</code>:</p>
<pre class="wp-code-highlight prettyprint">&lt;OGRVRTDataSource&gt;
    &lt;OGRVRTLayer name=&quot;example&quot;&gt;
        &lt;SrcDataSource&gt;/home/simone/Desktop/test_data/example.csv&lt;/SrcDataSource&gt;
        &lt;GeometryType&gt;wkbPoint&lt;/GeometryType&gt;
        &lt;LayerSRS&gt;WGS84&lt;/LayerSRS&gt;
        &lt;GeometryField encoding=&quot;PointFromColumns&quot; x=&quot;POSX&quot; y=&quot;POSY&quot;/&gt;
    &lt;/OGRVRTLayer&gt;
&lt;/OGRVRTDataSource&gt;</pre>
<p>This line in <code>example.vrt</code>is the important one:</p>
<pre class="wp-code-highlight prettyprint">&lt;GeometryField encoding=&quot;PointFromColumns&quot; x=&quot;POSX&quot; y=&quot;POSY&quot;/&gt;</pre>
<p>it tells GDAL which culumn is what. Which column is the east-west and north-south coordinate. We are now ready to generate a SHP, still in Gauss-Boaga coordinates.</p>
<pre class="wp-code-highlight prettyprint">ogr2ogr -f &quot;ESRI Shapefile&quot; example.shp example.vrt</pre>
<p>Now we can convert <code>example.shp</code> to WGS84, using this PROJ file (gauss-boaga.prj):</p>
<pre class="wp-code-highlight prettyprint">PROJCS[&quot;Monte Mario / Italy zone 1&quot;,
GEOGCS[&quot;Monte Mario&quot;,DATUM[&quot;Monte_Mario&quot;,
SPHEROID[&quot;International 1924&quot;,6378388,297,AUTHORITY[&quot;EPSG&quot;,&quot;7022&quot;]],
TOWGS84[-104.1,-49.1,-9.9,0.971,-2.917,0.714,-11.68],
AUTHORITY[&quot;EPSG&quot;,&quot;6265&quot;]],
PRIMEM[&quot;Greenwich&quot;,0,AUTHORITY[&quot;EPSG&quot;,&quot;8901&quot;]],
UNIT[&quot;degree&quot;,0.01745329251994328,AUTHORITY[&quot;EPSG&quot;,&quot;9122&quot;]],
AUTHORITY[&quot;EPSG&quot;,&quot;4265&quot;]],
UNIT[&quot;metre&quot;,1,AUTHORITY[&quot;EPSG&quot;,&quot;9001&quot;]],
PROJECTION[&quot;Transverse_Mercator&quot;],
PARAMETER[&quot;latitude_of_origin&quot;,0],
PARAMETER[&quot;central_meridian&quot;,9],
PARAMETER[&quot;scale_factor&quot;,0.9996],
PARAMETER[&quot;false_easting&quot;,1500000],
PARAMETER[&quot;false_northing&quot;,0],
AUTHORITY[&quot;EPSG&quot;,&quot;3003&quot;],
AXIS[&quot;X&quot;,EAST],AXIS[&quot;Y&quot;,NORTH]
]</pre>
<p>and by executing the following code:</p>
<pre class="wp-code-highlight prettyprint">ogr2ogr -s_srs gauss-boaga.prj -t_srs EPSG:4326 example_wgs84.shp example.shp</pre>
<p>We are ready for the final step: convert the SHP file to KML:</p>
<pre class="wp-code-highlight prettyprint">ogr2ogr -f &quot;KML&quot; wgs84_GE.kml wgs84_example.shp</pre>
<p><code>wgs84_GE.kml</code> is our final output file.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F&amp;title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F&amp;title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F&amp;title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F&amp;headline=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;u=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F&amp;title=Converting+an+Excel+file+with+point+coordinates+from+Gauss-Boaga+to+WGS84+and+to+KML+file+format&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2012%2F04%2Fconverting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2012/04/converting-an-excel-file-with-point-coordinates-from-gauss-boaga-to-wgs84-and-to-kml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NOTICE: Contact &amp; Twitter</title>
		<link>http://cortesi.com/2010/04/contact-twitter/</link>
		<comments>http://cortesi.com/2010/04/contact-twitter/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 11:01:29 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://cortesi.com/?p=133</guid>
		<description><![CDATA[If you need to contact me, you can use the contact form, I usually answer quickly. Please be aware that I post on this blog only seldom. My main channel of posting updates, lately, has been twitter.]]></description>
			<content:encoded><![CDATA[<p class="error" style="padding-left: 60px;"><strong>If you need to contact me, you can use the <a href="http://cortesi.com/contact/">contact form</a>, I usually answer quickly. </strong></p>
<p class="error" style="padding-left: 60px;"><strong>Please be aware that I post on this blog only seldom. My main channel of posting updates, lately, has been <a href="http://twitter.com/simonecortesi">twitter</a>.</strong></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F&amp;title=NOTICE%3A+Contact+%26+Twitter" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F&amp;title=NOTICE%3A+Contact+%26+Twitter" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F&amp;title=NOTICE%3A+Contact+%26+Twitter" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F&amp;headline=NOTICE%3A+Contact+%26+Twitter" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=NOTICE%3A+Contact+%26+Twitter&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=NOTICE%3A+Contact+%26+Twitter&amp;u=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=NOTICE%3A+Contact+%26+Twitter&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=NOTICE%3A+Contact+%26+Twitter&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=NOTICE%3A+Contact+%26+Twitter&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F&amp;title=NOTICE%3A+Contact+%26+Twitter&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2010%2F04%2Fcontact-twitter%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2010/04/contact-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mapping illegal horse tracks with OpenStreetMap</title>
		<link>http://cortesi.com/2010/02/mapping-illegal-horse-tracks-with-openstreetmap/</link>
		<comments>http://cortesi.com/2010/02/mapping-illegal-horse-tracks-with-openstreetmap/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 00:33:39 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[illegal]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://cortesi.com/?p=110</guid>
		<description><![CDATA[One of the most interesting things about OSM is the fact that it allows you to &#8220;map the reality&#8221;, map the ground-truth, not what the State-run maps tells you it&#8217;s there, but what is actually there. Recently, on 10. January, an illegal horse racing, in a sort of clandestine racetrack was blocked by the military [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most interesting things about OSM is the fact that it allows you to &#8220;map the reality&#8221;, map the ground-truth, not what the State-run maps tells you it&#8217;s there, but what is actually there.</p>
<p>Recently, on 10. January, an illegal horse racing, in a sort of clandestine racetrack was blocked by the military police in Pachino, Syracuse (Sicily, Italy). The blitz has, so far, allowed to identify more than 20 horse owners, jockeys and 3 veterinarians. The land placed in the open countryside, less than 2km from the sea, where the race was stopped, was a clandestine race-course, complete with boxes for the horses.</p>
<p>Just after discovering the news, I went hunting for that track on aerial images. We have been lucky enough to have been granted access to some 25cm resolution images, these images were made by the <a href="http://88.53.214.52/content/view/95/112/">Regione Sicilia</a>, after some more research I ended up discovering that the racetrack is located in <a href="http://www.openstreetmap.org/browse/node/631172271">Contrada Granelli</a>, and not nearby the inhabited part of the Pachino town, so in the end, I was able to find it on the map, and tag it accordingly.</p>
<p>&lt;way id=&#8221;49641876&#8243;&gt;<br />
&lt;tag k=&#8221;clandestine&#8221; v=&#8221;yes&#8221;/&gt;<br />
&lt;tag k=&#8221;leisure&#8221; v=&#8221;track&#8221;/&gt;<br />
&lt;tag k=&#8221;name&#8221; v=&#8221;Granelli&#8221;/&gt;<br />
&lt;tag k=&#8221;sport&#8221; v=&#8221;horse_racing&#8221;/&gt;<br />
&lt;/way&gt;</p>
<p>Here is the result:<br />
<p>horse<br/><a href="http://cortesi.com/wp-content/plugins/leaflet-maps-marker/leaflet-fullscreen.php?layer=1"><img src="http://cortesi.com/wp-content/plugins/leaflet-maps-marker/img/map-rss-feed.png"/><br/>Show embedded map in full-screen mode</a></p></p>
<p>Surely this is not as important as what my friend <a href="http://brainoff.com/weblog/">Mikel</a> is doing in <a href="http://mapkibera.org/">Kibera</a>, but still a declaration of indipendence from the canonical mapmakers.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F&amp;title=mapping+illegal+horse+tracks+with+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F&amp;title=mapping+illegal+horse+tracks+with+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F&amp;title=mapping+illegal+horse+tracks+with+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F&amp;headline=mapping+illegal+horse+tracks+with+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;u=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F&amp;title=mapping+illegal+horse+tracks+with+OpenStreetMap&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2010%2F02%2Fmapping-illegal-horse-tracks-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2010/02/mapping-illegal-horse-tracks-with-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenStreetMap Haiti Statistics</title>
		<link>http://cortesi.com/2010/01/openstreetmap-haiti-statistics/</link>
		<comments>http://cortesi.com/2010/01/openstreetmap-haiti-statistics/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 22:14:44 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[crisis management]]></category>
		<category><![CDATA[crowdsourcing]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://cortesi.com/?p=96</guid>
		<description><![CDATA[For a poster I&#8217;m working on for the Geomatics for Crisis Management conference, I did run some simple stats on the Haiti Planet extracts. After the recent Earthquake, and after the donation of free/libre aerial imagery there has been an increase in user contributions. These are the total number of users in the Haiti planet [...]]]></description>
			<content:encoded><![CDATA[<p>For a poster I&#8217;m working on for the <a href="http://http://www.gi4dm-2010.org/haiti.php">Geomatics for Crisis Management</a> conference, I did run some simple stats on the Haiti Planet extracts. After the recent Earthquake, and after the donation of free/libre aerial imagery there has been an increase in user contributions.</p>
<p>These are the total number of users in the Haiti planet extract as of today (the 29th), and dating back to the 14th. For comparison purpose I&#8217;ve added the data for 30th dec 2009. It can clearly be seen that the biggest spike was on 16th, reason being on the 15th the first high quality images were made available for retracing. Then, same thing, same reason, on the 22nd.</p>
<p>first column: date of the extract<br />
second: unique users contributing to the Haiti map<br />
third: Megabytes of the uncompressed extract file (useful for gathering a rough idea of &#8220;detail&#8221;)</p>

<table id="wp-table-reloaded-id-1-no-1" class="wp-table-reloaded wp-table-reloaded-id-1">
<thead>
	<tr class="row-1 odd">
		<th class="column-1">Date</th><th class="column-2"># users</th><th class="column-3">Size (MB)</th>
	</tr>
</thead>
<tbody class="row-hover">
	<tr class="row-2 even">
		<td class="column-1">2009-12-30</td><td class="column-2">38</td><td class="column-3">44</td>
	</tr>
	<tr class="row-3 odd">
		<td class="column-1">2010-01-14</td><td class="column-2">71</td><td class="column-3">49</td>
	</tr>
	<tr class="row-4 even">
		<td class="column-1">2010-01-15</td><td class="column-2">96</td><td class="column-3">51</td>
	</tr>
	<tr class="row-5 odd">
		<td class="column-1">2010-01-16</td><td class="column-2">183</td><td class="column-3">60</td>
	</tr>
	<tr class="row-6 even">
		<td class="column-1">2010-01-17</td><td class="column-2">245</td><td class="column-3">77</td>
	</tr>
	<tr class="row-7 odd">
		<td class="column-1">2010-01-18</td><td class="column-2">286</td><td class="column-3">93</td>
	</tr>
	<tr class="row-8 even">
		<td class="column-1">2010-01-19</td><td class="column-2">300</td><td class="column-3">106</td>
	</tr>
	<tr class="row-9 odd">
		<td class="column-1">2010-01-20</td><td class="column-2">327</td><td class="column-3">117</td>
	</tr>
	<tr class="row-10 even">
		<td class="column-1">2010-01-21</td><td class="column-2">365</td><td class="column-3">126</td>
	</tr>
	<tr class="row-11 odd">
		<td class="column-1">2010-01-22</td><td class="column-2">494</td><td class="column-3">188</td>
	</tr>
	<tr class="row-12 even">
		<td class="column-1">2010-01-23</td><td class="column-2">515</td><td class="column-3">197</td>
	</tr>
	<tr class="row-13 odd">
		<td class="column-1">2010-01-24</td><td class="column-2">573</td><td class="column-3">211</td>
	</tr>
	<tr class="row-14 even">
		<td class="column-1">2010-01-25</td><td class="column-2">585</td><td class="column-3">219</td>
	</tr>
	<tr class="row-15 odd">
		<td class="column-1">2010-01-26</td><td class="column-2">642</td><td class="column-3">229</td>
	</tr>
	<tr class="row-16 even">
		<td class="column-1">2010-01-27</td><td class="column-2">649</td><td class="column-3">234</td>
	</tr>
	<tr class="row-17 odd">
		<td class="column-1">2010-01-28</td><td class="column-2">655</td><td class="column-3">238</td>
	</tr>
	<tr class="row-18 even">
		<td class="column-1">2010-01-29</td><td class="column-2">663</td><td class="column-3">239</td>
	</tr>
</tbody>
</table>

<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F&amp;title=OpenStreetMap+Haiti+Statistics" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F&amp;title=OpenStreetMap+Haiti+Statistics" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F&amp;title=OpenStreetMap+Haiti+Statistics" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F&amp;headline=OpenStreetMap+Haiti+Statistics" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=OpenStreetMap+Haiti+Statistics&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=OpenStreetMap+Haiti+Statistics&amp;u=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=OpenStreetMap+Haiti+Statistics&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=OpenStreetMap+Haiti+Statistics&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=OpenStreetMap+Haiti+Statistics&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F&amp;title=OpenStreetMap+Haiti+Statistics&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fopenstreetmap-haiti-statistics%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2010/01/openstreetmap-haiti-statistics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>geo search using Lucene + SOLR + OpenStreetMap</title>
		<link>http://cortesi.com/2010/01/geo-search-using-lucene-solr-openstreetmap/</link>
		<comments>http://cortesi.com/2010/01/geo-search-using-lucene-solr-openstreetmap/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 20:55:47 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[geoaware]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[lucene]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[solr]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=72</guid>
		<description><![CDATA[An interesting article on finding geo data (OpenStreetMap) using common-use search software as SOLR a java frontend to Lucene. Apache Lucene is a Java™-based, high performance search library. Apache Solr is a search server that uses Lucene to provide search, faceting, and many more capabilities over HTTP. Both are licensed under the commercial-friendly Apache Software [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting article on finding geo data (<a href="ttp://osm.org">OpenStreetMap</a>) using common-use search software as <a href="http://lucene.apache.org/solr/">SOLR</a> a java frontend to <a href="http://lucene.apache.org/java/docs/">Lucene</a>. Apache Lucene is a Java™-based, high performance search library. Apache Solr is a search server that uses Lucene to provide search, faceting, and many more capabilities over HTTP. Both are licensed under the commercial-friendly Apache Software License. Both Lucene and Solr also offer the ability to restrict the space being searched by applying one or more filters, which are key to spatial search. <em>Range queries</em> and <em>range filters</em> are among the essential mechanisms for restricting the space.</p>
<p><a href="http://www.ibm.com/developerworks/opensource/library/j-spatial/index.html">http://www.ibm.com/developerworks/opensource/library/j-spatial/index.html</a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F&amp;title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F&amp;title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F&amp;title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F&amp;headline=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;u=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F&amp;title=geo+search+using+Lucene+%2B+SOLR+%2B+OpenStreetMap&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2010%2F01%2Fgeo-search-using-lucene-solr-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2010/01/geo-search-using-lucene-solr-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old Map of Pavia</title>
		<link>http://cortesi.com/2009/12/old-map-of-pavia/</link>
		<comments>http://cortesi.com/2009/12/old-map-of-pavia/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 23:40:38 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=66</guid>
		<description><![CDATA[This is an historical map of my city, Pavia, Italy, scanned from out copyright source. The file is large enough to be printed on a 50 by 75 sheet of paper.]]></description>
			<content:encoded><![CDATA[<p>This is an historical map of my city, <a href="http://en.wikipedia.org/wiki/Pavia">Pavia</a>, Italy, scanned from out copyright source. The file is large enough to be printed on a 50 by 75 sheet of paper.<br />
<a title="Historical map of Pavia by simone.cortesi, on Flickr" href="http://www.flickr.com/photos/simonecortesi/4229016791/"><img src="http://farm3.static.flickr.com/2702/4229016791_9d26fb048e.jpg" alt="Historical map of Pavia" width="500" height="416" /></a></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F&amp;title=Old+Map+of+Pavia" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F&amp;title=Old+Map+of+Pavia" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F&amp;title=Old+Map+of+Pavia" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F&amp;headline=Old+Map+of+Pavia" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Old+Map+of+Pavia&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Old+Map+of+Pavia&amp;u=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Old+Map+of+Pavia&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Old+Map+of+Pavia&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Old+Map+of+Pavia&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F&amp;title=Old+Map+of+Pavia&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fold-map-of-pavia%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2009/12/old-map-of-pavia/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cubed art</title>
		<link>http://cortesi.com/2009/12/cubed-art/</link>
		<comments>http://cortesi.com/2009/12/cubed-art/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 20:50:40 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=58</guid>
		<description><![CDATA[To my non-artistic eyes this smart artist creates folding cubes that you need to donwload &#8211;&#62; print &#8211;&#62; cut &#8211;&#62; fold with no need for glue. An amazing piece of art.]]></description>
			<content:encoded><![CDATA[<p><a href=" http://cubeecraft.com/cubee/italian-spiderman"><img class="size-full wp-image-59 alignnone" title="119a" src="http://cortesi.com/wp-content/uploads/2009/12/119a.png" alt="Italian Spiderman from cubeecraft.com" width="107" height="149" /></a></p>
<p>To my non-artistic eyes <a href="http://cubeecraft.com/">this smart artist</a> creates folding cubes that you need to donwload &#8211;&gt; print &#8211;&gt; cut &#8211;&gt; fold with no need for glue. An amazing piece of art.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F&amp;title=cubed+art" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F&amp;title=cubed+art" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F&amp;title=cubed+art" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F&amp;headline=cubed+art" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=cubed+art&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=cubed+art&amp;u=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=cubed+art&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=cubed+art&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=cubed+art&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F&amp;title=cubed+art&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcubed-art%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2009/12/cubed-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Japanese Addressing</title>
		<link>http://cortesi.com/2009/12/japanese-addressing/</link>
		<comments>http://cortesi.com/2009/12/japanese-addressing/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 18:30:55 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[japan]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[truths]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=53</guid>
		<description><![CDATA[Stolen from Steve&#8217;s OpenGeodata blog post:]]></description>
			<content:encoded><![CDATA[<p>Stolen from Steve&#8217;s <a href="http://www.opengeodata.org/2009/12/19/japanese-addressing/">OpenGeodata</a> blog post:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/q1zh49J5rsg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/q1zh49J5rsg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F&amp;title=Japanese+Addressing" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F&amp;title=Japanese+Addressing" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F&amp;title=Japanese+Addressing" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F&amp;headline=Japanese+Addressing" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Japanese+Addressing&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Japanese+Addressing&amp;u=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Japanese+Addressing&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Japanese+Addressing&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Japanese+Addressing&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F&amp;title=Japanese+Addressing&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fjapanese-addressing%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2009/12/japanese-addressing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>digiKam 1.0 with OSM</title>
		<link>http://cortesi.com/2009/12/digikam-with-openstreetmap/</link>
		<comments>http://cortesi.com/2009/12/digikam-with-openstreetmap/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 10:28:50 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=46</guid>
		<description><![CDATA[Release 1.0 of digiKam the open source software for professionally managing pictures just came out. It will work under Linux and Windows and this coming release boasts several enhancements including support for geotagging images using OpenStreetMap carthography. All it takes is selecting some images from your library and locate them to the right spot on [...]]]></description>
			<content:encoded><![CDATA[<p>Release 1.0 of <a href="http://www.digikam.org/drupal/node/491">digiKam</a> the open source software for professionally managing pictures just came out. It will work under Linux and Windows and this coming release boasts several enhancements including support for geotagging images using <a href="http://osm.org">OpenStreetMap</a> carthography. All it takes is selecting some images from your library and locate them to the right spot on planet Earth using the Map Widget.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F&amp;title=digiKam+1.0+with+OSM" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F&amp;title=digiKam+1.0+with+OSM" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F&amp;title=digiKam+1.0+with+OSM" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F&amp;headline=digiKam+1.0+with+OSM" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=digiKam+1.0+with+OSM&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=digiKam+1.0+with+OSM&amp;u=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=digiKam+1.0+with+OSM&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=digiKam+1.0+with+OSM&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=digiKam+1.0+with+OSM&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F&amp;title=digiKam+1.0+with+OSM&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fdigikam-with-openstreetmap%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2009/12/digikam-with-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cheap startup office</title>
		<link>http://cortesi.com/2009/12/cheap-startup-office/</link>
		<comments>http://cortesi.com/2009/12/cheap-startup-office/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 13:54:04 +0000</pubDate>
		<dc:creator>Simone</dc:creator>
				<category><![CDATA[english]]></category>

		<guid isPermaLink="false">http://cortesi.com/blog/?p=27</guid>
		<description><![CDATA[Rubato al napo, come arredare un nuovo ufficio in maniera accogliente e geeky. http://dontrepreneur.com/2009/12/14/how-to-create-a-great-startup-office-space-while-being-abusrdly-cheap/ First let me tell you I furnished my entire office for about $4,500 complete with four workspaces, including chairs, desk lamps, wastebins and office supplies. A lounge area complete with futon couch, area rug and end table. Lamps, rugs and some [...]]]></description>
			<content:encoded><![CDATA[<p>Rubato al <a title="napo" href="http://napo.tumblr.com/">napo</a>, come arredare un nuovo ufficio in maniera accogliente e geeky.</p>
<blockquote><p><a title="http://dontrepreneur.com/2009/12/14/how-to-create-a-great-startup-office-space-while-being-abusrdly-cheap/" href="http://dontrepreneur.com/2009/12/14/how-to-create-a-great-startup-office-space-while-being-abusrdly-cheap/">http://dontrepreneur.com/2009/12/14/how-to-create-a-great-startup-office-space-while-being-abusrdly-cheap/</a></p>
<p>First let me tell you I furnished my entire office for about $4,500 complete with four workspaces, including chairs, desk lamps, wastebins and office supplies. A lounge area complete with futon couch, area rug and end table. Lamps, rugs and some strategically placed whiteboards. Throw in a microwave, printer, a wireless router, TV stand, 32 inch HD television and Xbox 360 entertainment system. Finally, I almost forgot a refrigerator, storage ottomans, extra chairs, three bookcases and some very nice standing lamps. All for $4,500—purchased and set up in 7 days.</p></blockquote>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F&amp;title=cheap+startup+office" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F&amp;title=cheap+startup+office" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F&amp;title=cheap+startup+office" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F&amp;headline=cheap+startup+office" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=cheap+startup+office&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=cheap+startup+office&amp;u=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=cheap+startup+office&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=cheap+startup+office&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=cheap+startup+office&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F&amp;title=cheap+startup+office&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fcortesi.com%2F2009%2F12%2Fcheap-startup-office%2F" ><img class="lightsocial_img" src="http://cortesi.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://cortesi.com/2009/12/cheap-startup-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

