ICAO Annex 4 (Aviation)

Доступно с лицензией Aviation Airports.

Доступно с лицензией Aviation Charting.

Сводка

Creates obstruction identification surfaces (OIS) based on the ICAO Annex 4 specification for the Precision Approach Terrain chart.

These surfaces are designed to aid in the analysis of the terrain and features within a defined portion of the final approach that is depicted on the Precision Approach Terrain chart type. To generate the surfaces, a runway centerline is needed as a reference for the surfaces. This tool generates the surfaces as polygon or multipatch features.

Использование

  • Параметр Входные объекты взлетно-посадочной полосы должен поддерживать z-значения.

  • The Target OIS Features parameter must be z-enabled.

  • If a feature class is selected in Target OIS Features, it must have a vertical spatial reference.

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

Синтаксис

arcpy.aviation.ICAOAnnex4(in_features, target, {runway_direction}, {length}, {width}, {slope}, {height}, {airport_control_point_feature_class})
ParameterОбъяснениеТип данных
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
runway_direction
(Дополнительный)

Specifies at which end of the runway the approach surface will be created.

  • HIGH_END_TO_LOW_ENDFrom runway high end to low end. The approach surface will be created at the high end of the runway. If a displaced threshold point exists at the high end of the runway, that point will be honored when creating the OIS.
  • LOW_END_TO_HIGH_ENDFrom runway low end to high end. The approach surface will be created at the low end of the runway. If a displaced threshold point exists at the low end of the runway, that point will be honored when creating the OIS.
String
length
(Дополнительный)

The length of the surface in meters. The default value is 900.

Double
width
(Дополнительный)

The width of the surface in meters. The default value is 120.

Double
slope
(Дополнительный)

The slope of the surface in degrees. The default value is 3.

Double
height
(Дополнительный)

The start height of the surface in meters. The default value is 15.24.

Double
airport_control_point_feature_class
(Дополнительный)

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

Производные выходные данные

NameОбъяснениеТип данных
derived_outfeatureclass

The updated feature class containing the generated obstruction identification surfaces.

Feature Layer

Пример кода

ICAOAnnex4 example (Python window)

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

import arcpy

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

# Input Runway Feature Class
inFeatures = "RunwayCenterline"

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

# runway variables
runwayDir = "HIGH_END_TO_LOW_END"
length = 900
width = 120
slope = 3
start_height = 15.24

#_Exec_ICAOAnnex4
arcpy.ICAOAnnex4_aviation(inFeatures, outFeatureClass, runwayDir, length, width, slope, start_height)

arcpy.CheckInExtension("Airports")

Информация о лицензиях

  • Basic: Нет
  • Standard: Требуется Airports, ArcGIS Aviation Charting
  • Advanced: Требуется Airports, ArcGIS Aviation Charting

Связанные разделы