overlaps(other) Returns True if this geometry overlaps the other, otherwise returns False.
num_points Alias for point_count.
num_coords Alias for point_count.
kml Returns a string representation of this geometry in KML format.
json Returns a string representation of this geometry in JSON format: >>> OGRGeometry('POINT(1 2)').json '{ "type": "Point", "coordinates": [ 1.000000, 2.000000 ] }'
intersects(other) Returns True if this geometry intersects the other, otherwise returns False.
intersection() Returns the region consisting of the intersection of this geometry and the other, as a new OGRGeometry object.
hex Returns a string representation of this geometry in HEX WKB format: >>> OGRGeometry('POINT(1 2)').hex '0101000000000000000000F03F0000000000000040'
gml Returns a string representation of this geometry in GML format: >>> OGRGeometry('POINT(1 2)').gml '<gml:Point><gml:coordinates>1,2</gml:coordinates></gml:Point>'
geos Returns a GEOSGeometry object corresponding to this geometry.
Page 100 of 226