mlaloux / geojson

A reference implementation of the Python geo interface and support for reading and writing GeoJSON format data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

geojson: encode/decode geodata
==============================

This package contains:

* The reference implementation of the Python geo interface:

  https://gist.github.com/2217756

* 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::

  >>> import geojson
  >>> p = geojson.Point([0.0, 0.0])
  >>> p 
  {"coordinates": [0.0, 0.0], "type": "Point"}

  >>> data = geojson.dumps(p)
  >>> data # doctest: +ELLIPSIS
  '{"type": "Point", "coordinates": [0.0, 0.0]}'

  >>> q = geojson.loads(data)
  >>> q # doctest: +ELLIPSIS
  {"coordinates": [0..., 0...], "type": "Point"}


The geometry classes interoperate with Shapely via the geo interface::
  >>> x = None
  ... try:
  ...     from shapely.geometry import asShape
  ... except ImportError:
  ...     pass
  ... else:
  ...     x = asShape(p)
  ...     x.wkt
  >>> if x:  
  ...    x ==  'POINT (0.0000000000000000 0.0000000000000000)'
  ... else:
  ...    x is None
  True

About

A reference implementation of the Python geo interface and support for reading and writing GeoJSON format data

License:BSD 3-Clause "New" or "Revised" License