サマリー
Converts a coordinate system notation string to a PointGeometry object in WGS84 coordinates.
説明
To create a coordinate system notation string, use the PointGeometry object's toCoordString method.
構文
FromCoordString (string, notation)
パラメーター | 説明 | データ タイプ |
string | The input coordinates. | String |
notation | The coordinate system notation of the input string.
| String |
データ タイプ | 説明 |
PointGeometry | A PointGeometry object with a coordinate system of WGS84 (wkid=4326). |
コードのサンプル
Create a PointGeometry object from a United States National Grid string.
import arcpy
coord_string = '14S PB 59361 43195'
point_geometry = arcpy.FromCoordString(coord_string, 'USNG')