Calculate Geodesic Angle (Cartografía)

Nivel de licencia:BasicStandardAdvanced

Resumen

Calculates geodesic angles for the input features according to the defined coordinate system, and assigns the angle values to the specified field in the feature class that contains the input features.

HerenciaHerencia:

This tool has been deprecated and replaced by the Calculate_Grid_Convergence_Angle tool.

Uso

Sintaxis

CalculateGeodesicAngle_cartography (in_features, angle_field)
ParámetroExplicaciónTipo de datos
in_features

The input features for which geodesic angles will be computed.

Feature Layer
angle_field

The field that will be updated with the geodesic angle values in decimal degrees.

Field

Ejemplo de código

CalculateGeodesicAngle tool Example (Python Window)

The following Python window script demonstrates how to use the CalculateGeodesicAngle tool in immediate mode.

import arcpy
from arcpy import env
env.workspace = "C:\data"

arcpy.CalculateGeodesicAngle_cartography("cities", "city_angle")
CalculateGeodesicAngle tool Example (Stand-alone Python script)

This stand-alone script shows an example of using the CalculateGeodesicAngle tool.

# Name: CalculateGeodeisAngle_standalone_script.py
# Description: calculates a geodesic angle for a polygon
# Author: ESRI
 
# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/data"

# Set local variables
in_features = "cities"
angle_field = "city_angle"

# Execute Calculate Geodesic Angle
arcpy.CalculateGeodesicAngle_cartography(in_features, angle_field)

Entornos

Información sobre licencias

ArcGIS for Desktop Basic: No
ArcGIS for Desktop Standard: No
ArcGIS for Desktop Advanced: Sí
9/11/2013