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


Python ArcGIS build_footprints用法及代碼示例


本文簡要介紹 python 語言中 arcgis.raster.analytics.build_footprints 的用法。

用法:

arcgis.raster.analytics.build_footprints(image_collection, computation_method='RADIOMETRY', value_range=None, context=None, *, gis=None, future=False, **kwargs)

返回:

計算圖像集合中每個柵格的範圍。

Parameter

Description

image_collection

必需的。輸入圖像集合。image_collection 可以是門戶項目或圖像服務 URL 或 URI。 image_collection 必須存在。

computation_method

可選字符串。使用以下方法之一細化覆蓋區:RADIOMETRY、GEOMETRY 默認值:RADIOMETRY

value_range

可選的。指定值範圍的參數。

context

context 包含影響任務執行的其他設置。

context 參數覆蓋通過arcgis.env 參數設置的值

此函數具有以下設置:

  • 並行處理因子(parallelProcessingFactor):控製光柵處理(CPU)服務實例。

    例子:

    具有指定數量的處理實例的語法示例:

    {“parallelProcessingFactor”: “2”}

    具有指定百分比的總處理實例的語法示例:

    {“parallelProcessingFactor”: “60%”}

gis

可選的 GIS 對象。如果未指定,則使用當前活動的連接。

future

僅關鍵字參數。可選的布爾值。如果為 True,則結果將是一個 GPJob 對象,並且結果將異步返回。

圖像層 url

例子:

# Usage Example 1: Determines the extent of every raster in the given image collection.
# 'GEOMETRY' computation method refines the footprints

collection = gis.content.search("my_img_collection")[0]

collection_url = build_footprints(image_collection=collection.url,
                                  computation_method="GEOMETRY",
                                  gis=gis)

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.analytics.build_footprints。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。