ICAO Annex 15 (Aviation)

Disponible con licencia de Aviation Airports.

Disponible con licencia de Aviation Charting.

Resumen

Creates obstruction identification surfaces (OIS) based on the ICAO Annex 15 specification (Areas 2a, 2b, and 2c). These surfaces assist in determining the height restriction or removal of obstacles that pose a hazard to air navigation in and around an aerodrome. This tool creates surfaces as a polygon or multipatch features.

Uso

  • The Input Runway Features parameter must be z-enabled.

  • This tool creates the OIS in an existing polygon or multipatch feature class. It can also be generated as a new polygon shapefile. A feature class used for the Target OIS Features parameter must include a vertical spatial reference.

  • To create a JSON file for Custom JSON File, use the CustomizeOIS.exe file that is part of the ArcGIS Aviation data package available from My Esri.

  • OIS tools are flexible and accept a variety of input and output feature class types. For more information, see the OIS Input and Output schemas.

  • The Input Airport Control Point Feature parameter can be used to supply x-, y-, and z-geometry for displaced threshold features. If displaced thresholds are included, surfaces will be constructed based on their x-, y-, and z-geometry instead of their corresponding runway feature endpoint.

Parámetros

EtiquetaExplicaciónTipo de datos
Input Runway Features

The input runway dataset. The feature class must be z-enabled and contain polylines.

Feature Layer
Target OIS Features

The target feature class that will contain the generated obstruction identification surfaces.

Feature Layer
Length of High Runway End Clearway
(Opcional)

The length of the area at the high end of the runway. The unit of measurement is based on the input runway features.

Double
Length of Low Runway End Clearway
(Opcional)

The length of the area at the low end of the runway. The unit of measurement is based on the input runway features.

Double
Custom JSON File
(Opcional)

The import configuration, in JSON format, that creates the custom OIS.

File
Input Airport Control Point Feature
(Opcional)

Supplies x-, y-, and z-geometry for displaced threshold features. If displaced thresholds are included, surfaces will be constructed based on their x-, y-, and z-geometry instead of their corresponding runway feature endpoint.

Feature Layer

Salida derivada

EtiquetaExplicaciónTipo de datos
Output OIS Features

The updated feature class containing the generated obstruction identification surfaces.

Feature Layer

arcpy.aviation.ICAOAnnex15(in_features, target, {highend_clear_way_length}, {lowend_clear_way_length}, {custom_json_file}, {airport_control_point_feature_class})
NombreExplicaciónTipo de datos
in_features

The input runway dataset. The feature class must be z-enabled and contain polylines.

Feature Layer
target

The target feature class that will contain the generated obstruction identification surfaces.

Feature Layer
highend_clear_way_length
(Opcional)

The length of the area at the high end of the runway. The unit of measurement is based on the input runway features.

Double
lowend_clear_way_length
(Opcional)

The length of the area at the low end of the runway. The unit of measurement is based on the input runway features.

Double
custom_json_file
(Opcional)

The import configuration, in JSON format, that creates the custom OIS.

File
airport_control_point_feature_class
(Opcional)

Supplies x-, y-, and z-geometry for displaced threshold features. If displaced thresholds are included, surfaces will be constructed based on their x-, y-, and z-geometry instead of their corresponding runway feature endpoint.

Feature Layer

Salida derivada

NombreExplicaciónTipo de datos
derived_outfeatureclass

The updated feature class containing the generated obstruction identification surfaces.

Feature Layer

Muestra de código

ICAOAnnex15 example 1 (stand-alone script)

The following Python window script demonstrates how to use the ICAOAnnex15 tool.

import arcpy

# set gp environment
arcpy.env.workspace = "c:/data/ois.gdb"
arcpy.CheckOutExtension("Aeronautical")

# Input Runway Feature Class
inFeatures = "RunwayCenterline"

# feature class that will contain the OIS surface
outFeatureClass = "ObstructionIdSurface"

# exec ICAOAnnex15
arcpy.ICAOAnnex15_aviation(inFeatures, outFeatureClass, 10, 0)

arcpy.CheckInExtension("Aeronautical")
ICAOAnnex15 example 2 (stand-alone script)

The following Python window script demonstrates how to use the ICAOAnnex15 tool with the custom_json_file parameter.

import arcpy

# set gp environment
arcpy.env.workspace = "c:/data/ois.gdb"
arcpy.CheckOutExtension("Aeronautical")

# Input Runway Feature Class
inFeatures = "RunwayCenterline"

# feature class that will contain the OIS surface
outFeatureClass = "ObstructionIdSurface"
customJSON = r"C:\data\customOIS.json"

# exec ICAOAnnex15
arcpy.ICAOAnnex15_aviation(inFeatures, outFeatureClass, 10, 0, customJSON)

arcpy.CheckInExtension("Aeronautical")

Entornos

Casos especiales

Información de licenciamiento

  • Basic: No
  • Standard: Requiere Airports, ArcGIS Aviation Charting
  • Advanced: No