本文简要介绍 python 语言中 arcgis.raster.ImageryLayerCacheManager.delete_tiles
的用法。
用法:
delete_tiles(levels, extent=None)
返回:
一个字典
delete_tiles
方法删除当前缓存的切片。Parameter
Description
levels
必需的字符串,要删除的级别。例如,0-5,10,11-20 或 1,2,3 或 0-5
extent
可选字典,如果指定,此范围内的切片将被删除或将根据服务的全范围删除。
- 例子:
- 6224324.092137296,487347.5253569535,11473407.698535524,4239488.369818687minx、miny、maxx、最大值或,{“xmin”:6224324.092137296,”ymin”:487347.5253569535, “xmax”:11473407.698535524,”ymax”:4239488.369818687}“spatialReference”:{“wkid”:102100}} JSON范围对象的表示。
from arcgis.mapping import ImageryLayer from arcgis.gis import GIS # Example Usage gis = GIS(url, username, password) img_lyr = ImageryLayer("<url>", gis) img_lyr_cache_manager = img_lyr.cache_manager deleted_tiles = img_lyr_cache_manager.delete_tiles(levels = "11-20", extent = { "xmin":6224324.092137296, "ymin":487347.5253569535, "xmax":11473407.698535524, "ymax":4239488.369818687 } )
相关用法
- Python ArcGIS ImageryLayerCacheManager.import_tiles用法及代码示例
- Python ArcGIS ImageryLayerCacheManager.update_tiles用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS ImageryLayer.draw_graph用法及代码示例
- 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用法及代码示例
- 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 ImageryTileManager.export用法及代码示例
- Python ArcGIS ImageryTileManager.estimate_size用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.ImageryLayerCacheManager.delete_tiles。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。