ICAO Annex 14 Heliports (Aviation)

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

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

Краткая информация

Generates obstruction identification surfaces (OIS) for heliports based on ICAO Annex 14 Volume II specifications.

ICAO Annex 14 Volume II defines recommended international standards and procedures for aerodromes containing heliports. This tool can be used to identify obstacles that may impact an aircraft's ability to take off from or land on a helipad. By creating multipatch or polygon features, you can visually identify obstructions in ArcGIS Pro. The OIS created by this tool should extend from a safety area around the FATO surface. Pursuant to ICAO standards, a safety area is a defined buffer around a FATO surface that extends at least three meters out or 1/4 the diameter of the aircraft's rotor wings, whichever is greater. There must be no obstacle present inside the safety area.

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

  • This tool generates OIS based on three slope design categories. Slope design categories are separated by a rotor aircraft's performance class. Slope design categories will be modified by this tool whether flight operations occur during the day or night.

  • The Input Safety Features parameter must be z-enabled and have a defined vertical coordinate system.

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

  • If you select the Curved Surface option for the Surface Shape parameter, you must provide polyline features in the Input Flight Path Features parameter for the surface to follow.

  • 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 unit of measurement for the Clearway Length parameter is the same as the unit of measurement for the Input Safety Area Features parameter.

Параметры

ПодписьОписаниеТип данных
Input Safety Area Features

The input safety area around which the obstruction identification surfaces will be generated.

Feature Layer
Target OIS Features

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

Feature Layer
Surface Classification

Specifies the slope design category that will be used for the obstruction identification surfaces.

  • Category ARotor aircraft operated with performance class 1 will be used.
  • Category BRotor aircraft operated with performance class 3 will be used.
  • Category CRotor aircraft operated with performance class 2 will be used.
String
Operation Type

Specifies the time when normal flight operations occur.

  • Day operationNormal flight operations occur during the day. This is the default.
  • Night operationNormal flight operations occur during the night.
String
Rotor Diameter
(Дополнительный)

The rotor diameter, in meters, of aircraft using the heliport. The default is 16.5 meters.

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

The length of the clearway. The unit of measurement for the clearway depends on the Input Safety Area Features parameter value.

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

Specifies the shape of the take off or approach surface.

  • Straight SurfaceThe take off climb or approach surface is straight. This is the default.
  • Curved SurfaceThe take off climb or approach surface is curved.
String
Approach Bearing
(Дополнительный)

The absolute bearing that an approaching aircraft will travel along the surface. A value of 0 will align the surface to true north. The default value is 0.

Double
Input Flight Path Features
(Дополнительный)

The polyline flight path features that the curved surface will follow.

Feature Layer
Heliport Elevation
(Дополнительный)

The elevation of the highest point of the heliport. The value must be in the vertical coordinate system linear units of the target feature class. If no value is provided, the highest point of the Input Safety Area Features parameter value will be used. The default value is 0.

Double
Custom JSON File
(Дополнительный)

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

File

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

ПодписьОписаниеТип данных
Output OIS Features

The updated feature class containing the generated obstruction identification surface.

Feature Layer

arcpy.aviation.ICAOAnnex14Heliports(input_safety_area_features, target_ois_features, surface_classification, operation_type, {rotor_diameter}, {clearway_length}, {surface_shape}, {approach_bearing}, {in_flightpath_features}, {heliport_elevation}, {custom_json_file})
ИмяОписаниеТип данных
input_safety_area_features

The input safety area around which the obstruction identification surfaces will be generated.

Feature Layer
target_ois_features

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

Feature Layer
surface_classification

Specifies the slope design category that will be used for the obstruction identification surfaces.

  • CATEGORY_ARotor aircraft operated with performance class 1 will be used.
  • CATEGORY_BRotor aircraft operated with performance class 3 will be used.
  • CATEGORY_CRotor aircraft operated with performance class 2 will be used.
String
operation_type

Specifies the time when normal flight operations occur.

  • DAY_OPERATIONNormal flight operations occur during the day. This is the default.
  • NIGHT_OPERATIONNormal flight operations occur during the night.
String
rotor_diameter
(Дополнительный)

The rotor diameter, in meters, of aircraft using the heliport. The default is 16.5 meters.

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

The length of the clearway. The unit of measurement for the clearway depends on the input_safety_area_features parameter value.

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

Specifies the shape of the take off or approach surface.

  • STRAIGHT_SURFACEThe take off climb or approach surface is straight. This is the default.
  • CURVED_SURFACEThe take off climb or approach surface is curved.
String
approach_bearing
(Дополнительный)

The absolute bearing that an approaching aircraft will travel along the surface. A value of 0 will align the surface to true north. The default value is 0.

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

The polyline flight path features that the curved surface will follow.

Feature Layer
heliport_elevation
(Дополнительный)

The elevation of the highest point of the heliport. The value must be in the vertical coordinate system linear units of the target feature class. If no value is provided, the highest point of the input_safety_area_features parameter value will be used. The default value is 0.

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

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

File

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

ИмяОписаниеТип данных
derived_outfeatureclass

The updated feature class containing the generated obstruction identification surface.

Feature Layer

Пример кода

ICAOAnnex14Heliports example 1 (stand-alone script)

The following code demonstrates how to use the ICAOAnnex14Heliport function to generate curved services.

import arcpy

arcpy.CheckOutExtension("Airports")

arcpy.env.workspace = r"D:\Data.gdb"

input_safety_area_features = "SafetyArea"
target_ois_features = "ObstructionIdSurface_MP"
surface_classification = "CATEGORY_A"
operation_type = "DAY_OPERATION"
rotor_diameter = 16.5
clearway_length = 100.0
surface_shape = "CURVED_SURFACE"
in_flightpath_features = "FlightPath"
heliport_elevation = 250.0
customJSON = r"D:\customOIS.json"

arcpy.aviation.ICAOAnnex14Heliports(input_safety_area_features, target_ois_features, surface_classification, operation_type, rotor_diameter, clearway_length, surface_shape, in_flightpath_features, heliport_elevation, customJSON)
arcpy.CheckInExtension("Airports")
ICAOAnnex14Heliports example 2 (stand-alone script)

The following code demonstrates how to use the ICAOAnnex14Heliport function to generate straight services.

import arcpy

arcpy.CheckOutExtension("Airports")

arcpy.env.workspace = r"D:\Data.gdb"

input_safety_area_features = "SafetyArea"
target_ois_features = "ObstructionIdSurface_MP"
surface_classification = "CATEGORY_A"
operation_type = "DAY_OPERATION"
rotor_diameter = 16.5
clearway_length = 100.0
surface_shape = "STRAIGHT_SURFACE"
approach_bearing = 90.0
heliport_elevation = 250.0
customJSON = r"D:\customOIS.json"

arcpy.aviation.ICAOAnnex14Heliports(input_safety_area_features, target_ois_features, surface_classification, operation_type, rotor_diameter, clearway_length, surface_shape, approach_bearing, None, heliport_elevation, customJSON)
arcpy.CheckOutExtension("Airports")

Параметры среды

Этот инструмент не использует параметры среды геообработки

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

  • Basic: Нет
  • Standard: Обязательно Airports, ArcGIS Aviation Charting
  • Advanced: Нет

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