<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>geojson</name>
<shortdesc>Encoder/decoder for simple GIS features</shortdesc>
<description>geojson: encode/decode geodata
==============================

This package contains:

* The reference implementation of the Python geo interface:

  http://trac.gispython.org/lab/wiki/PythonGeoInterface

* Functions for encoding and decoding GeoJSON (http://geojson.org) formatted
  data.

Geojson provides geometry, feature, and collection classes, and supports
pickle-style dump and load of objects that provide the lab's Python geo
interface. Here's an example of a round-trip through the GeoJSON format::

  &gt;&gt;&gt; import geojson
  &gt;&gt;&gt; p = geojson.Point([0.0, 0.0])
  &gt;&gt;&gt; p
  Point(coordinates=[0.0, 0.0])
  &gt;&gt;&gt; data = geojson.dumps(p)
  &gt;&gt;&gt; data
  '{"type": "Point", "coordinates": [0.0, 0.0]}'
  &gt;&gt;&gt; q = geojson.loads(data, object_hook=geojson.GeoJSON.to_instance)
  &gt;&gt;&gt; q
  Point(coordinates=[0.0, 0.0])

The geometry classes interoperate with Shapely via the geo interface::

  &gt;&gt;&gt; from shapely.geometry import asShape
  &gt;&gt;&gt; x = asShape(p)
  &gt;&gt;&gt; x.wkt
  'POINT (0.0000000000000000 0.0000000000000000)'</description>
<homepage rdf:resource="http://trac.gispython.org/lab/wiki/GeoJSON" />
<maintainer><foaf:Person><foaf:name>Sean Gillies</foaf:name>
<foaf:mbox_sha1sum>6d4fc00ffb9c849f15b4c0b55833b29e33794116</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>1.0.1</revision></Version></release>
</Project></rdf:RDF>