<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>The Skorasaurus - The Blog of Will Skora</title>
	<atom:link href="http://skorasaurus.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://skorasaurus.wordpress.com</link>
	<description>Writing on living in Cleveland.</description>
	<lastBuildDate>Fri, 13 Jan 2012 18:20:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='skorasaurus.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The Skorasaurus - The Blog of Will Skora</title>
		<link>http://skorasaurus.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://skorasaurus.wordpress.com/osd.xml" title="The Skorasaurus - The Blog of Will Skora" />
	<atom:link rel='hub' href='http://skorasaurus.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Copying an existing postgis db to use in Tilemill</title>
		<link>http://skorasaurus.wordpress.com/2012/01/13/copying-an-existing-postgis-db-to-use-in-tilemill/</link>
		<comments>http://skorasaurus.wordpress.com/2012/01/13/copying-an-existing-postgis-db-to-use-in-tilemill/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 17:57:11 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=658</guid>
		<description><![CDATA[Furthering my exploration in cartography, I&#8217;ve been experimenting with Tilemill lately, particularly using data from openstreetmap [that's in a postgis db]. [The rest of this entry assumes you're at least familiar with Tilemill and its terminology]. I started learning to make my own Tilemill stylesheets [written in carto]. As of now, there&#8217;s only 3-4 other [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=658&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Furthering my exploration in cartography, I&#8217;ve been experimenting with <a href="http://mapbox.com/#/tilemill">Tilemill</a> lately, particularly using data from openstreetmap [that's in a postgis db]. </p>
<p>[The rest of this entry assumes you're at least familiar with Tilemill and its terminology]. </p>
<p>I started learning to make my own Tilemill stylesheets [written in carto]. As of now, there&#8217;s only 3-4 other stylesheets for maps on a street level. (we&#8217;re talking like 0.25mile=72 pixels, roughly; enough to see several city blocks on your computer monitor]. (I also plan on comparing these in a future post in the coming days). </p>
<p>One of the most prominent ones is <a href="https://github.com/mapbox/open-streets-style">open-streets</a>, a stylesheet made by developmentseed/Mapbox, the dev&#8217;s of Tilemill. </p>
<p>Although open-streets has been invaluable for me learning tilemill, I was questioning how they structured their stylesheet and wondered if there were any other approaches. </p>
<p>I then found <a href="http://mike.teczno.com/notes/high-road.html">high-roads by Michal Migurski</a>, whose work and mapping I&#8217;m beginning to admire. </p>
<p>So, for the past couple days, on and off, I was figuring how to try out high-roads without making a whole new postgis database from scratch (preparing OSM data, etc, etc) and instead copying an existing one and using that copied db to experiment with using high-roads. </p>
<p><strong>Caveat:</strong> You could use the same database in another Tilemill project, but I wasn&#8217;t sure if  using views.sql from high-road would alter the database; and wanted to be safe than sorry. </p>
<p>So, after some trial and error, this what I did to do that: </p>
<p>Found this <a href="http://www.thegeekstuff.com/2009/01/how-to-backup-and-restore-postgres-database-using-pg_dump-and-psql/">helpful page by Ramesh Natarajan </a>concisely explaining how to export a single mysql db:<br />
did the following to back up the postgis database whose copy I would use for high-roads:<br />
(obviously, user-name is the one that is the owner of the postgis db):</p>
<p><code>pg_dump -U {user-name} {source_db} -f {dumpfilename.sql}</p>
<p>pg_dump -U myusername thecleve -v -f theclevebackup.sql<br />
</code><br />
Log into your postgres account:<br />
<code>sudo -u postgres -i </code></p>
<p>created the new database that you&#8217;ll be using for your new Tilemill project:<br />
<code>createdb thenameofyournewdb  (in the following commands, it's named thecleve-hr)</code></p>
<p>Then run the couple commands to prepare your mysql for postgis:<br />
<code>createlang plpgsql thecleve-hr<br />
psql -d thecleve-hr -f /usr/share/postgresql/8.4/contrib/postgis-1.5/postgis.sql<br />
psql -d thecleve-hr -f /usr/share/postgresql/8.4/contrib/postgis-1.5/spatial_ref_sys.sql<br />
echo "ALTER TABLE geometry_columns OWNER TO skorasaurus; ALTER TABLE spatial_ref_sys OWNER TO myusername;"  | psql -d thecleve-hr</code><br />
(I ran this last &#8216;echo..&#8217; command to move the ownership back to my postgis user name.. I know that I didn&#8217;t create my postgis user name correctly, so I have add myself as the<br />
owner again&#8230;)</p>
<p>Then, I was going to restore the database&#8230;<br />
<code>$ psql -U myusername -d thecleve-hr -f theclevebackup.sql<br />
psql: FATAL:  Ident authentication failed for user "myusername"<br />
nope, that didn't work. </code><br />
Next idea, log out of postgres, and do it as my normal user name&#8230;</p>
<p>So I did&#8230;<br />
<code>$ psql -U myusername -d thecleve-hr -f theclevebackup.sql</code><br />
[received tons of errors after this]. </p>
<p>So I figured, let&#8217;s see if the new db works anyways.<br />
psql &#8220;dbname=thecleve-hr host=localhost user=myusername password=mypassword&#8221;<br />
I can connect to the database by&#8230;.<br />
but when issuing \d:<br />
<code>no relations are made...</code> that&#8217;s a bad sign ! </p>
<p>but on a whim, I decided to remove my username and try:<br />
<code>$ psql -U -d thecleve-hr -f theclevebackup.sql</code></p>
<p>and now the data is there after issuing \d ! </p>
<p>Then, I just went ahead and created my project in Tilemill =)</p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/openstreetmap/'>openstreetmap</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/658/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/658/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/658/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=658&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2012/01/13/copying-an-existing-postgis-db-to-use-in-tilemill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleveland Planning Commission &#8211; Jan. 6,2012</title>
		<link>http://skorasaurus.wordpress.com/2012/01/10/cleveland-planning-commission-jan-62012/</link>
		<comments>http://skorasaurus.wordpress.com/2012/01/10/cleveland-planning-commission-jan-62012/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 22:29:03 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[northeastohio]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=656</guid>
		<description><![CDATA[[intentionally left blank]. There was no City Planning Commission meeting on Jan. 6, 2012. City Planning Director Bob Brown told me that there was not anything submitted, so there wasn&#8217;t any need for a meeting although it&#8217;s normally held the 1st and 3rd Friday of every month. There you have it. The next meeting is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=656&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>[intentionally left blank]. </p>
<p>There was no City Planning Commission meeting on Jan. 6, 2012. City Planning Director Bob Brown told me that there was not anything submitted, so there wasn&#8217;t any need for a meeting although it&#8217;s normally held the 1st and 3rd Friday of every month.</p>
<p>There you have it. The next meeting is scheduled to be held, at the normal time, 3rd Friday of the month: January 20,2011. </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/northeastohio/'>northeastohio</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/656/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/656/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/656/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=656&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2012/01/10/cleveland-planning-commission-jan-62012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleveland Planning commission Meeting Roundup &#8211; Dec. 16, 2011</title>
		<link>http://skorasaurus.wordpress.com/2011/12/16/cleveland-planning-commission-meeting-roundup-dec-16-2011/</link>
		<comments>http://skorasaurus.wordpress.com/2011/12/16/cleveland-planning-commission-meeting-roundup-dec-16-2011/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 18:44:00 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[cleveland]]></category>
		<category><![CDATA[polyticks]]></category>
		<category><![CDATA[publicpolicy]]></category>
		<category><![CDATA[urbanplanning]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=617</guid>
		<description><![CDATA[The shortest Planning Commission meeting that I&#8217;ve been to [out of the dozen or so] Ended by 10:30am. Attendance: Krumholz, Coyne [Chair], Pickney, Cleveland [9:20a], Bowens [9:50] Very minor ; here&#8217;s a very quick recap, and I&#8217;ll flesh it out later today or tomorrow. - CWRU&#8217;s Planning Director said that they&#8217;re considering renovating a portion [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=617&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The shortest Planning Commission meeting that I&#8217;ve been to [out of the dozen or so] Ended by 10:30am. </p>
<p>Attendance: Krumholz, Coyne [Chair], Pickney, Cleveland [9:20a], Bowens [9:50]</p>
<p>Very minor ; here&#8217;s a very quick recap, and I&#8217;ll flesh it out later today or tomorrow. </p>
<p>- CWRU&#8217;s Planning Director said that they&#8217;re considering renovating a portion of the <a href="http://osm.org/go/ZWeqaD3QL-">Temple on E. 105th</a> for a performing arts center&#8230;</p>
<p>- Pending demolition for 2 buildings on Broadway. One of the buildings, former Goodman&#8217;s Furniture, has some nice architectural elements on the outside. Its owner, the city of Cleveland, is going to find out how much it will cost to salvage those elements (and find someone to take them, because they claim not to have the storage space for them). One hasty quote [for removing them] that the city received was $10k; But they&#8217;re going to get firmer quotes, and this will come back [as far as I remember] to the Commish in at the next meeting.<br />
My guess is that if it&#8217;s anything over $10k or if they don&#8217;t have anyone interested in the elements, they&#8217;ll demolish it. The overall time frame on this building is relatively fast, city hopes to have this demo&#8217;d in 6-8 weeks. [address is somewhere in my notes, these buildings are right next to Holy Family Church, near the intersection of Harvard and Broadway]. </p>
<p>- The zoning changes along Hough Avenue on the agenda were tabled [at the last minute] at the request of whoever initiated the zoning changes. They will be brought again before the commish in January. </p>
<p>- </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/cleveland/'>cleveland</a>, <a href='http://skorasaurus.wordpress.com/category/polyticks/'>polyticks</a>, <a href='http://skorasaurus.wordpress.com/category/publicpolicy/'>publicpolicy</a>, <a href='http://skorasaurus.wordpress.com/category/urbanplanning/'>urbanplanning</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/617/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/617/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/617/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=617&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/12/16/cleveland-planning-commission-meeting-roundup-dec-16-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleveland Planning Commission Notes &#8211; Dec. 2, 2011</title>
		<link>http://skorasaurus.wordpress.com/2011/12/05/cleveland-planning-commission-notes-dec-2-2011/</link>
		<comments>http://skorasaurus.wordpress.com/2011/12/05/cleveland-planning-commission-notes-dec-2-2011/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 22:32:59 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=610</guid>
		<description><![CDATA[Quote of the meeting: that what it ends up being&#8230;being there at the right time.. &#8211; Special K, Norm Krumholz Attendence: Krumholz, Pickney, Bowen (late), Cleveland (10:15) and Bob Brown (not-voting) One of the more noteworthy things was who was missing, rather than who was actually there. There&#8217;s 7 Commissioners, each have full-time jobs but [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=610&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>Quote of the meeting: that what it ends up being&#8230;being there at the right time.. &#8211; Special K, Norm Krumholz </em></p>
<p>Attendence: Krumholz, Pickney, Bowen (late), Cleveland (10:15) and Bob Brown (not-voting)</p>
<p>One of the more noteworthy things was who was missing, rather than who was actually there. There&#8217;s 7 Commissioners, each have full-time jobs but are paid for being on the Cleveland City Planning Commission. After attending about 10-12 of these over the past year, each of the commissioner&#8217;s attendance has not been perfect but Friday was inexcusable.  </p>
<p>In order to take a vote on any amendment or approval, 4 need to be present. At 9:00 AM, the scheduled time for the meeting to begin: Only 2 were there [Krumholz and Pickney]. Ouch. After waiting for 15-20 minutes for Commissioner Bowen to arrive, the meeting started and postponed any votes until the lucky 4th person (Phyllis Cleveland, who arrived at 10:15). </p>
<p>And the Notable Happenings: </p>
<p><a href="http://blog.cleveland.com/metro/2011/12/east_22nd_street_could_yield_b.html">The East 22nd Project</a> [PeeDee Link] &#8211; Re-doing the streetscape for E. 22nd (from Orange Ave to Euclid Ave), is tersely, good. It&#8217;s currently dead of any Pedestrian traffic or of anything else besides St. Vincent Hospital.<br />
- Plants in the median, removing one lane of traffic on each side (it&#8217;s 3 lanes each way, south of Cedar), plus adding a bike lane. </p>
<p>At Orange Ave, this bike lane would actually connect with a bike trail connecting from Slavic Village towards downtown [I don't know any more details about this Slavic Village bike trail , I'll edit later if I find any].<br />
-<br />
Cost: $4 million, roughly; 615k will be from ODOT (since ODOT designated E. 22 as a detour for the innerbelt construction, ODOT is paying for a &#8216;Mill and Fill&#8217; of E.22; regardless if this project is implemented). </p>
<p>- A few spruce-ups on Professor Ave in Tremont. This authorized the city to hire consultants, contractors for the Power lines to be buried, and a couple other things that I missed (or were maybe not even mentioned).<br />
no idea when the actual work will be done. </p>
<p>- Ditto for Larchmere Blvd (From MLK Jr. to N. Moreland). </p>
<p>- Miceli&#8217;s is expanding their operations at their headquarters. Sounded like a very small expansion, but required them to take over E. 90th place and Evarts Ave. </p>
<p>http://www.theatlanticcities.com/commute/2011/12/transportation-planning-law-every-city-should-repeal/636/</p>
<p>The . The proposed changes would change from a B to a D, still acceptable, the archetects duly noted. </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/610/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/610/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/610/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=610&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/12/05/cleveland-planning-commission-notes-dec-2-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>The Paris Art Theater Demolished</title>
		<link>http://skorasaurus.wordpress.com/2011/11/13/the-paris-art-theater-demolished/</link>
		<comments>http://skorasaurus.wordpress.com/2011/11/13/the-paris-art-theater-demolished/#comments</comments>
		<pubDate>Sun, 13 Nov 2011 16:39:05 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[cleveland]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=605</guid>
		<description><![CDATA[Another day, another building demolished in Cleveland. This time it was the Paris Art Theatre, 3151 West 25th Street, Cleveland, OH 44109. I noticed it demo&#8217;d on Monday, Nov. 7th. You can find more information on the property by entering the Parcel #: 008-10-010 in Cuyahoga County&#8217;s property database. (Credits to otterphoto for some pictures [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=605&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another day, another building demolished in Cleveland. </p>
<p>This time it was the Paris Art Theatre, 3151 West 25th Street,<br />
Cleveland, OH 44109.<br />
I noticed it demo&#8217;d on Monday, Nov. 7th.<br />
You can find more information on the property by entering the Parcel #: 008-10-010 in <a href="http://fiscalofficer.cuyahogacounty.us/en-US/REPI.aspx">Cuyahoga County&#8217;s property database</a>.</p>
<p>(Credits to <a href="http://www.flickr.com/photos/67661849@N00/4126076922/in/photostream/">otterphoto for some pictures here</a> and <a href="http://cinematreasures.org/theaters/18088">Cinematreasures</a> has some notes on it as well. Originally named the Southern Theatre, it turned to a porn theater in the late 60s or 70s, showing classics like <a href="http://americanclassicimages.com/Default.aspx?tabid=141&amp;txtSearch=art&amp;catpagesize=25&amp;ProductID=31869">Deep Throat </a>. </p>
<p>I haven&#8217;t seen the building operable in the past 10 years. It&#8217;s a shame. Granted, I have no idea what should be done with the building.<br />
$14,000 in property taxes owed. The owner of the building since 2000: the Clark Metro Development Corporation. I haven&#8217;t heard much about them since I moved back to Cleveland in 2009 and as I understand, is dissolved. Regardless, they should be responsible for the cost of demolishing the Paris Art Theatre. Was the building salvageable ?  Why did Clark Metro sit on it for so long [since 2000] ? If they&#8217;re dissolved, why didn&#8217;t Tremont West or Detroit Shoreway, the 2 CDCs who have been active in the neighborhood recently take ownership ? </p>
<p>There&#8217;s more commentary on this at <a href="http://realneo.us/content/cover">realneo</a></p>
<p>Also, just a few buildings down is the Aragon Ballroom, a boarded-up Concert Hall, also currently shuttered and I was preparing a blog post months ago on this building and remember reading that Live had a concert there in &#8217;92 but I can&#8217;t find the link right now.</p>
<p>As often is the case, I&#8217;m left with more questions than answers about the demolition and there&#8217;s more to the story&#8230; </p>
<p>&#8230;All the pieces matter. &#8211; Freemon. </p>
<p><em>(note: All links are &#8216;safe for work&#8217; and do not display any pornography).  </em></p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/cleveland/'>cleveland</a>, <a href='http://skorasaurus.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/605/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/605/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/605/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=605&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/11/13/the-paris-art-theater-demolished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating an extract of a city in Openstreetmap</title>
		<link>http://skorasaurus.wordpress.com/2011/11/08/creating-an-extract-of-a-city-in-openstreetmap/</link>
		<comments>http://skorasaurus.wordpress.com/2011/11/08/creating-an-extract-of-a-city-in-openstreetmap/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 23:07:18 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=598</guid>
		<description><![CDATA[I have been rendering maps of my local city [Cleveland, Ohio] recently. Because of Cleveland&#8217;s administrative borders, I had to extract the city of Cleveland using a large bounding box that included a lot of data outside of the city of Cleveland. As a result, I had to manually remove many ways and nodes (via [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=598&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been rendering maps of my local city [Cleveland, Ohio] recently. Because of Cleveland&#8217;s administrative borders, I had to extract the city of Cleveland using a large bounding box that included a lot of data outside of the city of Cleveland. As a result, I had to manually remove many ways and nodes (via josm) outside the city&#8217;s borders before I later used this data within the city&#8217;s boundaries for rendering in osmarender, and as a postgis db in tilemill and mapnik.</p>
<p>To automate this, I have been looking to create an extract of my city (and hopefully to be able to replicate this with other cities). This extract would only contain data within the city&#8217;s administrative boundaries.</p>
<p>I found a similar project to mine,<br />
<a href="https://github.com/migurski/Extractotron"> The Extractotron</a> &#8211; which is a great project but its extracts are for cities including areas outside a city&#8217;s administrative borders.</p>
<p>I have unsuccessfully tried the following:</p>
<p>1] Created an extract that contains the administrative borders of my city in its entirety from a larger extract (in my case, my state) from geofabrik</p>
<p>bzcat ohio.osm.bz2 | osmosis\<br />
&#8211;read-xml enableDateParsing=no file=-\<br />
&#8211;bounding-box top=41.606 left=-81.88 bottom=41.3903 right=-81.5323 clipIncompleteEntities=true &#8211;write-xml file=-\<br />
| bzip2 &gt; extracted.osm.bz2</p>
<p>2.] Filtered the extract again in osmosis to only contain the administrative boundaries [and highway motorway link as a reference for me]</p>
<p>Specifically I did:<br />
osmosis &#8211;read-xml extracted.osm &#8211;way-key-value keyValueList=&#8221;highway.motorway_link,boundary.administrative&#8221; &#8211;used-node &#8211;write-xml entireclevelandboundingbox.osm</p>
<p>4. Opened the file in josm, selected the multipolygon that consisted of the city&#8217;s administrative boundary, and then right-clicked on it, Selected Members, and copied it to a new layer</p>
<p>5. In the new layer, Removed the tags from the city&#8217;s boundaries and then combined all of them into one single way [in one direction] and saved it as a new osm file.</p>
<p>http://dl.dropbox.com/u/17003223/clevelandboundaryonly-dell.osm</p>
<p>6. Used osm2poly to create a polygon:<br />
perl ./osm2poly.pl clevelandboundaryonly-dell.osm &gt; clevelandboundaryonly-dell.poly</p>
<p>polygon can be found:</p>
<p>http://dl.dropbox.com/u/17003223/clevelandboundaryonly-dell.poly</p>
<p>7. Use the polygon as the boundary from the first large extract [from the state of ohio].</p>
<p>bzcat ohio.osm.bz2 | osmosis\<br />
&#8211;read-xml enableDateParsing=no file=-\<br />
&#8211;bounding-polygon file=clevelandboundaryonly-dell.poly clipIncompleteEntities=true &#8211;write-xml file=-\<br />
| bzip2 &gt; extracted.osm.bz2</p>
<p>http://dl.dropbox.com/u/17003223/extracted-dell.osm</p>
<p>This last osm file results in administrative boundaries are broken and incomplete.</p>
<p>An example of these broken boundaries can be can see in a screenshot of josm at http://i.imgur.com/Tw8Ba.png<br />
In this screenshot, the underlying gray line is an inactive layer in josm and the same OSM file that I used to create the polygon in Step 5. The<br />
administrative boundary, shown as orange dashed line in the screenshot, is from the extract in step 7 and should be over the gray line.</p>
<p>Any idea why the boundaries are broken in my new extract ?</p>
<p>Although we were unsuccessful, thank you to stereo in #osm for troubleshooting this with me yesterday.</p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/openstreetmap/'>openstreetmap</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/598/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/598/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/598/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=598&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/11/08/creating-an-extract-of-a-city-in-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Cleveland Neighborhood Map</title>
		<link>http://skorasaurus.wordpress.com/2011/10/20/cleveland-neighborhood-map/</link>
		<comments>http://skorasaurus.wordpress.com/2011/10/20/cleveland-neighborhood-map/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 14:24:22 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[cleveland]]></category>
		<category><![CDATA[northeastohio]]></category>
		<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=571</guid>
		<description><![CDATA[The Cleveland Neighborhood Map was updated last week, check it out. I added Brooklyn Centre and Lake Erie is now included on the map. Filed under: cleveland, northeastohio, openstreetmap<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=571&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://skorasaurus.wordpress.com/cleveland-neighborhood-map/">Cleveland Neighborhood Map</a> was updated last week, check it out. I added Brooklyn Centre and Lake Erie is now included on the map. </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/cleveland/'>cleveland</a>, <a href='http://skorasaurus.wordpress.com/category/northeastohio/'>northeastohio</a>, <a href='http://skorasaurus.wordpress.com/category/openstreetmap/'>openstreetmap</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/571/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/571/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/571/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=571&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/10/20/cleveland-neighborhood-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>the cleveland bike rack is open!</title>
		<link>http://skorasaurus.wordpress.com/2011/09/09/the-cleveland-bike-rack-is-open/</link>
		<comments>http://skorasaurus.wordpress.com/2011/09/09/the-cleveland-bike-rack-is-open/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 15:51:52 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[urbanplanning]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=556</guid>
		<description><![CDATA[The Cleveland bike Rack, to take a shower and secure your bicycle finally opened a couple weeks ago (it was initially scheduled to be opened in the Spring). I am slightly disappointed that the space only has parking for 50 bikes but if they need more space in the future, then the station was at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=556&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.clevelandbikerack.com">The Cleveland bike Rack</a>, to take a shower and secure your bicycle finally opened a couple weeks ago (it was initially scheduled to be opened in the Spring). </p>
<p>I am slightly disappointed that the space only has parking for 50 bikes but if they need more space in the future, then the station was at least a success. </p>
<p>However, I am frustrated that the current economics of downtown Cleveland parking. Although downtown parking is relatively cheap (and my low budget likes that a lot), its low costs dissuades other sources of transportation (bike, RTA &#8211; the rapid or bus).<br />
It&#8217;s $5 per day to park your bike indoors (the $25 monthly pass is a great deal and is a higher incentive to use). </p>
<p>Although The bike rack offers showers and changing areas, that prices isn&#8217;t very competitive as there are lots right now in downtown Cleveland (including one covered parking garage across the street on Huron, just east of east6th &#8211; http://www.openstreetmap.org/?lat=41.497893&amp;lon=-81.688057&amp;zoom=18&amp;layers=M ) that charge as low as $3.50 (the early bird, before 9am) for a car. </p>
<p>I&#8217;m interested to learn more about the economics of parking lots here in downtown Cleveland. </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/uncategorized/'>Uncategorized</a>, <a href='http://skorasaurus.wordpress.com/category/urbanplanning/'>urbanplanning</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/556/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/556/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/556/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=556&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/09/09/the-cleveland-bike-rack-is-open/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Yes, Osmarender can render coastlines [sort of]!</title>
		<link>http://skorasaurus.wordpress.com/2011/09/01/yes-osmarender-can-render-coastlines-sort-of/</link>
		<comments>http://skorasaurus.wordpress.com/2011/09/01/yes-osmarender-can-render-coastlines-sort-of/#comments</comments>
		<pubDate>Thu, 01 Sep 2011 14:03:43 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[openstreetmap]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=554</guid>
		<description><![CDATA[There&#8217;s been a nagging error in the Cleveland Neighborhood Map: No Lake. Lake Erie will be in the upcoming CNM update as I figured out how to configure my rendering software, or/p, (a perl implementation of osmarender) to include the coastline. Here is how I did it: The problem: When downloading data from OSM, the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=554&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a nagging error in the Cleveland Neighborhood Map: No Lake.</p>
<p>Lake Erie will be in the upcoming CNM update as I figured out how to configure my rendering software, or/p, (a perl implementation of osmarender) to include the coastline.</p>
<p>Here is how I did it:</p>
<p>The problem:</p>
<p>When downloading data from OSM, the geographic area is (not always, but for the sake of this post, most of time) shaped in a rectangle defined by the bounding a north, east, south, and west coordinates (known as a bounding box).</p>
<p>When it comes to coastlines in OSM, the entire area is not downloaded, just the data within the bounding box. This can be a problem if your data partially contains a coastline and the data does not specify which side is land and which is water ! </p>
<p>Thus, here&#8217;s what you should do if you have a large coastline to render in osmarender.<br />
(thanks to bobkare in the OSM IRC channel for the help). </p>
<ol>
<li>download the <a href="http://wiki.openstreetmap.org/wiki/Tiles@home">tiles@home client. </a></li>
<li>Extract the t@h client, copy both ./close-areas.pl and the folder png2tileinfo to the folder that contains the .OSM file you wish to render. </li>
<li>Run ./close-areas.pl on the .OSM file<br />
As follows: <code>./close-areas.pl minlat minlon maxlat maxlon &lt; theosmfile.osm &gt; output.osm</code>
</ol>
<p>close-areas.pl will download the additional coastline that was not in the bounding box and specify the area(s) near the coastline which contain water. </p>
<p>After running close-areas.pl, my output .osm file, once rendered, still did not have water in it.<br />
Why ?!<br />
Through a couple trial and errors of running close-areas.pl, I also learned that the <strong>the bounding box order IS NOT the same as your minlat minlon maxlat maxlon </strong>. The bounding box order (used in the OSM API, [v.06]) is left,bottom,right,top sides of your bounding box; </p>
<p>but the parameters of the<br />
minlat is the bottom (of your bounding box) (southern portion),<br />
maxlat is the top/north;<br />
minlon is the left/west;<br />
maxlon is the right/east. </p>
<p>I had mistakenly entered the bounding box coordinates in the same order of the API, not the specific order used in close-areas.pl</p>
<p>The correct close-areas.pl was:<code>./close-areas.pl  41.49503 -81.7291 41.51245 -81.69391 &lt; input.osm &amp;rt; output.osm  </code></p>
<p><strong>EDIT: I haven&#8217;t fixed it yet</strong> I was able to render the coastline using an area of bounding box that consisted of the mall portion of downtown Cleveland (the above coordinates), for the sake of simplicity during this debugging process. However, when I attempt to run the above using the bounding box of the entire city of Cleveland (the same used for the Cleveland Neighborhood Map), the water is displayed everywhere on the rendered image, instead of just Lake Erie.</p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/openstreetmap/'>openstreetmap</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/554/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=554&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/09/01/yes-osmarender-can-render-coastlines-sort-of/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
		<item>
		<title>Progress Indicator for the Cleveland Neighborhood Map</title>
		<link>http://skorasaurus.wordpress.com/2011/06/17/an-update-of-the-cleveland-neighborhood-map/</link>
		<comments>http://skorasaurus.wordpress.com/2011/06/17/an-update-of-the-cleveland-neighborhood-map/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 12:23:42 +0000</pubDate>
		<dc:creator>skorasaurus</dc:creator>
				<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[urbanplanning]]></category>

		<guid isPermaLink="false">http://skorasaurus.wordpress.com/?p=504</guid>
		<description><![CDATA[First off, a group Naplab, in Indy have made a great neighborhood map. Aaron Renn of the Urbanophile has an interview with the creators here. I hope to talk to them soon to kick around a few ideas with the Cleveland Neighborhood map and discuss our projects. The Cleveland Neighborhood map has a background layer [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=504&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First off, a group Naplab, in Indy have made a great neighborhood map. Aaron Renn of the <a>Urbanophile</a> has an interview with the creators <a href="http://www.urbanophile.com/2011/06/09/announcing-the-indianapolis-neighborhood-map/"> here</a>. I hope to talk to them soon to kick around a few ideas with the Cleveland Neighborhood map and discuss our projects. </p>
<p>The <a href="http://skorasaurus.wordpress.com/cleveland-neighborhood-map/">Cleveland Neighborhood map</a> has a background layer of roads, rivers, streams, and railways from Openstreetmap (OSM). However, this background layer of data from OSM was mostly based from the 2007 US Census Data. As I worked on the Cleveland neighborhood map, I noticed quite a few instances where the data (the roads no longer existed, were incorrectly named, or new roads have since been created, and didn&#8217;t mark any streets as one ways) was wrong.<br />
Through the past few months, I have traveled around the city to verify the data in Openstreetmap and made many corrections. (This is also quite addictive too!)  </p>
<p>July 18, 2011 edit: <a href="http://skorasaurus.wordpress.com/progess-indictor-for-the-cleveland-neighborhood-map-code/">see the code map for more information</a></p>
<p>The green roads have been verified or corrected (as of June 16th)<br />
red have not been verified. Also thanks to <a href="http://www.openstreetmap.org/user/SomeoneCallAlejandro">someonecallAlejandro</a> (CWRU campus), <a href="http://www.openstreetmap.org/user/baddandy23">badandy23</a> and anyone else in the OSM community who had contributed. </p>
<p>I plan on rolling out an updated version of the Cleveland Neighborhood Map in the next week or so, hopefully adding Glenville and Shaker Square. </p>
<p>(For me, back to rebuilding my sister&#8217;s garage!) </p>
<br />Filed under: <a href='http://skorasaurus.wordpress.com/category/openstreetmap/'>openstreetmap</a>, <a href='http://skorasaurus.wordpress.com/category/urbanplanning/'>urbanplanning</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/skorasaurus.wordpress.com/504/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/skorasaurus.wordpress.com/504/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/skorasaurus.wordpress.com/504/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=skorasaurus.wordpress.com&amp;blog=371771&amp;post=504&amp;subd=skorasaurus&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://skorasaurus.wordpress.com/2011/06/17/an-update-of-the-cleveland-neighborhood-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3f2a3925f19f9684808db864d290682c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">skorasaurus</media:title>
		</media:content>
	</item>
	</channel>
</rss>
