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


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


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

用法:

filter_by_time(start_time='', end_time='', time_field_name='StdTime', date_time_format=None, context=None)

返回:

仅包含满足过滤器的项目的 RasterCollection 对象

filter_by_time 方法按时间过滤RasterCollection

Parameter

Description

start_time

开始时间的可选字符串表示。

end_time

结束时间的可选字符串表示。

time_field_name

可选字符串。包含每个项目的时间信息的字段的名称。默认值:“StdTime”

date_time_format

可选字符串。用于格式化时间字段值的时间格式。请参考此参数的python日期时间标准(See this)。

默认为无,这意味着使用 Pro 标准时间格式“%Y-%m-%dT%H:%M:%S”并忽略以下 sub-second。

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: Filters the raster collection based on time parameters.

filtered_rc_time = rc.filter_by_time(start_time="1990-01-01 00:00:00",
                                     end_time="1999-12-31 00:00:00",
                                     time_field_name="AcquisitionDate")

相关用法


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