當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。