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

<channel>
	<title>High Earth Orbit &#187; GeoRSS</title>
	<atom:link href="http://highearthorbit.com/category/geo/georss/feed/" rel="self" type="application/rss+xml" />
	<link>http://highearthorbit.com</link>
	<description>Transmitting ideas, observations, and images from 42,000 km.</description>
	<lastBuildDate>Thu, 27 Oct 2011 17:23:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>GeoFeed &#8216;pagination&#8217;</title>
		<link>http://highearthorbit.com/geofeed-pagination/</link>
		<comments>http://highearthorbit.com/geofeed-pagination/#comments</comments>
		<pubDate>Mon, 25 May 2009 17:17:17 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/geofeed-pagination/</guid>
		<description><![CDATA[Erik Wilde was pondering:

  thinking of geofeeds where feed paging does not take you back in time, but increases the search radius. but how to specify paging semantics?

My first feeling is that &#8216;zooming out&#8217; is not really a link. Pagination is just a crutch to deal with returning the full set of a single [...]]]></description>
			<content:encoded><![CDATA[<p>Erik Wilde was <a href="http://twitter.com/dret/status/1907880775">pondering</a>:</p>
<blockquote><p>
  thinking of geofeeds where feed paging does not take you back in time, but increases the search radius. but how to specify paging semantics?
</p></blockquote>
<p>My first feeling is that &#8216;zooming out&#8217; is not really a link. Pagination is just a crutch to deal with returning the full set of a single query in meaningful window sizes due to server response, bandwidth, client parsing, and maybe human interface. Zooming out implies actually performing a different search and would be a function of a client interface.</p>
<p>This mechanism is provided by <a href="http://www.opensearch.org/Specifications/OpenSearch/Extensions/Geo/1.0/Draft_1" title="Specifications/OpenSearch/Extensions/Geo/1.0/Draft 1 - OpenSearch">OpenSearch-Geo</a>, which communicates how a client would use a bounding box or polygon search. Therefore a client interface could choose how to zoom out or in and has the capability to query the system this way.</p>
<h3>Feed Clusters</h3>
<p><a href="http://highearthorbit.com/wp-content/uploads/2009/05/feedlinkclustering.jpg"><img src="http://highearthorbit.com/wp-content/uploads/2009/05/feedlinkclustering-tm.jpg" width="271" height="169" alt="Feed Link Clustering" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" /></a></p>
<p>However, I still could imagine more specific uses for such a concept. Erik&#8217;s original idea is perhaps thinking more about using geography as a way to indicate limiting search set results. This might be done using clustering mechanism, such as k-means, similar to how one might view dense data on a map in clusters, but in search result feeds. The link elements would provide looking into any of these clusters, or <em>zooming in</em>.</p>
<pre>
&lt;feed&gt;
    &lt;title&gt;Search for 'coffee'&lt;/title&gt;
    &lt;georss:box&gt;38.87,-77.2,38.89,-77.0&lt;/georss:box&gt;
    &lt;entry&gt;
        &lt;title&gt;8 results&lt;/title&gt;
        &lt;georss:box&gt;38.87,-77.2,38.91,-77.1&lt;/georss:box&gt;
        &lt;link rel="self"
          href="http://server/search.atom?q=coffee&amp;amp;bbox=38.87,-77.2,38.91,-77.1&lt;"/&gt;
    &lt;/entry&gt;
    &lt;entry&gt;
        &lt;title&gt;15 results&lt;/title&gt;
        &lt;georss:box&gt;38.87,-77.1,38.9,-77.05&lt;/georss:box&gt;
        &lt;link rel="self"
          href="http://server/search.atom?q=coffee&amp;amp;bbox=38.87,-77.1,38.9,-77.05"/&gt;
    &lt;/entry&gt;
&lt;/feed&gt;
</pre>
<h3>Structured clustering</h3>
<p>Another way this concept could work more literally would be to utilize a hierarchy, or several hierarchies, that a client may be able to easily snap to in order to query larger or smaller geographic areas. These hierarchies are not apparent in a simple search template and can provide more semantics to indicate the larger area rather than just simply &#8220;zoomed out&#8221;.</p>
<p>For example, using the <a href="http://geotree.geonames.org/" title="GeoTree">GeoNames GeoTree</a> or <a href="http://developer.yahoo.com/geo/" title="Yahoo! Geo Technologies - YDN">GeoPlanet</a> woeid&#8217;s, a search result could provide links from the specific bounding box query up to regional or districts that contain this query &#8211; as well as perhaps subsets contained within the bounding box.</p>
<pre>
&lt;feed&gt;
    &lt;title&gt;Search for 'coffee'&lt;/title&gt;
    &lt;georss:box&gt;38.87,-77.2,38.89,-77.0&lt;/georss:box&gt;
    &lt;link rel="up"
        href="http://server/search.atom?q=coffee&amp;amp;woeid=2347605"
        title="Search Virginia for 'coffee'" /&gt;
    &lt;link rel="down"
        href="http://server/search.atom?q=coffee&amp;amp;woeid=12590311"
        title="Search Arlington County for 'coffee'" /&gt;
    &lt;link rel="down"
        href="http://server/search.atom?q=coffee&amp;amp;woeid=12590343"
        title="Search Fairfax County for 'coffee'" /&gt;
    &lt;entry&gt;...&lt;/entry&gt;
&lt;/feed&gt;
</pre>
<p>Written on no wifi, sitting in the Detroit airport after a red-eye flight from WhereCamp.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/geofeed-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FortiusOne is hiring &#8211; help build GeoCommons</title>
		<link>http://highearthorbit.com/fortiusone-is-hiring-help-build-geocommons/</link>
		<comments>http://highearthorbit.com/fortiusone-is-hiring-help-build-geocommons/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 19:48:43 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[mapufacture]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[GeoCommons]]></category>
		<category><![CDATA[geoweb]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[hiring]]></category>
		<category><![CDATA[job]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/?p=1143</guid>
		<description><![CDATA[ Excited about the GeoWeb? Want to help build the next generation social mapping tools and work on some really awesome technology?
The GeoCommons team is expanding and we&#8217;re looking for some cutting-edge developers and designers to join us. We&#8217;re using a wide range of technologies to build an easy-to-use and incredibly powerful geodata sharing, visualization, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://highearthorbit.com/wp-content/uploads/2008/11/gc-logo.png" width="70" height="70" alt="gc_logo.png" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" /> Excited about the GeoWeb? Want to help build the next generation social mapping tools and work on some really awesome technology?</p>
<p>The <a href="http://www.geocommons.com/" title="GeoCommons - Visual Analytics through Maps">GeoCommons</a> team is expanding and we&#8217;re looking for some cutting-edge developers and designers to join us. We&#8217;re using a wide range of technologies to build an easy-to-use and incredibly powerful <a href="http://finder.geocommons.com/" title="GeoCommons Finder!">geodata sharing</a>, <a href="http://maker.geocommons.com/" title="GeoCommons Maker!">visualization</a>, and <a href="http://www.geocommons.com/" title="GeoCommons - Visual Analytics through Maps">collaboration platform</a> that is being used in organizations from the government, to enterprise, to international NGO&#8217;s, to local communities and groups.</p>
<p><img src="http://highearthorbit.com/wp-content/uploads/2008/11/gustav-maker-storm-surge.jpg" width="250" height="161" alt="gustav_maker_storm_surge.jpg" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" />With GeoCommons, we&#8217;re integrating Neogeography with GIS to provide powerful tools to users: if you can make it fun on the web where users aren&#8217;t required to stay, then customers will love you. And by integrating with other tools that each user is comfortable with, whether it is Excel, Notepad, GoogleEarth, or ArcGIS Desktop and QGIS; we help bring GeoCommons to them rather than making them come to GeoCommons. We&#8217;re also pushing the next generation of GeoWeb standards: KML, GeoRSS, GeoJSON, and making them more powerful and supported. These are ideas we started with <a href="http://mapufacture.com/" title="Mapufacture - helping build the geospatial web">Mapufacture</a> and are quickly integrating with <a href="http://finder.geocommons.com" title="GeoCommons Finder!">Finder!</a>, <a href="http://maker.geocommons.com" title="GeoCommons Maker!">Maker!</a> and the rest of the GeoCommons suite.</p>
<p>As a part of our team, you would investigate large-scale data sharing and linking, geospatial and data visualization mechanisms and tool development, web native API integration and community building. We&#8217;re working with many other groups in the open-source as well as GIS communities to help integrate data and tools to broadly disseminate all this quality data that has otherwise been inaccessible and make it easy to visualize and use in decision-making.</p>
<p>We&#8217;re looking for developers with real programming chops &#8211; you should be comfortable considering Mongrel and Nginx versus Passenger, know when to use unobtrusive Javascript or call ActionScript Flash hooks, have played with ActiveMQ and Stomp, beanstalkd, Starling or other queueing systems, read technology news and blogs and preferably have a site yourself where you share your experiences and code with the world. We&#8217;re looking for community members and developers that like working in teams, attending programming groups, and are comfortable sharing their ideas. We encourage you to have hobbies and side projects &#8211; we&#8217;ve built quite a few &#8216;lab&#8217; tools ourselves such as context-free music and touchscreen whiteboards. And you don&#8217;t <strong>have</strong> to be an Apple user, <em>but it helps</em>.</p>
<h3>Welcome to Washington, DC</h3>
<p><img src="http://highearthorbit.com/wp-content/uploads/2008/11/airforcememorial.jpg" width="166" height="250" alt="Air Force Memorial" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" /><a href="http://www.fortiusone.com/" title="FortiusOne - Next Generation Mapping">FortiusOne</a> is located in Arlington, VA &#8211; directly above the Courthouse Metro on the Orange line into DC, and a short walk into the district directly. The <a href="http://openstreetmap.org/?lat=38.8885&amp;lon=-77.0512&amp;zoom=12&amp;layers=B000FTF" title="OpenStreetMap">DC area</a> is on an incredible spike of growing technology community. Where else can you live in a &#8220;metro area&#8221; that encompasses at least 3 states, all of which are metro accessible? The area is also renowned for it&#8217;s <a href="http://www.outsideindc.com/bikes" title="DC Bikes">bike accessibility</a>. The recent election has cast a spotlight on the future of technology in the government with President-Elect Obama&#8217;s <a href="http://change.gov/" title="Change.gov">Change.gov</a> initiative. The upcoming inauguration is sure to be an incredibly historic event and you could be here to help map it.</p>
<p>As for the community, there are at least three <a href="http://novarug.org/" title="NovaRUG">Ruby</a>-<a href="http://groups.google.com/group/potomac-ruby-hackers" title="Potomac Ruby Hackers | Google Groups">specific</a> <a href="http://groups.google.com/group/DCRUG" title="Washington DC Ruby on Rails Users Group DCRUG | Google Groups">groups</a>, a <a href="http://www.novalang.org/" title="Nova Languages">NOVALang</a> where learning new programming languages is the prime objective, <a href="http://refresh-dc.org/" title="Refresh DC | The best and brightest new media professionals in the DC metro area">RefreshDC</a>, TwinTech, and one of the most <a href="http://data.octo.dc.gov/" title="Data Catalog">open governments</a> to geodata standards and <a href="http://www.appsfordemocracy.org/" title="Apps for Democracy - An Innovation Contest by iStrategyLabs for the DC Government and Beyond">sharing</a>. We&#8217;re also quite big fans of the local beer selection and hard to beat the food variety.</p>
<h3>Let us know</h3>
<p>So if this sounds exciting to you, and you&#8217;re interested in joining the team &#8211; please <a href="mailto:careers@fortiusone.com">let us know!</a> You can also <a href="http://www.fortiusone.com/careers/?page_id=24" title="FortiusOne Careers: Application/Systems Engineer">check out the formal listing</a>.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/fortiusone-is-hiring-help-build-geocommons/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>38.891143 -77.085855</georss:point>
	</item>
		<item>
		<title>VoteReport mapping and data feeds</title>
		<link>http://highearthorbit.com/votereport-mapping-and-data-feeds/</link>
		<comments>http://highearthorbit.com/votereport-mapping-and-data-feeds/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 18:40:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[OpenSearch]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[davetroy]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[election]]></category>
		<category><![CDATA[election2008]]></category>
		<category><![CDATA[geojson]]></category>
		<category><![CDATA[NPR]]></category>
		<category><![CDATA[opendata]]></category>
		<category><![CDATA[twittervotereport]]></category>
		<category><![CDATA[unitedstates]]></category>
		<category><![CDATA[votereport]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/votereport-mapping-and-data-feeds/</guid>
		<description><![CDATA[Over the past two weeks I&#8217;ve been working with a great team of people helping to build VoteReport &#8211; an open public reporting system to be used during the 2008 US Election to track the situation as citizens cast their ballots. The simple goal is to make it easy for anyone to send in a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://highearthorbit.com/wp-content/uploads/2008/11/twitter-report.png" width="278" height="78" alt="twitter-report.png" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" />Over the past two weeks I&#8217;ve been working with a great team of people helping to build VoteReport &#8211; an open public reporting system to be used during the 2008 US Election to track the situation as citizens cast their ballots. The simple goal is to make it easy for anyone to send in a report describing the wait time, overall rating and any complications that are impairing their ability to participate in the election. For more information check out <a href="http://twittervotereport.com" title="Twitter Vote Report » Home">http://twittervotereport.com</a>.</p>
<p><a href="http://davetroy.com/" title="Software, the Web, Entrepreneurship and Economics — Dave Troy: Fueled By Randomness">Dave Troy</a> has put together a solid backend that is aggregating together Twitter, SMS, voice, iPhone and Android native applications, and even YouTube. Others have built the iPhone specific applications. I&#8217;ve been working on the mapping and data sharing side of the project. The first goal was to provide a number of mechanisms to share the data that we&#8217;re gathering with everyone. Additional mashups and visualizations are free to use the data streams to pull all the data that <a href="http://twittervotereport.com">VoteReport</a> itself has &#8211; so definitely go wild with your ideas. A quick breakdown of what&#8217;s available:</p>
<dl>
<dt><a href="http://www.opensearch.org/" title="Home - OpenSearch">OpenSearch</a> &#8211; <code>http://votereport.us/opensearch.xml</code></dt>
<dd>This is the OpenSearch description document that outlines all of the feeds and various filters that you can use when getting to the data. Always check this as we&#8217;ll update it with new parameters or data streams. In addition, the various responses discussed below include OpenSearch styling pagination so you can walk through the entire database of reports without having to drink right from the firehose. This also includes the <a href="http://www.opensearch.org/Specifications/OpenSearch/Extensions/Time/1.0/Draft_1" title="Specifications/OpenSearch/Extensions/Time/1.0/Draft 1 - OpenSearch">OpenSearch-Time</a> extension.</dd>
<dt><a href="http://code.google.com/apis/kml/documentation/" title="KML Documentation Introduction - KML - Google Code">KML</a> &#8211; <code>http://votereport.us/reports.kml</code></dt>
<dd>Getting the reports.kml will give a Network Link &#8211; this is useful for <a href="http://earth.google.com/" title="Google Earth">GoogleEarth</a> and other KML clients to automatically update every 60 seconds with new reports. You can append <code>live=1</code> to get the full KML document. I have included all the useful attributes in the <code>ExtendedData</code> element of all the Placemarks. Each Placemark also has an id for easy reference.</dd>
<dt><a href="http://georss.org/" title="GeoRSS | GeoRSS :: Geographically Encoded Objects for RSS feeds">GeoRSS</a>-Atom &#8211; <code>http://votereport.us/reports.atom</code></dt>
<dd>Just want to subscribe to the feed in your RSS reader, this feed is useful for getting updates.</dd>
<dt><a href="http://wiki.geojson.org/" title="Main Page - GeoJSON">GeoJSON</a> &#8211; <code>http://votereport.us/reports.json</code></dt>
<dd>JSON is super nice for doing client-side mashups and visualization. This is what the <a href="http://votereport.us/reports/map" title="VoteReport">VoteReport Map</a> itself is using. It includes a lot of information for each report, including reporter, icon, location.</dd>
</dl>
<p>All of these feeds even can take a <code>dtstart=</code> with an ISO-8601 date for getting reports after a certain time (and optionally <code>dtend=</code> for getting time-bounds of reports). A useful geographic filter is to use <code>state=</code> with the capitalized two-letter state code to just get reports within a state. So for example <a href="http://votereport.us/reports.atom?state=VA" title="#votereport - Virginia">http://votereport.us/reports.atom?state=VA</a> is a GeoRSS feed of reports in Virginia. As I mentioned, I did build a quick map that you can view at <a href="http://votereport.us/reports/map" title="VoteReport">http://votereport.us/reports/map</a>.</p>
<p>We&#8217;re continuing to build it out with new features as more data comes in. You can easily embed the map in your site using (and optionally remove the <code>state=</code>):</p>
<div style="width: 100%; background-color: #BBBBBB; border: 1px solid black;">
  <code>&lt;iframe src="http://votereport.us/reports/map?state=VA" frameborder="0" class="stream" width="535" height="500" scrolling="no" &gt;&lt;/iframe&gt;</code>
</div>
<p>The difficulty with creating more visualizations is the lack of pre-election data. This system has been built to primarily capture a huge amount of valuable information for one day. We&#8217;re not sure before hand what this data will look like, coverage or attributes. Typically visualizations are made by exploring and <em>playing</em> with the data to see what emerges. In this case, we&#8217;re making estimates (and guiding via the tutorials) on what data we&#8217;d like. Therefore, the map itself has simple mechanisms for styling markers based on the user-supplied report. But the data is far to dispersed so far for something like a heatmap.</p>
<p>Fortunately, the team consists of a large number of public advocates that are spreading the word which should encourage more citizens to use the system and contribute both good and bad reports. Andy Carvin of NPR put together this <a href="http://npr.org/votereport" title="Vote Report: Help NPR Identify Voting Problems : NPR">NPR coverage</a>, and we&#8217;ve also received coverage from <a href="http://swampland.blogs.time.com/2008/10/31/tweet-the-vote" title="Swampland - TIME.com » Blog Archive Tweet the Vote! «">Time</a>, <a href="http://www.huffingtonpost.com/sarah-granger/online-assistance-arrives_b_139360.html" title="Sarah Granger: Online Assistance Arrives to Combat Voting Hurdles, Glitches and Dirty Tricks">Huffington Post</a>, <a href="http://thecaucus.blogs.nytimes.com/2008/10/27/tweet-your-voting-moment/" title="Tweet Your Voting Moment - The Caucus Blog - NYTimes.com">New York Times</a>, <a href="http://www.techcrunch.com/2008/10/30/tweet-the-vote-no-digg-the-vote-no-youtube-the-vote-oh-just-vote/" title="Tweet the Vote. No, Digg The Vote. No, YouTube the Vote. Oh, . . . Just Vote.">TechCrunch</a> and even <a href="http://www.cnewmark.com/2008/10/protecting-your.html" title="cnewmark: Protecting your vote using Net technolgies">Craig Newmark</a>. Check out the <a href="http://twittervotereport.com/press/" title="Twitter Vote Report » Press Room">TVR press page</a> for more coverage links.</p>
<p>And if you would like to help contribute to the project, check out the <a href="http://votereport.pbwiki.com/" title="Twitter Vote Report Wiki / FrontPage">VoteReport Wiki</a>. I imagine there will also be a number of post-election visualizations and analysis to come out of the reports.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/votereport-mapping-and-data-feeds/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>BarCampDC2 &#8211; Open Government Data</title>
		<link>http://highearthorbit.com/barcampdc2-open-government-data/</link>
		<comments>http://highearthorbit.com/barcampdc2-open-government-data/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 15:34:04 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[geodata]]></category>
		<category><![CDATA[Government]]></category>
		<category><![CDATA[Washington DC]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/barcampdc2-open-government-data/</guid>
		<description><![CDATA[
The very first session I attended was moderated by Peter Corbett from iStrategyLabs and Dmitry Kachaev of the Office of the CTO for DC talking about open data from the government.
The Princeton research paper &#8220;Government Data and the Invisible Hand&#8221; proclaims the need for government agencies to first and foremost share their data via open [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://highearthorbit.com/wp-content/uploads/2008/10/apps-for-democracy-tm.jpg" width="300" height="63" alt="Apps for Democracy" style="float:right; padding-top:5px; padding-bottom:5px; padding-left:5px;" /></p>
<p>The very first session I attended was moderated by <a href="http://www.linkedin.com/pcorbett">Peter Corbett</a> from iStrategyLabs and <a href="http://kachaev.com/" title="kachaev.com">Dmitry Kachaev</a> of the <a href="http://www.octo.dc.gov/" title="Office of the Chief Technology Officer">Office of the CTO for DC</a> talking about open data from the government.</p>
<p>The Princeton research paper <a href="http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1138083" title="SSRN-Government Data and the Invisible Hand by David Robinson, Harlan Yu, William Zeller, Edward Felten">&#8220;Government Data and the Invisible Hand&#8221;</a> proclaims the need for government agencies to first and foremost share their data via open and broadly used standards (via <a href="http://arstechnica.com/news.ars/post/20080603-study-gov-websites-should-focus-on-rss-xmlnot-redesigns.html" title="Study: .gov web sites should focus on RSS, XML—not redesigns">Ars Technica</a>).</p>
<p>The DC government is already sharing a large amount of data via a variety for formats: <a href="http://georss.org/" title="GeoRSS | GeoRSS :: Geographically Encoded Objects for RSS feeds">GeoRSS</a>, KML, CSV, Shapefiles. Check it out at <a href="http://data.octo.dc.gov" title="Data Catalog">http://data.octo.dc.gov</a> and also <a href="http://capstat.oca.dc.gov/" title="CapStat: Building a City That Works">CapStat: Building a City That Works</a></p>
<blockquote><p>
  Information. Knowledge. Progress. Welcome to CapStat, your resource as a District of Columbia resident to track how District Government is working for you. You can use these pages to track the performance of individual agencies, find neighborhood statistics and learn how your government is responding to the city&#8217;s most pressing challenges. As the District of Columbia works to become a world-class city, visit this page to follow its progress and find out how you can become part of the solution.
</p></blockquote>
<p>When the <a href="http://www.octo.dc.gov" title="Office of the Chief Technology Officer">Office of the CTO for DC</a> wanted to update their site and services they brainstormed how to do this &#8211; the typical method of hiring a very expensive contractor to build a complicated tool that would be poorly implemented &#8211; or open up the system for the community and see what emerges.</p>
<p>Fortunately they chose the latter and recently launched <a href="http://appsfordemocracy.org" title="Apps for Democracy - An Innovation Challenge by iStrategyLabs for the DC Government and Beyond">Apps for Democracy</a> &#8211; a contest that anyone can submit an entry for a mashup or application using the DC data services.</p>
<h3>Data stream of data</h3>
<p>One comment that came up was the desire for a feed of the available data and updates. Right now there is a web page and some of the data is available as GeoRSS &#8211; so continually updated. However, what would really be great and facilitate federation would be a published GeoRSS feed of datasets that links to each of the available formats, updated times, filesizes, metadata, etc.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/barcampdc2-open-government-data/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>38.890370 -77.031959</georss:point>
	</item>
		<item>
		<title>OGC Geospatial Search Summit</title>
		<link>http://highearthorbit.com/ogc-geospatial-search-summit/</link>
		<comments>http://highearthorbit.com/ogc-geospatial-search-summit/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 11:25:26 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[OpenSearch]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Geo]]></category>
		<category><![CDATA[geodata]]></category>
		<category><![CDATA[OGC]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/ogc-geospatial-search-summit/</guid>
		<description><![CDATA[Last Monday I participated in a Geospatial Search Summit hosted by the OGC as part of the quarterly Technical Committee (TC) meetings. The TC&#8217;s are primarily about various working groups discussing progress and status of standards or interoperability demos.
By comparison, this summit was meant as a brainstorming around geo and search interfaces and responses. Pulling [...]]]></description>
			<content:encoded><![CDATA[<p>Last Monday I participated in a <a href="http://www.ogcnetwork.net/node/396" title="OGC Geospatial Search Summit - background and readings | OGC Network">Geospatial Search Summit</a> hosted by the <a href="http://www.ogc.gov.uk/" title="OGC - Home">OGC</a> as part of the <a href="http://www.opengeospatial.org/event/0809tc" title="September '08 OGC Technical Committee Meeting - Atlanta Georgia | OGC®">quarterly Technical Committee (TC)</a> meetings. The TC&#8217;s are primarily about various working groups discussing progress and status of standards or interoperability demos.</p>
<p>By comparison, this summit was meant as a brainstorming around geo and search interfaces and responses. Pulling from the announcement:</p>
<blockquote><p>
  We would as much as possible like to bound the discussion to: 1) common ground for geospatial search for web resources and 2) integrating spatial search into search protocols. As part of the discussion we would also like to get advice from the other communities about which catalog/registry search protocol is the &#8216;mainstream&#8217; one (or more?) that we (OGC) should align with and in turn, be sure that spatial search is supported in a thoughtful but not cumbersome way by the broader IT standards community.
</p></blockquote>
<p>You can see a partial <a href="http://www.ogcnetwork.net/node/399" title="OGC Geospatial Search Summit Experts">list of attendees here</a>.</p>
<p>There was a good overview of existing, albeit often quite complex, search interfaces. As is potential in meetings like this where attendees have their own history, investments, and beliefs in standards, the discussion can become difficult to easily resolve.</p>
<p>A couple of interesting agreements came out of the meeting. Foremost was the understanding for guidance of using simple, common formats as they already exist when appropriate. This means using <a href="http://www.opensearch.org/" title="Home - OpenSearch">OpenSearch</a> as a base URI templating mechanism and follow <a href="http://georss.org/simple" title="Simple | GeoRSS :: Geographically Encoded Objects for RSS feeds">GeoRSS-Simple</a> specification for geographic data. Of course, a format can expand upon this and offer more complex formats that conform to more complex specs. But by at least providing a common baseline means that almost any service can easily interconnect with another service.</p>
<p>One difficult mechanism that is missing is a way for geographic search to specify the type of spatial operation. Typically most services assume a &#8220;within&#8221; or intersects&#8221;. For example, what restaurants are within a 5-mile radius of my position. However, it&#8217;s apparent that this can be confused based on assumptions and also does not provide for any other type of operations. Again, for example, find me all the hospitals that are not within the hurricane path.</p>
<p>A long-standing model for this is called the <a href="http://docs.codehaus.org/display/GEOTDOC/Point+Set+Theory+and+the+DE-9IM+Matrix" title="Point Set Theory and the DE-9IM Matrix - Codehaus"><em>DE-9IM spatial operation set</em></a>. It was presented by Eliseo Clementini, and also frequently attributed to Egenhofer. You can <a href="http://docs.codehaus.org/display/GEOTDOC/Point+Set+Theory+and+the+DE-9IM+Matrix" title="Point Set Theory and the DE-9IM Matrix - Codehaus">read more about it</a>. Granted, a majority of geospatially-capable search interfaces may not require this, but it&#8217;s nice that there is a relatively straight-forward model that everyone can agree on.</p>
<p>I hope more attendees share their thoughts and outcomes. There are definitely many who point out the problems of designing standards in a <em>smoke filled room</em>, and I much rather bringing the discussion out into the open where more people can chime in and contribute.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/ogc-geospatial-search-summit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>33.748315 -84.391109</georss:point>
	</item>
		<item>
		<title>Beijing Air Quality and Olympic Venues</title>
		<link>http://highearthorbit.com/beijing-air-quality-and-olympic-venues/</link>
		<comments>http://highearthorbit.com/beijing-air-quality-and-olympic-venues/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 17:24:23 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[mapufacture]]></category>
		<category><![CDATA[olympics]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/beijing-air-quality-and-olympic-venues/</guid>
		<description><![CDATA[
 During our trip to China in December Corrie and I definitely felt the effects of the poor air quality. This has also been the discussion for over a year leading up to the Beijing Olympics that start tomorrow. China has been trying a variety of mechanisms to cut down on pollution including removing all [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/ajturner/2211572949/" title="Heavy Traffic, Heavy Haze - another day in China by Andrew Turner, on Flickr"></a></p>
<p><img src="http://farm3.static.flickr.com/2125/2211572949_17baae97ef_m.jpg" width="160" height="240" alt="Heavy Traffic, Heavy Haze - another day in China" style="float:right; padding: 5px;" /> <a href="http://highearthorbit.com/thoughts-on-china/" title="Thoughts on China :: High Earth Orbit">During our trip to China in December</a> Corrie and I definitely felt the effects of the poor air quality. This has also been the discussion for over a year leading up to the Beijing Olympics that start tomorrow. China has been trying a variety of mechanisms to cut down on pollution including removing all cars from the roads for 2 weeks and seeding rain clouds to pull the particulates out of the air.</p>
<p>The Olympics are finally here and the question still remains about the air quality and it&#8217;s effect on the athletes. One even wonders what the availability of this data is on the ground there. So to help out, I built a <a href="http://mapufacture.com/maps/2791" title="Mapufacture - Beijing Air Quality during the Olympics map">Mapufacture map</a> that pulls the daily data reports from the <a href="http://www.bjepb.gov.cn/air2008/olympic.aspx" title="2008年奥运会空气质量状况">Beijing Municipal Environmental Protection Bureau</a>. You can also get the <a href="http://mapufacture.com/feeds/1015899.atom">GeoRSS</a> and <a href="http://mapufacture.com/feeds/1015899.kml">KML</a>.</p>
<p>As part of the <a href="http://highearthorbit.com/mapufacture-joins-with-fortiusone/" title="Mapufacture joins with FortiusOne :: High Earth Orbit">new partnership</a> we&#8217;re looking at the combination of geospatial data with dynamic information and <a href="http://blog.fortiusone.com/2008/08/07/near-real-time-beijing-pollution-data-and-olympic-venues-mapufacture-and-geocommons-in-action/" title="Near Real Time Beijing Pollution Data and Olympic Venues: Mapufacture and GeoCommons in Action | Off the Map - Official Blog of FortiusOne">brought in the Olympic venues</a> as additional map layer.</p>
<p>Thanks to <a href="http://verdantconcepts.com/2008/08/07/mapping-olympic-air-quality/" title="Green Roof Resource » Mapping Olympic air quality">Corrie for the environmental analysis</a>.</p>
<p><iframe src="http://mapufacture.com/maps/2791?viz=embed" width="100%" height="350px"></iframe></p>
<p>View the <a href="http://mapufacture.com/maps/2791" title="Mapufacture - Beijing Air Quality during the Olympics map">Beijing Air Quality during the Olympics map</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/beijing-air-quality-and-olympic-venues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Geotag Icon</title>
		<link>http://highearthorbit.com/geotag-icon/</link>
		<comments>http://highearthorbit.com/geotag-icon/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 21:26:26 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[geotagicon]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/geotag-icon/</guid>
		<description><![CDATA[There has been a meme floating around about the new &#8220;Geotag Icon&#8221; that was originally proposed here and now has an officious site: Geotag Icon Project
There has been a lot of dialog. Sean discusses a lot of his thoughts about semantic interoperability and formats. There has also been a number of discussions on the design [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a meme floating around about the new &#8220;Geotag Icon&#8221; that was <a href="http://www.bioneural.net/2008/02/21/a-web-standard-icon-for-geotagging/" title="A web standard icon for geotagging at bioneural.net">originally proposed here</a> and now has an officious site: <a href="http://www.geotagicons.com" title="Home of the Geotag Icon Project">Geotag Icon Project</a></p>
<p>There has been a lot of dialog. <a href="http://blog.fortiusone.com/2008/03/12/are-push-pins-inescapable/" title="Are Push Pins Inescapable? | Off the Map - Official Blog of FortiusOne">Sean discusses</a> a lot of his thoughts about semantic interoperability and formats. There has also been a number of discussions on the design itself &#8211; everything from the color, to the pushpin being indicative of points only &#8211; maybe reinforcing the &#8220;red dot fever&#8221; that plagues many maps.</p>
<p>These are really minor quibbles. Overall I think it&#8217;s a decent design that gives some simple meaning to what the icon conveys. However, the problem I do have is the <a href="http://www.geotagicons.com/usage-examples.html" title="Home of the Geotag Icon Project | Usage guidelines &amp; examples">Usage guidelines &amp; examples</a>. Essentially, they are saying it should be used for <strong>all</strong> geospatial formats.</p>
<p>Example from the site:<br />
<center><br />
  <img src="http://highearthorbit.com/wp-content/uploads/2008/04/home-of-the-geotag-icon-project-usage-guidelines-examples-1.jpg" width="380" height="138" alt="Home of the Geotag Icon Project | Usage guidelines &amp; examples-1.jpg" style=" padding-top: 5px; padding-bottom: 5px; padding-left: 5px;" name="home-of-the-geotag-icon-project-usage-guidelines-examples-1.jpg" id="home-of-the-geotag-icon-project-usage-guidelines-examples-1.jpg" /><br />
</center></p>
<p><a href="http://blog.fortiusone.com/2008/03/12/are-push-pins-inescapable/#comment-19347" title="Are Push Pins Inescapable? | Off the Map - Official Blog of FortiusOne">Bruce defends this</a>:</p>
<blockquote><p>
  Whereas the Geotag Icon describes a general concept (”This item is geotagged”) the KML icon and GeoRSS favicon each proclaim a file format. This is analogous to the Feed Icon: can you imagine having a different orange icon for each web feed format? There’s no reason why the Geotag Icon can’t sit side-by-side with file format icons if that’s what folk wish to do. But a well-recognized Geotag Icon (in time!) adjacent to the text description “Download KML file (opens in Google Earth)” could well be more informative to the majority users than what is otherwise sure to be a growing set of vaguely-related file format icons with which to become familiar. The power of de facto standard icons is in instant recognition—and the fewer the merrier!
</p></blockquote>
<p>I disagree, he&#8217;s proposing this one icon should be used for a multitude of different formats that each have different capabilities and uses. It&#8217;s not like the difference between RSS and Atom, it&#8217;s the difference between HTML and RSS or CSS. Or a Video and a Photo. Sure, they&#8217;re both images, but they&#8217;re also very different in what they do.</p>
<p>He&#8217;s creating additional confusion by using the Geotag icon for GeoRSS. GeoRSS isn&#8217;t even a <em>file format</em>, it&#8217;s an extension to another file format: RSS / Atom, and they already have a recognizable icon that has meaning to users. I wouldn&#8217;t want to put yet another icon in front of them that meant something slightly different. And KML is a visualization format, similar to <a href="http://highearthorbit.com/a-proposal-georss-kml/" title="A Proposal - GeoRSS &amp; KML :: High Earth Orbit">HTML + CSS</a>. GPX is a very specific format that works for handheld GPS units and PND&#8217;s. I&#8217;m surprised the Geotag Icon wasn&#8217;t proposed to be used for Geo and Adr Microformats, since it matches this formula of all things geo.</p>
<p>This is the follie of the greater GIS community &#8211; assuming something is primarily <strong>geo</strong> first, and general information second. I&#8217;m surprised this is idea is also followed by people outside the GIS world.</p>
<p>So I only ask that the Usage guidelines of the Geotag icon be scaled back. It&#8217;s interesting that it&#8217;s been <a href="http://spatialviews.com/2008/03/08/geotag-icon/" title="spatialviews » Geotag Icon">incorporated into Minimap Sidebar</a> &#8211; good idea, but perhaps again confusing application with format? Using it in a photograph or video is nice because it&#8217;s clear to me that the format is a video (and I don&#8217;t care if it&#8217;s mov, fla, et al.) and useful to be alerted that it has geocoded content inside. I also think it could be useful as a link to a page of Geospatial formats. Why not even use it like the <em>Share this on&#8230;</em> on the <a href="http://www.geotagicons.com/" title="Home of the Geotag Icon Project">Geotag project page</a> itself?</p>
<p><center></p>
<p style="font-size: 1.1em; font-weight: bold;">
  <img src="http://highearthorbit.com/images/geotag_16.png" alt="Geotag Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />Map this with <img src="http://highearthorbit.com/images/kml_icon.png" alt="KML Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />KML, <img src="http://highearthorbit.com/images/feed-icon-16x16.png" alt="RSS Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />GeoRSS, <img src="http://highearthorbit.com/images/communicator_16.png" alt="GPX Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />GPX</p>
<p></center></p>
<p><em>GPX icon is from <a href="http://www8.garmin.com/products/communicator/" title="Garmin Communicator Plugin">Garmin&#8217;s Communicator Plugin</a></em>. You could optionally replace the format names (like KML) with suggestion applications, but I find this a little to vendor specific. Don&#8217;t you dislike it when people say things like &#8220;I opened the Internet Explorer page&#8230;&#8221;?</p>
<p>I think this set of links is how I would do it in <a href="http://georss.org/geopress" title="GeoPress | GeoRSS :: Geographically Encoded Objects for RSS feeds">GeoPress</a>. But don&#8217;t suggest that Geotag Icon become the over-arching marker for other formats that happen to contain geo-data. Otherwise, I&#8217;ll be suggesting a family of icons like <img src="http://highearthorbit.com/images/time_16.png" alt="Timetag Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />Timetag, and <img src="http://highearthorbit.com/images/title_16.png" alt="Titletag Icon" style="float: none;padding: 0 2px 0 10px; margin: 0 0 -4px -10px" />Titletag.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/geotag-icon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>GeoRSS Multiple Locations</title>
		<link>http://highearthorbit.com/georss-multiple-locations/</link>
		<comments>http://highearthorbit.com/georss-multiple-locations/#comments</comments>
		<pubDate>Tue, 18 Mar 2008 03:11:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>
		<category><![CDATA[AdrianHolovaty]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[storymapping]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/georss-multiple-locations/</guid>
		<description><![CDATA[A commonly requested feature addition to GeoRSS has been multiple locations per entry. Currently, GeoRSS only adds a single geometry per RSS or Atom entry. This was pragmatic and served the general goals of GeoRSS. 
There are several commonly encountered use cases. News reports typically mention several locations. Bloggers using GeoPress may tell a story [...]]]></description>
			<content:encoded><![CDATA[<p>A commonly requested feature addition to <a href="http://www.georss.org/" title="GeoRSS | GeoRSS ::  Geographically Encoded Objects for RSS feeds">GeoRSS</a> has been <em>multiple locations</em> per entry. Currently, GeoRSS only adds a single geometry per RSS or Atom entry. This was pragmatic and served the general goals of GeoRSS. </p>
<p>There are several commonly encountered use cases. News reports typically mention several locations. Bloggers using <a href="http://www.georss.org/geopress" title="GeoPress | GeoRSS ::  Geographically Encoded Objects for RSS feeds">GeoPress</a> may tell a story about a trip and want to reference several spots along their trip &#8211; especially if they are documenting a tour that includes a path and sites along that path such as in <a href="http://www.everytrail.com/" title="EveryTrail - GPS travel community, geotagging, geotagged photos, Google Maps, GPS tracks, waypoints, coordinates">EveryTrail</a>. Dan Schultz talks about why <a href="http://www.pbs.org/idealab/2008/01/one-location-doesnt-cut-it.html" title="MediaShift Idea Lab . One Location Doesn't Cut It | PBS">&#8220;One Location Doesn&#8217;t Cut It&#8221;</a>, citing other examples from news journalism.</p>
<p><a href="http://everyblock.com" title="EveryBlock" rel="met">Adrian</a> and I recently sat down together to quickly brainstorm on what this may look like. The features we were looking to add were: multiple geometries, excerpt for that geometry, and toponym for that location (venue, city, etc.) Additionally, we didn&#8217;t want to break current compatibility. </p>
<p>Other services are already including multiple locations in different ways. Flickr outputs a single location in two different formats of GeoRSS: <a href="http://georss.org/simple" title="GeoRSS Simple">Simple</a>, and some odd form of deprecated W3C. <a href="http://labs.metacarta.com/rss-geotagger/" title="MetaCarta Labs: RSS GeoTagger">MetaCarta&#8217;s RSS-to-GeoRSS</a> converted currently just dumps multiple locations into the entry, but without identifying if these are unique locations, or just variations in format type or hierarchy. </p>
<p>We wanted to call out that this is in fact a different type of geometry &#8211; a multi-geometry. Both KML and WKT support multi-geometry, but without being able to reference what the points are individually about. That&#8217;s useful if you are, say, marking all the holes in a field, but not for narratives. </p>
<p>Another feature we wanted to try and support was to be able to reference geometries stored elsewhere. Currently in GeoRSS feeds you&#8217;ll typically see references to a City or Country just include a point to the center of that geography. Not really indicative of what the article was about, or useful when trying to find all the geographic data about an area. So it&#8217;s important to include lines and areas as appropriate. However, including huge outlines of states or nations, potentially multiple times within a single feed, can have drastically bad consequences of increasing feed file size and complexity. </p>
<p>Here is a snippet of what we are proposing:</p>
<div class="snippet">
<code class="prettyprint"><br />
&lt;description&gt;<br />
	We went to visit downtown Cedarburg before<br />
	the conference. Had some great sandwiches at Joe&#x27;s.<br />
	If you haven&#x27;t been to Cedarburg, Wisconsin, then<br />
	you haven&#x27;t really experienced the MidWest...<br />
&lt;/description&gt;<br />
&lt;georss:collection&gt;<br />
	&lt;georss:point<br />
		excerpt=&quot;Went to visit downtown Cedarburg...&quot;<br />
		featurename=&quot;Downtown Cedarburg, Wis.&quot;&gt;<br />
			43.296700 -87.987500<br />
	&lt;/georss:point&gt;<br />
	&lt;georss:polygon<br />
		rel=&quot;geometry&quot;<br />
		src=&quot;http://geonames.org/geometries/5867680&quot;<br />
		excerpt=&quot;...&quot;<br />
		featurename=&quot;Cedarburg, Wisconsin&quot;<br />
		type=&quot;application/vnd.google-earth.kml+xml&quot;/&gt;<br />
	&lt;georss:line<br />
		featurename=&quot;Convention Center&quot;&gt;<br />
			43.296700 -87.987500 43.3 -88 -44, -89<br />
	&lt;/georss:line&gt;<br />
&lt;/georss:collection&gt;<br />
</code>
</div>
<p>The first part to notice is that we wrapped the multiple geometries in a <code>georss:collection</code>. This allows current parsers to not be confused by encountering multiple georss elements unwrapped and being unclear if they are multiple representations of the same geometry, or different geometries.</p>
<p>We also included a <code>excerpt</code> attribute that allows you to include some text referencing what this location is specifically about. This can be text from the article itself, or some other useful information. One concept we had considered was using some reference to the text wrapped in the article itself, but this seemed burdensome and prone to problems using an attribute of one element to embedded text in another element.</p>
<p>The second element is a <code>georss:polygon</code> that includes a <code>src</code> reference to the geometry stored elsewhere. The <code>rel</code> tag specifies that it is the geometry of this element, and the <code>type</code> helps the tool know what the representation is of the stored geometry. This way a tool that is consuming the GeoRSS can go and fetch the geometry if it wants, or if it already has a cached version, say referenced elsewhere in this same feed, then it doesn&#8217;t have to request it again.</p>
<p>Of course, with a standards development, it is useful to consider how a user interface might provide for including multiple locations in an entry. Here is a mockup of how I imagine a simple interface would appear, and probably how we&#8217;d implement it in something like <a href="http://www.georss.org/geopress" title="GeoPress | GeoRSS ::  Geographically Encoded Objects for RSS feeds">GeoPress</a>:</p>
<p>Article: We went to visit downtown Cedarburg before the conference. Had some great sandwiches at Joe&#8217;s. If you haven&#8217;t been to Cedarburg, Wisconsin, then you haven&#8217;t really experienced the MidWest&#8230;</p>
<p>Locations:<br />
 &#8211; Excerpt: Went to visit downtown Cedarburg&#8230;<br />
 &#8211; Type: Point<br />
 &#8211; Geometry: 43.296700 -87.987500<br />
 &#8211; Name: Cedarburg, Wis. </p>
<p>To promote ideas and discussion around these and other proposals, I&#8217;ve created proposals at GeoRSS.org on <a href="http://georss.org/proposals/multiple_locations" title="Proposal: Multiple Locations | GeoRSS ::  Geographically Encoded Objects for RSS feeds">multiple location<a/> and <a href="http://georss.org/proposals/external_geometry" title="Referencing External Geometry | GeoRSS ::  Geographically Encoded Objects for RSS feeds">referencing external geometry</a>. Please let us know what you think about the idea and format. We know that we can&#8217;t please everyone, but like the origins of GeoRSS, we&#8217;re just trying to address a real need with a simple format.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/georss-multiple-locations/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>A Proposal &#8211; GeoRSS &amp; KML</title>
		<link>http://highearthorbit.com/a-proposal-georss-kml/</link>
		<comments>http://highearthorbit.com/a-proposal-georss-kml/#comments</comments>
		<pubDate>Fri, 22 Jun 2007 16:31:44 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[KML]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/a-proposal-georss-kml/</guid>
		<description><![CDATA[There has recently been a lot of discussion around KML becoming part of the OGC and the future of GeoRSS and KML. Will GeoRSS use KML payloads, or vice versa? Will one just subsume the other? After speaking with a bunch of people at Where, and also thinking about various announcements and talks given by [...]]]></description>
			<content:encoded><![CDATA[<p>There has recently been a lot of discussion around KML becoming part of the OGC and the future of GeoRSS and KML. Will GeoRSS use KML payloads, or vice versa? Will one just subsume the other? After speaking with a bunch of people at Where, and also thinking about various announcements and talks given by Google-ites, Geo-ers, and standards makers, I&#8217;m proposing the following practice for using GeoRSS and KML together along with other formats. </p>
<p>In the talk announcing KML submission to OGC, the phrase &#8220;KML is HTML for the geospatial web&#8221; was used. I think this is a perfectly apt analogy. To complete the analogy, (taking you back to your SAT days)</p>
<blockquote><p>
    HTML : RSS :: KML : GeoRSS
</p></blockquote>
<p>The purpose of the following examples is to illustrate the use of GeoRSS to syndicate KML content, similar to RSS support in HTML. GeoRSS merely adds a geographic component to the common RSS that syndicates web content. KML similarly offers a geospatial alternative representation of HTML content. </p>
<h3>Syndication</h3>
<p>Therefore, as appropriate, GeoRSS should be used based on existing usages of RSS. This means providing a rel=&#8221;alternate&#8221; link in both HTML and KML files. Conversely, an Atom or RSS feed requires use of a &#8216;link&#8217; element to reference the originating content of the syndication. A rel=&#8221;alternate&#8221; can then be used in a GeoRSS feed to reference the KML version of that content. </p>
<p>Within a GeoRSS file, the entire feed, or channel, can link to the content in type=&#8221;text/html&#8221; and type=&#8221;application/vnd.google-earth.kml+xml&#8221;. Within a single entry, the GeoRSS feed can then link to the specific anchor, or element, within the original HTML or KML content using an anchor in the href. </p>
<div id="example_rss">
<em>kml_georss.rss</em></p>
<pre>
<span class="punct">&lt;?</span><span class="tag">xml</span> <span class="attribute">version</span><span class="punct">=&quot;</span><span class="string">1.0</span><span class="punct">&quot;</span> <span class="attribute">encoding</span><span class="punct">=&quot;</span><span class="string">utf-8</span><span class="punct">&quot;?&gt;</span>
<span class="punct">&lt;</span><span class="tag">feed</span> <span class="attribute">xmlns</span><span class="punct">=&quot;</span><span class="string">http://www.w3.org/2005/Atom</span><span class="punct">&quot;&gt;</span>
  <span class="punct">&lt;</span><span class="tag">title</span><span class="punct">&gt;</span>KML GeoRSS Example<span class="punct">&lt;/</span><span class="tag">title</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">link</span> <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/</span><span class="punct">&quot;/&gt;</span>
  <span class="punct">&lt;</span><span class="tag">updated</span><span class="punct">&gt;</span>2007-06-04T12:34:02Z<span class="punct">&lt;/</span><span class="tag">updated</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">author</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">name</span><span class="punct">&gt;</span>Andrew Turner<span class="punct">&lt;/</span><span class="tag">name</span><span class="punct">&gt;</span>
  <span class="punct">&lt;/</span><span class="tag">author</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">id</span><span class="punct">&gt;</span>urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6<span class="punct">&lt;/</span><span class="tag">id</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">link</span> <span class="attribute">rel</span><span class="punct">=&quot;</span><span class="string">alternate</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">test/html</span><span class="punct">&quot;</span>
    <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/</span><span class="punct">&quot;/&gt;</span>
  <span class="punct">&lt;</span><span class="tag">link</span> <span class="attribute">rel</span><span class="punct">=&quot;</span><span class="string">alternate</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">application/vnd.google-earth.kml+xml</span><span class="punct">&quot;</span>
    <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/kml_georss.kml</span><span class="punct">&quot;/&gt;</span>

  <span class="punct">&lt;</span><span class="tag">entry</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">title</span><span class="punct">&gt;</span>This is my first article<span class="punct">&lt;/</span><span class="tag">title</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">link</span> <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/2007/06/04/article</span><span class="punct">&quot;/&gt;</span>
    <span class="punct">&lt;</span><span class="tag">id</span><span class="punct">&gt;</span>urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a<span class="punct">&lt;/</span><span class="tag">id</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">updated</span><span class="punct">&gt;</span>2003-12-13T18:30:02Z<span class="punct">&lt;/</span><span class="tag">updated</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">summary</span><span class="punct">&gt;</span>
      KML is the HTML of the geospatial web, used to visualize content, and GeoRSS is the syndication of that content. 

      While you're here, make sure to check out my <span class="punct">&lt;</span><span class="tag">a</span> <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/myspots.kml#favoritepark</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">application/vnd.google-earth.kml+xml kml</span><span class="punct">&quot;&gt;</span>favorite park<span class="punct">&lt;/</span><span class="tag">a</span><span class="punct">&gt;</span>.
    <span class="punct">&lt;/</span><span class="tag">summary</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">link</span> <span class="attribute">rel</span><span class="punct">=&quot;</span><span class="string">alternate</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">application/vnd.google-earth.kml+xml</span><span class="punct">&quot;</span>
     <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/kml_georss.kml#article1</span><span class="punct">&quot;/&gt;</span>
  <span class="punct">&lt;/</span><span class="tag">entry</span><span class="punct">&gt;</span>
<span class="punct">&lt;/</span><span class="tag">feed</span><span class="punct">&gt;</span>
</pre>
</div>
<h3>Documentation</h3>
<p>Within an HTML file, the &lt;head&gt; element can contain alternate links to the KML representation as well as the GeoRSS syndication. Similarly, KML 2.2 can contain an &lt;atom:link&gt; alternate representation back to the original HTML content and GeoRSS syndication of the geospatial information. By using these links, a resource can offer multiple formats as appropriate, syndication for alerting users of updates to the content, or visualization for a richer geospatial view. </p>
<p>For a specific KML Placemark, an &lt;atom:link&gt; can be used to link to the original HTML element using the anchor support in the href. Conversely, the HTML element, similar to a GeoRSS item, can use an &lt;a&gt; element to link to the specific KML Placemark representation. This similarly allows for the documentation element to reference the richer visualization of the feature. Clicking this link would either launch a KML viewer, or the original HTML renderer could render the KML element inline, within the browser. </p>
<div id="example_html">
<em>kml_georss.html</em></p>
<pre>
&lt;html&gt;
&lt;head&gt;
  &lt;title&gt;KML GeoRSS Example&lt;/title&gt;
  &lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot;
    href=&quot;http://example.org/kml_georss.rss&quot; title=&quot;GeoRSS feed for My Page&quot;&gt;
  &lt;link rel=&quot;alternate&quot; type=&quot;application/vnd.google-earth.kml+xml&quot;
    href=&quot;http://example.org/kml_georss.kml&quot;/&gt;
&lt;/head&gt;

&lt;body id=&quot;kml_georss&quot;&gt;
    &lt;h1&gt;Example of KML, GeoRSS, and HTML being used together&lt;/h1&gt;

    &lt;h2 id=&quot;article1&quot;&gt;This is my first article&lt;/h2&gt;
    &lt;p&gt;KML is the HTML of the geospatial web, used to visualize content, and GeoRSS is the syndication of that content. 

      While you're here, make sure to check out my &lt;a href=&quot;http://example.org/myspots.kml#favoritepark&quot;    type=&quot;application/vnd.google-earth.kml+xml&quot;&gt;favorite park&lt;/a&gt;.
    &lt;/p&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
</div>
<p>Notice that by using the <em>type</em> attribute in the &lt;a&gt; we can link to other KML elements, similar to an HTML document linking to elements in other HTML documents. </p>
<h3>Visualization</h3>
<div id="example_kml">
<em>kml_georss.kml</em></p>
<pre>
<pre>
<span class="punct">&lt;?</span><span class="tag">xml</span> <span class="attribute">version</span><span class="punct">=&quot;</span><span class="string">1.0</span><span class="punct">&quot;</span> <span class="attribute">encoding</span><span class="punct">=&quot;</span><span class="string">UTF-8</span><span class="punct">&quot;?&gt;</span>
<span class="punct">&lt;</span><span class="tag">kml</span> <span class="attribute">xmlns</span><span class="punct">=&quot;</span><span class="string">http://earth.google.com/kml/2.2</span><span class="punct">&quot;</span> <span class="namespace">xmlns</span><span class="punct">:</span><span class="attribute">atom</span><span class="punct">=&quot;</span><span class="string">http://www.w3.org/2005/Atom</span><span class="punct">&quot;&gt;</span>
<span class="punct">&lt;</span><span class="tag">Document</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">name</span><span class="punct">&gt;</span>kml_georss.kml<span class="punct">&lt;/</span><span class="tag">name</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">text/html</span><span class="punct">&quot;</span>
    <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.com</span><span class="punct">&quot;</span> <span class="attribute">title</span><span class="punct">=&quot;</span><span class="string">My Page</span><span class="punct">&quot;&gt;&lt;/</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span> <span class="attribute">rel</span><span class="punct">=&quot;</span><span class="string">alternate</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">application/rss+xml</span><span class="punct">&quot;</span>
    <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.com/kml_georss.rss</span><span class="punct">&quot;</span> <span class="attribute">title</span><span class="punct">=&quot;</span><span class="string">GeoRSS feed for My Page</span><span class="punct">&quot;&gt;&lt;/</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span><span class="punct">&gt;</span>
  <span class="punct">&lt;</span><span class="tag">Placemark</span> <span class="attribute">id</span><span class="punct">=&quot;</span><span class="string">article1</span><span class="punct">&quot;&gt;</span>
    <span class="punct">&lt;</span><span class="tag">name</span><span class="punct">&gt;</span>This is my first article<span class="punct">&lt;/</span><span class="tag">name</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">author</span><span class="punct">&gt;</span>
      <span class="punct">&lt;</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">name</span><span class="punct">&gt;</span>Andrew Turner<span class="punct">&lt;/</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">name</span><span class="punct">&gt;</span>
    <span class="punct">&lt;/</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">author</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span> <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/kml_georss.html#article1</span><span class="punct">&quot;&gt;&lt;/</span><span class="namespace">atom</span><span class="punct">:</span><span class="tag">link</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">description</span><span class="punct">&gt;</span>
      KML is the HTML of the geospatial web, used to visualize content, and GeoRSS is the syndication of that content. 

      While you're here, make sure to check out my <span class="punct">&lt;</span><span class="tag">a</span> <span class="attribute">href</span><span class="punct">=&quot;</span><span class="string">http://example.org/myspots.kml#favoritepark</span><span class="punct">&quot;</span> <span class="attribute">type</span><span class="punct">=&quot;</span><span class="string">application/vnd.google-earth.kml+xml</span><span class="punct">&quot;&gt;</span>favorite park<span class="punct">&lt;/</span><span class="tag">a</span><span class="punct">&gt;</span>.
    <span class="punct">&lt;/</span><span class="tag">description</span><span class="punct">&gt;</span>
    <span class="punct">&lt;</span><span class="tag">Point</span><span class="punct">&gt;</span>
      <span class="punct">&lt;</span><span class="tag">coordinates</span><span class="punct">&gt;</span>-122.370533,37.823842,0<span class="punct">&lt;/</span><span class="tag">coordinates</span><span class="punct">&gt;</span>
    <span class="punct">&lt;/</span><span class="tag">Point</span><span class="punct">&gt;</span>
  <span class="punct">&lt;/</span><span class="tag">Placemark</span><span class="punct">&gt;</span>
<span class="punct">&lt;/</span><span class="tag">Document</span><span class="punct">&gt;</span>
<span class="punct">&lt;/</span><span class="tag">kml</span><span class="punct">&gt;</span>
</pre>
</div>
<p>Together, these suggestions allow for parallel use of KML and HTML for content, and GeoRSS for syndication (notification of updates) to that content. It keeps the GeoRSS as a pure markup of the new information, and keeps styling information in HTML and KML. </p>
<p>Here is a spiffy diagram to help illustrate linking the documents and articles together:</p>
<p><img src="http://highearthorbit.com/wp-content/uploads/2007/06/kml_georss-diagram.png" alt="GeoRSS, KML, HTML interoperability"/>  </p>
<p>A last consideration about linking HTML content and KML content. Both formats are merely markups for storing and rendering information and not bound to a specific renderer (e.g. Firefox or GoogleEarth). However, it is still beneficial to link to a richer geospatial markup from an HTML file. &lt;a&gt; elements can optionally utilize the type attribute to specify the link follows to a KML file. It should explicitly noted that opening a link to a KML type should not necessarily open in GoogleEarth. Again, KML is just a richer geospatial markup of information. </p>
<p>For example, if a user is viewing a location from a GeoRSS file loaded in a 2D map representation, and link in the content points to a KML type, clicking this link should first open the location in the same 2D map representation. If the link is clicked in an HTML file, the appropriate MIME-type handler should be invoked. This is similar to a user clicking a link in an HTML document and opening the link in the HTML renderer. </p>
<p>Depending on the 2D map rendered, an optional "view in 3D" link could be offered to open the Placemark in GoogleEarth or other KML renderer. </p>
<h3>OpenSearch</h3>
<p>This proposal is just a suggestion, and doesn't require a change to any of the included formats. In fact, it is just a recommendation for a common usage of these formats to provide for better user experience and linking together your content. Additionally, my <a href="http://highearthorbit.com/opensearch-geo-and-time-extensions/" title="HighEarthOrbit: OpenSearch Geo">previous discussion on OpenSearch Geo</a> fits perfectly with this as you can specify search mechanism for the same content-types. So if you just want the recent changes, request the RSS. Then you could use those results (page) to query specific KML rich placemarks for visualizing. </p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/a-proposal-georss-kml/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>GeoTruc &#8211; standards tool</title>
		<link>http://highearthorbit.com/geotruc-standards-tool/</link>
		<comments>http://highearthorbit.com/geotruc-standards-tool/#comments</comments>
		<pubDate>Tue, 22 May 2007 15:23:51 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/geotruc-standards-tool/</guid>
		<description><![CDATA[Mickaël &#8216;Korbinus&#8217; Graf has released an improved geo:truc. If you haven&#8217;t tried it yet, geo:truc is a great and simple service for generating the GeoData markup in currently 8 different formats: Machine tags, geo Microformat, GeoJSON, GeoRSS (GML), GeoRSS (simple), HTML, KML, and GeoRSS-W3C.
To use it you can just click on the map, or enter [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.korbinus.net" rel="coworker">Mickaël &#8216;Korbinus&#8217; Graf</a> has <a href="http://www.korbinus.net/blog/?p=18">released</a> an improved <a href="http://geotruc.net" title="GeoTruc">geo:truc</a>. If you haven&#8217;t tried it yet, <a href="http://geotruc.net" title="GeoTruc">geo:truc</a> is a great and simple service for generating the GeoData markup in currently 8 different formats: Machine tags, geo Microformat, GeoJSON, GeoRSS (GML), GeoRSS (simple), HTML, KML, and GeoRSS-W3C.</p>
<p>To use it you can just click on the map, or enter a location in the form field. Then click on the link for the format you want to see. Read more about it on <a href="http://www.korbinus.net/blog/?p=18">Mickaël&#8217;s blog</a>. One of the neatest improvements, and very useful for integrating into another application, is the webservice:</p>
<ul>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=georss" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=georss</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=w3cgeo" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=w3cgeo</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=machine" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=machine</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=geo" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=geo</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=geojson" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=geojson</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=gml" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=gml</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=html" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=html</a></li>
<li><a href="http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=kml" target="_new">http://geotruc.net/gt.php?q=Detroit,%20Michigan&#038;format=kml</a></li>
</ul>
<p>What is really great about <a href="http://geotruc.net" title="GeoTruc">geo:truc</a> is that it provides a very simple and easy to use tool for users to get somewhat complex information. I believe his primary purpose was to provide scientists a mechanism for geocoding their specimen identification experiments. These are non-GIS users who want to store geographic information. Now, they can do it and include it on their websites/documents and share with the world.</p>
<p>But why <em>geo:truc</em>? Mickaël&#8217;s reasoning behind the name explains it very well:</p>
<blockquote><p>
&#8220;Truc&#8221; is a french word meaning an undefined thing, so I joked by calling it &#8220;geo:truc&#8221;.
</p></blockquote>
<p class="tags">Tags: <a href="http://technorati.com/tag/geo" title="See the Technorati tag page for 'geo'." rel="tag">geo</a>, <a href="http://technorati.com/tag/neogeography" title="See the Technorati tag page for 'neogeography'." rel="tag">neogeography</a>, <a href="http://technorati.com/tag/geodata" title="See the Technorati tag page for 'geodata'." rel="tag">geodata</a>, <a href="http://technorati.com/tag/formats" title="See the Technorati tag page for 'formats'." rel="tag">formats</a>, <a href="http://technorati.com/tag/geotruc" title="See the Technorati tag page for 'geotruc'." rel="tag">geotruc</a>, <a href="http://technorati.com/tag/micka%C3%ABlgraf" title="See the Technorati tag page for 'mickaëlgraf'." rel="tag">mickaëlgraf</a>, <a href="http://technorati.com/tag/korbinus" title="See the Technorati tag page for 'korbinus'." rel="tag">korbinus</a>, <a href="http://technorati.com/tag/standards" title="See the Technorati tag page for 'standards'." rel="tag">standards</a>, <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/w3c" title="See the Technorati tag page for 'w3c'." rel="tag">w3c</a>, <a href="http://technorati.com/tag/kml" title="See the Technorati tag page for 'kml'." rel="tag">kml</a>, <a href="http://technorati.com/tag/machinetags" title="See the Technorati tag page for 'machinetags'." rel="tag">machinetags</a>, <a href="http://technorati.com/tag/html" title="See the Technorati tag page for 'html'." rel="tag">html</a>, <a href="http://technorati.com/tag/gml" title="See the Technorati tag page for 'gml'." rel="tag">gml</a>, <a href="http://technorati.com/tag/geojson" title="See the Technorati tag page for 'geojson'." rel="tag">geojson</a>, <a href="http://technorati.com/tag/webservice" title="See the Technorati tag page for 'webservice'." rel="tag">webservice</a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/geotruc-standards-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeoRSS site rebooted</title>
		<link>http://highearthorbit.com/georss-site-rebooted/</link>
		<comments>http://highearthorbit.com/georss-site-rebooted/#comments</comments>
		<pubDate>Tue, 01 May 2007 13:47:46 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/georss-site-rebooted/</guid>
		<description><![CDATA[As I posted on the GeoRSS Blog, we just recently relaunched the site using a CMS. Specifically, we&#8217;re using Drupal because of its excellent support of geospatial standards (and being the one who did the migration, it was very easy to setup &#8211; there are definitely other great GeoCMSs out there).
One of the main purposes [...]]]></description>
			<content:encoded><![CDATA[<p>As I posted on the <a href="http://georss.org/blog/2007/04/30/georss-site-rebooted-now-with-drupal/" title="GeoRSS Site Rebooted - now with Drupal">GeoRSS Blog</a>, we just recently relaunched the site using a CMS. Specifically, we&#8217;re using Drupal because of its excellent support of geospatial standards (and being the one who did the migration, it was very easy to setup &#8211; there are definitely other <a href="http://my.joomla.free.fr/index.php?option=com_newsfeeds&#038;catid=21&#038;Itemid=40" title="Joomla GeoRSS library">great</a> <a href="http://www.midgard-project.org/" title="Midgard CMS">GeoCMS</a>s out there).</p>
<p>One of the main purposes behind moving to a more dynamic CMS was to involve the community in helping to document and forward the standard. Since there are now more people interested in GeoRSS, there have been lots of questions on format, examples, libraries, and so on that can now be easily added to the site. </p>
<p>In addition, there are typically very long discussions on email on adding new features to the standard. These usually get a really good discussion going, but then kind of fade out without any resolution. While it&#8217;s good for a standard to be &#8217;stable&#8217;, it&#8217;s not good for it to be &#8217;stagnant&#8217; &#8211; or just overly frustrate people who are trying to extend it.</p>
<p>Therefore, we&#8217;re trying out a new process by which anyone can <a href="http://georss.org/proposals" title="GeoRSS Proposals">add a Proposal</a> for extension to GeoRSS. The community can comment and finally vote on it (any member of the community can vote, this means you too!). Even if the proposal is not accepted, the proposal remains as a central point of documentation of the discussion, decision, reasons, and how users implemented the standard for their own uses (you still need to finish your projects).</p>
<p>Then, if and when the proposed addition is accepted, the page can serve as documentation on how to migrate from the proposed format to the finally accepted format.</p>
<p>Anyways, hop on over to the new <a href="http://georss.org" title="GeoRSS homepage">GeoRSS Site</a>, let me know if you see anything &#8216;funny&#8217; (e.g. missing images, dead links, etc.) and get yourself an account (they&#8217;re free and come with a scoop of ice cream).</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/georss-site-rebooted/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google GeoRSS &amp; Open-Source map utilities</title>
		<link>http://highearthorbit.com/google-georss-open-source-map-utilities/</link>
		<comments>http://highearthorbit.com/google-georss-open-source-map-utilities/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 14:52:24 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/google-georss-open-source-map-utilities/</guid>
		<description><![CDATA[I was gone for 5 days to the Ontario Curling Association&#8217;s Colts Provincial Playdowns, the top-tier competition after playing down against 130 other curling teams. We held our own, but the competition was very stiff. 
It was a tough time to be away, a lot of amazing news came out. First and foremost is that [...]]]></description>
			<content:encoded><![CDATA[<p>I was gone for 5 days to the <a href="http://www.ontcurl.com/index.html?loc=4&amp;lsubnav=41&amp;main=info&amp;url=scores/scores&amp;upper=subnav&amp;navid=0405&amp;step=standings">Ontario Curling Association&#8217;s Colts Provincial Playdowns</a>, the top-tier competition after playing down against 130 other curling teams. We held our own, but the competition was very stiff. </p>
<p>It was a tough time to be away, a <em>lot</em> of amazing news came out. First and foremost is that <a href="http://googlemapsapi.blogspot.com/2007/03/kml-and-georss-support-added-to-google.html" title="GoogleMaps API Blog: KML and GeoRSS support added to GoogleMaps">Google adds support</a> for <a href="http://georss.org/blog/?p=57" title="GeoRSS Blog: Google Supports GeoRSS!">GeoRSS</a>. This is exciting news because it demonstrates the maturity and interest in the syndication of geographic content in <a href="http://georss.org/geopress/" title="GeoPress WordPress Plugin">blogs</a>, <a href="http://www.midgard-project.org/api-docs/midcom/2.6/li_org.routamc.positioning.html" title="Midgard CMS Position Module">CMS</a>&#8217;s, sites, and <a href="http://mapufacture.com" title="Mapufacture">news</a>. </p>
<p>This will also add a little bit of more difficulty moving forward in GeoRSS. Now that a major company has added support, and assumedly a lot more developers will add support now as well, then the specification has to be much more cognizant of future changes, users, and upgrades. Before, the specification was really guided by the majority of developers using the standard itself. If some spec was changed, we all went out and updated our libraries. Now, however, we really need to denote versions, and how users can update their tools to accomodate both the new version and backwards compatibility. </p>
<p>On top of that exciting news, Google also open-sourced part of the GoogleMaps library. See the<br />
<a href="http://code.google.com/p/gmaps-utility-library-dev/wiki/FrequentlyAskedQuestions" title="Google Code: GMaps Utility Library FAQ">gmaps-utility-library-dev FAQ</a>. Currently this is limited to the GMarkerManager, but demonstrates their interest in opening the library up for interesting projects, ideas, and hacks. </p>
<p class="tags">Tags: <a href="http://technorati.com/tag/googlemaps" title="See the Technorati tag page for 'googlemaps'." rel="tag">googlemaps</a>, <a href="http://technorati.com/tag/programming" title="See the Technorati tag page for 'programming'." rel="tag">programming</a>, <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/geo" title="See the Technorati tag page for 'geo'." rel="tag">geo</a>, <a href="http://technorati.com/tag/neogeography" title="See the Technorati tag page for 'neogeography'." rel="tag">neogeography</a>, <a href="http://technorati.com/tag/javascript" title="See the Technorati tag page for 'javascript'." rel="tag">javascript</a>, <a href="http://technorati.com/tag/open-source" title="See the Technorati tag page for 'open-source'." rel="tag">open-source</a>, <a href="http://technorati.com/tag/" title="See the Technorati tag page for ''." rel="tag"></a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/google-georss-open-source-map-utilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GeoRSS Implementation Matrix</title>
		<link>http://highearthorbit.com/georss-implementation-matrix/</link>
		<comments>http://highearthorbit.com/georss-implementation-matrix/#comments</comments>
		<pubDate>Fri, 02 Mar 2007 22:40:54 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/georss-implementation-matrix/</guid>
		<description><![CDATA[The GeoRSS community has had a rapid-fire discussion on formats, standards, future and current status of some of the features in GeoRSS. One of the major points that has come out is the importance of reference implementations, or common libraries other developers can drop into their projects to add GeoRSS support in all its multitude [...]]]></description>
			<content:encoded><![CDATA[<p>The GeoRSS community has had a rapid-fire discussion on formats, standards, future and current status of some of the features in GeoRSS. One of the major points that has come out is the importance of reference implementations, or common libraries other developers can drop into their projects to add GeoRSS support in all its multitude of flavors. </p>
<p>To this end, I started up a <a href="http://georss.org/trac/trac.cgi/wiki/ImplementationMatrix" title="GeoRSS Implementation Matrix">GeoRSS Implementation Matrix</a>. Please let me know what other libraries exist for consuming or publishing (I probably need to add that distinction to the matrix) GeoRSS and what formats it supports. </p>
<p>Hopefully we should soon be able to point developers at libraries they can use, or at least reference, for using GeoRSS and at a higher level we could point users and devs to existing modules (such as for blog and CMS engines) that they can use in their apps. </p>
<p class="tags">Tags: <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/format" title="See the Technorati tag page for 'format'." rel="tag">format</a>, <a href="http://technorati.com/tag/standards" title="See the Technorati tag page for 'standards'." rel="tag">standards</a>, <a href="http://technorati.com/tag/" title="See the Technorati tag page for ''." rel="tag"></a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/georss-implementation-matrix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GeoRSS Location Collections?</title>
		<link>http://highearthorbit.com/georss-location-collections/</link>
		<comments>http://highearthorbit.com/georss-location-collections/#comments</comments>
		<pubDate>Tue, 27 Feb 2007 19:18:07 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/georss-location-collections/</guid>
		<description><![CDATA[There is a discussion that crops up every once in awhile on the GeoRSS mailing list whether it is useful or appropriate to support &#8216;multiple locations&#8217; in a single RSS item. 
For example, currently you can only embed a single point, line, or polygon in GeoRSS Simple: 


45.256 -71.92


GML adds a bunch of features, but [...]]]></description>
			<content:encoded><![CDATA[<p>There is a discussion that crops up every once in awhile on the GeoRSS mailing list whether it is useful or appropriate to support &#8216;multiple locations&#8217; in a single RSS item. </p>
<p>For example, currently you can only embed a single point, line, or polygon in GeoRSS Simple: </p>
<p><code></p>
<pre>
<georss:point>45.256 -71.92</georss:point>
</pre>
<p></code></p>
<p>GML adds a bunch of features, but &#8220;location collection&#8221; still isn&#8217;t one of them. </p>
<p>What this means is, every item can have one, and only one, location. But what happens if you are, for example, writing about all of the hospitals in a city, or telling about your trip and a couple of hikes or cities you visited?</p>
<p>I would like to see something along the lines of this as a <em>pseudo-example</em>:</p>
<pre><code>
<entry>

     <summary>We had a great time in
<div id="Auckland">Auckland</a> and
<div id="Hokitika">Hokitika</a>.</summary>
     <georss:where>
          <georss:point references="Auckland">-38.333332,176.00</georss:point>
          <georss:point references="Hokitika">-42.709,170.97</georss:point>
     <georss:where>
</entry>
</code></pre>
<p>GeoRSS doesnt&#8217; currently support that type of functionality. The current solution is to put each of these locations in a separate item, but that isn&#8217;t really coincident with the idea that you&#8217;re writing a single &#8216;item&#8217;. </p>
<p>Another possible solution is to use Microformats within the post content to actually markup the locations or tracks, but that doesn&#8217;t really solve the problem since Microformat adr and geo have a hard time specifying the associated content, and it definitely doesn&#8217;t handle complex geometries like line or polygon. </p>
<p>GeoRSS is an open-standard, it is live and changing, and open for discussion. However, like any decent standard it is built on what users want and use. And working with GeoPress, I&#8217;ve been constantly, and pleasantly, surprised what some people are using geoblogs for that I wouldn&#8217;t have originally thought of.</p>
<h3>SMS your vote in now</h3>
<p>So my question to you is, do you see a need for this type of functionality? What do you currently do? Or am I just chasing an arbitrary idea?</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/question" title="See the Technorati tag page for 'question'." rel="tag">question</a>, <a href="http://technorati.com/tag/lazyweb" title="See the Technorati tag page for 'lazyweb'." rel="tag">lazyweb</a>, <a href="http://technorati.com/tag/geo" title="See the Technorati tag page for 'geo'." rel="tag">geo</a>, <a href="http://technorati.com/tag/formats" title="See the Technorati tag page for 'formats'." rel="tag">formats</a>, <a href="http://technorati.com/tag/standards" title="See the Technorati tag page for 'standards'." rel="tag">standards</a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/georss-location-collections/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>iCommunity.tv &#8211; located media news</title>
		<link>http://highearthorbit.com/icommunitytv-located-media-news/</link>
		<comments>http://highearthorbit.com/icommunitytv-located-media-news/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 14:59:32 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/icommunitytv-located-media-news/</guid>
		<description><![CDATA[Chris Haller has recently released a very cool new localized news video site, iCommunity.tv. The site allows users to upload and geotag videos of their own news media around the world.
iCommunity.tv is a fore-runner in providing video media primarily centered around geography in addition to focusing on citizen journalism , and not just videos of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://highearthorbit.com/wp-content/uploads/2007/02/icommunitytv.jpg" title="iCommunity.tv homepage" class="thumb"><img src="http://highearthorbit.com/wp-content/uploads/2007/02/icommunitytv.thumbnail.jpg" alt="iCommunity.tv homepage" align="right" hspace="5px" vspace="5px"></a><a href="http://blog.eparticipation.com/index.php?/authors/1-Chris-Haller">Chris Haller</a> has recently released a very cool new localized news video site, <a href="http://icommunity.tv/" title="iCommunity.tv">iCommunity.tv</a>. The site allows users to upload and geotag videos of their own news media around the world.</p>
<p>iCommunity.tv is a fore-runner in providing video media primarily centered around geography in addition to focusing on <a href="http://icommunity.tv/citizenjournalism" title="iCommunity.tv: What is citizen journalism?">citizen journalism</a> , and not just videos of crazy stunts and movies served up by other media sites. Users can create custom channels and collections based on their interests and locations.</p>
<p>They offer a GeoRSS feed and a KML feed of the postings &#8211; which means it works very well in your <a href="http://mapufacture.com">Mapufacture Maps</a>. See the <a href="http://mapufacture.com/georss/feed/show/876" title="Mapufacture: Latest News - iCommunity.TV">feed map</a>. Now you can add the feed to any of your Mapufacture maps to get update when a new video shows up in your community (or area of interest, for example where your family lives or you&#8217;re going to take a vacation)</p>
<p>Lastly, under the hood, iCommunity.tv is built on top of the <a href="http://drupal.org" title="Drupal homepage">Drupal CMS platform</a> and is an excellent example of the power behind building a GeoCMS. In the future, Chris possibly plans to offer the ability for users to aggregate their video blogs through the service to allow for easier posting.</p>
<p>iCommunity.TV is a service of <a href="http://eParticipation.com">eParticipation.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/icommunitytv-located-media-news/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>More Geoblogging tools: ecto and Geo-Blogging Toolkit</title>
		<link>http://highearthorbit.com/more-geoblogging-tools-ecto-and-geo-blogging-toolkit/</link>
		<comments>http://highearthorbit.com/more-geoblogging-tools-ecto-and-geo-blogging-toolkit/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 15:30:16 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Maps]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/more-geoblogging-tools-ecto-and-geo-blogging-toolkit/</guid>
		<description><![CDATA[While traveling, its nice to be able to blog from a desktop application like ecto or MarsEdit. However, when you want to &#8220;geoblog&#8221;, you want to add some more metadata than just the title, content, and some tags. 
Geoblogging is just becoming more common, and the tools around it are figuring out what the user [...]]]></description>
			<content:encoded><![CDATA[<p>While traveling, its nice to be able to blog from a desktop application like <a href="http://ecto.kung-foo.tv/">ecto</a> or <a href="http://ranchero.com/marsedit/">MarsEdit</a>. However, when you want to &#8220;geoblog&#8221;, you want to add some more metadata than just the title, content, and some tags. </p>
<p>Geoblogging is just becoming more common, and the tools around it are figuring out what the user should be able to do. <a href="http://georss.org/geopress">GeoPress</a> provides a web interface for making maps and location for posts, but doesn&#8217;t <em>yet</em> support additional metadata for setting the location via the XML-RPC interface that a blogging client would use. </p>
<p>One tool that adds geoblogging capabilities to ecto is this very informative Wiki on <a href="http://confluence.rave.ac.uk/confluence/display/SCIRC/Geo-Blogging">Geo-blogging extensions on Mac</a> that works for <a href="http://wiki.blojsom.com/wiki/display/blojsom/About+blojsom">Blojsom</a> based blogs. The site is a great resource on various tools and accessories for posting KML and GoogleEarth and GoogleMaps for geoblogging. </p>
<p>The tool works by bringing up GoogleEarth where you can spin, point, or reference an existing waypoint to choose the posting location. The plugin will then add the location metadata, a GoogleEarth KML Link, and also a screenshot of the location. Check out the <a href="http://confluence.rave.ac.uk/confluence/display/SCIRC/Geo-Blogging+Tool+Kit+-+Screencast+demo">Screencast</a> for a demo of how to use the geoblogging toolkit and its functionality. </p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/more-geoblogging-tools-ecto-and-geo-blogging-toolkit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s &#8216;Geographic Web&#8217; and conflicting interfaces</title>
		<link>http://highearthorbit.com/googles-geographic-web-and-conflicting-interfaces/</link>
		<comments>http://highearthorbit.com/googles-geographic-web-and-conflicting-interfaces/#comments</comments>
		<pubDate>Tue, 12 Dec 2006 20:05:05 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/googles-geographic-web-and-conflicting-interfaces/</guid>
		<description><![CDATA[Brady points out on O&#8217;Reilly Radar some of the new layers in GoogleEarth. Most interesting though is his recap of feedback from Flickr&#8217;s Dan Catt on why Google isn&#8217;t currently displaying Flickr photos (despite perhaps the obvious that (Flickr! < Yahoo!) != Google).  
His claim is that they take their bounding box parameters in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://radar.oreilly.com/archives/2006/12/googles_geograp.html" title="O'Reilly Radar: Google's Geographic Layer Permalink">Brady points out on O&#8217;Reilly Radar</a> some of the new layers in GoogleEarth. Most interesting though is his recap of feedback from Flickr&#8217;s Dan Catt on why Google isn&#8217;t currently displaying Flickr photos (despite perhaps the obvious that (Flickr! < Yahoo!) != Google).  </p>
<p>His claim is that they take their bounding box parameters in different order: bbox=x1,y1,x2,y2. vs. box=x1,y1,x2,y2. However, based on my research of the API's, they look comparable. For example, Google Earth's <a href="http://earth.google.com/kml/kml_tut.html#refresh_queries" title="KML Tutorial: refresh queries">view based refresh</a> will do a bounding box request: </p>
<p>  <code>longitude_west, latitude_south, longitude_east, latitude_north</code></p>
<p>and the Flickr <a href="http://www.flickr.com/services/api/flickr.photos.search.html" title="Flickr API: search">photo search expects</a> the following BBox:</p>
<p> <code>minimum_longitude, minimum_latitude, maximum_longitude, maximum_latitude</code></p>
<p>You can see that <code>minimum_longitude</code> is the same parameter as <code>longitude_west</code>, and so on. So I&#8217;m not sure why Dan Catt uses that as his explanation that the parameters don&#8217;t line up. </p>
<p>However, as Brady points out, what would really help everyone is if the services all spoke common languages, like Flickr outputting KML, or GoogleEarth consuming GeoRSS (since Flickr can output GeoRSS). My money would be on the latter, since there seems less impetus for a company like Flickr/Yahoo to export their data in a proprietary format. </p>
<p>Of course, the translation between the two formats, especially for basic geometry such as points, is trivial, so implementing both on both sides, or simple conversion utilities in the middle, would be straight-forward. </p>
<h3>Extra Credit</h3>
<p>For extra credit, implement said conversion utility to convert KML <=> GeoRSS using XSLT, or other language of your choice.</p>
<p>There are also various other Flickr/GoogleEarth utilities out there like <a href="http://www.beaugunderson.com/flickr/">displaying grids of  the # of Flickr images</a> in GoogleEarth. </p>
<h3>Pleasant Surprise</h3>
<p>While researching parts of this post, I found a new Flickr API method that I didn&#8217;t know existed before:</p>
<p><a href="http://www.flickr.com/services/api/flickr.photos.getWithGeoData.html">flickr.photos.getWithGeoData</a>  &#8211; &#8220;Returns a list of your geo-tagged photos.&#8221; However, you can&#8217;t do a search within this set other than by date. But at least now you can pull up a trail of your travels based on your photos. </p>
<p>&#8220;Where were you on the night of the 13th?!&#8221;</p>
<p>In the past, when using my Feed URL to get geotagged photos, I just made sure that photos had a tag &#8220;geotagged&#8221; and then grabbed all the photos with that tag. </p>
<p class="tags">Tags: <a href="http://technorati.com/tag/flickr" title="See the Technorati tag page for 'flickr'." rel="tag">flickr</a>, <a href="http://technorati.com/tag/google" title="See the Technorati tag page for 'google'." rel="tag">google</a>, <a href="http://technorati.com/tag/googleearth" title="See the Technorati tag page for 'googleearth'." rel="tag">googleearth</a>, <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/kml" title="See the Technorati tag page for 'kml'." rel="tag">kml</a>, <a href="http://technorati.com/tag/standards" title="See the Technorati tag page for 'standards'." rel="tag">standards</a>, <a href="http://technorati.com/tag/" title="See the Technorati tag page for ''." rel="tag"></a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/googles-geographic-web-and-conflicting-interfaces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>GeoRSS Metadata</title>
		<link>http://highearthorbit.com/georss-metadata/</link>
		<comments>http://highearthorbit.com/georss-metadata/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 21:41:54 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoPress]]></category>
		<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/georss-metadata/</guid>
		<description><![CDATA[Check out my post on GeoRSS Metadata over at the GeoRSS blog. Looking for some feedback and ideas on how to use the featuretypetag and relationshiptag elements of a GeoRSS entry. We&#8217;d like to put something into GeoPress to support them, but need to know what users would expect and want to use to refer [...]]]></description>
			<content:encoded><![CDATA[<p>Check out my post on <a href="http://www.georss.org/blog/?p=47" title="GeoRSS Metadata" rel="me">GeoRSS Metadata</a> over at the GeoRSS blog. Looking for some feedback and ideas on how to use the <code>featuretypetag</code> and <code>relationshiptag</code> elements of a GeoRSS entry. We&#8217;d like to put something into <a href="http://georss.org/geopress" title="GeoPress" rel="me">GeoPress</a> to support them, but need to know what users would expect and want to use to refer to locations and tag them.</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/geopress" title="See the Technorati tag page for 'geopress'." rel="tag">geopress</a>, <a href="http://technorati.com/tag/geo" title="See the Technorati tag page for 'geo'." rel="tag">geo</a>, <a href="http://technorati.com/tag/metadata" title="See the Technorati tag page for 'metadata'." rel="tag">metadata</a>, <a href="http://technorati.com/tag/feedback" title="See the Technorati tag page for 'feedback'." rel="tag">feedback</a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/georss-metadata/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dan Catt on Flickr Map features</title>
		<link>http://highearthorbit.com/dan-catt-on-flickr-map-features/</link>
		<comments>http://highearthorbit.com/dan-catt-on-flickr-map-features/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 19:03:00 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Geo]]></category>
		<category><![CDATA[GeoRSS]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/dan-catt-on-flickr-map-features/</guid>
		<description><![CDATA[Dan Catt (of Geobloggers fame &#8211; now at Yahoo) talks about 3 hidden (less known) features of Flickr Maps.
Specifically, he outlines how to get photos at a location by a simple url:
http://www.flickr.com/map/Detroit
Flickr outputs proper Microformats geo for latitude &#038; longitude.
And you can get a GeoRSS feed (more on this soon).
Tags: flickr, yahoo, maps, geo, georss, [...]]]></description>
			<content:encoded><![CDATA[<p>Dan Catt (of Geobloggers fame &#8211; now at Yahoo) talks about <a href="http://geobloggers.com/archives/2006/10/31/three-hiddenish-flickr-map-features/" title="Hidden features in flickr map">3 hidden (less known) features of Flickr Maps</a>.</p>
<p>Specifically, he outlines how to get photos at a location by a simple url:<br />
<a href="http://www.flickr.com/map/Detroit">http://www.flickr.com/map/Detroit</a></p>
<p>Flickr outputs proper <a href="http://microformats.org/wiki/geo">Microformats geo</a> for latitude &#038; longitude.</p>
<p>And you can get a <a href="http://georss.org">GeoRSS</a> feed (more on this soon).</p>
<p class="tags">Tags: <a href="http://technorati.com/tag/flickr" title="See the Technorati tag page for 'flickr'." rel="tag">flickr</a>, <a href="http://technorati.com/tag/yahoo" title="See the Technorati tag page for 'yahoo'." rel="tag">yahoo</a>, <a href="http://technorati.com/tag/maps" title="See the Technorati tag page for 'maps'." rel="tag">maps</a>, <a href="http://technorati.com/tag/geo" title="See the Technorati tag page for 'geo'." rel="tag">geo</a>, <a href="http://technorati.com/tag/georss" title="See the Technorati tag page for 'georss'." rel="tag">georss</a>, <a href="http://technorati.com/tag/microformats" title="See the Technorati tag page for 'microformats'." rel="tag">microformats</a>, <a href="http://technorati.com/tag/photography" title="See the Technorati tag page for 'photography'." rel="tag">photography</a></p>]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/dan-catt-on-flickr-map-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arise the Geo bubble</title>
		<link>http://highearthorbit.com/arise-the-geo-bubble/</link>
		<comments>http://highearthorbit.com/arise-the-geo-bubble/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 22:01:41 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[GeoRSS]]></category>
		<category><![CDATA[Geolocation]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://highearthorbit.com/arise-the-geo-bubble/</guid>
		<description><![CDATA[With the rise of geographic-interest via map mashups, mobile location, and geotags, there is now a slew of sites rising up to start aggregating and collecting all the of the localized information and news. 
PlaceBlogger is apparently just about to start. It&#8217;s an aggregation of localized blogs. Blogs with posts about specific locations, like the [...]]]></description>
			<content:encoded><![CDATA[<p>With the rise of geographic-interest via map mashups, mobile location, and geotags, there is now a slew of sites rising up to start aggregating and collecting all the of the localized information and news. </p>
<p><a href="http://placeblogger.com/" title="PlaceBlogger">PlaceBlogger</a> is apparently just about to start. It&#8217;s an aggregation of localized blogs. Blogs with posts about specific locations, like the neighborhood or suburb rather than just a larger metro area &#8211; dubbed <em>hyperlocal</em>. You can see a <a href="http://fig.com/lisatmh/PlaceblogHome.r3.png" title="Placeblogger mockup">mockup here</a>. It&#8217;s like a Yahoo frontpage, but centered around neighborhoods or areas of interest. (<a href="http://susanmernit.blogspot.com/2006/10/placeblogging-gets-new-start-ups-or.html" title="Susan Mernit: Placeblogging gets new start-ups or Local will not die">via Susan Mernit</a</p>
<p>Another site is <a href="http://outside.in" title="Outside.in">outside.in</a> (<a href="http://www.stevenberlinjohnson.com/2006/10/introducing_out.html" title="Steven Berlin Johnson">read the announcement and some thoughts here</a>) which is already released and has data. At first it wasn&#8217;t quite apparent how to start contributing to the site or marking up locations. They refer to the GMAP format, but I&#8217;m not sure what that really means. </p>
<p>All of these sites and tools are really exciting. This is the purpose behind tools I&#8217;ve been working on like <a href="http://georss.org/geopress" title="GeoPress">GeoPress</a> and <a href="http://mapufacture.com">Mapufacture</a>. I hope these other local-news aggregators also use and support broader, open formats that we can all share and play along together. </p>
<p>Also check out <a href="http://locoblog.com" title="LocoBlog">LocoBlog</a>, which is a mobile-phone blogging application and site as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://highearthorbit.com/arise-the-geo-bubble/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

