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


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


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

用法:

remove_variables(variable_names)

返回:

一个列表。所有变量的列表。

remove_variables 方法删除给定的变量。

注意:

影像服务不支持 remove_variables 操作。

Parameter

Description

variable_names

所需清单。要删除的变量列表

例子:

# Usage Example: Removes specified variable and returns the list of remaining variables in the raster dataset.

raster1.remove_variables(variable_names=["variable_name_1", "variable_name_2"])

相关用法


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