本文簡要介紹 python 語言中 arcgis.raster.Raster.add_dimension
的用法。
用法:
add_dimension(variable, new_dimension_name, dimension_value, dimension_attributes=None)
返回:
多維柵格中的變量名稱及其維度
add_dimension
方法向給定變量添加新維度。注意:
影像服務不支持
add_dimension
操作Parameter
Description
variable
必需的字符串。要添加新維度的變量
new_dimension_name
必需的字符串。要添加的新維度的名稱
dimension_value
必需的字符串。尺寸值
dimension_attributes
新維度的可選屬性,如說明、單位等。
例子:
# Usage Example: Adds a new dimension to the specified variable of multidimensional raster raster1 = Raster(r"/path/to/mult_dim.crf") raster1.add_dimension(variable="variable_name", new_dimension_name="new_dimension_name", dimension_value="dimension_value")
相關用法
- Python ArcGIS Raster.append_slices用法及代碼示例
- 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.summarize用法及代碼示例
- 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.set_colormap用法及代碼示例
- Python ArcGIS Raster.set_histograms用法及代碼示例
- Python ArcGIS Raster.get_property用法及代碼示例
- Python ArcGIS Raster.set_variable_attributes用法及代碼示例
- Python ArcGIS Raster.save用法及代碼示例
- Python ArcGIS Raster.set_property用法及代碼示例
- Python ArcGIS Raster.draw_graph用法及代碼示例
- 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用法及代碼示例
- Python ArcGIS Raster.set_statistics用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.Raster.add_dimension。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。