MCPcopy
hub / github.com/django/django / overlaps

Method overlaps

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

Return True if this geometry overlaps the other.

(self, other)

Source from the content-addressed store, hash-verified

528 return self._topology(capi.ogr_contains, other)
529
530 def overlaps(self, other):
531 "Return True if this geometry overlaps the other."
532 return self._topology(capi.ogr_overlaps, other)
533
534 # #### Geometry-generation Methods ####
535 def _geomgen(self, gen_func, other=None):

Callers 2

test_preparedMethod · 0.45
test_overlapsMethod · 0.45

Calls 1

_topologyMethod · 0.95

Tested by 2

test_preparedMethod · 0.36
test_overlapsMethod · 0.36