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

<channel>
	<title>MaisonBisson.com &#187; geolocation</title>
	<atom:link href="http://maisonbisson.com/blog/post/tag/geolocation/feed/" rel="self" type="application/rss+xml" />
	<link>http://maisonbisson.com</link>
	<description>A bunch of stuff I would have emailed you about.</description>
	<lastBuildDate>Sat, 14 Nov 2009 20:14:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Find Stuff By Minimum Bounding Rectangle</title>
		<link>http://maisonbisson.com/blog/post/12148/find-stuff-by-minimum-bounding-rectangle/</link>
		<comments>http://maisonbisson.com/blog/post/12148/find-stuff-by-minimum-bounding-rectangle/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 19:34:31 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[MBR]]></category>
		<category><![CDATA[minimum bounding rectangle]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MySQL spatial functions]]></category>
		<category><![CDATA[spatial data]]></category>
		<category><![CDATA[spatial functions]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=12148</guid>
		<description><![CDATA[
MySQL offers ENVELOPE() to find the minimum bounding rectangle of a geometric object.
The result is a polygon with four segments, defined by five points. It took me a while to make sense of it, partially because the only documentation that I&#8217;ve run across so far for POLYGON() syntax is in the ENVELOPE() function mentioned above. [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12148"><!-- &nbsp; --></abbr>
<p><a href="http://www.flickr.com/photos/maisonbisson/2568621754/" title="mbr mysql minimum bounding rectangle by misterbisson, on Flickr"><img src="http://farm4.static.flickr.com/3276/2568621716_b5eb180c55_o.png" width="245" height="245" alt="mbr mysql minimum bounding rectangle" style="float: right;" /></a>MySQL offers <code>ENVELOPE()</code> to <a href="http://dev.mysql.com/doc/refman/5.0/en/general-geometry-property-functions.html#function_envelope" title="MySQL :: MySQL 5.0 Reference Manual :: 18.5.2.1 General Geometry Functions">find the minimum bounding rectangle</a> of a geometric object.</p>
<p>The result is a polygon with four segments, defined by five points. It took me a while to make sense of it, partially because the only documentation that I&#8217;ve run across so far for <code>POLYGON()</code> syntax is in the <code>ENVELOPE()</code> function mentioned above. I also had to draw a picture to think it through.</p>
<p>They write this: <code>POLYGON(( MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY ))</code>, I think this (in pseudocode-ish form): <code>POLYGON(( $point_a, $point_b, $point_c, $point_d, $point_a ))</code>, with the <code>$point_</code>s corresponding to the diagram.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12148/find-stuff-by-minimum-bounding-rectangle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Working With Spatial Data in MySQL</title>
		<link>http://maisonbisson.com/blog/post/12147/working-with-spatial-data-in-mysql/</link>
		<comments>http://maisonbisson.com/blog/post/12147/working-with-spatial-data-in-mysql/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 16:41:45 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MySQL spatial functions]]></category>
		<category><![CDATA[spatial data]]></category>
		<category><![CDATA[spatial functions]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=12147</guid>
		<description><![CDATA[
It&#8217;s MySQL spatial data week here, though I am spreading out the posts to, um, ease the pain (or boredom). Anyway, here are some commands/functions I don&#8217;t want to forget about later:
Start with an existing table called geometry, add a spatial column and index it:

ALTER TABLE geometry ADD coord POINT NOT NULL;
CREATE SPATIAL INDEX coord [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12147"><!-- &nbsp; --></abbr>
<p>It&#8217;s MySQL spatial data week here, though I am spreading out the posts to, um, ease the pain (or boredom). Anyway, here are some commands/functions I don&#8217;t want to forget about later:</p>
<p>Start with an existing table called <code>geometry</code>, add <a href="http://dev.mysql.com/doc/refman/5.0/en/creating-spatial-columns.html">a spatial column</a> and <a href="http://dev.mysql.com/doc/refman/5.0/en/creating-spatial-indexes.html">index it</a>:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">ALTER</span> <span style="color: #990099; font-weight: bold;">TABLE</span> <span style="color: #999900; font-weight: bold;">geometry</span> <span style="color: #990099; font-weight: bold;">ADD</span> coord <span style="color: #999900; font-weight: bold;">POINT</span> <span style="color: #CC0099; font-weight: bold;">NOT</span> <span style="color: #9900FF; font-weight: bold;">NULL</span><span style="color: #000033;">;</span>
<span style="color: #990099; font-weight: bold;">CREATE</span> <span style="color: #FF9900; font-weight: bold;">SPATIAL</span> <span style="color: #990099; font-weight: bold;">INDEX</span> coord <span style="color: #990099; font-weight: bold;">ON</span> <span style="color: #999900; font-weight: bold;">geometry</span> <span style="color: #FF00FF;">&#40;</span>coord<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

<p><a href="http://dev.mysql.com/doc/refman/5.0/en/populating-spatial-columns.html">Insert</a> some data; think in terms of POINT(X Y) or POINT(lat lon):</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> <span style="color: #999900; font-weight: bold;">geometry</span> <span style="color: #FF00FF;">&#40;</span>coord<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">VALUES</span><span style="color: #FF00FF;">&#40;</span> <span style="color: #00CC00;">GeomFromText</span><span style="color: #FF00FF;">&#40;</span> <span style="color: #008000;">'POINT(40 -100)'</span> <span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span>
<span style="color: #990099; font-weight: bold;">INSERT</span> <span style="color: #990099; font-weight: bold;">INTO</span> <span style="color: #999900; font-weight: bold;">geometry</span> <span style="color: #FF00FF;">&#40;</span>coord<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">VALUES</span><span style="color: #FF00FF;">&#40;</span> <span style="color: #00CC00;">GeomFromText</span><span style="color: #FF00FF;">&#40;</span> <span style="color: #008000;">'POINT(1 1)'</span> <span style="color: #FF00FF;">&#41;</span><span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">;</span></pre></div></div>

<p>Get those <a href="http://dev.mysql.com/doc/refman/5.0/en/point-property-functions.html">X,Y coordinates</a> back from the table:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #00CC00;">X</span><span style="color: #FF00FF;">&#40;</span>coord<span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span> <span style="color: #00CC00;">Y</span><span style="color: #FF00FF;">&#40;</span>coord<span style="color: #FF00FF;">&#41;</span> <span style="color: #990099; font-weight: bold;">FROM</span> <span style="color: #999900; font-weight: bold;">geometry</span></pre></div></div>

<p>Get points within a <a href="http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html" title="MySQL :: MySQL 5.0 Reference Manual :: 18.5.5 Relations on Geometry Minimal Bounding Rectangles (MBRs)">bounding rectangle</a>:</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;"><span style="color: #990099; font-weight: bold;">SELECT</span> <span style="color: #00CC00;">MBRContains</span><span style="color: #FF00FF;">&#40;</span>
	<span style="color: #00CC00;">GeomFromText</span><span style="color: #FF00FF;">&#40;</span> <span style="color: #008000;">'POLYGON((0 0,0 3,3 3,3 0,0 0))'</span> <span style="color: #FF00FF;">&#41;</span><span style="color: #000033;">,</span>
	coord
<span style="color: #FF00FF;">&#41;</span>
<span style="color: #990099; font-weight: bold;">FROM</span> <span style="color: #999900; font-weight: bold;">geometry</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12147/working-with-spatial-data-in-mysql/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Calculating Distance Between Points In MySQL</title>
		<link>http://maisonbisson.com/blog/post/12146/calculating-distance-between-points-in-mysql/</link>
		<comments>http://maisonbisson.com/blog/post/12146/calculating-distance-between-points-in-mysql/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 02:15:57 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[distance]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MySQL spatial functions]]></category>
		<category><![CDATA[spatial functions]]></category>
		<category><![CDATA[unimplemented]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=12146</guid>
		<description><![CDATA[
MySQL has some powerful, and perhaps underused spatial extensions, but the most interesting functions are still unimplemented: “Note: Currently, MySQL does not implement these functions&#8230;”
Among those as-yet unimplemented functions is DISTANCE(). Alternatives can be found here and here, though neither is clean or simple. I wonder if a simple MBRContains() is good enough, though&#8230;
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12146"><!-- &nbsp; --></abbr>
<p>MySQL has some powerful, and perhaps underused <a href="http://dev.mysql.com/doc/refman/5.0/en/spatial-extensions.html" title="MySQL :: MySQL 5.0 Reference Manual :: 18 Spatial Extensions">spatial extensions</a>, but the <a href="http://dev.mysql.com/doc/refman/5.0/en/functions-that-test-spatial-relationships-between-geometries.html" title="MySQL :: MySQL 5.0 Reference Manual :: 18.5.6 Functions That Test Spatial Relationships Between Geometries">most interesting functions</a> are still <a href="http://maisonbisson.com/blog/post/12145/mysql-documentation">unimplemented</a>: “Note: Currently, MySQL does not implement these functions&#8230;”</p>
<p>Among those as-yet unimplemented functions is <code>DISTANCE()</code>. Alternatives can be found <a href="http://www.zcentric.com/blog/2007/03/calculate_distance_in_mysql_wi.html" title="Calculate Distance In Mysql with Latitude and Longitude (My Random Blog)">here</a> and <a href="http://www.scribd.com/doc/2569355/Geo-Distance-Search-with-MySQL" title="Geo Distance Search with MySQL">here</a>, though neither is clean or simple. I wonder if a simple <a href="http://dev.mysql.com/doc/refman/5.0/en/relations-on-geometry-mbr.html"><code>MBRContains()</code></a> is good enough, though&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12146/calculating-distance-between-points-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The New Plazes</title>
		<link>http://maisonbisson.com/blog/post/11803/the-new-plazes/</link>
		<comments>http://maisonbisson.com/blog/post/11803/the-new-plazes/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 15:07:05 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[customer relations]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[plazes]]></category>
		<category><![CDATA[product feedback]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/post/11803/#the-new-plazes</guid>
		<description><![CDATA[
Plazes, a kinda-cool, formerly networked-based geolocation tool has just been revamped. They&#8217;ve been promoting this change for over a month (I got a cool invite to the launch party, but couldn&#8217;t make the flight to Germany), and they&#8217;re continuing the push now that it&#8217;s live. I&#8217;ve used the new service for a few days, the [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-11803"><!-- &nbsp; --></abbr>
<p>Plazes, a <a href="http://maisonbisson.com/blog/post/11376/">kinda-cool</a>, formerly <a href="http://maisonbisson.com/blog/post/10624/">networked-based geolocation tool</a> has just been revamped. They&#8217;ve been promoting this change for over a month (I got a cool invite to the launch party, but couldn&#8217;t make the flight to Germany), and they&#8217;re continuing the push now that it&#8217;s live. I&#8217;ve used the new service for a few days, the company has sent me an email soliciting feedback, I&#8217;m offering it.</p>
<p>I submitted the following via the site&#8217;s <a href="http://plazes.com/the/contact">Contact</a> form, but the message seems to have disappeared, and I prefer public discussion, so I&#8217;m reprinting it here:</p>
<blockquote><p>I like a lot of the new <a href="http://plazes.com/">Plazes</a>, but&#8230;</p>
<p>All my previously “unknown” Plazes got re-assigned to <a href="http://plazes.com/plazes/1740:heidelberg">Heidelberg</a>. Some of those unknown Plazes are truly unknown, but I usually try to go back and fill in the details of a location after the fact (if not in-situ). Now it looks like I can&#8217;t (and I won&#8217;t get discoverer&#8217;s credit (thinking of that, do “discoverers” still get credit in the new system?)).</p>
<p>Also, I can&#8217;t figure out how to get an RSS/Atom feed of my movements. It was easy in the old site, but not now, and I&#8217;m finally getting interested in using that data in my blog.</p>
<p>The new Plazer app (Mac OS X) is prettier, but the big feature for me is automatically updating my current Plaze wherever I go. I just found a preferences option for that and I&#8217;m hoping it does what I expect.</p>
<p>The SMS features are cool, but it took me a while to find the instructions on how to use them. They&#8217;re not linked in the <a href="http://plazes.com/tools">Tools</a> tab, and it took me a while to find the <a href="http://plazes.com/the/help">Help</a> link and look there.</p>
<p>Finally, a more philosophical question, Plazes seems to be de-emphasizing network-based location and discovery. Is there a story there?</p>
<p>Thank you,</p>
<p>Casey</p></blockquote>
<p>[tags]plazes, geolocation, customer relations, product feedback[/tags]</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/11803/the-new-plazes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>BeerMapping.com</title>
		<link>http://maisonbisson.com/blog/post/11375/beermapping/</link>
		<comments>http://maisonbisson.com/blog/post/11375/beermapping/#comments</comments>
		<pubDate>Fri, 21 Jul 2006 15:04:47 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Questionable...funny. Pointless.]]></category>
		<category><![CDATA[Style, Fashion and Food]]></category>
		<category><![CDATA[Travel]]></category>
		<category><![CDATA[beermapping.com]]></category>
		<category><![CDATA[brew maps]]></category>
		<category><![CDATA[breweries]]></category>
		<category><![CDATA[brewery]]></category>
		<category><![CDATA[brewpub]]></category>
		<category><![CDATA[casual friday]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maps]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/post/11375/</guid>
		<description><![CDATA[

In yet more geolocation news, beermapping.com&#8217;s maps to breweries will make my travel planning easier, and my travels boozier.
Hey, it&#8217;s casual Friday, take off early and go find a new brewpub for lunch.
beermapping.com, brew maps, breweries, brewery, brewpub, casual friday, geolocation, mapping, maps
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-11375"><!-- &nbsp; --></abbr>
<p><a href="http://www.flickr.com/photos/maisonbisson/193319970/" title="Photo Sharing"><img src="http://static.flickr.com/48/193319970_1ed6d14959.jpg" width="500" height="408" alt="BeerMapping.com" /></a></p>
<p>In yet more <a href="http://maisonbisson.com/blog/search/geolocation">geolocation</a> news, <a href="http://beermapping.com/">beermapping.com</a>&#8217;s <a href="http://beermapping.com/maps/northeastern.html#%23center_lat=43.29320031385282&#038;center_lon=-71.597900390625&#038;center_zoom=10" title="beermapping.com - North Eastern Brewery Map">maps to breweries</a> will make my travel planning easier, and my travels boozier.</p>
<p>Hey, it&#8217;s <a href="http://en.wikipedia.org/wiki/Casual_Friday">casual Friday</a>, take off early and go find a new <a href="http://en.wikipedia.org/wiki/Brewpub">brewpub</a> for lunch.</p>
<p><tags>beermapping.com, brew maps, breweries, brewery, brewpub, casual friday, geolocation, mapping, maps</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/11375/beermapping/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Plazes Updated</title>
		<link>http://maisonbisson.com/blog/post/11376/plazes-updated/</link>
		<comments>http://maisonbisson.com/blog/post/11376/plazes-updated/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 16:51:13 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[location aware]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[plazes]]></category>
		<category><![CDATA[still beta]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/post/11376/</guid>
		<description><![CDATA[

Wearing the badge “still beta,” Plazes, the free, network-based geolocation service, now sports a new coat of paint. Among the improvements is the Flash-based badge (above) and a much improved frontpage/dashboard that combines the map of known locations with the map of active users, formerly two separate screens.
On the downside, I sort of miss the [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-11376"><!-- &nbsp; --></abbr>
<p><embed src="http://beta.plazes.com:80/tools/badge.swf?nocache=1152459100" wmode="transparent" width="400" height="400" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" swLiveConnect="true" FlashVars="key=04cb4c559c8a55fde723d336f723a83b&#038;dark=ff9900&#038;light=7cd9f7&#038;text=000000&#038;link=ffffff" /></p>
<p>Wearing the badge “still beta,” <a href="http://plazes.com/">Plazes</a>, the free, <a href="http://maisonbisson.com/blog/post/10624/">network-based geolocation service</a>, now sports a new coat of paint. Among the improvements is the <a href="http://beta.plazes.com/tools/badge.php">Flash-based badge</a> (above) and a much improved <a href="http://beta.plazes.com/dashboard/">frontpage/dashboard</a> that combines the map of known locations with the map of active users, formerly two separate screens.</p>
<p>On the downside, I sort of miss the old tracker. I love the icons on <a href="http://beta.plazes.com/user/misterbisson">the new one</a>, but there was a simplicity to the old list of recent plazes and favorite plazes that I liked. Also missing is the ability to display a time-range; instead, it simply displays the locations in date order. What I really want back is the ability to see, in one screen, all the places I&#8217;ve been in the past year, or month, or whatever (yeah, as Tim notes, it&#8217;s a bit exhibitionist, but&#8230;). Still, the new Plazes does add “<a href="http://beta.plazes.com/user/misterbisson?filter=hangouts">hangouts</a>,” which is sort of cool, you know, as a stalking aid.</p>
<p>The final downer is the useless of the “<a href="http://beta.plazes.com/user/misterbisson#user-myworld">My World</a>” map. It&#8217;s not that it shows I&#8217;ve only visited 1% of the world, it&#8217;s that it suggests I&#8217;ve visited all of the US &#8212; including Alaska and Hawaii. The map might be gratifying for the European developers, but I&#8217;d like more granularity.</p>
<p>Still, I continue to run the <a href="http://beta.plazes.com/tools/plazer.php">Plazer</a>, and continue to look for new plazes to claim.</p>
<p><tags>beta, geolocation, gis, location aware, mapping, plazes, still beta</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/11376/plazes-updated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Spark Fun&#8217;s GPS Data Logger</title>
		<link>http://maisonbisson.com/blog/post/11344/spark-funs-gps-data-logger/</link>
		<comments>http://maisonbisson.com/blog/post/11344/spark-funs-gps-data-logger/#comments</comments>
		<pubDate>Sun, 18 Jun 2006 16:23:55 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[engadget]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[gps data logger]]></category>
		<category><![CDATA[kit]]></category>
		<category><![CDATA[location tracking]]></category>
		<category><![CDATA[Spark Fun Electronics]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/post/11344/</guid>
		<description><![CDATA[

Engadget alerted me to this GPS data logger from Spark Fun Electronics. 
The device records up to 440 hours of data to a 256MB SD card in either a simple text file or KML-compatible format that you can display in Google Earth.
I like it, I want one (actually, I want three, and I&#8217;ll eventually post [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-11344"><!-- &nbsp; --></abbr>
<p><a href="http://www.sparkfun.com/commerce/product_info.php?products_id=671"><img src="http://www.engadget.com/media/2006/06/gpslog.jpg" alt="Spark Fun Electronics' GPS data logger" width="425" height="336" /></a></p>
<p><a href="http://www.engadget.com/2006/06/09/gps-datalogger-captures-speed-coordinates-to-sd/" title="GPS datalogger captures speed, coordinates to SD - Engadget">Engadget</a> alerted me to this <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=671" title="Spark Fun Electronics">GPS data logger</a> from <a href="http://www.sparkfun.com/" title="Spark Fun Electronics">Spark Fun Electronics</a>. </p>
<p>The device records up to 440 hours of data to a 256MB SD card in either a simple text file or KML-compatible format that <a href="http://www.sparkfun.com/commerce/images/Casey-Lunch1.jpg">you can display</a> in <a href="http://earth.google.com/">Google Earth</a>.</p>
<p>I like it, I want one (actually, I want three, and I&#8217;ll eventually post about why), but the <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=671">ad copy</a> tweaked me a bit:</p>
<blockquote><p>Pull the SD card, insert it into a card reader, [...] and wammo&#8211;you can see what Casey did over lunch with a satellite image overlay. Take a look at the example screen shot. You can see what lane Casey was in! When he stopped at the light, his data points piled up. Fancy. Real fancy. Speed is also datalogged &#8211; it&#8217;s like Big Brother in the palm of your hand&#8230;</p></blockquote>
<p><tags>electronics, engadget, geolocation, GPS, gps data logger, kit, location tracking, Spark Fun Electronics</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/11344/spark-funs-gps-data-logger/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Geo News</title>
		<link>http://maisonbisson.com/blog/post/11346/google-geo-news/</link>
		<comments>http://maisonbisson.com/blog/post/11346/google-geo-news/#comments</comments>
		<pubDate>Fri, 16 Jun 2006 15:07:57 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[geographic information systems]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google earth]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[kml]]></category>
		<category><![CDATA[sketchup]]></category>
		<category><![CDATA[where 2.0]]></category>
		<category><![CDATA[where20]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/post/11346/</guid>
		<description><![CDATA[
This post started with Ryan sending me this link demonstrating a KML overlay of county borders of his bifurcated state in Google Maps.
Then I found this Roundup of Google&#8217;s Geo Developer Day (btw, I so wanted to be at Where 2.0) with tales of the new geocoding feature of the Google Maps API, more details [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-11346"><!-- &nbsp; --></abbr>
<p>This post started with <a href="http://blog.ryaneby.com/">Ryan</a> sending me <a href="http://maps.google.com/maps?f=q&#038;hl=en&#038;q=http://www.juiceanalytics.com/downloads/mi_co_pd.kmz&#038;ie=UTF8&#038;ll=45.290347,-84.594727&#038;spn=7.512723,16.787109&#038;om=1" title="http://www.juiceanalytics.com/downloads/mi_co_pd.kmz - Google Maps">this link</a> demonstrating a <a href="http://en.wikipedia.org/wiki/KML">KML</a> overlay of county borders of his bifurcated state in <a href="http://www.maisonbisson.com/blog/post/10462/">Google Maps</a>.</p>
<p>Then I found this <a href="http://www.mcwetboy.net/maproom/2006/06/google_roundup_geo_developer_day_recap_geotagging_in_picasa.phtml" title="The Map Room: Google Roundup: Geo Developer Day Recap; Geotagging in Picasa">Roundup</a> of Google&#8217;s <a href="http://conferences.oreillynet.com/cs/where2006/view/e_sess/9408">Geo Developer Day</a> (btw, I so wanted to be at <a href="http://conferences.oreillynet.com/where2006/">Where 2.0</a>) with tales of the <a href="http://googlemapsapi.blogspot.com/2006/06/geocoding-at-last.html">new geocoding feature</a> of the <a href="http://maisonbisson.com/blog/post/10638/">Google Maps API</a>, more details about <a href="http://geography2.blogspot.com/2006/06/kml-in-google-maps-little-rough.html">KML-in-Google-Maps</a>, geotagging in Picasa, and <a href="http://www.mcwetboy.net/maproom/2006/06/breaking_news_google_earth_40.phtml">the new</a> <a href="http://earth.google.com/earth4.html">Google Earth 4.0 beta</a>.</p>
<p>And somewhere along the line, I ran across a link to <a href="http://sketchup.google.com/" title="SketchUp - Home">SketchUp</a>, Google&#8217;s 3-D modeler that seems built especially to put dimensional structures in Google Earth.</p>
<p><tags>geocoding, geographic information systems, geolocation, geotagging, gis, google earth, google maps, kml, sketchup, where 2.0, where20</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/11346/google-geo-news/feed/</wfw:commentRss>
		<slash:comments>97</slash:comments>
		</item>
		<item>
		<title>Open Source GIS</title>
		<link>http://maisonbisson.com/blog/post/10837/open-source-gis/</link>
		<comments>http://maisonbisson.com/blog/post/10837/open-source-gis/#comments</comments>
		<pubDate>Tue, 27 Sep 2005 16:50:06 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[geo world]]></category>
		<category><![CDATA[geocode]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[geographic information system]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[gis development]]></category>
		<category><![CDATA[gis guide]]></category>
		<category><![CDATA[gis tools]]></category>
		<category><![CDATA[map room]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[open source gis]]></category>
		<category><![CDATA[open source tools]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=10837</guid>
		<description><![CDATA[
Here&#8217;s an interesting GeoPlace.com article on open source GIS tools, including GIS extensions to PosgreSQL and MySQL. Via The Map Room.

tags: geo world, geocode, geocoding, geographic information system, geography, geolocation, gis, gis development, gis guide, gis tools, map room, mapping, mysql, open source, open source gis, open source tools

]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10837"><!-- &nbsp; --></abbr>
<p>Here&#8217;s an interesting GeoPlace.com article on <a href="http://www.geoplace.com/uploads/featurearticle/0508gd.asp" title="Geo World - Aug 2005 - GIS Development: GIS Unshackled A Guide to Open-Source Tools">open source GIS tools</a>, including GIS extensions to PosgreSQL and MySQL. Via <a href="http://www.mcwetboy.net/maproom/2005/09/open_source_gis_guide.phtml">The Map Room</a>.</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://www.technorati.com/tag/geo world" rel="tag">geo world</a>, <a href="http://www.technorati.com/tag/geocode" rel="tag">geocode</a>, <a href="http://www.technorati.com/tag/geocoding" rel="tag">geocoding</a>, <a href="http://www.technorati.com/tag/geographic information system" rel="tag">geographic information system</a>, <a href="http://www.technorati.com/tag/geography" rel="tag">geography</a>, <a href="http://www.technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://www.technorati.com/tag/gis" rel="tag">gis</a>, <a href="http://www.technorati.com/tag/gis development" rel="tag">gis development</a>, <a href="http://www.technorati.com/tag/gis guide" rel="tag">gis guide</a>, <a href="http://www.technorati.com/tag/gis tools" rel="tag">gis tools</a>, <a href="http://www.technorati.com/tag/map room" rel="tag">map room</a>, <a href="http://www.technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://www.technorati.com/tag/mysql" rel="tag">mysql</a>, <a href="http://www.technorati.com/tag/open source" rel="tag">open source</a>, <a href="http://www.technorati.com/tag/open source gis" rel="tag">open source gis</a>, <a href="http://www.technorati.com/tag/open source tools" rel="tag">open source tools</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10837/open-source-gis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bsuite_geocode Plugin For WordPress</title>
		<link>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/</link>
		<comments>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/#comments</comments>
		<pubDate>Mon, 26 Sep 2005 21:57:21 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog gis]]></category>
		<category><![CDATA[blogmap]]></category>
		<category><![CDATA[blogmaps]]></category>
		<category><![CDATA[geo]]></category>
		<category><![CDATA[geocoding]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[lat]]></category>
		<category><![CDATA[latitude and longitude]]></category>
		<category><![CDATA[lon]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[multimap]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp plugin]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=10846</guid>
		<description><![CDATA[
I&#8217;m a big fan of the WP Geo plugin, but I want more.
My biggest complaint is that I want to insert coordinates using Google Maps or MultiMap URLs, rather than insert them in the modified story editor. So I wrote a bit of code that reads through the URLs in a post, finds the “maps.google” [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10846"><!-- &nbsp; --></abbr>
<p>I&#8217;m a big fan of the <a href="http://dev.wp-plugins.org/wiki/GeoPlugin">WP Geo plugin</a>, but I want more.</p>
<p>My biggest complaint is that I want to insert coordinates using <a href="http://maisonbisson.com/blog/post/10682/">Google Maps</a> or <a href="http://maisonbisson.com/blog/post/10682/">MultiMap</a> URLs, rather than insert them in the modified story editor. So I wrote a bit of code that reads through the URLs in a post, finds the “maps.google” or “multimap.com” URLs, fishes the latitude and longitude out of them, and adds some geocoding tags to the body of the post.</p>
<p>Take a look at how it works with <a href="http://maisonbisson.com/blog/search/maps.google">these posts</a> in my archive&#8230;</p>
<p>You should see one or more blocks of links like the following (from my <a href="http://maisonbisson.com/blog/post/10804/">Osceola Weekend</a> post):</p>
<p style="text-align:right;font-size:10px;">geolocation: <a href="http://technorati.com/tags/geo:lat=44.006336">geo:lat=44.006336</a>, <a href="http://technorati.com/tags/geo:lon=-71.547260">geo:lon=-71.547260</a>, <a href="http://technorati.com/tags/geotagged">geotagged</a>, <a href="http://technorati.com/tags/geolocation:44.006336,-71.547260">geolocation:44.006336,-71.547260</a> <a href="http://www.geobloggers.com/index.cfm?action=search&#038;cutoff=100&#038;fLat=44.006336&#038;fLon=-71.547260&#038;iStartRecord=1&#038;iMaxRecords=25&#038;iZL=6&#038;sMapMode=hybrid&#038;sSearchType=newest&#038;lstItemType=flickr,note,audio,video,link">geobloggers</a></p>
<p>Go ahead and click the “<a href="http://www.geobloggers.com/index.cfm?action=search&#038;cutoff=100&#038;fLat=44.006336&#038;fLon=-71.547260&#038;iStartRecord=1&#038;iMaxRecords=25&#038;iZL=6&#038;sMapMode=hybrid&#038;sSearchType=newest&#038;lstItemType=flickr,note,audio,video,link">geobloggers</a>” link. I could have added these links using the old Geo plugin, but I still would have had to insert the coordinates separately. Actually, that brings up a good point: my code also inserts post metadata in the same format the Geo plugin uses, so I can take advantage of all the good functions it has, like the one that inserts the “&lt;meta name=“ICBM” content=“44.006336, -71.547260” /&gt;” tag in the header of this post (caveat: I had to disable the add_action code in Geo that feeds the postmeta table, as it was conflicting my code).</p>
<p>I&#8217;m releasing this now, to start some public discussion, but please recognize that it&#8217;s a very early beta.</p>
<p><strong>Download:</strong> <a href="http://homepage.mac.com/misterbisson/projects/bsuite_geocode.zip">bsuite_geocode.zip</a><br />
<strong>Install:</strong> place unzipped “bsuite_geocode.php” file in your wp-content/plugins folder and activate it via the WP control panel. See the <a href="http://codex.wordpress.org/Managing_Plugins">WordPress Codex</a> for more detail.<br />
<strong>Use:</strong> write posts as usual, adding links to Google Maps or MultiMap as appropriate. Links to those sites that have latitude and longitude components will be used to geocode the post.</p>
<p>Example of a working URL:</p>
<blockquote><p>http://maps.google.com/maps?<strong>ll=19.355507,-155.072365</strong>&#38;spn=.191780,.318003&#38;t=k&#38;hl=en</p></blockquote>
<p>Example of a URL that won&#8217;t work (note how there&#8217;s no “<strong>ll=</strong>”):</p>
<blockquote><p>http://maps.google.com/maps?q=decker+canyon+rd,+malibu+california&#38;spn=0.019857,0.039750&#38;hl=en</p></blockquote>
<p>I&#8217;ve got a lot of features and uses in mind, so consider this only a start. Please post bugs and suggestions in the comments.</p>
<p>Also, see these previous posts on <a href="http://maisonbisson.com/blog/post/10625/">geolocating the news</a> or <a href="hthttp://maisonbisson.com/blog/post/10586/">geolocating everything</a> or just <a href="http://maisonbisson.com/blog/search/geolocat">search the archives</a> to understand why I&#8217;m so excited about things like this.</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://www.technorati.com/tag/beta" rel="tag">beta</a>, <a href="http://www.technorati.com/tag/blog" rel="tag">blog</a>, <a href="http://www.technorati.com/tag/blogmap" rel="tag">blogmap</a>, <a href="http://www.technorati.com/tag/blogmaps" rel="tag">blogmaps</a>, <a href="http://www.technorati.com/tag/blog gis" rel="tag">blog gis</a>, <a href="http://www.technorati.com/tag/geo" rel="tag">geo</a>, <a href="http://www.technorati.com/tag/geocoding" rel="tag">geocoding</a>, <a href="http://www.technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://www.technorati.com/tag/geotagging" rel="tag">geotagging</a>, <a href="http://www.technorati.com/tag/gis" rel="tag">gis</a>, <a href="http://www.technorati.com/tag/google maps" rel="tag">google maps</a>, <a href="http://www.technorati.com/tag/lat" rel="tag">lat</a>, <a href="http://www.technorati.com/tag/latitude and longitude" rel="tag">latitude and longitude</a>, <a href="http://www.technorati.com/tag/lon" rel="tag">lon</a>, <a href="http://www.technorati.com/tag/map" rel="tag">map</a>, <a href="http://www.technorati.com/tag/maps" rel="tag">maps</a>, <a href="http://www.technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://www.technorati.com/tag/metadata" rel="tag">metadata</a>, <a href="http://www.technorati.com/tag/multimap" rel="tag">multimap</a>, <a href="http://www.technorati.com/tag/plugin" rel="tag">plugin</a>, <a href="http://www.technorati.com/tag/plugins" rel="tag">plugins</a>, <a href="http://www.technorati.com/tag/wordpress" rel="tag">wordpress</a>, <a href="http://www.technorati.com/tag/wordpress plugin" rel="tag">wordpress plugin</a>, <a href="http://www.technorati.com/tag/wp plugin" rel="tag">wp plugin</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10846/bsuite_geocode-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Skyhook WiFi Geolocation</title>
		<link>http://maisonbisson.com/blog/post/10658/more-wifi-geolocation-goodies/</link>
		<comments>http://maisonbisson.com/blog/post/10658/more-wifi-geolocation-goodies/#comments</comments>
		<pubDate>Sun, 17 Jul 2005 07:59:11 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Blink]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[access points]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[monopoly]]></category>
		<category><![CDATA[skyhook]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10658</guid>
		<description><![CDATA[
Old news from Gizmodo and Wi-Fi Networking News (quoting WiFi NN):
Skyhook has assembled a database of information about 1.5 million access points across 25 major cities in the U.S. by driving every street in every city. Their software records multiple data points per sample for directionality. Fire up their software on a laptop, and it [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10658"><!-- &nbsp; --></abbr>
<p>Old news from <a href="http://www.gizmodo.com/gadgets/wireless/wifi/skyhook-wireless-wifi-location-sensing-109316.php" title="Skyhook Wireless - Wi-Fi Location Sensing : Gizmodo">Gizmodo</a> and <a href="http://wifinetnews.com/archives/005432.html" title="Wi-Fi Networking News Archives">Wi-Fi Networking News</a> (quoting WiFi NN):</p>
<blockquote><p>Skyhook has assembled a database of information about 1.5 million access points across 25 major cities in the U.S. by driving every street in every city. Their software records multiple data points per sample for directionality. Fire up their software on a laptop, and it compares the Wi-Fi information it sees with what’s in the Skyhook database, popping out a latitude and longitude within 20 to 40 meters.</p></blockquote>
<p>Also geolocation related: <a href="http://www.engadget.com/entry/1234000700047435/" title="Monopoly Live: London style - Engadget - www.engadget.com">Monopoly Live: London style</a>.</p>
<p><!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">tags: <a href="http://technorati.com/tag/access points" rel="tag">access points</a>, <a href="http://technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://technorati.com/tag/gps" rel="tag">gps</a>, <a href="http://technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://technorati.com/tag/monopoly" rel="tag">monopoly</a>, <a href="http://technorati.com/tag/skyhook" rel="tag">skyhook</a>, <a href="http://technorati.com/tag/wifi" rel="tag">wifi</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10658/more-wifi-geolocation-goodies/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>GeoTagging Gets A New Meaning</title>
		<link>http://maisonbisson.com/blog/post/10649/geotagging-gets-a-new-meaning/</link>
		<comments>http://maisonbisson.com/blog/post/10649/geotagging-gets-a-new-meaning/#comments</comments>
		<pubDate>Mon, 27 Jun 2005 05:58:01 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[art student]]></category>
		<category><![CDATA[folksonomy]]></category>
		<category><![CDATA[forward thinking]]></category>
		<category><![CDATA[geography]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[geotag]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[laptop screen]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[new media]]></category>
		<category><![CDATA[pda]]></category>
		<category><![CDATA[public dimensions]]></category>
		<category><![CDATA[social environments]]></category>
		<category><![CDATA[spoken message]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[tagged environments]]></category>
		<category><![CDATA[tagging]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[urban environments]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10649</guid>
		<description><![CDATA[

Who doesn&#8217;t love tagging? No, tagging as in annotating, not graffiti. Anyway, Rixome is the latest among a bunch of plans/projects to enable tagging of geographic spaces/real-life environments.
The good people at We Make Money Not Art had this in their post:
rixome is a network and a tool that turns mobile screens into windows that show [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10649"><!-- &nbsp; --></abbr>
<p><img src="http://oz.plymouth.edu/~cbisson/gfx/Dumbkins/rixome.jpg" alt="Rixome tagged environment." width="495" height="390" style="background-color: #ffffff; border: solid 2px #000000; margin: 4px 4px 4px 4px; padding: 0px 0px 0px 0px;" /></p>
<p>Who doesn&#8217;t love tagging? No, tagging as in <a href="http://www.maisonbisson.com/blog/post/10446/">annotating</a>, not <a href="http://bombing.org/">graffiti</a>. Anyway, <a href="http://www.rixome.net/">Rixome</a> is the latest among a bunch of plans/projects to enable tagging of geographic spaces/real-life environments.</p>
<p>The good people at <a href="http://www.we-make-money-not-art.com/archives/005621.php">We Make Money Not Art</a> had this in their post:</p>
<blockquote><p>rixome is a network and a tool that turns mobile screens into windows that show the virtual and public dimensions of our point of view.</p>
<p>A walker (a rixome user) can see on his/her mobile phone/PDA/laptop screen the virtual interventions that have been added to the location where s/he now stands. For example, a spoken message can be left on a given location for other “walkers” to hear through headphones whenever they pass by. The message can also be written, or it can be a 3D animation or image, a photography, a drawing, a video.</p>
<p>Remote rixome users can also check vía Internet the traces left by others but s/he won&#8217;t be able to add an intervention similar to those published in situ.</p>
<p>Developed by gelo for his at Master of Art and New Technologlies at the Universidad Europea de Madrid.</p></blockquote>
<p>(<a href="http://www.engadget.com/entry/1234000047047385/">Engadget is onto this story too</a>)</p>
<p>This idea isn&#8217;t new (see <a href="http://www.ece.ubc.ca/~phillipj/blog/archives/2005/06/urban_tagging.html" title="Twenty Years From Now: Urban tagging">Twenty Years From Now: Urban tagging</a> and <a href="http://www.nmk.co.uk/article/2005/02/27/urban-tapestries-geotagging" title="New Media Knowledge - GeoTagging The City">New Media Knowledge &#8211; GeoTagging The City</a>) But time, technology, and a forward thinking art student make Rixome look more plausible than the others.</p>
<p>Related: previously at MaisonBisson: <a href="http://www.maisonbisson.com/blog/post/10625/">Geolocating The News</a>, <a href="http://www.maisonbisson.com/blog/post/10624/">When You Don’t Have A GPS</a>, and anything else about <a href="http://maisonbisson.com/blog/search/geolocat">geolocation</a>. Interesting websites: <a href="http://urbantapestries.net/weblog/" title="Urban Tapestries | Social Tapestries">Urban Tapestries | Social Tapestries</a> and <a href="http://www.gelo.tv/blog/">Gelo.tv</a>. Books: <a href="http://www.amazon.com/exec/obidos/ASIN/0385503865/maisonbisson-20">The Wisdom of Crowds</a> and <a href="http://www.amazon.com/exec/obidos/ASIN/0738208612/maisonbisson-20">Smart Mobs</a>.</p>
<p><tags>art student, folksonomy, forward thinking, geography, geolocation, geotag, geotagging, laptop screen, mobile, mobile phone, new media, pda, public dimensions, social environments, spoken message, tag, tagged environments, tagging, tags, urban environments</tags></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10649/geotagging-gets-a-new-meaning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geolocating The News</title>
		<link>http://maisonbisson.com/blog/post/10625/geolocating-the-news/</link>
		<comments>http://maisonbisson.com/blog/post/10625/geolocating-the-news/#comments</comments>
		<pubDate>Wed, 15 Jun 2005 05:07:22 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[future of news]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[poynter institute]]></category>
		<category><![CDATA[reported]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10625</guid>
		<description><![CDATA[
Last week I got excited about the as-yet unreleased geolocation API for BBC Backstage. Now Larry D. Larsen of the Poynter Institute is excited too. In a post titled The Future of News (&#8230; Hint: GPS) he talks about putting news in geographic context with geolocation tags.
Eventually, clicking an article in a news/Google Map hybrid [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10625"><!-- &nbsp; --></abbr>
<p><a href="http://flickr.com/photos/36387370@N00/16277876/"><img src="http://photos14.flickr.com/16277876_495433984e_m.jpg" alt="Globe on Flickr by Amyvdh" width="180" height="240" style="float: right; background-color: #ffffff; border: solid 2px #000000; margin: 4px 4px 4px 4px; padding: 0px 0px 0px 0px;" /></a>Last week I <a href="http://maisonbisson.com/blog/?p=10614">got excited</a> about the as-yet unreleased <a href="http://backstage.bbc.co.uk/data/Data">geolocation API</a> for <a href="http://backstage.bbc.co.uk/">BBC Backstage</a>. Now Larry D. Larsen of the Poynter Institute is excited too. In a post titled <a href="http://www.poynter.org/column.asp?id=31&amp;aid=83597" id="31&amp;aid=83597">The Future of News (&#8230; Hint: GPS)</a> he talks about putting news in geographic context with geolocation tags.</p>
<blockquote><p>Eventually, clicking an article in a news/Google Map hybrid might zoom in to a 3D model of the area where an automatic pop-up starts playing a slideshow with pictures of the scene or streaming video along with the text news content. Imagine integrating Google Maps into your classifieds so readers could search for jobs based on what is close to their house. The possibilities are endless.</p></blockquote>
<p>It&#8217;s aparently an <a href="http://www.poynter.org/column.asp?id=31&amp;aid=82997" id="31&amp;aid=82997">old saw</a> of his, but I hope his message starts to get through.</p>
<p>Credit goes to Ernie Miller for the blinking this at <a href="http://www.corante.com/importance/archives/2005/06/12/gps_for_the_news.php">The Importance Of&#8230;</a>.<br />
<!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://technorati.com/tag/api" rel="tag">api</a>, <a href="http://technorati.com/tag/bbc" rel="tag">bbc</a>, <a href="http://technorati.com/tag/future of news" rel="tag">future of news</a>, <a href="http://technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://technorati.com/tag/gps" rel="tag">gps</a>, <a href="http://technorati.com/tag/news" rel="tag">news</a>, <a href="http://technorati.com/tag/poynter institute" rel="tag">poynter institute</a>, <a href="http://technorati.com/tag/reported" rel="tag">reported</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10625/geolocating-the-news/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>When You Don&#8217;t Have A GPS&#8230;</title>
		<link>http://maisonbisson.com/blog/post/10624/when-you-dont-have-a-gps/</link>
		<comments>http://maisonbisson.com/blog/post/10624/when-you-dont-have-a-gps/#comments</comments>
		<pubDate>Mon, 13 Jun 2005 09:46:24 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[agps]]></category>
		<category><![CDATA[cell phone]]></category>
		<category><![CDATA[coordinates]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[lattitude]]></category>
		<category><![CDATA[longitude]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[moblogging]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking application]]></category>
		<category><![CDATA[palm]]></category>
		<category><![CDATA[picture phone]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10624</guid>
		<description><![CDATA[
Geolocation by GPS my be the most straightforward approach, but we mustn&#8217;t forget the other ways to get lat/lon coordinates.
All current cell phones support aGPS positioning to comply with federal E-911 mandates, but not all phones make it easy for the user to get that information out of them. Still, some do and GPS-enabled moblogging [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10624"><!-- &nbsp; --></abbr>
<p><a href="http://www.flickr.com/photos/palimpsest/18741970/"><img src="http://photos15.flickr.com/18741970_58f19be6ca_m.jpg" alt="Compass" width="240" height="240" style="background-color: #ffffff; border: solid 2px #000000; margin: 4px 4px 4px 4px; padding: 0px 0px 0px 0px;" align="right" /></a><a href="http://maisonbisson.com/blog/search/geolocat">Geolocation</a> by GPS my be the most straightforward approach, but we mustn&#8217;t forget the other ways to get lat/lon coordinates.</p>
<p>All current cell phones support <a href="http://en.wikipedia.org/wiki/Assisted_GPS">aGPS</a> positioning to comply with federal E-911 mandates, but not all phones make it easy for the user to get that information out of them. Still, some do and <a href="http://www.greggman.com/edit/editheadlines/2003-06-22.htm">GPS-enabled moblogging</a> is becoming common in Asia and Europe, and there&#8217;s at least a <a href="http://www.geosnapper.com/started.php">public proof of concept</a> going in the US.</p>
<p>Then there&#8217;s ethernet/WiFi. <a href="http://plazes.com/">Plazes</a> is a kind of social networking application that allows users identify their location based on their network fingerprint. Using the assumption that networks are typically stationary, Plazes then associates lat/lon coordinates to that network based on information submitted by user who &#8216;discovered&#8217; the network. Plazes&#8217; real trick, however, is to show me who else is online nearby. Problem is, I live and work in <a href="http://maps.google.com/maps?q=plymouth,+new+hampshire&amp;spn=3.640625,9.770376&amp;hl=en">New Hampshire</a> where I appear to be the only user online north of <a href="http://maps.google.com/maps?q=alexandria,+va&amp;spn=.455078,1.221297&amp;hl=en">Virginia</a>.</p>
<p>But the Plazes folks didn&#8217;t invent the concept of using network information to identify location. If I wasn&#8217;t so lazy I&#8217;d find the story I read a couple of years ago that mentioned it, but this June 2004 article in <a href="http://www.newscientist.com/article.ns?id=dn6058" id="dn6058">New Scientist</a> tells the story of one such effort: <a href="http://www.placelab.org/">PlaceLab</a> (extra coverage at <a href="http://www.engadget.com/entry/3981190443365299/">Engadget</a> and <a href="http://www.extremetech.com/article2/0,1558,1644543,00.asp">ExtremeGPS</a>). A <a href="http://www.google.com/search?q=GPS+wifi">Google search</a> turned up <a href="http://www.herecast.com/">Herecast</a> and now <a href="http://www.engadget.com/entry/1234000267046229/">Engadget</a> is reporting on <a href="http://www.alwaysongps.com/">AllwaysOnGPS</a>, a replacement GPS driver (for Windows PCs) that mixes GPS and WiFi derived location data to provide the most accurate info despite changing coverage.</p>
<p>Finally, one of my favorite solutions is to use <a href="http://earthcomber.com/">Earthcomber</a> in manual mode. The Palm application allows you to scroll around a map and mark locations as though they were waypoints in a GPS. And though that&#8217;s neat, it&#8217;s the mapping features that make it a winner. It&#8217;s far better than those lousy tourist guides in cities. I used to go to AAA for maps and guides in preparation for a trip, but now I check Earthcomber for area maps and updates.<br />
<!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://technorati.com/tag/agps" rel="tag">agps</a>, <a href="http://technorati.com/tag/cell phone" rel="tag">cell phone</a>, <a href="http://technorati.com/tag/coordinates" rel="tag">coordinates</a>, <a href="http://technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://technorati.com/tag/gps" rel="tag">gps</a>, <a href="http://technorati.com/tag/lattitude" rel="tag">lattitude</a>, <a href="http://technorati.com/tag/longitude" rel="tag">longitude</a>, <a href="http://technorati.com/tag/map" rel="tag">map</a>, <a href="http://technorati.com/tag/mapping" rel="tag">mapping</a>, <a href="http://technorati.com/tag/maps" rel="tag">maps</a>, <a href="http://technorati.com/tag/moblogging" rel="tag">moblogging</a>, <a href="http://technorati.com/tag/network" rel="tag">network</a>, <a href="http://technorati.com/tag/networking application" rel="tag">networking application</a>, <a href="http://technorati.com/tag/palm" rel="tag">palm</a>, <a href="http://technorati.com/tag/picture phone" rel="tag">picture phone</a>, <a href="http://technorati.com/tag/social networking" rel="tag">social networking</a>, <a href="http://technorati.com/tag/wifi" rel="tag">wifi</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10624/when-you-dont-have-a-gps/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>BBC Backstage Is Gonna Rock (Once They Release The APIs)</title>
		<link>http://maisonbisson.com/blog/post/10614/bbc-backstage-is-gonna-rock-once-they-release-the-apis/</link>
		<comments>http://maisonbisson.com/blog/post/10614/bbc-backstage-is-gonna-rock-once-they-release-the-apis/#comments</comments>
		<pubDate>Wed, 08 Jun 2005 05:32:06 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Libraries & Networked Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[backstage]]></category>
		<category><![CDATA[backstage.bbc]]></category>
		<category><![CDATA[backstage.bbc.co.uk]]></category>
		<category><![CDATA[bbc]]></category>
		<category><![CDATA[bbc backstage]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://www.maisonbisson.com/blog/?p=10614</guid>
		<description><![CDATA[

The APIs aren&#8217;t yet out, but the BBC has already won me over with their Backstage BBC concept. Of course, I&#8217;m a fan of anything with an API, but the real deal here is that it appears they&#8217;re planning on releasing a “query by geo-location data” API &#8212; and I&#8217;m all a gaga about about [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10614"><!-- &nbsp; --></abbr>
<p><a href="http://backstage.bbc.co.uk/"><img src="http://backstage.bbc.co.uk/img/css/banner.gif" alt="backstage.bbc.co.uk." width="350" height="55" style="background-color: #ffffff; border: solid 2px #000000; margin: 4px 4px 4px 4px; padding: 0px 0px 0px 0px;" /></a></p>
<p>The <a href="http://backstage.bbc.co.uk/data/Data">APIs</a> aren&#8217;t yet out, but the BBC has already won me over with their <a href="http://backstage.bbc.co.uk/">Backstage BBC</a> concept. Of course, I&#8217;m a fan of anything with an API, but the real deal here is that it appears they&#8217;re planning on releasing a “query by geo-location data” API &#8212; and I&#8217;m all a gaga about about <a href="http://maisonbisson.com/blog/search/geolocat">geolocation</a>. I&#8217;ll definitely be looking to see what takes shape across the pond.<br />
<!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://technorati.com/tag/api" rel="tag">api</a>, <a href="http://technorati.com/tag/backstage" rel="tag">backstage</a>, <a href="http://technorati.com/tag/backstage.bbc" rel="tag">backstage.bbc</a>, <a href="http://technorati.com/tag/backstage.bbc.co.uk" rel="tag">backstage.bbc.co.uk</a>, <a href="http://technorati.com/tag/bbc" rel="tag">bbc</a>, <a href="http://technorati.com/tag/bbc backstage" rel="tag">bbc backstage</a>, <a href="http://technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://technorati.com/tag/news" rel="tag">news</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10614/bbc-backstage-is-gonna-rock-once-they-release-the-apis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geolocation Stumbling Block: GeoURL Host Down</title>
		<link>http://maisonbisson.com/blog/post/10313/geolocation-stumbling-block-geourl-host-down/</link>
		<comments>http://maisonbisson.com/blog/post/10313/geolocation-stumbling-block-geourl-host-down/#comments</comments>
		<pubDate>Fri, 26 Nov 2004 13:41:02 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[geographic]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[gis]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[metadata]]></category>
		<category><![CDATA[semantic web]]></category>

		<guid isPermaLink="false">/?p=10313</guid>
		<description><![CDATA[
A an old John Udell piece at InfoWorld hints at GeoURLs, but the GoeURL site is down, and has been for a while. The concept sounds interesting: you mark pages with coordinates, then use GIS to map those pages to geographic locations, finding pages and people of interest along the way.
To join GeoURL, you add [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-10313"><!-- &nbsp; --></abbr>
<p>A an old John Udell piece at InfoWorld <a href="http://weblog.infoworld.com/udell/2003/01/03.html#a562" title="hints at GeoURLs">hints at GeoURLs</a>, but the <a href="http://geourl.org/" title="GoeURL site is down">GoeURL site is down</a>, and has been for a while. The concept sounds interesting: you mark pages with coordinates, then use GIS to map those pages to geographic locations, finding pages and people of interest along the way.</p>
<blockquote><p>To join GeoURL, you add this kind of metadata to your homepage:</p>
<p>&lt;META name=“ICBM” content=“42.93564,-72.27239”&gt;<br />
&lt;META name=“DC.title” content=“Jon Udell”&gt;</p></blockquote>
<p>I got interested in this sort of thing (geolocation) <a href="/blog/?p=10180" title="a while back">a while back</a>, and I haven&#8217;t quite given up.</p>
<p><strong>Update:</strong> <a href="/blog/?p=10313#comment-354">Bjørn</a> is right, GeoURL is back and I should have updated this post ages ago. Look <a href="http://maisonbisson.com/blog/search/geolocat">here</a> for more about <a href="http://maisonbisson.com/blog/search/geolocat">geolocation</a> on MaisonBisson. &#8230;And <a href="http://www.askbjoernhansen.com/">Bjørn&#8217;s website</a> is worth a look too.<!-- technorati tags start -->
<p style="text-align:right;font-size:10px;">Technorati Tags: <a href="http://technorati.com/tag/geographic" rel="tag">geographic</a>, <a href="http://technorati.com/tag/geolocation" rel="tag">geolocation</a>, <a href="http://technorati.com/tag/gis" rel="tag">gis</a>, <a href="http://technorati.com/tag/map" rel="tag">map</a>, <a href="http://technorati.com/tag/metadata" rel="tag">metadata</a>, <a href="http://technorati.com/tag/semantic web" rel="tag">semantic web</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/10313/geolocation-stumbling-block-geourl-host-down/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>