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


Python Django OGRGeomType用法及代码示例


本文介绍 django.contrib.gis.gdal.OGRGeomType 的用法。

声明

class OGRGeomType(type_input)

此类允许以多种方式中的任何一种表示 OGR 几何类型:

>>> from django.contrib.gis.gdal import OGRGeomType
>>> gt1 = OGRGeomType(3)             # Using an integer for the type
>>> gt2 = OGRGeomType('Polygon')     # Using a string
>>> gt3 = OGRGeomType('POLYGON')     # It's case-insensitive
>>> print(gt1 == 3, gt1 == 'Polygon') # Equivalence works w/non-OGRGeomType objects
True True

相关用法


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