web/lib/django/contrib/gis/db/backend/adaptor.py
changeset 29 cc9b7e14412b
parent 28 b758351d191f
child 30 239f9bcae806
equal deleted inserted replaced
28:b758351d191f 29:cc9b7e14412b
     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
       
    15 
       
    16     def prepare_database_save(self, unused):
       
    17         return self