ICAO Annex 15 (Aviation)

Mit der Aviation Airports-Lizenz verfügbar.

Mit der Aviation Charting-Lizenz verfügbar.

Zusammenfassung

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.

Verwendung

  • 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.

Syntax

arcpy.aviation.ICAOAnnex15(in_features, target, {highend_clear_way_length}, {lowend_clear_way_length}, {custom_json_file}, {airport_control_point_feature_class})
ParameterErklärungDatentyp
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
(optional)

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
(optional)

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
(optional)

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

File
airport_control_point_feature_class
(optional)

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

Abgeleitete Ausgabe

NameErklärungDatentyp
derived_outfeatureclass

The updated feature class containing the generated obstruction identification surfaces.

Feature Layer

Codebeispiel

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")

Lizenzinformationen

  • Basic: Nein
  • Standard: Erfordert Airports, ArcGIS Aviation Charting
  • Advanced: Erfordert Airports, ArcGIS Aviation Charting