<?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>The GIS Doctor</title>
	<atom:link href="http://www.gisdoctor.com/site/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gisdoctor.com/site</link>
	<description>Follow me on Twitter - @GISDoctor</description>
	<lastBuildDate>Tue, 07 May 2013 00:01:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Spatial SQL &#8211; Multi-Point to Line Example</title>
		<link>http://www.gisdoctor.com/site/2013/05/07/spatial-sql-multi-point-line/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=spatial-sql-multi-point-line</link>
		<comments>http://www.gisdoctor.com/site/2013/05/07/spatial-sql-multi-point-line/#comments</comments>
		<pubDate>Tue, 07 May 2013 00:01:04 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[GIS Analysis]]></category>
		<category><![CDATA[GIS Software]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=480</guid>
		<description><![CDATA[I have been using Spatial SQL for a while now.  I like it.  A few lines of code can do a lot of analysis or data processing.  I&#8217;ve covered a number of basic topics but there are always more to &#8230; <a href="http://www.gisdoctor.com/site/2013/05/07/spatial-sql-multi-point-line/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I have been using <a href="http://www.gisdoctor.com/site/2011/11/07/spatial-sql-geographer-part-1/" target="_blank">Spatial SQL</a> for a while now.  I like it.  A few lines of code can do a lot of analysis or data processing.  I&#8217;ve covered a number of <a href="http://www.gisdoctor.com/site/2011/11/07/spatial-sql-geographer-part-1/" target="_blank">basic topics</a> but there are always more to do.  Here is a script to take a series of points and convert them into a single line.   This script will use a few SQL commands, including using a <a href="http://msdn.microsoft.com/en-us/library/ms181441.aspx" target="_blank">cursor</a>, developing a <a href="http://msdn.microsoft.com/en-us/library/bb895372.aspx" target="_blank">linestring</a>, and <a href="http://msdn.microsoft.com/en-us/library/bb933976.aspx" target="_blank">STLineFromText</a>.</p>
<p>The sample data comes from <a href="http://www.noaa.gov/" target="_blank">NOAA</a> and the <a href="http://www.nhc.noaa.gov/" target="_blank">National Hurricane Center</a>. The points represent some sample <a href="http://www.nhc.noaa.gov/gis/archive_forecast_results.php?id=al18&amp;year=2012&amp;name=Hurricane%20SANDY " target="_blank">tropical cyclone forecast points for Hurricane Sandy</a>.</p>
<p>The basic idea of the script is to link a set of points together using a common attribute using a cursor, combine the coordinate pairs into a line string, and use the  <a href="http://msdn.microsoft.com/en-us/library/bb933976.aspx" target="_blank">STLineFromText </a>method to convert the coordinate pairs into a single line.  The script works pretty well, but since I am using a cursor it can slow down with larger (a few hundred thousand rows) datasets. A good SQL programmer probably wouldn&#8217;t use a cursor here since they can be slow and cumbersome to use.  In fact, I&#8217;m sure a good SQL programmer wouldn&#8217;t use a cursor.  I am investigating ways to not use a cursor, so if you have a suggestion let me know!</p>
<p>The sample script includes a sample dataset that is available <a href="http://www.gisdoctor.com/downloads/Line_Parts.txt" target="_blank">here</a>.  Take a look at the script.  If you have any suggestions to make this script faster or more efficient let me know.</p>
<pre style="size: small;"><span style="color: #339933;">/*#################################################

Script Name: multi_points_to_Line.sql
Purpose: This script will take pairs of coordinates
 of the same line and convert them into a LineString 
that can be used to generate lines of the geometry 
data type. User will need to update the database, 
tables, and column names relevant to their own analysis.

Sample Sandy data tracks represent five day
models from the <a href="http://www.nhc.noaa.gov/gis/archive_forecast_results.php?id=al18&amp;year=2012&amp;name =Hurricane%20SANDY" target="_blank">National Hurricane Center</a>.

Prepping the data - The user will need to download 
the following file and load into their SQL database:

http://www.gisdoctor.com/downloads/Line_Parts.txt

Here is a quick script to take the text file and load 
it into a table generated for this</span> <span style="color: #339933;">exercise:

create table Spatial_Database.dbo.Distinct_Points
([ADVISNUM] varchar(3), [lat] float, [lon] float, 
[MaxWind] int)

BULK INSERT Spatial_Database.dbo.Distinct_Points
FROM 'Path to Line_Parts.txt file'
WITH (FIELDTERMINATOR =',',FirstRow = 2);

###################################################*/
</span> 
<span style="color: #008000;">--Set the database to process in</span>
<span style="color: #0000ff;">use</span> Spatial_Database
<span style="color: #008000;">--Drop temporary table</span>
<span style="color: #0000ff;">drop table</span> #Sandy_hur_tracks
<span style="color: #008000;">--Create new temporary table</span>
<span style="color: #0000ff;">create table</span> #Sandy_hur_tracks
([EventID] <span style="color: #0000ff;">int</span>, [line] <span style="color: #0000ff;">geometry</span>)

<span style="color: #008000;">--Declare cursor variable</span>
<span style="color: #0000ff;">DECLARE</span> @eventID varchar(10)
<span style="color: #008000;">--Declare text string that will store coordinate pairs to
--populate the LineString</span>
<span style="color: #0000ff;">DECLARE</span> @coordString <span style="color: #0000ff;">VARCHAR</span>(<span style="color: #ff00ff;">MAX</span>)

<span style="color: #008000;">--Initialize the cursor using the ADVISNUM column</span>
<span style="color: #0000ff;">DECLARE</span> db_cursor <span style="color: #0000ff;">CURSOR FOR</span>
<span style="color: #0000ff;">select</span> distinct ADVISNUM
<span style="color: #0000ff;">from</span> Spatial_Database.dbo.Distinct_Points
<span style="color: #0000ff;">order</span> <span style="color: #0000ff;">by</span> ADVISNUM <span style="color: #0000ff;">asc</span>

<span style="color: #0000ff;">OPEN</span> db_cursor
<span style="color: #0000ff;">FETCH NEXT FROM</span> db_cursor <span style="color: #0000ff;">INTO</span> @eventID

<span style="color: #0000ff;">WHILE</span> <span style="color: #ff00ff;">@@FETCH_STATUS</span> = 0
<span style="color: #0000ff;">BEGIN</span>

<span style="color: #008000;">-- Clear the coordinate string with each iteration of the 
-- cursor - otherwise the coordinate string will 
-- append itself each time</span>
<span style="color: #0000ff;">set</span> @coordString = <span style="color: #ff0000;">''</span>
<span style="color: #008000;"><span style="color: #008000;">--collect all coordinate pairs and add them to a single row. 
-- Coordinate pairs are separated by a comma.</span></span>
<span style="color: #0000ff;">select</span> @coordString = (<span style="color: #ff00ff;">COALESCE</span>(@coordString + <span style="color: #ff0000;">', '</span>, <span style="color: #ff0000;">' '</span>) + 
(<span style="color: #ff00ff;">cast</span>(Lon <span style="color: #0000ff;">as varchar</span>) +<span style="color: #ff0000;">' '</span> + <span style="color: #ff00ff;">CAST</span>(lat <span style="color: #0000ff;">as</span> <span style="color: #0000ff;">varchar</span>)))
<span style="color: #0000ff;">FROM</span> Spatial_Database.dbo.Distinct_Points
<span style="color: #0000ff;">WHERE</span> ADVISNUM = @EventID

<span style="color: #008000;">--Insert the eventId and coordinate pairs into the table.         
--Coordinate pairs string is used to build the LineString to      
--create the line geometry</span>
<span style="color: #0000ff;">insert into</span> #Sandy_hur_tracks
<span style="color: #0000ff;">select</span> @eventID <span style="color: #0000ff;">as</span> EventID,
<span style="color: #0000ff;">Geometry</span>::STLineFromText(<span style="color: #ff0000;">'Linestring 
('</span> + right(@coordString,<span style="color: #ff00ff;">LEN</span>(@coordString)-1) + <span style="color: #ff0000;">')'</span> 
, 4326) <span style="color: #0000ff;">as</span> line

<span style="color: #0000ff;">FETCH NEXT FROM</span> db_cursor <span style="color: #0000ff;">INTO</span> @eventID
<span style="color: #0000ff;">END</span>
<span style="color: #008000;">--Close and delete the cursor</span>
<span style="color: #0000ff;">CLOSE</span> db_cursor
<span style="color: #0000ff;">DEALLOCATE</span> db_cursor

<span style="color: #008000;">--Select results from the temp table.</span>
<span style="color: #0000ff;">use</span> Spatial_Database
<span style="color: #0000ff;">select</span> * <span style="color: #0000ff;">from</span> #Sandy_hur_tracks</pre>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/05/07/spatial-sql-multi-point-line/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F05%2F07%2Fspatial-sql-multi-point-line%2F&amp;title=Spatial%20SQL%20%E2%80%93%20Multi-Point%20to%20Line%20Example" id="wpa2a_2"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/05/07/spatial-sql-multi-point-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignite LocationTech Boston 2013 Wrap-Up</title>
		<link>http://www.gisdoctor.com/site/2013/03/28/ignite-locationtech-boston-2013-wrap-up/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ignite-locationtech-boston-2013-wrap-up</link>
		<comments>http://www.gisdoctor.com/site/2013/03/28/ignite-locationtech-boston-2013-wrap-up/#comments</comments>
		<pubDate>Thu, 28 Mar 2013 03:00:16 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Open Source GIS]]></category>
		<category><![CDATA[Spatial Analysis]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=482</guid>
		<description><![CDATA[One of the great things about living in Boston is that there is a very active geo-community.  Every few weeks there is something interesting happening, whether it is an AvidGeo meet-up, a geo-colloquium at one of the many schools in Boston, &#8230; <a href="http://www.gisdoctor.com/site/2013/03/28/ignite-locationtech-boston-2013-wrap-up/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>One of the great things about living in Boston is that there is a very active geo-community.  Every few weeks there is something interesting happening, whether it is an <a href="http://www.avidgeo.com/" target="_blank">AvidGeo</a> meet-up, a <a href="http://gis.harvard.edu/icb/icb.do?keyword=k235&amp;pageid=icb.page483551" target="_blank">geo-colloquium</a> at one of the many schools in Boston, or an industry sponsored event.</p>
<p>One of those events happened this past Monday at <a href="http://www.spacewithasoul.org/" target="_blank">Space with a Soul </a>in Boston&#8217;s Innovation District, organized by Avid Geo and the <a href="http://locationtech.org/" target="_blank">Eclipse Foundation&#8217;s LocationTech</a> group.  The event focused on open source geo-based projects. The room was full of geo-thinkers from a variety of backgrounds, and thanks to a number of sponsors (<a href="http://www.appgeo.com/" target="_blank">AppGeo</a>, <a href="http://www.azavea.com/" target="_blank">Azavea</a>, <a href="http://www.ibm.com/us/en/" target="_blank">IBM</a>, <a href="http://www.actuate.com" target="_blank">Actuate</a>) there was plenty of food and beer!  Added bonus, participants from the <a href="http://wiki.osgeo.org/wiki/Boston_Code_Sprint_2013" target="_blank">PostGIS code sprint</a> were in town!</p>
<p>The lighting talk format &#8211; five minutes, 20 slides, auto advancing &#8211; works really well for these types of events.  The speakers are energized and the crowd stays captivated.  I tried in vain to keep up with Twitter during the event.  Let&#8217;s take a look at my 140 character rundown of the evening.</p>
<p>Quick note &#8211; I missed a couple speaker&#8217;s names.  If you know them please post a comment so I can update accordingly. <strong>UPDATE</strong> &#8211; I only need one more name!</p>
<p>Second quick note- Ignore the grammar mistakes in my tweets.  I am a horrible with my thumbs.</p>
<p><a href="http://www.locationintelligence.net/dc/speakers/andrew-ross/304789" target="_blank">Andrew Ross</a> from <a href="http://locationtech.org/" target="_blank">LocationTech</a> opened up the evening.  He talked about the mission of LocationTech and explained how the <a href="http://www.eclipse.org/org/foundation/" target="_blank">Eclipse Foundation</a> helps open source projects get off the ground and stay relevant.</p>
<blockquote class="twitter-tweet"><p>Great crowd for <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a> at Space with a Soul <a href="https://twitter.com/search/%23boston">#boston</a> <a href="https://twitter.com/search/%23geo">#geo</a> @<a href="https://twitter.com/avidgeo">avidgeo</a><a href="https://twitter.com/search/%23locationtech">#locationtech</a> <a title="http://twitter.com/GISDoctor/status/316329801621323776/photo/1" href="http://t.co/OdFYdi4VuW">twitter.com/GISDoctor/stat…</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316329801621323776">March 25, 2013</a></p></blockquote>
<p>Max Uhlenhuth from <a href="http://www.silviaterra.com/" target="_blank">SilviaTerra</a> then gave a great overview how he started contributing to open source projects.  Max had a number of great points but a couple really stuck with me.  In his professional career he has only used open source software, and he was using <a href="http://en.wikipedia.org/wiki/Free_and_open_source_software" target="_blank">FOSS</a> in high school!  When I was in high school my parents had just gotten this new thing called the &#8220;internet.&#8221;  His best quote came about halfway through his talk:</p>
<blockquote class="twitter-tweet"><p>&#8220;I wanted to contribute back to the open source community so I didn&#8217;t feel like a leech&#8221; <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a> <a href="https://twitter.com/search/%23foss">#foss</a> <a href="https://twitter.com/search/%23geo">#geo</a> <a href="https://twitter.com/search/%23Boston">#Boston</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316332601008865281">March 25, 2013</a></p></blockquote>
<p><a href="http://www.newurbanmechanics.org/" target="_blank">Michael Evans</a> and his colleague whose name escapes me (if you know, please let me know so I can update this post) talked about ongoing efforts in Boston&#8217;s City Hall to improve data sharing, analysis and visualization.  They talked about the extremely popular blizzard reporting site that famously <a href="http://maps.cityofboston.gov/unavailable.htm" target="_blank">crashed</a> and how it was both a success and a failure.   It was a success because it was so popular, and it was a failure because it crashed, and crashed hard.  They also talked about efforts to make data resources work with more efficiency within City Hall.</p>
<blockquote class="twitter-tweet"><p>100000s of visitors within an hour- &#8220;it was really freaking popular&#8230;&#8221; 2013 <a href="https://twitter.com/search/%23Boston">#Boston</a> blizzard reporting site <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a> <a href="https://twitter.com/search/%23geo">#geo</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316333906955759616">March 25, 2013</a></p></blockquote>
<p>I&#8217;ve seen <a href="http://publiclaboratory.org/people/warren" target="_blank">Jeffrey Warren</a> from the <a href="http://publiclaboratory.org/home" target="_blank">Public Laboratory</a> give talks a few times over the past couple years and he and his colleagues are always doing something innovative.  He didn&#8217;t disappoint during his talk on Monday.  He talked about the Public Laboratory&#8217;s <a href="http://publiclaboratory.org/tool/spectrometer" target="_blank">open source spectrometer</a>.  It was pretty amazing.  I wish he had another 25 minutes to go into more detail.</p>
<blockquote class="twitter-tweet"><p>Another great talk from Jeffrey Warren from public laboratory &#8211; open source spectrometers <a href="https://twitter.com/search/%23awesome">#awesome</a> <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316335575730909185">March 25, 2013</a></p></blockquote>
<p><a href="http://leafletjs.com/" target="_blank">Leaflet</a> made an appearance at the event as well.  <a href="https://github.com/calvinmetcalf" target="_blank">Calvin Metcalf</a>, leaflet guru and cat enthusiast, gave a talk titled -<em><strong>Leaflet for some cats. </strong> </em>Using Max Ogden&#8217;s <em><a href="http://jsforcats.com/" target="_blank">Javascript for Cats</a></em> for inspiration, Calvin went through a few examples of how easy Leaflet is to use and customize.  If you haven&#8217;t tried Leaflet yet you should.  Calvin&#8217;s slides can be found <a href="http://www.scribd.com/doc/132405519/leaflet-for-some-cats-with-apologies-to-Max-Ogden" target="_blank">here</a>.</p>
<blockquote class="twitter-tweet"><p>@<a href="https://twitter.com/cwmma">cwmma</a> &#8211; <a href="https://twitter.com/search/%23leaflet">#leaflet</a> for cats! It is that easy! <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a> <a href="https://twitter.com/search/%23opengeo">#opengeo</a> <a href="https://twitter.com/search/%23Boston">#Boston</a> <a title="http://twitter.com/GISDoctor/status/316336757232771072/photo/1" href="http://t.co/074Q3X260F">twitter.com/GISDoctor/stat…</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316336757232771072">March 25, 2013</a></p></blockquote>
<p><a href="https://twitter.com/cspanring" target="_blank">Christian Sparning</a> from the <a href="http://www.mapc.org/" target="_blank">Metropolitan Area Planning Council</a> talked about the <a href="http://www.thehubway.com/" target="_blank">Hubway&#8217;s</a> visualization <a href="http://hubwaydatachallenge.org/" target="_blank">hackathon</a>.  If you are in the Boston area you have probably seen some of the results of this event over the past several months.  The Hubway folks released a whole bunch of data  - ride numbers, origin/destination data, temporal data &#8211; and then held an hackathon.  Christian talked about the variety of people who participated and the variety of creative ways they analyzed and visualized the data.</p>
<blockquote class="twitter-tweet"><p><a href="https://twitter.com/search/%23HubwayMapping">#HubwayMapping</a> hackathon &#8211; terrific analysis and visualization @<a href="https://twitter.com/cspanring">cspanring</a> <a href="https://twitter.com/search/%23ignitelocationtech">#ignitelocationtech</a> <a href="https://twitter.com/search/%23Boston">#Boston</a> @<a href="https://twitter.com/avidgeo">avidgeo</a></p>
<p>— Ben Spaulding (@GISDoctor) <a href="https://twitter.com/GISDoctor/status/316340006593630209">March 26, 2013</a></p></blockquote>
<p><strong>UPDATE</strong>:  Thanks to <a href="https://twitter.com/42aross" target="_blank">Andrew Ross</a> I got an update on the evening&#8217;s last speaker (I didn&#8217;t catch his name at first).  The last talk was from <a href="https://twitter.com/kwalker" target="_blank">Ken Walker</a> from Eclipse, talking about the <a href="http://www.eclipse.org/orion/" target="_blank">Orion Editor</a>.  I&#8217;m not too familiar with <a href="https://twitter.com/orionhub" target="_blank">Orion</a>, which is a browser-based tool for developing on and for the web, but it looked like something I should learn about, soon.  I encourage you to check out the link to learn more.  Ken was kind enough to post his <a href="http://kenwalker.github.com/LocationTechBoston2013/#/" target="_blank">slides as well</a>.</p>
<p>Overall, this was a great event.  Avid Geo and LocationTech did a great job putting this together and the speakers inspired those in the audience.  I really think you are seeing the future of geo at events like this.  Geo is no longer just for technicians working in municipal offices.  Geo is moving beyond GIS, web mapping, and cartography.  Geo is now everywhere and anywhere and that is a great thing.  In the near future geo will be even more ubiquitous throughout the business and technology worlds and there will be a growing demand for people trained in the geospatial sciences.   Events like this keep the field moving forward!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/03/28/ignite-locationtech-boston-2013-wrap-up/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F03%2F28%2Fignite-locationtech-boston-2013-wrap-up%2F&amp;title=Ignite%20LocationTech%20Boston%202013%20Wrap-Up" id="wpa2a_4"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/03/28/ignite-locationtech-boston-2013-wrap-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps API v2 Deprecation and GISDoctor.com Mash-Ups</title>
		<link>http://www.gisdoctor.com/site/2013/03/13/google-maps-api-v2-deprecation-gisdoctor-com-mash-ups/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-maps-api-v2-deprecation-gisdoctor-com-mash-ups</link>
		<comments>http://www.gisdoctor.com/site/2013/03/13/google-maps-api-v2-deprecation-gisdoctor-com-mash-ups/#comments</comments>
		<pubDate>Wed, 13 Mar 2013 08:00:37 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Mash Ups]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=478</guid>
		<description><![CDATA[The old news on the street is that the Google Maps API v2 will be deprecated in just a few weeks in May 19th 2013.  I have a few old Google mash-ups that I never upgraded to v3 of the &#8230; <a href="http://www.gisdoctor.com/site/2013/03/13/google-maps-api-v2-deprecation-gisdoctor-com-mash-ups/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The old news on the street is that the <a href="https://developers.google.com/maps/documentation/javascript/v2/" target="_blank">Google Maps API v2 will be deprecated in just a few weeks in May 19th 2013</a>.  I have a few old Google mash-ups that I never upgraded to v3 of the API that are floating around this site and I will retire those pages when the time comes.</p>
<p>However, one of my v2 mash-ups is a <a href="http://www.gisdoctor.com/v3/sliderV2.html" target="_blank">nifty transparency slider</a> that I modified to work with <a href="http://en.wikipedia.org/wiki/Web_Map_Service" target="_blank">WMS data</a>.  I will be updating that site to v3 of the API before the last days of v2.  I&#8217;ve been saying that I was going to upgrade this app to v3 for a while now and I should probably do that soon.  Nothing like the deprecation of a API to get you motivated to write some code!</p>
<p>For more info on the v2 deprecation and a whole bunch of Google Maps news visit the <a href="http://googlegeodevelopers.blogspot.com/" target="_blank">Google Geo Developers Blog</a>.</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/03/13/google-maps-api-v2-deprecation-gisdoctor-com-mash-ups/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F03%2F13%2Fgoogle-maps-api-v2-deprecation-gisdoctor-com-mash-ups%2F&amp;title=Google%20Maps%20API%20v2%20Deprecation%20and%20GISDoctor.com%20Mash-Ups" id="wpa2a_6"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/03/13/google-maps-api-v2-deprecation-gisdoctor-com-mash-ups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Today&#8217;s Old School Geo-Reading</title>
		<link>http://www.gisdoctor.com/site/2013/03/09/todays-school-geo-reading/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=todays-school-geo-reading</link>
		<comments>http://www.gisdoctor.com/site/2013/03/09/todays-school-geo-reading/#comments</comments>
		<pubDate>Sat, 09 Mar 2013 22:25:08 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[Cartography]]></category>
		<category><![CDATA[Geo Books]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=476</guid>
		<description><![CDATA[I was thinking about map projections earlier today and I wanted to reference a couple ideas against something other than what I could find through Google. I dug out my copy of the 5th edition of Elements of Cartography by Robinson, &#8230; <a href="http://www.gisdoctor.com/site/2013/03/09/todays-school-geo-reading/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I was thinking about map projections earlier today and I wanted to reference a couple ideas against something other than what I could find through Google. I dug out my copy of the 5th edition of <em>Elements of Cartography</em> by <a href="http://en.wikipedia.org/wiki/Arthur_H._Robinson" target="_blank">Robinson</a>, Sale, Morrison, and Muehrcke (1989) and I found my answer (when was the last time you used a book&#8217;s index?).</p>
<p style="text-align: center;"><a href="http://www.gisdoctor.com/site/wp-content/uploads/2013/03/elementsofcartography.jpg"><img class="aligncenter" alt="elementsofcartography" src="http://www.gisdoctor.com/site/wp-content/uploads/2013/03/elementsofcartography.jpg" width="461" height="614" /></a></p>
<p>This book came into my possession during my undergrad years when I found it in a pile of books that a retiring geography professor was sending to the recycling bin.  I also have a 1st edition copy (acquired at the same time as the 5th edition), but that&#8217;s on my bookcase at work, next to my copy of <a href="http://en.wikipedia.org/wiki/David_Harvey_(geographer)" target="_blank">David Harvey&#8217;s</a> <em>Explanation in Geography</em> and <a href="http://en.wikipedia.org/wiki/Mark_Monmonier" target="_blank">Mark Monmonier&#8217;s</a> <em>How to Lie with Maps.</em></p>
<p>In today&#8217;s world of point and click cartography it&#8217;s nice to know that geo-visualization has always been deeply rooted in theory and science.  If you can find a copy of this book, at any edition, check it out.  I believe the way we think of, and use maps, has really changed since the rise of GMaps.  Reading through a classic book like lets you appreciate what truly goes into building an effective and beautiful map.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/03/09/todays-school-geo-reading/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F03%2F09%2Ftodays-school-geo-reading%2F&amp;title=Today%E2%80%99s%20Old%20School%20Geo-Reading" id="wpa2a_8"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/03/09/todays-school-geo-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Basics</title>
		<link>http://www.gisdoctor.com/site/2013/03/06/basics/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=basics</link>
		<comments>http://www.gisdoctor.com/site/2013/03/06/basics/#comments</comments>
		<pubDate>Wed, 06 Mar 2013 07:30:43 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[GIS Analysis]]></category>
		<category><![CDATA[Spatial Analysis]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=472</guid>
		<description><![CDATA[What are our geo-analysis fundamentals? Fundamentals should be conceptually simple, so that one can learn them and understand them quickly and easily.  Lately, three basic fundamentals of geo-analysis have been ringing in my head and I think anyone who works in &#8230; <a href="http://www.gisdoctor.com/site/2013/03/06/basics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>What are our geo-analysis fundamentals?</p>
<p>Fundamentals should be conceptually simple, so that one can learn them and understand them quickly and easily.  Lately, three basic fundamentals of geo-analysis have been ringing in my head and I think anyone who works in &#8220;spatial&#8221; should really understand them.  Here they are, in no particular order:</p>
<ul>
<li><a href="http://www.geog.ucsb.edu/~tobler/publications/pdf_docs/geog_analysis/ComputerMovie.pdf" target="_blank">&#8220;Everything is related to everything else, but near things are more related than distant things.&#8221;</a> - <a href="http://en.wikipedia.org/wiki/Waldo_Tobler" target="_blank">Tobler</a>.  Rule #1.</li>
<li>The world is round.  <a href="https://gmaps-samples.googlecode.com/svn/trunk/poly/puzzledrag.html" target="_blank">Distortions</a> shouldn&#8217;t surprise anyone, especially people who work in spatial (apparently, they routinely do).</li>
<li><a href="http://en.wikipedia.org/wiki/Modifiable_areal_unit_problem" target="_blank">Scale matters</a>.  Depending on your <a href="http://www.geos.ed.ac.uk/research/eeo/seminars/RFlowerdew_Slides.pdf" target="_blank">selected</a> <a href="http://support.esri.com/en/knowledgebase/GISDictionary/term/MAUP" target="_blank">analysis</a> <a href="http://www.geog.ubc.ca/courses/geog570/talks_2001/scale_maup.html" target="_blank">region</a> your results could differ.  Choose wisely.</li>
</ul>
<p>If geo-analysis is your area of expertise, you should be able to discuss all three topics with some intelligence.  I know there are many more fundamentals that build the foundation of geo-analysis, but these are the three that have been thinking off lately.  Do you have any other geo-analysis fundamentals that you think are crucial to know?  If so, leave a comment.</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/03/06/basics/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F03%2F06%2Fbasics%2F&amp;title=The%20Basics" id="wpa2a_10"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/03/06/basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ignite Locationtech Boston &#8211; March 25</title>
		<link>http://www.gisdoctor.com/site/2013/03/05/ignite-locationtech-boston-march-25/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ignite-locationtech-boston-march-25</link>
		<comments>http://www.gisdoctor.com/site/2013/03/05/ignite-locationtech-boston-march-25/#comments</comments>
		<pubDate>Tue, 05 Mar 2013 07:30:58 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[Conferences]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Open Source GIS]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=471</guid>
		<description><![CDATA[The folks from AvidGeo, Boston&#8217;s #1 social spatial special interest group, are at it again.  Another awesome Meet-Up is scheduled for the end of this month. From the AvidGeo Meet-Up Page:  &#8220;In collaboration with the Eclipse Foundation&#8217;s LocationTech, this month &#8230; <a href="http://www.gisdoctor.com/site/2013/03/05/ignite-locationtech-boston-march-25/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The folks from AvidGeo, Boston&#8217;s #1 social spatial special interest group, are at it again.  Another awesome <a href="http://www.meetup.com/avidgeo/" target="_blank">Meet-Up</a> is scheduled for the end of this month.</p>
<p>From the <a href="http://www.meetup.com/avidgeo/events/107500172/" target="_blank">AvidGeo Meet-Up Page:</a></p>
<p style="padding-left: 30px;"> <em>&#8220;In collaboration with the Eclipse Foundation&#8217;s LocationTech, this month we are doing another Ignite event around geospatial and open source technology.</em></p>
<p style="padding-left: 30px;"><em> Space is limited, to register for this event please visit the eventbrite site here: <a href="http://ignitelocationtechboston1.eventbrite.com/">http://ignitelocationtechboston1.eventbrite.com/</a></em></p>
<p style="padding-left: 30px;"><em>!!IMPORTANT!!</em><br />
<em>This event is not being managed through meetup, registering on this meetup page does not mean you have a ticket to attend, please visit the eventbrite site in the link above.&#8221;</em></p>
<p>The event is at <a href="http://www.spacewithasoul.org/" target="_blank">Space with a Soul</a>, <a href="http://goo.gl/maps/6vwj2" target="_blank">281 Summer Street</a> in Boston (a short walk from South Station) and it starts at 7pm.</p>
<p>There are a few talks already in place and they look great &#8211; Hubway mapping, open-source multi-spectral imaging, Leaflet mapping, contributing to open source geo projects &#8211; what more could you ask for!</p>
<p>If you are in the Boston area and are into open geo you <del>should</del> <strong><em>need</em> </strong>to come to this event.  I&#8217;m pumped that I can finally make an AvidGeo Meet-Up for the first time in months!</p>
<p>For more info check out Avid Geo&#8217;s <a href="http://www.avidgeo.com" target="_blank">website </a>or hit them up on Twitter (<a href="https://twitter.com/avidgeo" target="_blank">@avidgeo</a>).</p>
<p>See you there!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/03/05/ignite-locationtech-boston-march-25/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F03%2F05%2Fignite-locationtech-boston-march-25%2F&amp;title=Ignite%20Locationtech%20Boston%20%E2%80%93%20March%2025" id="wpa2a_12"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/03/05/ignite-locationtech-boston-march-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Presidents&#8217; Day &#8211; Leaflet Edition!</title>
		<link>http://www.gisdoctor.com/site/2013/02/18/happy-presidents-day-leaflet-edition/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=happy-presidents-day-leaflet-edition</link>
		<comments>http://www.gisdoctor.com/site/2013/02/18/happy-presidents-day-leaflet-edition/#comments</comments>
		<pubDate>Mon, 18 Feb 2013 14:37:13 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[Mash Ups]]></category>
		<category><![CDATA[Open Source GIS]]></category>
		<category><![CDATA[Leaflet]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=464</guid>
		<description><![CDATA[I&#8217;ve been seeing a lot of Leaflet lately, whether it&#8217;s in my twitter stream, on Boston.com, or hearing others in the geo-community talk about enthusiastically.  So, on a snowy Sunday in Somerville, I decided to give a Leaflet a try.  To &#8230; <a href="http://www.gisdoctor.com/site/2013/02/18/happy-presidents-day-leaflet-edition/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been seeing a lot of <a href="http://leafletjs.com/" target="_blank">Leaflet</a> lately, whether it&#8217;s in my <a href="https://twitter.com/GISDoctor" target="_blank">twitter </a>stream, on <a href="http://www.boston.com/yourtown/specials/snow_storm_map/" target="_blank">Boston.com</a>, or hearing others in the geo-community talk about enthusiastically.  So, on a snowy Sunday in Somerville, I decided to give a Leaflet a try.  To honor the 43 presidents (remember, Grover Cleveland was both the 22nd and 24th president) of the United States of America I put together a <a href="http://www.gisdoctor.com/presidents.html" target="_blank"><em>simple</em> leaflet app</a> of each president&#8217;s birthplace (according to <a href="http://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States_by_home_state" target="_blank">Wikipedia</a>).</p>
<div id="attachment_466" class="wp-caption aligncenter" style="width: 650px"><a href="http://www.gisdoctor.com/presidents.html"><img class=" wp-image-466 " alt="Leaflet in Action" src="http://www.gisdoctor.com/site/wp-content/uploads/2013/02/leaflet_presidents1-1024x544.jpg" width="640" height="340" /></a><p class="wp-caption-text">Leaflet in Action</p></div>
<p>I&#8217;ve built plenty of web mapping apps with <a href="https://developers.google.com/maps/" target="_blank">Google</a> and <a href="http://help.arcgis.com/en/webapi/javascript/arcgis/" target="_blank">Esri </a>APIs,<em> but by no means am I an expert</em>.  If you have ever built a web-map using either of those APIs you will be able to build and launch a web map with Leaflet, no problem.  More than likely, you will be able to create a web ready map more quickly with Leaflet as well (as was my experience).</p>
<p>The app I built adds a few markers with custom icons and modified popups.  I read in and customized a state boundary <a href="http://www.geojson.org/" target="_blank">geojson</a> file from a <a href="http://leafletjs.com/examples/choropleth-example.html" target="_blank">Leaflet tutorial</a> to give the user some context of &#8220;where&#8221; at larger scales.  The background tiles are from <a href="http://cloudmade.com/" target="_blank">CloudMade</a> and are nice and fast.</p>
<p>I don&#8217;t think I configured the <a href="http://leafletjs.com/reference.html#popup" target="_blank">autopan</a> for the popups correctly as it doesn&#8217;t work as I think it should.  More than likely I just don&#8217;t have the right settings configured.  If you see something in my jumbled (and undocumented) code leave a comment and I&#8217;ll make the necessary updates.  I would eventually like to add a drop shadow to the <a href="http://en.wikipedia.org/wiki/File:Seal_Of_The_President_Of_The_United_States_Of_America.svg" target="_blank">presidential seal icons</a> and perhaps read the data directly from a <a href="http://postgis.refractions.net/" target="_blank">PostGIS</a> database, as opposed to creating static markers.</p>
<p>The <a href="http://leafletjs.com/reference.html" target="_blank">Leaflet documentation</a> was easy to understand and the samples provided enough guidance to get a map online that did what I wanted it to do.  I wish there were a few more samples available through the Leaflet <a href="http://leafletjs.com/examples.html" target="_blank">tutorials</a> section, but those will come as the user community grows.</p>
<p>Overall, my first experience with Leaflet was generally pleasant.  I know JavaScripting  but I am not an expert and I was able to get a map online pretty quickly.  I spent more time collecting and formatting the data than I did getting the map online.  That is a good thing.  I recommend to those who have programmed with the Google or Esri API to check Leaflet out.  Added bonus &#8211; free and open source.</p>
<p>The page I created is for <strong>demo purposes only</strong>.  I only tested this in Chrome and Firefox (sorry IE users).  If there is incorrect information in the map please let me know and I will update it accordingly.</p>
<p>Finally, here is the direct link to the app:</p>
<p><a href="http://www.gisdoctor.com/presidents.html" target="_blank">http://www.gisdoctor.com/presidents.html</a></p>
<p>Happy presidential mapping!</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/02/18/happy-presidents-day-leaflet-edition/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F02%2F18%2Fhappy-presidents-day-leaflet-edition%2F&amp;title=Happy%20Presidents%E2%80%99%20Day%20%E2%80%93%20Leaflet%20Edition%21" id="wpa2a_14"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/02/18/happy-presidents-day-leaflet-edition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Awkward Geo-Coding</title>
		<link>http://www.gisdoctor.com/site/2013/01/28/awkward-geo-coding/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=awkward-geo-coding</link>
		<comments>http://www.gisdoctor.com/site/2013/01/28/awkward-geo-coding/#comments</comments>
		<pubDate>Mon, 28 Jan 2013 00:45:06 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[#awkwardgeocode]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=457</guid>
		<description><![CDATA[Back in the &#8220;old&#8221; days (2004-2007) I used to do a lot of geo-data cleaning for municipalities and county governments across the northeast for the consulting firm I was working for.  I was mostly cleaning address ranges on centerline datasets, checking road &#8230; <a href="http://www.gisdoctor.com/site/2013/01/28/awkward-geo-coding/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Back in the &#8220;old&#8221; days (2004-2007) I used to do a lot of geo-data cleaning for municipalities and county governments across the northeast for the consulting firm I was working for.  I was mostly cleaning address ranges on centerline datasets, checking road directionality and working on parcel addressing.  It wasn&#8217;t glamorous work, but it served an important purpose for the clients.  If the work I was doing was wrong, the services within the municipality could suffer, and I didn&#8217;t want to be the guy who messed-up.</p>
<p>I used to take a lot of pride in getting addressing correct or generating datasets of important locations within local municipality. Whenever I see a bad geo-code or a misplaced placemark in an online mapping service I simultaneously cringe and chuckle.  It <em>isn&#8217;t</em> easy work to build these massive databases and for the most part they are  remarkably correct. However, every now and then, an error creeps through.  For example, my parents home address registers three miles from where it actually is located when using the Google Maps, however Bing, OSM, and the municipality&#8217;s local online mapping tool all place it in the correct location.</p>
<p>There is also the issue of bad placemarkers across the worldwide web of mapping.  I particularly enjoyed what I believe to be a bad placemarker that I found the other day. I work in downtown Boston and I&#8217;m often using Google Maps to search for directions to restaurants, bars, friends places, etc.  For some reason that escapes me, I was map-browsing around <a href="http://goo.gl/maps/iqJJK" target="_blank">Fenway Park</a> when I came across a strange placemarker a few dozen rows up from home plate on the third base side:</p>
<div id="attachment_458" class="wp-caption aligncenter" style="width: 543px"><a href="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/whatisthis.jpg"><img class="size-full wp-image-458" alt="image credit - Google 2013" src="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/whatisthis.jpg" width="533" height="418" /></a><p class="wp-caption-text">image credit &#8211; Google 2013</p></div>
<p>Huh?!?!</p>
<p>I&#8217;ve walked around Fenway many times in my life.  I was just over there a couple weeks ago and I didn&#8217;t notice this establishment (neither has <a href="http://binged.it/RwEi5B" target="_blank">Bing </a>or <a href="http://www.openstreetmap.org/?lat=42.346474&amp;lon=-71.097473&amp;zoom=18&amp;layers=M" target="_blank">OSM</a>).  Maybe this is a new venture by the Fenway Sports Group to keep disgruntled Red Sox fans at the park during a prolonged losing streak? Perhaps this is a new type of viral marketing campaign? I don&#8217;t know if this placemark is correct or not, but I found it hilarious.  As of 1/27/2013 the map still had the unique placemark, but if it is wrong I believe it won&#8217;t be online much longer, especially if <a href="http://en.wikipedia.org/wiki/Larry_Lucchino" target="_blank">Larry Lucchino</a> sees it.</p>
<p>Here is the full screen grab of the park taken on 1/27/2013 with the exciting new business on Yakwey Way:</p>
<div id="attachment_459" class="wp-caption aligncenter" style="width: 650px"><a href="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/fenway.jpg"><img class="size-large wp-image-459" alt="image credit: Google 2013" src="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/fenway-1024x508.jpg" width="640" height="317" /></a><p class="wp-caption-text">image credit: Google 2013</p></div>
<p>When clicking on placemarker you get this interesting balloon:</p>
<div id="attachment_460" class="wp-caption aligncenter" style="width: 763px"><a href="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/whatisthis_info_ballon.jpg"><img class="size-full wp-image-460" alt="image credit: Google 2013" src="http://www.gisdoctor.com/site/wp-content/uploads/2013/01/whatisthis_info_ballon.jpg" width="753" height="549" /></a><p class="wp-caption-text">image credit: Google 2013</p></div>
<p>As I have mentioned before, building and maintaining these massive address and placemarker datasets is tough work and if you have ever done it you know what I am talking about.  But this brings up a larger question.  Have you ever encountered an awkward geo-code?  Have you ever seen a placemarker that&#8217;s obviously in the wrong location, or tried searching for an address and taken somewhere you didn&#8217;t expect?  If so, post it to twitter and add the hashtag #awkwardgeocode or leave a comment. Let&#8217;s start capturing these map anomalies before they are corrected.  If you have a #awkwardgeocode feel free to share!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/01/28/awkward-geo-coding/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F01%2F28%2Fawkward-geo-coding%2F&amp;title=Awkward%20Geo-Coding" id="wpa2a_16"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/01/28/awkward-geo-coding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIS Blogs page updated</title>
		<link>http://www.gisdoctor.com/site/2013/01/21/gis-blogs-page-updated/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gis-blogs-page-updated</link>
		<comments>http://www.gisdoctor.com/site/2013/01/21/gis-blogs-page-updated/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 10:00:29 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=454</guid>
		<description><![CDATA[The GISDoctor.com geo-blogs page has been updated.  I added a couple more links and updated some content.  If there is a geo-blog I am missing (and I am sure there are a few), please leave a comment and I will &#8230; <a href="http://www.gisdoctor.com/site/2013/01/21/gis-blogs-page-updated/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://www.gisdoctor.com/site/" target="_blank">GISDoctor.com</a> <a href="http://www.gisdoctor.com/site/gis-help/blogs/" target="_blank">geo-blogs page</a> has been updated.  I added a couple more links and updated some content.  If there is a geo-blog I am missing (and I am sure there are a few), please leave a comment and I will try to add it to the list as soon as I can!</p>
<p>Also, I created an <a href="http://en.wikipedia.org/wiki/OPML" target="_blank">OPML file</a> for readers – <a href="http://gisdoctor.com/site/GISDoctor_Blogs_1_20_2013.xml" target="_blank">GIS Doctor blog roll OPML file</a> &#8211; <em>current to 1/20/2013</em></p>
<p>Knowledge is power!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/01/21/gis-blogs-page-updated/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F01%2F21%2Fgis-blogs-page-updated%2F&amp;title=GIS%20Blogs%20page%20updated" id="wpa2a_18"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/01/21/gis-blogs-page-updated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geo Ideas I Want to See More of in 2013</title>
		<link>http://www.gisdoctor.com/site/2013/01/18/geo-ideas-2013/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=geo-ideas-2013</link>
		<comments>http://www.gisdoctor.com/site/2013/01/18/geo-ideas-2013/#comments</comments>
		<pubDate>Fri, 18 Jan 2013 08:00:55 +0000</pubDate>
		<dc:creator>bspauld</dc:creator>
				<category><![CDATA[GIS]]></category>
		<category><![CDATA[GIS Analysis]]></category>
		<category><![CDATA[GIS Software]]></category>
		<category><![CDATA[Open Source GIS]]></category>

		<guid isPermaLink="false">http://www.gisdoctor.com/site/?p=453</guid>
		<description><![CDATA[I recently wrote about the geo-terms I wanted to retire in 2013.  However, there are a few topics I want more of in 2013.  The term I want to see more of in 2013 is &#8220;open&#8221; and here is what &#8230; <a href="http://www.gisdoctor.com/site/2013/01/18/geo-ideas-2013/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I recently wrote about the geo-terms I wanted to retire in 2013.  However, there are a few topics I want <em><strong>more</strong> </em>of in 2013.  The term I want to see more of in 2013 is &#8220;open&#8221; and here is what I was thinking&#8230;</p>
<p><strong>Open Source - </strong> The open geo-software community had a great 2012.  I really see this momentum continuing to grow in 2013.  The key to continued adoption (beyond great software, easy to use platforms, and continued innovation)? Get open geo-software into academia.  The more undergrads who learn GIS on Quantum, GRASS, PostGIS and the rest, the more this movement will continue to expand.</p>
<p><strong>OpenStreetmap - </strong>Recently <a href="http://idealab.talkingpointsmemo.com/2013/01/openstreetmap-reaches-1-million-users-will-rival-google-maps-in-2-years.php" target="_blank">Openstreetmap hit 1 million users</a>.  As a somewhat semi-regular contributor<a href="http://www.gisdoctor.com/site/2012/02/29/2012-year-openstreetmap-yes/" target="_blank"> I see great promise</a> in <a href="http://www.openstreetmap.org/" target="_blank">OSM </a>but OSM can&#8217;t end up like Wikipedia, <a href="http://mashable.com/2013/01/08/wikipedia-losing-editors/" target="_blank">which is losing editors and contributors</a>.  OSM can never be completed, and the army of volunteers will hopefully see that.  I should probably do some mapping this weekend!</p>
<p><strong>Open Analysis - </strong>I would love to see the the geo-community become more open with analysis. This could include sharing analysis techniques, working together to develop new analyses, or helping the world understand geospatial analysis.  A map is far more than the visualization of the abstraction of space. Let&#8217;s start promoting the science of the understanding of patterns in space!</p>
<p>Hoorary open geography! Hooray 2013!</p>
<div name="googleone_share_1" style="position:relative;z-index:5;float: right; margin-left: 10px;"><g:plusone size="small" count="" href="http://www.gisdoctor.com/site/2013/01/18/geo-ideas-2013/"></g:plusone></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.gisdoctor.com%2Fsite%2F2013%2F01%2F18%2Fgeo-ideas-2013%2F&amp;title=Geo%20Ideas%20I%20Want%20to%20See%20More%20of%20in%202013" id="wpa2a_20"><img src="http://www.gisdoctor.com/site/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.gisdoctor.com/site/2013/01/18/geo-ideas-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
