Class GEOSCoordSeq
The internal representation of a list of coordinates inside a Geometry.
Declaration
source linkDocumentation
Methods
▷ def __getitem__(self, index) Return the coordinate sequence value at the given index.
▷ def __init__(self, ptr, z=False) Initialize from a GEOS pointer.
▷ def __iter__(self) Iterate over each point in the coordinate sequence.
▷ def __len__(self) Return the number of points in the coordinate sequence.
▷ def __setitem__(self, index, value) Set the coordinate sequence value at the given index.
▷ def __str__(self) Return the string representation of the coordinate sequence.
▷ def clone(self) Clone this coordinate sequence.
▷ def dims(self) @property Return the dimensions of this coordinate sequence.
▷ def getOrdinate(self, dimension, index) Return the value for the given dimension and index.
▷ def getX(self, index) Get the X value at the index.
▷ def getY(self, index) Get the Y value at the given index.
▷ def getZ(self, index) Get Z with the value at the given index.
▷ def hasz(self) @property Return whether this coordinate sequence is 3D. This property value is inherited from the parent Geometry.
▷ def is_counterclockwise(self) @property Return whether this coordinate sequence is counterclockwise.
@property
def is_counterclockwise(self)
▷ def kml(self) @property Return the KML representation for the coordinates.
▷ def setOrdinate(self, dimension, index, value) Set the value for the given dimension and index.
▷ def setX(self, index, value) Set X with the value at the given index.
▷ def setY(self, index, value) Set Y with the value at the given index.
▷ def setZ(self, index, value) Set Z with the value at the given index.
▷ def size(self) @property Return the size of this coordinate sequence.
▷ def tuple(self) @property Return a tuple version of this coordinate sequence.