MCPcopy
hub / github.com/django/django / disjoint

Method disjoint

django/contrib/gis/gdal/geometries.py:510–512  ·  view source on GitHub ↗

Return True if this geometry and the other are spatially disjoint.

(self, other)

Source from the content-addressed store, hash-verified

508 return self._topology(capi.ogr_equals, other)
509
510 def disjoint(self, other):
511 "Return True if this geometry and the other are spatially disjoint."
512 return self._topology(capi.ogr_disjoint, other)
513
514 def touches(self, other):
515 "Return True if this geometry touches the other."

Callers 2

test_preparedMethod · 0.45
test_disjointMethod · 0.45

Calls 1

_topologyMethod · 0.95

Tested by 2

test_preparedMethod · 0.36
test_disjointMethod · 0.36