app/django/contrib/gis/db/backend/adaptor.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sat, 31 Jan 2009 11:28:05 +0000
changeset 1099 ec67ea2f380b
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Remove simplejson module from our repository since it's a duplicate of django.utils.simplejson. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

class WKTAdaptor(object):
    """
    This provides an adaptor for Geometries sent to the
    MySQL and Oracle database backends.
    """
    def __init__(self, geom):
        self.wkt = geom.wkt
        self.srid = geom.srid

    def __eq__(self, other):
        return self.wkt == other.wkt and self.srid == other.srid 

    def __str__(self):
        return self.wkt