當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。