本文簡要介紹 python 語言中 arcgis.geometry.functions.project
的用法。
用法:
arcgis.geometry.functions.project(geometries, in_sr, out_sr, transformation='', transform_forward=False, gis=None, future=False)
返回:
out_sr
坐標係中的Geometry
對象列表,或GeometryJob
對象。如果future = True
,則結果是Future
對象。調用result()
獲取響應。
project
函數在Geometry
服務資源上執行。此函數將輸入幾何的數組從輸入SpatialReference
投影到輸出SpatialReference
Keys
Description
geometries
Point
、MultiPoint
、Polyline
或Polygon
對象的數組。數組中每個幾何的結構與 ArcGIS REST API 返回的 JSON 幾何對象的結構相同。in_sr
SpatialReference
的知名 ID 或輸入幾何的空間參考 JSON 對象。out_sr
SpatialReference
的知名 ID 或輸出幾何的空間參考 JSON 對象。transformations
WKID 或 JSON 對象,指定要應用於投影幾何的地理變換(gis,也稱為基準麵變換)。
注意:僅當輸出
SpatialReference
包含與輸入空間參考不同的地理坐標係時,才需要進行轉換。transformforward
一個布爾值,指示是否向前變換。變換的名稱中暗示了變換的正向或反向。如果指定了轉換,則還必須指定
transform_Forward
參數的值。默認值為假。future
可選布爾值。如果為 True,則將返回 future 對象,並且進程不會等待任務完成。默認為False,表示等待結果。如果將 future 設置為 True,則一次調用中可以處理的幾何圖形數量限製為 6500 個。
例子:
#Usage Example >>> result = project(geometries = [{"x": -17568824.55, "y": 2428377.35}, {"x": -17568456.88, "y": 2428431.352}], in_sr = 3857, out_sr = 4326) [{"x": -157.82343617279275, "y": 21.305781607280093}, {"x": -157.8201333369876, "y": 21.306233559873714}]
相關用法
- Python ArcGIS project用法及代碼示例
- Python ArcGIS profile用法及代碼示例
- Python ArcGIS predict_using_trend_raster用法及代碼示例
- Python ArcGIS power用法及代碼示例
- Python ArcGIS plus用法及代碼示例
- Python ArcGIS plan_routes用法及代碼示例
- Python ArcGIS percentile用法及代碼示例
- 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用法及代碼示例
- Python ArcGIS MapImageLayer.find用法及代碼示例
- Python ArcGIS Group.get_members用法及代碼示例
- Python ArcGIS Geometry.last_point用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.geometry.functions.project。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。