Краткая информация
Calculates the geometric position coordinates for points, lines, and polygons.
Использование
Existing values in the specified coordinates field are overwritten every time the tool is run.
GFID cannot be used as input field.
The length of the text field you choose must coincide with the number of characters in the coordinate string. If it does not, the specified text field is not populated with the coordinate values.
The Coordinate Scale parameter (coord_scale for Python) is not applicable for the DMS21, MGRS, USNG, or UTM formats. This is due to the specification for these types of coordinates.
If the Round Coordinates check box is checked (coord_rounding parameter set to ROUND), additional rounding will be applied to the coordinate value before it populates the specified field.
If rounding occurs on UTM-based coordinates, it is done to the nearest whole number.
Синтаксис
CalculateCoordinates_defense (in_features, field, coord_format, {coord_rounding}, {coord_scale}, {coord_accuracy})
Параметр | Объяснение | Тип данных |
in_features | The feature layer for which you want to calculate coordinate values. | Feature Layer |
field | The field in the input_features that is going to be updated with the coordinate values. This must be a string field. The GFID field is excluded for this tool. | Field |
coord_format | The format of the calculated coordinate values.
| String |
coord_rounding (Дополнительный) | Indicates whether the coordinate value is rounded or truncated based on the value specified in the coord_scale parameter.
| Boolean |
coord_scale (Дополнительный) | The number of digits allowed after the decimal point. The default value is 3. Used in conjunction with the coord_rounding parameter, it determines the length of the coordinate value. | Long |
coord_accuracy (Дополнительный) | Determines the precision of the UTM coordinate.
| String |
Пример кода
CalculateCoordinates example (stand-alone script)
In this example, the coordinates are calculated and rounded in the DMS21 format for the AerofacP feature layer and stored in the Coordinate field.
# Name: CalculateDefaultValues_Example.py
# Description: Calculates coordinate values for the AerofacP layer
# Requirements: Esri Defense Mapping solution
# Import arcpy module
import arcpy
# Check out a DefenseMapping extension license
arcpy.CheckOutExtension("defense")
# Local variables
inField = "Coordinate"
inFeatures = "C:/Data/defense.gdb/VMap2TLM/AerofacP"
coordFormat = "DMS21"
coordRounding = "true"
# coord_scale and coord_accuracy are ignored when coordFormat = "DMS21"
coordScale = "#"
coordAccuracy = "#"
# Execute Calculate Coordinates function
arcpy.CalculateCoordinates_defense(inFeatures, inField, coordFormat, coordRounding, coordScale, coordAccuracy)
# Check in the Defense Mapping extension
arcpy.CheckInExtension("defense")
Параметры среды
Информация о лицензиях
- ArcGIS Desktop Basic: Нет
- ArcGIS Desktop Standard: Требует Defense Mapping
- ArcGIS Desktop Advanced: Требует Defense Mapping