Django

Code

root/django/branches/gis/django/contrib/gis/db/backend/adaptor.py

Revision 7464, 370 bytes (checked in by jbronn, 5 months ago)

gis: The WKTAdaptor needs the SRID for Oracle; now test geodetic dwithin lookups on Oracle.

Line 
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
Note: See TracBrowser for help on using the browser.