本文简要介绍 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)
相关用法
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS build_multidimensional_transpose用法及代码示例
- Python ArcGIS build_multivariable_grid用法及代码示例
- Python ArcGIS buffer用法及代码示例
- Python ArcGIS bitwise_not用法及代码示例
- Python ArcGIS bitwise_left_shift用法及代码示例
- Python ArcGIS bitwise_xor用法及代码示例
- Python ArcGIS bitwise_right_shift用法及代码示例
- Python ArcGIS boolean_or用法及代码示例
- Python ArcGIS band_arithmetic用法及代码示例
- Python ArcGIS boundary_clean用法及代码示例
- Python ArcGIS boolean_not用法及代码示例
- Python ArcGIS bitwise_or用法及代码示例
- Python ArcGIS batch_geocode用法及代码示例
- Python ArcGIS boolean_and用法及代码示例
- Python ArcGIS boolean_xor用法及代码示例
- Python ArcGIS bitwise_and用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS Site.delete用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.analytics.build_footprints。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。