app/django/contrib/gis/db/backend/adaptor.py
changeset 323 ff1a9aa48cfd
equal deleted inserted replaced
322:6641e941ef1e 323:ff1a9aa48cfd
       
     1 class WKTAdaptor(object):
       
     2     """
       
     3     This provides an adaptor for Geometries sent to the
       
     4     MySQL and Oracle database backends.
       
     5     """
       
     6     def __init__(self, geom):
       
     7         self.wkt = geom.wkt
       
     8         self.srid = geom.srid
       
     9 
       
    10     def __eq__(self, other):
       
    11         return self.wkt == other.wkt and self.srid == other.srid 
       
    12 
       
    13     def __str__(self):
       
    14         return self.wkt