本文简要介绍 python 语言中 arcgis.raster.Raster.set_colormap
的用法。
用法:
set_colormap(color_map, variable_name=None)
返回:
None
set_colormap
方法设置光栅的颜色图。注意:
如果栅格是多维的,它会为变量设置颜色图。
影像服务不支持
set_colormap
操作
Parameter
Description
color_map
可选(字符串,字典):应用于栅格的颜色图。这可以是一个字符串,指示要使用的颜色图或色带的名称,例如分别为 NDVI 或 Yellow To Red。这也可以是带有自定义颜色图或颜色渐变对象的 Python 字典。
例如:
自定义颜色图对象,例如,{‘values’: [0, 1, 2, 3, 4, 5, 6], ‘colors’: ['#000000', '#DCFFDF', '#B8FFBE', '#85FF90 ', '#50FF60','#00AB10', '#006B0A']}
颜色渐变名称,例如 “Yellow To Red”
颜色图名称,例如 “NDVI”
自定义色带对象,例如 {“type”: “algorithmic”, “fromColor”: [115, 76, 0, 255],”toColor”: [255, 25, 86, 255], “algorithm”: “esriHSVAlgorithm” }
variable_name
可选字符串。多维栅格数据集的变量名。如果未指定变量且栅格是多维的,则将设置第一个变量的颜色图。
例子:
# Usage Example: Sets "NDVI" color map for the raster raster1.set_colormap(color_map="NDVI")
相关用法
- Python ArcGIS Raster.set_histograms用法及代码示例
- Python ArcGIS Raster.set_variable_attributes用法及代码示例
- 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_colormap。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。