当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Django GeometryCollection用法及代码示例


本文介绍 django.contrib.gis.geos.GeometryCollection 的用法。

声明

class GeometryCollection(*args, **kwargs)

GeometryCollection 对象可以通过传入其他 GEOSGeometry 作为参数或单个 GEOSGeometry 对象序列来实例化:

>>> poly = Polygon( ((0, 0), (0, 1), (1, 1), (0, 0)) )
>>> gc = GeometryCollection(Point(0, 0), MultiPoint(Point(0, 0), Point(1, 1)), poly)
>>> gc = GeometryCollection((Point(0, 0), MultiPoint(Point(0, 0), Point(1, 1)), poly))

相关用法


注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.gis.geos.GeometryCollection。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。