Create Curved Approach (Aviation)

Mit der Aviation Airports-Lizenz verfügbar.

Mit der Aviation Charting-Lizenz verfügbar.

Zusammenfassung

Creates curved approach obstacle identification surfaces (OIS) based on the supported specifications in ArcGIS Aviation. These curved approach surfaces are based on an input flight path and the information in the selected specification, for example, ICAO Annex 15, FAA 18B and classification. This tool creates surfaces in existing polygon or multipatch features.

Verwendung

  • Der Parameter Eingabe-Lande-/Startbahn-Features muss Z-aktiviert sein.

  • To create a .json file for the Custom JSON File parameter, use the CustomizeOIS.exe utility included in the Aviation Airports Product Data download available from My Esri.

  • The surfaces generated are based on the Specification and Runway Classification parameter values.

  • The tool creates a curved approach surface in an existing polygon or multipatch feature class. If the Target OIS Features parameter value is a feature class, it must have a vertical spatial reference.

  • The tool uses a flight path ID field (PATHID) for Target OIS Features parameter value.

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

Parameter

BeschriftungErläuterungDatentyp
Input Runway Features

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

Feature Layer
Input Flight Path Features

The polyline features that define curved approaches to the specified runways, terminating at the runway centerline endpoint.

Feature Layer
Target OIS Features

The target feature class that will contain the generated OIS.

Feature Layer
Specification

Specifies the approach surface specification.

  • ICAO Annex 15The approach surface specification is ICAO Annex 15 (ETOD).
  • ICAO Annex 14The approach surface specification is ICAO Annex 14 (OLS).
  • FAA regulations part 77The approach surface specification is FAA regulations part 77 (FAR77).
  • FAA Advisory circular 150/5300_18BThe approach surface specification is FAA Advisory circular 150/5300_18B (18B).
  • FAA Advisory circular 150/5300_13The approach surface specification is FAA Advisory circular 150/5300_13.
String
Runway Classification

The runway classification of the approach surface.

The Specification parameter value will determine the available options for this parameter.

String
Custom JSON File
(optional)

The import configuration, in JSON format, that will be used to create the custom OIS.

File
Threshold Offset
(optional)

A positive distance value that will be used to offset the generated approach surface outward from the runway end. The offset will be applied in the units of the input.

Double

Abgeleitete Ausgabe

BeschriftungErläuterungDatentyp
Output OIS Features

The updated feature class containing the generated OIS.

Feature Layer

arcpy.aviation.CreateCurvedApproach(in_runway_features, in_flightpath_features, target_ois_features, specification, runway_classification, {custom_json_file}, {threshold_offset})
NameErläuterungDatentyp
in_runway_features

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

Feature Layer
in_flightpath_features

The polyline features that define curved approaches to the specified runways, terminating at the runway centerline endpoint.

Feature Layer
target_ois_features

The target feature class that will contain the generated OIS.

Feature Layer
specification

Specifies the approach surface specification.

  • ETODThe approach surface specification is ICAO Annex 15 (ETOD).
  • OLSThe approach surface specification is ICAO Annex 14 (OLS).
  • FAR77The approach surface specification is FAA regulations part 77 (FAR77).
  • 18BThe approach surface specification is FAA Advisory circular 150/5300_18B (18B).
  • 13SURFACESThe approach surface specification is FAA Advisory circular 150/5300_13.
String
runway_classification

The runway classification of the approach surface.

The specification parameter value will determine the available options for this parameter.

String
custom_json_file
(optional)

The import configuration, in JSON format, that will be used to create the custom OIS.

File
threshold_offset
(optional)

A positive distance value that will be used to offset the generated approach surface outward from the runway end. The offset will be applied in the units of the input.

Double

Abgeleitete Ausgabe

NameErläuterungDatentyp
out_ois_features

The updated feature class containing the generated OIS.

Feature Layer

Codebeispiel

CreateCurvedApproach example (stand-alone script)

The following Python window script demonstrates how to use the CreateCurvedApproach function.

import arcpy

# set gp environment
arcpy.CheckOutExtension("Airports")

# Input Runway Feature Class
inFeatures = r"C:\data\ois.gdb\RunwayCenterline"

# Input Flight Path Feature Class 
inFlightPathFeatures= r"C:\data\ois.gdb\TakeOffClimb"

# Feature class that will contain the OIS surface
outFeatures= r"C:\data\ois.gdb\ObstructionIdSurface"

# Speicfication
specification = "FAR77"

# Runway Classification
runway = "PRECISION_INSTRUMENT_RUNWAY"

# JSON
customJSON = r"C:\data\customOIS.json"

# Treshold Offset
thresholdOffset = 0

# Generate FAA 77 OIS
arcpy.aviation.CreateCurvedApproach(inFeatures, inFlightPathFeatures,
                                    outFeatures, specification, runway, customJSON, thresholdOffset)

arcpy.CheckInExtension("Airports")

Lizenzinformationen

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

Verwandte Themen