本文簡要介紹 python 語言中 arcgis.raster.ImageryLayer.draw_graph
的用法。
用法:
draw_graph(show_attributes=False, graph_size='14.25, 15.25')
返回:
圖表
draw_graph
方法顯示函數鏈的結構表示及其柵格輸入值。如果show_attributes
設置為True
,那麽draw_graph
方法還會顯示函數鏈中所有函數的屬性,藍色矩形框表示柵格,綠色矩形框表示屬性,柵格函數名稱黃色的。Parameter
Description
show_attributes
可選的布爾值。如果
True
,顯示的圖形包括函數的所有屬性,不僅是函數名稱和柵格輸入 默認設置為 False,僅顯示柵格函數名稱和柵格輸入。graph_size
可選字符串。繪圖的最大寬度和高度,以英寸為單位,以逗號分隔。如果隻給出一個數字,則它同時用於寬度和高度。如果已定義且繪圖大於給定尺寸,則繪圖將統一按比例縮小,使其適合給定尺寸。
例子:
# Usage Example: Draws the function chain applied on the ImageryLayer object created from an Image service. imagery_layer = ImageryLayer("https://myserver/arcgis/rest/services/ImageServiceName/ImageServer", gis=gis) grayscale_layer = grayscale(raster=imagery_layer) invert_layer = boolean_not(rasters=[grayscale_layer]) invert_layer.draw_graph(show_attributes=True)
相關用法
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.plot_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.to_features用法及代碼示例
- Python ArcGIS ImageryLayer.compute_cache_info用法及代碼示例
- Python ArcGIS ImageryLayer.slices用法及代碼示例
- Python ArcGIS ImageryLayer.save用法及代碼示例
- Python ArcGIS ImageryLayer.query用法及代碼示例
- Python ArcGIS ImageryLayer.statistics用法及代碼示例
- Python ArcGIS ImageryLayer.compute_class_stats用法及代碼示例
- Python ArcGIS ImageryLayer.export_image用法及代碼示例
- Python ArcGIS ImageryLayer.compute_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.measure用法及代碼示例
- Python ArcGIS ImageryLayer.get_histograms用法及代碼示例
- Python ArcGIS ImageryLayer.compute_angles用法及代碼示例
- Python ArcGIS ImageryLayer.filter_by用法及代碼示例
- Python ArcGIS ImageryLayer.identify用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.delete_tiles用法及代碼示例
- Python ArcGIS ImageryLayer用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.import_tiles用法及代碼示例
- Python ArcGIS ImageryLayerCacheManager.update_tiles用法及代碼示例
- Python ArcGIS ImageryTileManager.export用法及代碼示例
- Python ArcGIS ImageryTileManager.estimate_size用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS Item.publish用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.raster.ImageryLayer.draw_graph。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。