MCPcopy
hub / github.com/django/django / union

Method union

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

Return a new geometry consisting of the region which is the union of this geometry and the other.

(self, other)

Source from the content-addressed store, hash-verified

574 return self._geomgen(capi.geom_sym_diff, other)
575
576 def union(self, other):
577 """
578 Return a new geometry consisting of the region which is the union of
579 this geometry and the other.
580 """
581 return self._geomgen(capi.geom_union, other)
582
583 @property
584 def centroid(self):

Callers 4

__or__Method · 0.95
test_srsMethod · 0.95
test_unionMethod · 0.95
call_commandFunction · 0.45

Calls 1

_geomgenMethod · 0.95

Tested by 2

test_srsMethod · 0.76
test_unionMethod · 0.76