srid Returns or sets the spatial reference identifier corresponding to SpatialReference of this geometry. Returns None if there is no spatial reference information associated with this geometry, or if an SRID cannot be determined.
intersects(other) Returns True if this geometry intersects the other, otherwise returns False.
kml Returns a string representation of this geometry in KML format.
num_points Alias for point_count.
json Returns a string representation of this geometry in JSON format: >>> OGRGeometry('POINT(1 2)').json '{ "type": "Point", "coordinates": [ 1.000000, 2.000000 ] }'
num_coords Alias for point_count.
intersection() Returns the region consisting of the intersection of this geometry and the other, as a new OGRGeometry object.
geos Returns a GEOSGeometry object corresponding to this geometry.
geom_name Returns the name of the type of this geometry: >>> polygon.geom_name 'POLYGON'
hex Returns a string representation of this geometry in HEX WKB format: >>> OGRGeometry('POINT(1 2)').hex '0101000000000000000000F03F0000000000000040'
Page 100 of 226