本文簡要介紹 python 語言中 arcgis.raster.Raster.set_variable_attributes
的用法。
用法:
set_variable_attributes(variable_name, variable_attributes)
返回:
變量的屬性信息作為字典
set_variable_attributes
方法設置多維柵格中變量的屬性信息。例如,說明、單位等。注意:
影像服務不支持
set_variable_attributes
操作Parameter
Description
variable_name
必需的字符串。多維柵格數據集的變量名。
variable_attributes
包含屬性信息的必需dict,用於替換變量的當前屬性信息。
例如:
{“Description”:“Daily total precipitation”,“Unit”:“mm/day”}。
例子:
# Usage Example: Sets variable attributes to the specified variable raster1.set_variable_attributes(variable_name="variable_name", variable_attributes={"attribute_1": "value_1", "attribute_2": "value_2"})
相關用法
- Python ArcGIS Raster.set_colormap用法及代碼示例
- Python ArcGIS Raster.set_histograms用法及代碼示例
- Python ArcGIS Raster.set_property用法及代碼示例
- Python ArcGIS Raster.set_statistics用法及代碼示例
- Python ArcGIS Raster.summarize用法及代碼示例
- Python ArcGIS Raster.save用法及代碼示例
- Python ArcGIS Raster.remove_variables用法及代碼示例
- Python ArcGIS Raster.export_image用法及代碼示例
- Python ArcGIS Raster.get_dimension_values用法及代碼示例
- Python ArcGIS Raster.get_dimension_attributes用法及代碼示例
- Python ArcGIS Raster.read用法及代碼示例
- Python ArcGIS Raster.append_slices用法及代碼示例
- Python ArcGIS Raster.get_variable_attributes用法及代碼示例
- Python ArcGIS Raster.get_dimension_names用法及代碼示例
- Python ArcGIS Raster.get_statistics用法及代碼示例
- Python ArcGIS Raster.from_stac_item用法及代碼示例
- Python ArcGIS Raster.get_property用法及代碼示例
- Python ArcGIS Raster.draw_graph用法及代碼示例
- Python ArcGIS Raster.add_dimension用法及代碼示例
- Python ArcGIS Raster.rename_variable用法及代碼示例
- Python ArcGIS Raster.get_histograms用法及代碼示例
- Python ArcGIS Raster.get_colormap用法及代碼示例
- Python ArcGIS Raster.get_raster_bands用法及代碼示例
- Python ArcGIS Raster.write用法及代碼示例
- Python ArcGIS Raster.plot_histograms用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.Raster.set_variable_attributes。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。