本文簡要介紹 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。