Created
February 8, 2012 18:25
-
-
Save cspanring/1771937 to your computer and use it in GitHub Desktop.
Add GeoJSON support for geometry fields in django-tastypie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Shamelessly stolen from https://github.com/newsapps/django-boundaryservice/blob/master/boundaryservice/tastyhacks.py | |
from django.contrib.gis.db.models import GeometryField | |
from django.utils import simplejson | |
from tastypie.bundle import Bundle | |
from tastypie.fields import ApiField, CharField | |
from tastypie.resources import ModelResource | |
class GeometryApiField(ApiField): | |
""" | |
Custom ApiField for dealing with data from GeometryFields (by serializing them as GeoJSON). | |
""" | |
dehydrated_type = 'geometry' | |
help_text = 'Geometry data.' | |
def hydrate(self, bundle): | |
value = super(GeometryApiField, self).hydrate(bundle) | |
if value is None: | |
return value | |
return simplejson.dumps(value) | |
def dehydrate(self, obj): | |
return self.convert(super(GeometryApiField, self).dehydrate(obj)) | |
def convert(self, value): | |
if value is None: | |
return None | |
if isinstance(value, dict): | |
return value | |
# Get ready-made geojson serialization and then convert it _back_ to a Python object | |
# so that Tastypie can serialize it as part of the bundle | |
return simplejson.loads(value.geojson) | |
class GeoResource(ModelResource): | |
""" | |
ModelResource subclass that handles geometry fields as GeoJSON. | |
""" | |
@classmethod | |
def api_field_from_django_field(cls, f, default=CharField): | |
""" | |
Overrides default field handling to support custom GeometryApiField. | |
""" | |
if isinstance(f, GeometryField): | |
return GeometryApiField | |
return super(GeoResource, cls).api_field_from_django_field(f, default) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I will issue a pull request once I'm satisfied that my branch is working right. And once I have tests + docs :)