本文簡要介紹 python 語言中 arcgis.raster.functions.colormap
的用法。
用法:
arcgis.raster.functions.colormap(raster, colormap_name=None, colormap=None, colorramp=None, astype=None)
返回:
彩色輸出柵格。
顏色圖函數根據顏色圖中的特定顏色轉換像素值,以將柵格數據顯示為彩色 (RGB) 圖像。欲了解更多信息,請參閱Colormap function
Parameter
Description
raster
需要輸入
Raster
/ImageryLayer
對象。colormap_name
可選字符串。顏色圖名稱。可用選項是 - “Random” | “NDVI” | “Elevation” | “Gray”。
colormap
可選列表。
用法
[[<value1>, <red1>, <green1>, <blue1>], //[int, int, int, int][<value2>, <red2>, <green2>, <blue2>]]colorramp
可以是指定顏色漸變名稱的字符串,例如 - “Black To White” | “Yellow To Red” | “Slope” |更多... 有關顏色漸變對象的更多信息,請參閱顏色漸變對象,網址為
astype
可選字符串。指定輸出像素類型。可用選項是 - “C128” | “C64” | “F32” | “F64” | “S16” | “S32” | “S8” | “U1” | “U16” | “U2” | “U32” | “U4” | “U8”。默認為無。
例子:
# Usage Example 1: Apply NDVI color map to the raster to detect live vegetation. colormap_op = colormap(raster, colormap="NDVI")
相關用法
- Python ArcGIS colormap_to_rgb用法及代碼示例
- Python ArcGIS compute_change_raster用法及代碼示例
- Python ArcGIS copy_raster用法及代碼示例
- Python ArcGIS compute_accuracy_for_object_detection用法及代碼示例
- Python ArcGIS connect_origins_to_destinations用法及代碼示例
- Python ArcGIS copy_to_data_store用法及代碼示例
- Python ArcGIS convert_feature_to_raster用法及代碼示例
- Python ArcGIS convert_raster_to_feature用法及代碼示例
- Python ArcGIS cosh用法及代碼示例
- Python ArcGIS contour用法及代碼示例
- Python ArcGIS con用法及代碼示例
- Python ArcGIS cos用法及代碼示例
- Python ArcGIS calculate_statistics用法及代碼示例
- Python ArcGIS create_space_time_cube用法及代碼示例
- Python ArcGIS classify用法及代碼示例
- Python ArcGIS ccdc_analysis用法及代碼示例
- Python ArcGIS create_viewshed用法及代碼示例
- Python ArcGIS create_route_layers用法及代碼示例
- Python ArcGIS create_drive_time_areas用法及代碼示例
- Python ArcGIS create_image_collection用法及代碼示例
- Python ArcGIS create_buffers用法及代碼示例
- Python ArcGIS create_watersheds用法及代碼示例
- Python arcgis.learn.classify_objects用法及代碼示例
- Python ArcGIS clip_layer用法及代碼示例
- Python arcgis.learn.classify_pixels用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.functions.colormap。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。