本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。