Shorter Paul Smith

Christopher Schmidt rocks your world.

Comments

Re: Shorter Paul Smith

Author: Paul Smith

Heh, it's true, lotta open source MetaCarta love. Artem, too. ;)

Re: Shorter Paul Smith

Author: Sean

Thanks for being a good sport about the paraphrasing, Paul. I'm a mapnik fan too.

Google App Engine

Google App Engine is the Python news of the day. Python, WSGI, and Bigtable (well, non-relational datastores generally) are 3 things I've been telling geospatial folks to keep an eye on.

Via Simon Willison.

Comments

Re: Google App Engine

Author: Yves Moisan

"and Bigtable (well, non-relational datastores generally)"; "The App Engine scalable datastore stores and performs queries over data objects," Do you know if it's pickled Python objects in a file (like the ZODB) or Google's own object database that stores objects in another language ?

Re: Google App Engine

Author: Sean

Yves, I don't know much about the GFS, but it's not that kind of an object database.

Re: Google App Engine

Author: Paolo

anyway seems that is already late to get the preview account :-(, it is only for the first 10.000 developers: could you manage to get it?

Re: Google App Engine

Author: Sean

I didn't apply. Too damn busy. Josh Livni found what looks like the first neo-geo app. If the App Engine were to add a KML/GML geometry model, a spatial index, and something like Shapely, you could really make some cool geo applications.

Re: Google App Engine

Author: Yves Moisan

An interesting blog post about the Google datastore : Ivan Krstić's Will Google fulfill the promise of WinFS?

How Standards will be Made

I continued to think about "mass market geo standards" and standards in general while whipping my yard into shape this past weekend.

The "mass market" thesis is: consumers want or need "x", they can't or don't want to make "x" themselves, and they would rather be ignorant of how "x" is produced. As Ed Parsons put it: "I'd like some cheese ... [but I'd] rather not know how it's made". I won't dispute that there are mass markets for products like paper bags, toilet paper, roller-ball pens, post-it notes, and paperback books. I also won't dispute the fact that people eat a lot of crappy factory cheese food products. These mass markets are a 20th century, first-world phenomenon: an increasingly prosperous middle class with an appetite for goods produced more cheaply on an industrial scale. I don't think mass markets are universal or everlasting. If software or architecture standardization ever worked like this, it won't for much longer.

The internet has changed the nature of interoperation and organization. We're not as dependent on old media and producers as agents of change. People can connect with each other and organize themselves to solve problems. This, of course, is the thesis of Clay Shirky's book: "Here Comes Everybody", and there's abundant supporting evidence in the geospatial domain. Anybody dissatisfied with availability of free and open data can start a community like OpenStreetMap. This is not to say that starting OSM didn't require initiative and hard work, just that there are very few communication hurdles anymore. Anybody who wants to exchange geographic locations via RSS feeds can start a community like GeoRSS. Anybody who wants to discuss alternatives to the OGC's service oriented architecture can start a mailing list like Geo-Web-REST. Anybody who wants to exchange geodata via the JSON format can start a working group like GeoJSON. The designers and developers who want standards can now organize themselves to produce them. Open source, open data, open standards.

By the way: cheese is milk, salt, rennet, microbes, and time. Mix them and wait. Go ask your local artisan cheese maker for the fascinating (no irony here) details.

Comments

Re: How Standards Will be Made

Author: Yves Moisan

"I'd like some cheese ... [but I'd] rather not know how it's made". I even heard : "I don't want to know what you program your web site with : I want it to just work". Translation : I don't care about Open Source and we'll pay for whatever we need to get things to work. When "In a few years' time, almost all businesses will use open source ... " (http://tech.slashdot.org/article.pl?sid=08/04/04/235212), people may want to know what you used to program that web site (even if the reason were just to make sure they didn't need to pay for software licences ...).

Useful GMaps GeoRSS Quirk

I noted recently that the Google Maps GeoRSS mapper acts on every location found in a feed. You can exploit this feature to set a map scale independent of the extent of the locations in the feed entries. Add a large bounding box location as a child of the feed, outside any entry:

<?xml version="1.0" encoding="utf-8"?>
<feed
  xmlns="http://www.w3.org/2005/Atom"
  xmlns:georss="http://www.georss.org/georss"
  xmlns:gml="http://www.opengis.net/gml"
  xmlns:thr="http://purl.org/syndication/thread/1.0"
  >
  <georss:where>
    <gml:Polygon>
      <gml:exterior>
        <gml:LinearRing>
          <gml:posList>
            0.0 -50.0 70.0 -50.0 70.0 -120.0 0.0 -120.0 0.0 -50.0
          </gml:posList>
        </gml:LinearRing>
      </gml:exterior>
    </gml:Polygon>
  </georss:where>
  <entry>
    <id>urn:uuid:7e8ee974-9181-4eae-ad65-55d29175d942</id>
    <link href="http://example.org/entries/1"/>
    <title>NCAA Men's Final 2008</title>
    <summary>UNC-Chapel Hill vs UCLA. San Antonio, TX. 7 April 2008.</summary>
    <content type="application/xhtml+xml" src="http://example.org/entries/1"/>
    <georss:where>
      <gml:Point>
        <gml:pos>29.422853 -98.493805</gml:pos>
      </gml:Point>
    </georss:where>
  </entry>
  <entry>
    <id>urn:uuid:53664db3-4598-45d4-a727-022c6203322e</id>
    <link rel="related" href="http://example.org/entries/1"/>

    <thr:in-reply-to
      ref="urn:uuid:7e8ee974-9181-4eae-ad65-55d29175d942"
      type="application/xhtml+xml"
      href="http://www.example.org/entries/1"
      />

    <title>UNC-Chapel Hill</title>
    <summary>This is the location of the UNC (http://www.unc.edu) campus in
    Chapel Hill. Related to: http://example.org/entries/1.</summary>
    <georss:where>
      <gml:Point>
        <gml:pos>35.914078 -79.056931</gml:pos>
      </gml:Point>
    </georss:where>
  </entry>
  <entry>
    <id>urn:uuid:2528d1b4-b5a9-415c-be69-f83974e3e6af</id>
    <link rel="related" href="http://example.org/entries/1"/>

    <thr:in-reply-to
      ref="urn:uuid:7e8ee974-9181-4eae-ad65-55d29175d942"
      type="application/xhtml+xml"
      href="http://www.example.org/entries/1"
      />

    <title>UCLA</title>
    <summary>This is the location of the UCLA (http://www.ucla.edu) campus in
    Westwood. Related to: http://example.org/entries/1.</summary>
    <georss:where>
      <gml:Point>
        <gml:pos>34.060623 -118.445663</gml:pos>
      </gml:Point>
    </georss:where>
  </entry>
</feed>

and GMaps displays the feed on a map zoomed out to encompass the bounding region specified for the feed.

http://sgillies.net/images/feed-location.jpg

Compare that to this map of the same feed with the top-level location removed:

http://sgillies.net/images/multi-entry.jpg

I'm thinking this quirk just might be a good practice.

Update (2008-04-6): So much for my finals prediction.

Poudre River Osprey

http://sgillies.net/images/250px-Osprey_mg_9605.jpg

My reward for braving the blustery weather to run yesterday was seeing 3 Osprey, just arrived from their winter range, fishing at the "ponds" (flooded gravel pits) along the Cache la Poudre River. The birds, or their parents, were introduced to the region in 1989: before the construction of reservoirs there was no habitat for Osprey on the eastern slope of the Front Range.

This Osprey photo was taken by Mike Baird near Los Osos, California. I saw 2 up close on the Mendocino Coast last summer, but wasn't carrying a camera at the time.

Comments

Re: Poudre River Osprey - see 26 more Osprey photos by Mike Baird

Author: Mike Baird

Please enjoy 26 more of my Osprey photos available for any use under the Attribution Creative Commons license as was this one. Mike Baird http://flickr.com/photos/mikebaird/

Re: Poudre River Osprey

Author: Sean

Nice! I saw one of these Osprey hauling a fish up from the pond last summer. Unfortunately, I missed the dive and splash.

Vulgar Geography

I like Tom's new name for "neogeography" so much that I'm adopting it for my blog tagline.

Comments

Re: Vulgar Geography

Author: Paolo

Hey Sean to be honest I preferred the old tagline, with the import Cartography Python stuff ;-)

Re: Vulgar Geography

Author: Sean

I don't do cartography these days, only neo or vulgar geography, but I do miss the python prompt.

Re: Vulgar Geography

Author: Paolo

>>> import sgillies >>> _ looks cool! :-)

Emerging Geo Technology

Looks like Andrew Turner's presentation provided the fresh air that Ed Parsons was enjoying. His material looks great and I'd like to see this reprised someday. Getting a bit of credit at the end is gratifying: I'm proud of the work I've done to introduce some of these ideas to the geospatial community.

Still, I think the "mass market geo standards" concept is bullshit. If anyone can explain how framing architectures and architectural styles as consumer products benefits developers and designers, I'm all ears and eyes.

Comments

Re: Emerging Geo Technology

Author: Andrew Turner

It's all Verbage. What I may summarize as "Mass Market" is addressing the needs of a Market outside the geospatial industry. Advising and offering geo-capabilities into the formats that are utilized in other realms. This is essentially your work on Atom "Ground State". So you could take the qualifier "Mass" as being "bigger than the small world of the GIS Market". And really, the only people that read this stuff about standards & architectures are consumers of that product: developers. anyways, it's just verbage. onward and upward - and ever spiraling...

Re: Emerging Geo Technology

Author: Sean

No, I think there's more wrong there than just the verbiage.

Mush and Paste

I've added a service to Mush that demonstrates the concept of dereferencing linked locations. Only GeoRSS entry locations are currently supported. See the wiki page there for more details.

I was going to use this as an excuse to learn more about Pylons. What I ended up learning is that I don't like Routes, the default Pylons URL dispatcher, and so I just made my own Selector-based app deployable with Paste Deploy. The public read-only repo for Mush is now here.

Vimperator

No joke: I'm loving Vimperator.

http://sgillies.net/images/vimperator.jpg

Comments

Re: Vimperator

Author: Matt Perry

vimperator is indeed awesome! After learning to navigate with it, using a mouse to browse the web seems like an antiquated idea.

Re: Vimperator

Author: Sean

At first, I feared it would be no more than a gimmick. Now, I'm hooked. I may even have to optimize my web sites for Vimperator.

Re: Vimperator

Author: Gary

Sean, you are a true nerd---and I mean that with the utmost respect. (written using my newly installed Vimperator)