app/django/contrib/gis/db/backend/adaptor.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Sun, 30 Nov 2008 17:35:05 +0000
changeset 630 0ac985fd8efa
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Add missing import, remove unused import and add missing parameters to methods in soc.views.models.user_self module. Patch by: Pawel Solyga

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