本文簡要介紹 python 語言中 arcgis.gis.Item.export
的用法。
用法:
export(title, export_format, parameters=None, wait=True, enforce_fld_vis=None, tags=None, snippet=None)
返回:
Item
對象或字典。當wait=True
時返回項目。當wait=False
時,返回說明項目狀態的字典。有關詳細信息,請參閱status
方法。
export
方法用於將服務項導出為指定的導出格式。但是,它僅適用於具有組織訂閱的用戶,並且隻能由服務項目所有者或管理員調用,除非使用位置跟蹤服務或位置跟蹤視圖。export
方法對於可能會阻止腳本的長時間運行的導出很有用。Parameter
Description
title
必需的字符串。導出的服務項目的所需名稱。
export_format
必需的字符串。要將數據導出到的格式。允許的類型:
Shapefile
、CSV
、File Geodatabase
、Feature Collection
、GeoJson
、Scene Package
、KML
、Excel
,geoPackage
, orVector Tile Package
.parameters
可選字符串。說明要導出的圖層和每個 layer.and 的導出參數的 JSON 對象,每個圖層的導出參數。請參閱 REST API 中的 Export Item 以獲取指導。
wait
可選的布爾值。默認為 True,強製等待導出完成;當導出繼續完成時可以繼續進行時,使用 False。
enforce_fld_vis
可選的布爾值。默認情況下,當您是項目的所有者並調用
export
操作時,數據提供所有列。如果導出是在視圖上執行的,為了確保視圖的列定義是正確的,然後將值設置為 True。當服務的所有者和值設置為 False 時,將導出所有數據和列。tags
可選字符串。項目說明符的逗號分隔值。
snippet
可選字符串。一段簡短的說明性文字。
例子:
# Usage Example >>> item.export("hurricane_data", "CSV", wait =True, tags= "Hurricane, Natural Disasters")
相關用法
- Python ArcGIS Item.publish用法及代碼示例
- Python ArcGIS Item.reassign_to用法及代碼示例
- Python ArcGIS Item.share用法及代碼示例
- Python ArcGIS Item.status用法及代碼示例
- Python ArcGIS Item.delete_relationship用法及代碼示例
- Python ArcGIS Item.download用法及代碼示例
- Python ArcGIS Item.delete用法及代碼示例
- Python ArcGIS Item.copy用法及代碼示例
- Python ArcGIS Item.move用法及代碼示例
- Python ArcGIS Item.related_items用法及代碼示例
- Python ArcGIS Item.create_tile_service用法及代碼示例
- Python ArcGIS Item.register用法及代碼示例
- Python ArcGIS Item.add_comment用法及代碼示例
- Python ArcGIS Item.copy_feature_layer_collection用法及代碼示例
- Python ArcGIS Item.update_thumbnail用法及代碼示例
- Python ArcGIS Item.add_relationship用法及代碼示例
- Python ArcGIS Item.update用法及代碼示例
- Python ArcGIS Item.usage用法及代碼示例
- Python ArcGIS Item.get_thumbnail用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS ImageryLayer.draw_graph用法及代碼示例
- Python arcgis.apps.hub.IndicatorManager.add用法及代碼示例
- Python arcgis.apps.hub.InitiativeManager.add用法及代碼示例
- Python ArcGIS ImageryLayer.compute_stats_and_histograms用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.Item.export。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。