578GeoJSON 1.0a1

2007-09-29T18:09:56Z

After talking with Chris and seeing Camptocamp's plans for using JSON between the client and server sides of Cartoweb 4, I am going to get with the GeoJSON draft again. To help out, I have updated GeoJSON, tagged it as 1.0a1, and uploaded it to the Python Package Index: http://pypi.python.org/pypi/GeoJSON. It complements Shapely like this:

>>> from shapely.geometry import Point
>>> point = Point(0.0, 0.0)
>>> import geojson
>>> geojson.dumps(point)
'{"type": "Point", "coordinates": [0.0, 0.0]}'

Comments

1Re: GeoJSON 1.0a1

Christopher Schmidt, 2007-10-01T01:50:04Z
http://trac.gispython.org/projects/PCL/wiki/GeoJSON , linked from the pypi page, is a 404. http://trac.gispython.org/projects/PCL/wiki/GeoJson exists. (I like the former better.)

2Re: GeoJSON 1.0a1

Sean, 2007-10-01T14:10:59Z
Fixed. [wiki:GeoJSON] it is.

Comments are closed after 13 days.

Some rights reserved 2008 by Sean Gillies.