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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。