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


Python ArcGIS RasterCollection.filter_by用法及代码示例


本文简要介绍 python 语言中 arcgis.raster.RasterCollection.filter_by 的用法。

用法:

filter_by(where_clause=None, query_geometry_or_extent=None, raster_query=None, context=None)

返回:

仅包含满足查询的项目的 RasterCollection 对象

filter_by 方法根据属性和/或空间查询过滤 RasterCollection

Parameter

Description

where_clause

可选字符串。用于选择栅格子集的 SQL 表达式

query_geometry_or_extent

可选几何对象。集合中未能与给定几何相交的项目将被排除

raster_query

可选字符串。用于通过栅格的关键属性选择栅格子集的 SQL 表达式。

context

可选字典。用于控制 RasterCollection 创建的其他属性。上下文参数的默认值将与应用于父集合的上下文设置的默认值相同。

目前可用:

  • query_boundary: This boolean value set to this option determines whether to add SHAPE field to the RasterCollection. The value in the SHAPE field represents the boundary/geometry of the raster. The query_boundary parameter is honoured only when the RasterCollection is created from a list of Rasters.

    • True: Set query_boundary to True to add the SHAPE field to the RasterCollection.

    • False: Set query_boundary to False to not add the SHAPE field to the RasterCollection. (Creation of RasterCollection would be faster)

    Example:

    {“query_boundary”:True}

例子:

# Usage Example: Creates a Raster collection and filters rasters satisfying the raster query.

service_url = gis.content.search('my_image_service')[0].url
rc = RasterCollecton(service_url, gis=gis)

filtered_rc = rc.filter_by(raster_query="raster_query")

相关用法


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