Skip to main content

OGREnvelope

Represent the OGREnvelope C Structure.

Attributes

AttributeTypeDescription
MinXc_doubleThe minimum X-coordinate value representing the left boundary of the bounding box.
MaxXc_doubleThe maximum X-coordinate value representing the right boundary of the bounding box.
MinYc_doubleThe minimum Y-coordinate value representing the bottom boundary of the bounding box.
MaxYc_doubleThe maximum Y-coordinate value representing the top boundary of the bounding box.

Constructor

Signature

def OGREnvelope() - > null

Signature

def OGREnvelope(
MinX: float = null,
MaxX: float = null,
MinY: float = null,
MaxY: float = null
) - > null

Parameters

NameTypeDescription
MinXfloat = nullThe minimum X-coordinate (west) boundary of the envelope
MaxXfloat = nullThe maximum X-coordinate (east) boundary of the envelope
MinYfloat = nullThe minimum Y-coordinate (south) boundary of the envelope
MaxYfloat = nullThe maximum Y-coordinate (north) boundary of the envelope