當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python ArcGIS SingleFieldGeometry用法及代碼示例


本文簡要介紹 python 語言中 arcgis.realtime.velocity.feeds.SingleFieldGeometry 的用法。

用法:

class arcgis.realtime.velocity.feeds.SingleFieldGeometry(geometry_field, geometry_type, geometry_format, wkid)

返回:

True如果操作成功

保存單字段幾何配置的數據類。

參數

說明

geometry_field

String 。幾何字段名稱。

選項:

esriGeometryPoint, esriGeometryPolyline, esriGeometryPolygon, esriGeometryMulti.

geometry_type

String 。幾何類型。

選項:

esriGeometryPoint, esriGeometryPolyline, esriGeometryPolygon, esriGeometryMulti.

geometry_format

String 。幾何格式。

選項:

coordinates, esrijson, geojson, or wkt.

wkid

國際。幾何圖形的 WKID。

例子:

# Usage Example

geometry = SingleFieldFeometry(
    geometry_field="geometry_field"
    geometry_type="esriGeometryPoint",
    geometry_format="esrijson",
    wkid=4326
)

相關用法


注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.realtime.velocity.feeds.SingleFieldGeometry。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。