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

<channel>
	<title>new jersey geographer &#187; OpenStreetMap</title>
	<atom:link href="http://njgeo.org/tag/openstreetmap/feed/" rel="self" type="application/rss+xml" />
	<link>http://njgeo.org</link>
	<description>GIS and planning in New Jersey</description>
	<lastBuildDate>Wed, 09 May 2012 13:03:41 +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>Pulling data from OSM using XAPI, bringing it to ArcGIS</title>
		<link>http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/</link>
		<comments>http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/#comments</comments>
		<pubDate>Wed, 09 May 2012 13:03:41 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tools and Scripts]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[mapquest]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[xapi]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=683</guid>
		<description><![CDATA[I was recently asked by a friend if I knew of an ArcGIS-friendly data set representing the highway interchanges within New Jersey. I knew the information was already available in OpenStreetMap, but how could I quickly pull just the highway &#8230; <a href="http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was recently asked by a friend if I knew of an ArcGIS-friendly data set representing the highway interchanges within New Jersey. I knew the information was already available in <a title="OSM at the NJ Turnpike/Garden State Parkway interchange." href="http://www.openstreetmap.org/?lat=40.54218&amp;lon=-74.29841&amp;zoom=15&amp;layers=M">OpenStreetMap</a>, but how could I quickly pull just the highway interchanges out of OSM and bring them into ArcGIS?</p>
<p>Using the <a href="http://wiki.openstreetmap.org/wiki/XAPI">XAPI</a>, I was able to pull just the relevant information from OSM. In this case, I only wanted <a href="http://wiki.openstreetmap.org/wiki/Node">nodes</a> that contained <a href="http://wiki.openstreetmap.org/wiki/Motorway_junction">a highway key with the value of motorway_junction</a>. I used <a href="http://mapquest.com/">MapQuest</a>&#8216;s <a href="http://developer.mapquest.com/web/products/open/xapi">XAPI service</a> and quickly generated a URL using <a href="http://harrywood.co.uk/maps/uixapi/xapi.html">a nifty map mashup</a>. I had to manipulate the XAPI URL manually to change the bounding box; New Jersey was too large to search with a statewide bbox, so I broke the state into four portions by changing the latitude ranges. Making smaller requests for the part of the state between latitude 39 and 40, then 40 and 41, allowed my request to go through without timing out.</p>
<p>I was then left with four XML files that contained the highway interchanges. ArcGIS doesn&#8217;t know what to do with this, so <a href="https://gist.github.com/2641539">I whipped up some Python to convert all four tables into one tab-delimited file</a>. This code (included below) can then be used to add the points to ArcMap using the Add XY Data functionality.</p>
<p>All said and done, this project took me about an hour. I was able to send the data off in about 30 minutes, but then spent another thirty minutes cleaning up the script, modifying it to spit out any available key, not just the &#8220;ref&#8221; tag. The script is GPL, free for you to use as you see fit. <a href="http://wiki.openstreetmap.org/wiki/Legal_FAQ#I_would_like_to_use_OpenStreetMap_maps._How_should_I_credit_you.3F">Just remember to give credit where it&#8217;s due, attributing your data back to OSM. </a></p>
<p>Taking the time to do this for a friend is a good reminder of why I push our students to do more than just the GIS curriculum. Being familiar with OSM gives you a different point of view on GIS data, schema, and community than what you would gain from most GIS courses and entry-level positions. GIS is already about problem solving; being able to do some basic programming will enable you to tackle much larger problems efficiently. And providing technical assistance to others just makes you a better person.</p>
<p><script src="https://gist.github.com/2641539.js"> </script></p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2012. |
<a href="http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/">Permalink</a> |
<a href="http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/&title=Pulling data from OSM using XAPI, bringing it to ArcGIS">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/github/" rel="tag">github</a>, <a href="http://njgeo.org/tag/mapquest/" rel="tag">mapquest</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a>, <a href="http://njgeo.org/tag/python/" rel="tag">python</a>, <a href="http://njgeo.org/tag/scripts/" rel="tag">scripts</a>, <a href="http://njgeo.org/tag/xapi/" rel="tag">xapi</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2012/05/09/pulling-data-from-osm-using-xapi-bringing-it-to-arcgis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Map Maker for carto-masochists, part 2</title>
		<link>http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/</link>
		<comments>http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 22:26:30 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Mapping]]></category>
		<category><![CDATA[Google Map Maker]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=551</guid>
		<description><![CDATA[After failing to provide data straight from GIS &#8211; which is possible using OpenStreetMap or ESRI&#8217;s Community Base Map programs &#8211; I sat down with Matt, my student intern that is working on developing the campus data in Map Maker. &#8230; <a href="http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/">After failing to provide data straight from GIS</a> &#8211; which is possible using <a href="http://users.rowan.edu/~reiser/osm/">OpenStreetMap</a> or ESRI&#8217;s <a href="http://www.esri.com/software/arcgis/arcgisonline/community-maps.html">Community Base Map programs</a> &#8211; I sat down with Matt, my student intern that is working on developing the campus data in Map Maker. I instructed him to use our Facilites GIS database as a reference for populating the attributes for Map Maker and to have a polygon as a reference to supplement the Google aerial photograph. He began adding in features, but quickly ran into issues with the review process behind Google Map Maker edits.</p>
<p>Map Maker has <a href="http://www.google.com/mapmaker/mapfiles/s/guidelines.html">a moderation process</a> for all of the edits made by Map Maker users. There are two big issues I see with the manner in which Google has implemented moderation. First, you cannot re-edit (or even touch) new features until they have been moderated. That means that if you are adding a development (or a series of roads on a college campus) you cannot link up the roads that have been previously added and awaiting moderation. The moderation puts a serious crimp in attempts to push out many edits in a small area. <a href="http://blog.telemapics.com/?p=371">Mike Dobson has an incredibly detailed write up on the issues he faced in trying to correct data using Google Map Maker.</a> A very interesting read on how difficult it is to contribute minor fixes.</p>
<p>The second, bigger issue is the moderation itself. Crowdsourced moderation relies on people from potentially anywhere in the world to weigh in on edits. Now, it is likely that most of the edits occurring in the United States are being performed by individuals that are familiar with the area; they&#8217;re locals. Locals are the best source of information; they have intimate knowledge of the area and they are able to readily field-verify the information in the system. So we have a pool of local users making edits, but the moderators may not have any prior knowledge on an area in which they moderate.</p>
<p>Here&#8217;s a perfect example of the issue with this form of moderation. Google provides an attribute field for buildings that records the construction material. The field is restricted to an enumeration set of four allowable values: &#8220;Concrete&#8221;, &#8220;Mud/Stone&#8221;, &#8220;Steel&#8221; and &#8220;Wood&#8221;. Several of our campus buildings were held in moderation limbo, as a reviewer felt that my choice of &#8220;Steel&#8221; was incorrect and should instead be &#8220;Concrete.&#8221; Why would a reviewer feel the need to question an attribute and hold up the data creation process? Mind you, the values in this field does not impact the manner in which the building is displayed on the map, so it is not critical to know before the feature is drawn. What could a moderator glean from an aerial photograph that would justify questioning the local editor? I know the buildings are constructed using a steel structure and they are faced in brick and stone &#8211; I can walk up and touch the building; go inside. I spend hours inside these buildings each work day, but I need to provide a moderator elsewhere some justification or proof to have the edit approved.</p>
<p>Matt drew in <a href="http://osm.org/go/ZciXaDWYi--">Rowan Boulevard Apartments</a>, a building with a rather complex footprint, as <a href="http://www.flickr.com/photos/rowanuniversitypublications/4604543684/">the building has a series of setbacks dividing up the residential suites inside</a>. He drew it in Map Maker as close as possible, similar to how it appears in OpenStreetMap. This edit was then altered and poorly generalized. The moderator informed Matt that it should not reflect the roof line. There are no stepbacks and the building is near the nadir of the photo, so the roof line is awfully close to the actual building footprint. He spent a considerable amount of time drawing in a feature to have it <em>simply blown away</em> by some one that likely <em>has never been near</em> the actual structure.</p>
<div id="attachment_555" class="wp-caption aligncenter" style="width: 510px"><a href="http://njgeo.org/wp-content/uploads/2011/07/robo_compare.jpg"><img class="size-large wp-image-555 " title="robo_compare" src="http://njgeo.org/wp-content/uploads/2011/07/robo_compare-500x313.jpg" alt="" width="500" height="313" /></a><p class="wp-caption-text">Compare the photo to what Matt was finally able to have approved.</p></div>
<p>The moderation system in Google Map Maker is broken and will continue to be if local users are not given the benefit of the doubt regarding their edits. OpenStreetMap has the ability to revert vandalism or poorly edited features. Know why people don&#8217;t vandalize OpenStreetMap? It&#8217;s often a pain in the ass to commit large amounts of vandalism on OSM. Unless you&#8217;re a programmer, committing large bogus edits to OSM isn&#8217;t easy to do. And on the occasions when vandalism occurs on OSM, it is often corrected by local users. Google&#8217;s fear of having bad data on Google Maps (even though so many errors pop up all the time through erroneous business entries scraped from search indexes) is hindering the ability of users to contribute to their platform. Google stole several concepts from OpenStreetMap but not the ones that can elevate it to a platform that could truly produce credible maps from locally-sourced volunteered data. The only thing going for Map Maker is that eventually your edits will appear on the main Google Maps site.</p>
<p>I got involved in Map Maker solely to get Rowan&#8217;s campus data on Google Maps. I cannot pull data back out of Map Maker, so after I achieve my goal, I will likely never use Map Maker again. Why deal with all the frustration and reap none of the rewards?</p>
<p><strong>Update: </strong>Google Maps routes <a href="http://mashable.com/2011/07/12/google-maps-fail-new-jersey/">park visitors down a residential street that doesn&#8217;t actually provide access to the park, frustrating the local residents.</a> Also, <a href="http://googlemapsfail.tumblr.com/">Google Maps Fail</a> on Tumblr.</p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2011. |
<a href="http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/">Permalink</a> |
<a href="http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/&title=Map Maker for carto-masochists, part 2">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/google-map-maker/" rel="tag">Google Map Maker</a>, <a href="http://njgeo.org/tag/google-maps/" rel="tag">Google Maps</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Map Maker for carto-masochists, part 1</title>
		<link>http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/</link>
		<comments>http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 14:00:07 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Mapping]]></category>
		<category><![CDATA[Google Map Maker]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=536</guid>
		<description><![CDATA[Why make data created of the third world (and likely by individuals in the third world) a for-sale product for a first world company? <a href="http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><em>I originally wrote the following approximately two weeks ago and it has been lingering as a Draft until now. I decided to wait until the start of the <a href="http://www.esri.com/events/user-conference/index.html">Esri International User Conference</a> to publish this post. The UC has several events planned for their <a href="http://events.esri.com/uc/2011/infoWeb/OnlineAgenda/index.cfm?fa=ofg_search_results_form&amp;whichConf=1&amp;Tracks=136">community mapping</a> offerings, here&#8217;s my take on how Google&#8217;s approach has been less than impressive. Part 2 <del>to follow</del> <a href="http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/">available here</a>.</em></p>
<p>Way, way back in March of 2010, I contacted Google through their <a href="http://maps.google.com/help/maps/mapcontent/">Map Content Partners form</a> to submit Rowan University&#8217;s GIS data to be included on Google Maps. I heard nothing from them &#8211; not even an automated response &#8211; for several months. In August of 2010, someone in Administration noticed that Google had relabeled Rowan University as Glassboro State College, a name not used since 1992. I was instructed to try and remedy this as soon as possible. I explained that Google had given me the cold shoulder, but I would try some different avenues. The &#8220;report a problem&#8221; feature in Google Maps did get &#8220;Glassboro State College&#8221; off the map, but Rowan remained a featureless blotch within Glassboro.</p>
<p>After giving up on contributing data to Google Maps, I was finally contacted by &#8220;Brandon&#8221; from the Cities in 3D Team. Brandon requested a sample of the data for review. &#8220;Finally!&#8221; I thought, &#8220;now I can submit our data for Google Maps!&#8221; I&#8217;ll admit, I got excited. In hindsight, the excitement was premature and irrational. <a href="http://osm.org/go/ZciXY12p">OpenStreetMap has been updated to reflect the campus</a> <a href="http://www.openstreetmap.org/browse/way/37059370/history">since June of 2009</a>, when I used <a href="http://users.rowan.edu/~reiser/osm/">my Export to OSM script to dump the facilities data into .osm files</a>. I should be focusing my efforts on a custom, Mapnik-rendered set of OSM tiles that look good on top of aerials, a &#8220;Google Maps Hybrid&#8221; layer of my own. I can then sandwich in custom tiles instead of overlaying my data on top of the annotation. (Compare <a href="http://njstateatlas.com/stateplan/?geo=39.701111517506185,-75.10597229003906&amp;z=12">anno-on-top</a> to <a href="http://gis.rowan.edu/projects/luc/map_urban.html?&amp;x=-75.116615&amp;y=39.709828&amp;z=13&amp;t=Terrain">data-on-top</a>.)</p>
<p>Anyway, I eagerly await word back from Google that our data will appear on Google Maps. The notice I receive was far from what I wanted to hear. Instead of accepting the data, I&#8217;m instructed that due to the small number of objects to be added, I should use Google Map Maker instead. I was pissed.</p>
<p>I find Google Map Maker to be an incredible disappointment on two major fronts; first, I refused to use the service as I felt Google was in the wrong for keeping <abbr title="Volunteered Geographic Information">VGI</abbr>-sourced base map data under lock and key. The second, which I will elaborate upon tomorrow, involves the Map Maker tool itself. For a company such as &#8220;do no evil&#8221; Google to create a framework where users can volunteer time to build its GIS repository with no compensation &#8211; not even data retrieval &#8211; I find completely unconscionable. Compare their <a href="https://services.google.com/fb/forms/mapmakerdatadownload/">data download form</a> with getting <a href="http://www.openstreetmap.org/export/finish?maxlat=39.710941&amp;minlon=-75.121815&amp;maxlon=-75.118253&amp;minlat=39.709769&amp;format=osm">data from OpenStreetMap</a>. To non-techies, OSM&#8217;s XML format might be intimidating, but <strong>it&#8217;s data</strong> &#8211; no forms to fill out or licenses to sign. Sure, it&#8217;s not a shapefile&#8230; <a href="http://downloads.cloudmade.com/">but you can get them too</a>, without signing any agreement. I loved hearing how a group of OSM mappers hijacked a Google Mapping Party (the concept itself <a href="http://vaes9.codedgraphic.com/posts/google_mapping_party_kit">lifted from OSM</a>) and got the assembled group to work on OSM. Many others have asked &#8220;<a href="http://markmail.org/message/4qsmdwakr2k3mn4g#query:+page:1+mid:4qsmdwakr2k3mn4g+state:results">why Google, why not OSM?</a>&#8221; The <a href="http://sprovoost.nl/2008/06/24/google-map-maker-and-openstreetmap-my-five-cents/">common thread</a> <a href="http://www.spatiallyadjusted.com/2011/04/20/google-map-maker-arrives-in-my-hometown/">to most</a> <a href="http://web.archive.org/web/20080628005605/http://www.opengeodata.org/?p=307">Map Maker criticism</a> and <a href="http://wiki.openstreetmap.org/wiki/Leading_the_pack">OpenStreetMap&#8217;s major issue with Map Maker</a> is regarding access to the data that has been contributed. Why make data created of the third world (and likely <strong>by individuals in the third world</strong>) a for-sale product for a first world company? Even within your own neighborhood, why volunteer your time if you can&#8217;t reap most of the benefits?</p>
<p>Back from ideology to practicality, I wanted the University on Google, solely because Google is the new Mapquest; it&#8217;s the go-to map service for the average person. (Quick aside, <a href="http://mapq.st/iwcstQ">Mapquest has Rowan University completely mapped out through its OSM-sourced open.mapquest.com</a>.) Brandon&#8217;s earlier suggestion of Map Maker wasn&#8217;t acceptable because of my open-access advocacy leanings, it was out of time constraints. &#8220;You want me to redraw everything?&#8221; That wasn&#8217;t going to happen and I let Brandon know:</p>
<blockquote><p>Brandon,</p>
<p>Thanks for the info. My major concern has been getting an &#8220;official&#8221; set of data on to Google Maps. When Google switched to their own data and pulled place names from GNIS, Rowan University reverted to Glassboro State College, a name last used in 1992. As &#8220;the map guy&#8221; for the University, I was asked by several offices within Rowan to &#8220;fix Google.&#8221; While reporting the antiquated name as a problem did get &#8220;Rowan University&#8221; restored on Google Maps, it brought the lack of campus data on Google to the attention of many in the University community. It has been frustrating for me, as I have attempted to contact Google to provide official data for use on Maps for a considerable time, while also attempting to squash bugs in the Google Maps data on our campus. Being a University, there have been &#8220;creative&#8221; additions to the campus on Google Maps, such as the fact that one of our largest academic buildings appeared as a Bed and Breakfast for about a month.</p>
<p>I would like to provide Google with a set of data out of our Facilities GIS DB that is the same source for our printed campus maps. The previously sent data, reformatted to match your requested schema, is from either survey data or from a 3&#8243; planimetric image. The address information included in this layer matches Gloucester County&#8217;s 911 data. This is as official as it gets.</p>
<p>Google Map Maker is not a viable option for me. The data for Rowan University that is available through OpenStreetMap  was generated through an export utility that I wrote. It is the same source as I emailed you previously, except that it dates from the summer of 2009. Very little of what is on OSM was hand redrawn. Not only would it be a considerable time sink for me, <strong>the tools in Map Maker would not be able to reproduce the high quality data that already exists.</strong></p>
<p>Through the Geovisualization course I teach, we are offering students the opportunity to build SketchUp models of the campus as a final project. Several of the buildings have been completed and I will be uploading them soon. The entire campus is not complete, so if you would like a shapefile with extrusion data, I&#8217;d be happy to resubmit the data with those additional attributes.</p>
<p>Again, I would like to thank you for taking the time to respond to me. I understand that the Cities in 3D team might not have the 2D maps as their major focus, but if you could direct my request to the correct group, I would be incredibly grateful. I initially filled out the Data Provider form in March 2010 and have resubmitted the form several times after receiving no response. I even pestered Ed Parsons over Twitter to no avail. So, I am truly appreciative of your assistance in this issue.</p>
<p>Thanks,<br />
John</p></blockquote>
<p>Brandon responded with two points that made me bristle. First, Rowan was too small for Google: &#8220;the number of buildings on campus provide a relatively low priority for Google.&#8221; This is a 215 acre campus with 50+ structures, it&#8217;s not huge, but it&#8217;s also not insignificant. Second, I was encouraged &#8220;to do as much as you can on your own, or as part of<br />
your class with the students help.&#8221; <a href="http://www.phdcomics.com/comics/archive.php?comicid=1126">No one volunteers my cheap labor for projects other than me, buddy.</a></p>
<p>Through the reconfiguration of our program offerings, Geography and Environmental Studies students are required to have an internship or directed study as part of their capstone research experience. I was able to find a student that really excelled at contributing to OpenStreetMap and asked him if he would be interested in working on updating three map services: Google (via Map Maker), OpenStreetMap (via <a href="http://josm.openstreetmap.de/">JOSM</a>) and ESRI&#8217;s Community Base Map via (<a href="http://njgeo.org/2011/06/14/arcgis-strong-enough-for-server-ph-balanced-for-desktop/">ArcInfo for Advanced Desktops</a>). He agreed and began working on updating Google Maps. I finally bit the bullet, signed into Map Maker and started working with him on some of the edits.</p>
<p><a href="http://njgeo.org/2011/07/11/map-maker-for-carto-masochists-part-2/">Tomorrow, how Map Maker can only make bad maps.</a><em></em></p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2011. |
<a href="http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/">Permalink</a> |
<a href="http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/#comments">5 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/&title=Map Maker for carto-masochists, part 1">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/google-map-maker/" rel="tag">Google Map Maker</a>, <a href="http://njgeo.org/tag/google-maps/" rel="tag">Google Maps</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2011/07/10/map-maker-for-carto-masochists-part-1/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ArcGIS available on the iPhone</title>
		<link>http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/</link>
		<comments>http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:34:04 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[ESRI]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[App Store]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=308</guid>
		<description><![CDATA[ESRI has released ArcGIS for iPhone. It&#8217;s now available through the App Store. It&#8217;s an iPad/iPhone app, so it should work well on both. I just tried it out on my iPhone, and it&#8217;s pretty snappy. The data loads quickly &#8230; <a href="http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="attachment_309" class="wp-caption alignright" style="width: 210px"><a href="http://njgeo.org/wp-content/uploads/2010/07/1bmx.jpg"><img class="size-medium wp-image-309" title="1bmx" src="http://njgeo.org/wp-content/uploads/2010/07/1bmx-200x300.jpg" alt="ArcGIS on the iPhone" width="200" height="300" /></a><p class="wp-caption-text">ArcGIS on the iPhone</p></div>
<p>ESRI has released <a href="http://www.esri.com/news/arcnews/summer10articles/arcgis-for-iphone.html">ArcGIS for iPhone</a>. It&#8217;s now available through <a href="http://itunes.apple.com/us/app/arcgis/id379687930?mt=8">the App Store</a>. It&#8217;s an iPad/iPhone app, so it should work well on both. I just tried it out on my iPhone, and it&#8217;s pretty snappy. The data loads quickly and the interface is clean. There are many layers already available through the app, such as <a href="http://osm.org/">OpenStreetMap</a>.</p>
<p>I like the support for ArcGIS Server, as we will be able to provide our local data to iPhone users. I hope that a later revision will also support <a href="http://en.wikipedia.org/wiki/Web_Map_Service">WMS</a>, as there are many more free and useful WMS-based services out there than ArcGIS services. Greater support for GPS would be useful. ArcGIS for iPhone can locate you using the embedded GPS, but I don&#8217;t believe you can use the GPS to record features. I believe these features will come. <a href="http://www.spatiallyadjusted.com/2010/07/01/the-esri-uc-qa-response-is-up/">James Fee points out</a> that ESRI&#8217;s response to <a href="http://events.esri.com/uc/QandA/index.cfm?fuseaction=answer&amp;conferenceId=2F6DC1A1-1422-2418-883C3868A9004888&amp;questionId=3191">the UC FAQ regarding iOS support</a> is positive, claiming that updates will feature editing and geoprocessing. As much as I prefer to edit on a big, widescreen monitor, it would be nice to update my data on the go.</p>
<p>If you have an iPhone or iPad, download it for free from the <a href="http://itunes.apple.com/us/app/arcgis/id379687930?mt=8">App Store</a> and check it out.</p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2010. |
<a href="http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/">Permalink</a> |
<a href="http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/&title=ArcGIS available on the iPhone">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/app-store/" rel="tag">App Store</a>, <a href="http://njgeo.org/tag/arcgis/" rel="tag">ArcGIS</a>, <a href="http://njgeo.org/tag/esri/" rel="tag">ESRI</a>, <a href="http://njgeo.org/tag/iphone/" rel="tag">iPhone</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2010/07/06/arcgis-available-on-the-iphone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Student Experiences with OpenStreetMap</title>
		<link>http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/</link>
		<comments>http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 19:08:03 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Teaching]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[OpenStreetMap]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=233</guid>
		<description><![CDATA[This semester, I integrated OpenStreetMap into my GIS II class by requiring students to research an area on OSM that lacked detail and update the map. OSM is a great real-world demonstration of some of the GIS principles we&#8217;re discussing &#8230; <a href="http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This semester, I integrated <a href="http://osm.org/">OpenStreetMap</a> into <a href="http://users.rowan.edu/~reiser/spring2010/gis/">my GIS II class</a> by requiring students to research an area on OSM that lacked detail and update the map. OSM is a great real-world demonstration of some of the GIS principles we&#8217;re discussing in the class, such as <a href="http://wiki.openstreetmap.org/wiki/Editing_Standards_and_Conventions#Junctions">topology</a> and how different models <a href="http://wiki.openstreetmap.org/wiki/Map_features">represent features in the real world</a>.</p>
<p>(...)<br/>Read the rest of <a href="http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/">Student Experiences with OpenStreetMap</a> on my blog. </p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2010. |
<a href="http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/">Permalink</a> |
<a href="http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/&title=Student Experiences with OpenStreetMap">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/geography/" rel="tag">geography</a>, <a href="http://njgeo.org/tag/gis/" rel="tag">GIS</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a>, <a href="http://njgeo.org/tag/teaching/" rel="tag">Teaching</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2010/02/12/student-experiences-with-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating OpenStreetMap with Land Use Data</title>
		<link>http://njgeo.org/2010/02/03/updating-osm-lu-data/</link>
		<comments>http://njgeo.org/2010/02/03/updating-osm-lu-data/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 19:34:44 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=221</guid>
		<description><![CDATA[Over the course of 2009, I got involved with OpenStreetMap. If you haven&#8217;t used OSM, I suggest you check it out. It&#8217;s being updated and used throughout the world, from mapping campuses in New Jersey to aiding the relief efforts &#8230; <a href="http://njgeo.org/2010/02/03/updating-osm-lu-data/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the course of 2009, I got involved with <a href="http://osm.org/" target="_blank">OpenStreetMap</a>. If you haven&#8217;t used OSM, I suggest you check it out. It&#8217;s being updated and used throughout the world, from <a href="http://osm.org/go/ZciXZggp-" target="_blank">mapping campuses in New Jersey</a> to <a href="http://wiki.openstreetmap.org/wiki/WikiProject_Haiti" target="_blank">aiding the relief efforts in Haiti</a>.</p>
<p>So, du<a href="http://njgeo.org/wp-content/uploads/2010/02/Screen-shot-2010-02-03-at-2.31.40-PM.png"><img class="alignright size-full wp-image-230" title="Land Use around Trenton" src="http://njgeo.org/wp-content/uploads/2010/02/Screen-shot-2010-02-03-at-2.31.40-PM.png" alt="Example from OSM of the imported land use polygons around Trenton, NJ." width="180" height="180" /></a>ring 2009, I had noticed that on OSM, the State of Georgia had <a href="http://en.wikipedia.org/wiki/Land_use">land use</a> data. I started to look into <a href="http://wiki.openstreetmap.org/wiki/Georgia_%28U.S._state%29#Land_Use">how Georgia was so lucky</a>. OSM relies on user contributions, so some savvy user must have added all of those polygons to the map. <a href="http://wiki.openstreetmap.org/wiki/User_talk:Liber">I contacted that savvy user</a> to find out more. Liber pointed me to some of the methods he and others <a href="http://wiki.openstreetmap.org/wiki/Imports">have used to import GIS </a><a href="http://wiki.openstreetmap.org/wiki/Imports">data</a> into OpenStreetMap. I was unsatisfied with the existing software, so I looked into <a href="http://wiki.openstreetmap.org/wiki/API_v0.6">the OSM API</a> and wrote my own code to export directly from <a href="http://support.esri.com/index.cfm?d=30028&amp;fa=knowledgebase.techarticles.articleShow">ArcGIS</a> into <a href="http://wiki.openstreetmap.org/wiki/.osm">the .osm file format</a>.</p>
<p><a href="http://users.rowan.edu/~reiser/osm/">ExportToOSM.py</a> is my crack at programming an export utility. I wanted something that would export <a href="http://support.esri.com/index.cfm?fa=knowledgebase.gisDictionary.search&amp;searchTerm=multipart+feature">multipolygons</a> from ArcGIS as <a href="http://wiki.openstreetmap.org/wiki/Relation:multipolygon">OSM multipolygon relations</a> and would produce a file free of redundant <a href="http://wiki.openstreetmap.org/wiki/Nodes#Node">nodes</a>. I used an earlier version of my script <a href="http://osm.org/go/ZciXZKQ6s--">to export the buildings on Rowan&#8217;s campus</a>. After fixing a few issues &#8211; namely the multipart polygons (take a look at Evergreen Hall, still need to punch in the interior courtyard as a doughnut hole) &#8211; I began developing a plan to export <a href="http://nj.gov/dep/gis/lulc02cshp.html">NJ&#8217;s 2002 Land Use data</a> to OSM.</p>
<p>(...)<br/>Read the rest of <a href="http://njgeo.org/2010/02/03/updating-osm-lu-data/">Updating OpenStreetMap with Land Use Data</a> on my blog. </p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2010. |
<a href="http://njgeo.org/2010/02/03/updating-osm-lu-data/">Permalink</a> |
<a href="http://njgeo.org/2010/02/03/updating-osm-lu-data/#comments">2 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2010/02/03/updating-osm-lu-data/&title=Updating OpenStreetMap with Land Use Data">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a>, <a href="http://njgeo.org/tag/programming/" rel="tag">programming</a>, <a href="http://njgeo.org/tag/python/" rel="tag">python</a>, <a href="http://njgeo.org/tag/scripting/" rel="tag">scripting</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2010/02/03/updating-osm-lu-data/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>UK magazine on why OpenStreetMap is brilliant</title>
		<link>http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/</link>
		<comments>http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 16:41:17 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[In the News]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=202</guid>
		<description><![CDATA[Just two days after I wrote about OpenStreetMap, PC Pro, a UK computing magazine, posted a blog about the brilliance of OpenStreetMap.  This entry is a much better introduction to OSM than what I previously wrote. © John Reiser for &#8230; <a href="http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just two days after <a href="http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/">I wrote about OpenStreetMap</a>, PC Pro, a UK computing magazine, <a href="http://www.pcpro.co.uk/blogs/2009/07/29/why-open-street-map-is-brilliant/">posted a blog about the brilliance of OpenStreetMap</a>.  This entry is a much better introduction to OSM than what I previously wrote.</p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2009. |
<a href="http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/">Permalink</a> |
<a href="http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/&title=UK magazine on why OpenStreetMap is brilliant">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2009/07/29/uk-magazine-openstreetmap-brilliant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting hooked on OpenStreetMap</title>
		<link>http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/</link>
		<comments>http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 01:42:19 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Web Mapping]]></category>
		<category><![CDATA[assignments]]></category>
		<category><![CDATA[collaboration]]></category>
		<category><![CDATA[courses]]></category>
		<category><![CDATA[cycle maps]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[new jersey]]></category>
		<category><![CDATA[Rowan University]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=196</guid>
		<description><![CDATA[Cycle routes are managed by a myriad of local and state entities, and considering DOT informed me that they do not keep any GIS records of the bike routes or facilities, OSM seems like a natural repository for volunteers to collect and share cycle route data.  <a href="http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I recently became involved in <a href="http://www.openstreetmap.org/">OpenStreetMap</a>. After watching it from the sidelines for the past year, I recently started contributing to the map. I wrote <a href="http://users.rowan.edu/~reiser/osm/">a python script to export lines and polygons from ArcGIS to OSM</a>. You can see the results of the script by zooming into <a href="http://www.openstreetmap.org/?lat=39.70933&amp;lon=-75.11908&amp;zoom=16&amp;layers=B000FTF">Rowan University</a>, where I&#8217;ve exported the campus buildings and uploaded them. I&#8217;ve also been working to get the <a href="http://www.openstreetmap.org/?lat=39.435&amp;lon=-74.809&amp;zoom=9&amp;layers=00B0FTF">various cycle routes throughout the State into OSM</a>. Cycle routes are managed by a myriad of local and state entities, and considering DOT informed me that they do not keep any GIS records of the bike routes or facilities, OSM seems like a natural repository for volunteers to collect and share cycle route data.</p>
<p>I&#8217;m also planning a course exercise using OSM. I&#8217;m going to encourage students to print out their neighborhood using <a href="http://walking-papers.org/">Walking Papers</a>, recording any updates or fixes, then modifying the OSM data via <a href="http://wiki.openstreetmap.org/wiki/Potlatch">Potlatch</a> or <a href="http://wiki.openstreetmap.org/wiki/JOSM">JOSM</a>. Though it will likely be offered as an extra credit assignment initially, I&#8217;m hoping I&#8217;ll be able to integrate it and other elements of OSM into my courses in the future.</p>
<p>If you have an interest in mapping or GIS, you should check out OpenStreetMap. <a href="http://www.openstreetmap.org/user/new">Sign up</a> for an account, and <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide">start updating in your neighborhood</a>. If you&#8217;re in <a href="http://wiki.openstreetmap.org/wiki/New_Jersey">New Jersey</a>, I&#8217;ve updated OSM&#8217;s wiki with links to the cycle maps to be added, as well as instructions on how to add features to OSM using the State&#8217;s 2007 aerial photography. If you&#8217;d like to collaborate with me on sharing information via OpenStreetMap, let me know. <a href="http://www.openstreetmap.org/user/johnjreiser">You can follow me on OpenStreetMap here. </a></p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2009. |
<a href="http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/">Permalink</a> |
<a href="http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/&title=Getting hooked on OpenStreetMap">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/assignments/" rel="tag">assignments</a>, <a href="http://njgeo.org/tag/collaboration/" rel="tag">collaboration</a>, <a href="http://njgeo.org/tag/courses/" rel="tag">courses</a>, <a href="http://njgeo.org/tag/cycle-maps/" rel="tag">cycle maps</a>, <a href="http://njgeo.org/tag/cycling/" rel="tag">cycling</a>, <a href="http://njgeo.org/tag/new-jersey/" rel="tag">new jersey</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a>, <a href="http://njgeo.org/tag/rowan-university/" rel="tag">Rowan University</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2009/07/27/getting-hooked-on-openstreetmap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google making Map Maker data available for download</title>
		<link>http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/</link>
		<comments>http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 03:58:31 +0000</pubDate>
		<dc:creator>John Reiser</dc:creator>
				<category><![CDATA[Data]]></category>
		<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web Mapping]]></category>
		<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Google Map Maker]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[OpenStreetMap]]></category>
		<category><![CDATA[Virtual Earth]]></category>
		<category><![CDATA[Volunteered Information]]></category>

		<guid isPermaLink="false">http://njgeo.org/?p=134</guid>
		<description><![CDATA[OSM needs to spend more time fostering a community outside of the devoted submitters. What is going to prevent Google from offering up a GIS service akin to the Virtual Earth on ArcGIS platform currently being offered by ESRI and Microsoft? <a href="http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Starting with Kenya, <a href="https://services.google.com/fb/forms/mapmakerdatadownload/">Google is allowing users to download</a> the base data collected through the <a href="http://www.google.com/mapmaker">Map Maker</a> service, as either KML or Shapefile format. Google&#8217;s licensing allows for only non-commercial use. Hopefully, this data will support some of the non-profit mapping efforts taking place on the continent. The license also restricts (or at least, severely limits) competition with services provided by Google. This puts <a href="http://www.openstreetmap.org/">OpenStreetMap</a> in an odd position &#8211; OSM is restricted from incorporating the data into its own service. Considering OSM has been around since 2004 and Map Maker only 2008, and seeing <a href="http://www.google.com/mapmaker/mapfiles/s/launched.html">how many people in over 100 countries</a> have been offering Google data, OSM needs to better align (or contrast) itself with the work Google is doing. One of the reasons I believe Map Maker has gathered the amount of user-generated content in the past year is that Map Maker is incredibly easy to use and if you do run into issues, <a href="http://sites.google.com/site/mapmakeruserhelp/introduction">there is clear and concise help</a>. This is compared to the <a href="http://wiki.openstreetmap.org/wiki/Beginners%27_Guide">OSM Beginner&#8217;s Guide</a>. Now, I understand that OSM is geared towards a more technical audience than the Map Maker service, but OSM needs to spend more time fostering a community outside of the devoted submitters. What is going to prevent Google from offering up a GIS service akin to the <a href="http://blogs.msdn.com/virtualearth/archive/2008/07/29/esri-arcgis-9-3-desktop-now-features-microsoft-virtual-earth.aspx">Virtual Earth on ArcGIS platform</a> currently being offered by ESRI and Microsoft? A service built on TA/Navteq data, enhanced with local knowledge? <a href="http://wiki.openstreetmap.org/index.php/REST#WMS">A service that is available now from OSM</a>, but much easier to use? Providing base data for Kenya is just the beginning.</p>
<p>Mikel Maron has some more thoughts about OSM and Map Maker, as well as <a href="http://brainoff.com/weblog/2009/04/01/1391">some comparison screenshots</a>. (Via <a href="http://mapperz.blogspot.com/2009/04/google-maps-map-maker-vector-data.html">Mapperz</a>)</p>
<hr />
<p><small>© John Reiser for <a href="http://njgeo.org">new jersey geographer</a>, 2009. |
<a href="http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/">Permalink</a> |
<a href="http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/&title=Google making Map Maker data available for download">del.icio.us</a>
<br/>
Post tags: <a href="http://njgeo.org/tag/arcgis/" rel="tag">ArcGIS</a>, <a href="http://njgeo.org/tag/google-map-maker/" rel="tag">Google Map Maker</a>, <a href="http://njgeo.org/tag/google-maps/" rel="tag">Google Maps</a>, <a href="http://njgeo.org/tag/openstreetmap/" rel="tag">OpenStreetMap</a>, <a href="http://njgeo.org/tag/virtual-earth/" rel="tag">Virtual Earth</a>, <a href="http://njgeo.org/tag/volunteered-information/" rel="tag">Volunteered Information</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://njgeo.org/2009/04/06/making-map-maker-data-available-for-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

