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


Python ArcGIS Raster.get_dimension_attributes用法及代码示例


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

用法:

get_dimension_attributes(variable_name, dimension_name)

返回:

一个字典。给定变量内给定维度的属性信息。

The get_dimension_attributes method retrieves the attribute information of a dimension within a variable, such as min value, max value, unit, etc.

Parameter

Description

variable_name

必需的字符串。变量名

dimension_name

必需的字符串。维度的名称

例子:

# Usage Example: Returns specified dimension attribute dictionary for given variable

raster1.get_dimension_attributes(variable_name="variable_name",
                                 dimension_name="dimension_name")

相关用法


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