本文简要介绍 python 语言中 arcgis.raster.analytics.list_datastore_content
的用法。
用法:
arcgis.raster.analytics.list_datastore_content(datastore, filter=None, *, gis=None, future=False, **kwargs)
返回:
数据存储中的内容列表
列出向服务器注册的数据存储的内容(fileShares、cloudStores、rasterStores)。
Parameter
Description
datastore
必需的字符串或列表。要列出其中内容的文件共享、光栅存储或云存储数据存储。它可以是指定数据存储路径的字符串,例如:“/fileShares/SensorData”、“/cloudStores/testcloud”、“/rasterStores/rasterstore”,也可以是包含文件共享、光栅存储或云存储路径的数据存储对象。
例子:
ds=analytics.get_datastores()ds_items=ds.search()ds_items[1]ds_items[1] may be specified as input for datastore它也可以是数据存储路径列表或包含文件共享、栅格存储或云存储路径的数据存储对象列表。
为了列出数据存储项,可以只指定数据存储的名称
例如:fileShares 或例如:cloudStore、rasterStore
filter
可选的。过滤掉要显示的栅格内容
gis
仅关键字参数。可选的
GIS
对象。运行该工具的 GIS。如果未指定,则使用活动 GIS。future
仅关键字参数。可选的布尔值。如果为 True,则结果将是一个 GPJob 对象,并且结果将异步返回。
例子:
# Usage Example 1: Returns the contents of the rasterstore registered with the server. datastore_op = list_datastore_content("/rasterStores/rasterstore", gis=gis)
相关用法
- Python arcgis.learn.list_models用法及代码示例
- Python ArcGIS linear_spectral_unmixing用法及代码示例
- Python ArcGIS log10用法及代码示例
- Python ArcGIS log2用法及代码示例
- Python ArcGIS landtrendr_analysis用法及代码示例
- Python ArcGIS less_than用法及代码示例
- Python ArcGIS less_than_equal用法及代码示例
- Python ArcGIS ln用法及代码示例
- Python ArcGIS local用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
- Python ArcGIS ImageryLayer.thumbnail用法及代码示例
- Python ArcGIS FormFieldElement用法及代码示例
- Python ArcGIS Geometry.true_centroid用法及代码示例
- Python ArcGIS Site.delete用法及代码示例
- Python ArcGIS GeoAccessor.bbox用法及代码示例
- Python arcgis.apps.hub.Initiative.update用法及代码示例
- Python ArcGIS generate_service_areas用法及代码示例
- Python ArcGIS build_overview用法及代码示例
- Python ArcGIS RunInterval用法及代码示例
- Python ArcGIS describe_dataset用法及代码示例
- Python ArcGIS acos用法及代码示例
- Python ArcGIS Item.publish用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.raster.analytics.list_datastore_content。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。