本文整理匯總了Python中django.contrib.gis.gdal.geometries.OGRGeometry方法的典型用法代碼示例。如果您正苦於以下問題:Python geometries.OGRGeometry方法的具體用法?Python geometries.OGRGeometry怎麽用?Python geometries.OGRGeometry使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類django.contrib.gis.gdal.geometries
的用法示例。
在下文中一共展示了geometries.OGRGeometry方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _get_spatial_filter
# 需要導入模塊: from django.contrib.gis.gdal import geometries [as 別名]
# 或者: from django.contrib.gis.gdal.geometries import OGRGeometry [as 別名]
def _get_spatial_filter(self):
try:
return OGRGeometry(geom_api.clone_geom(capi.get_spatial_filter(self.ptr)))
except GDALException:
return None
示例2: _set_spatial_filter
# 需要導入模塊: from django.contrib.gis.gdal import geometries [as 別名]
# 或者: from django.contrib.gis.gdal.geometries import OGRGeometry [as 別名]
def _set_spatial_filter(self, filter):
if isinstance(filter, OGRGeometry):
capi.set_spatial_filter(self.ptr, filter.ptr)
elif isinstance(filter, (tuple, list)):
if not len(filter) == 4:
raise ValueError('Spatial filter list/tuple must have 4 elements.')
# Map c_double onto params -- if a bad type is passed in it
# will be caught here.
xmin, ymin, xmax, ymax = map(c_double, filter)
capi.set_spatial_filter_rect(self.ptr, xmin, ymin, xmax, ymax)
elif filter is None:
capi.set_spatial_filter(self.ptr, None)
else:
raise TypeError('Spatial filter must be either an OGRGeometry instance, a 4-tuple, or None.')
示例3: get_geoms
# 需要導入模塊: from django.contrib.gis.gdal import geometries [as 別名]
# 或者: from django.contrib.gis.gdal.geometries import OGRGeometry [as 別名]
def get_geoms(self, geos=False):
"""
Returns a list containing the OGRGeometry for every Feature in
the Layer.
"""
if geos:
from django.contrib.gis.geos import GEOSGeometry
return [GEOSGeometry(feat.geom.wkb) for feat in self]
else:
return [feat.geom for feat in self]
示例4: geom
# 需要導入模塊: from django.contrib.gis.gdal import geometries [as 別名]
# 或者: from django.contrib.gis.gdal.geometries import OGRGeometry [as 別名]
def geom(self):
"Returns the OGR Geometry for this Feature."
# Retrieving the geometry pointer for the feature.
geom_ptr = capi.get_feat_geom_ref(self.ptr)
return OGRGeometry(geom_api.clone_geom(geom_ptr))