MCPcopy
hub / github.com/django/django / OGREnvelope

Class OGREnvelope

django/contrib/gis/gdal/envelope.py:22–30  ·  view source on GitHub ↗

Represent the OGREnvelope C Structure.

Source from the content-addressed store, hash-verified

20# See the 'ogr_core.h' source file for more information:
21# https://gdal.org/doxygen/ogr__core_8h_source.html
22class OGREnvelope(Structure):
23 "Represent the OGREnvelope C Structure."
24
25 _fields_ = [
26 ("MinX", c_double),
27 ("MaxX", c_double),
28 ("MinY", c_double),
29 ("MaxY", c_double),
30 ]
31
32
33class Envelope:

Callers 3

extentMethod · 0.90
envelopeMethod · 0.90
_from_sequenceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected