You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
370 B
14 lines
370 B
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
|
|
|