當前位置: 首頁>>代碼示例>>Python>>正文


Python geometries.OGRGeometry方法代碼示例

本文整理匯總了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 
開發者ID:ComputerSocietyUNB,項目名稱:CodingDojo,代碼行數:7,代碼來源:layer.py

示例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.') 
開發者ID:ComputerSocietyUNB,項目名稱:CodingDojo,代碼行數:16,代碼來源:layer.py

示例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] 
開發者ID:ComputerSocietyUNB,項目名稱:CodingDojo,代碼行數:12,代碼來源:layer.py

示例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)) 
開發者ID:ComputerSocietyUNB,項目名稱:CodingDojo,代碼行數:7,代碼來源:feature.py


注:本文中的django.contrib.gis.gdal.geometries.OGRGeometry方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。