PAPI Obstacle Clearance Surface (Aviation)

Aviation Charting ライセンスで利用できます。

Aviation Airports ライセンスで利用できます。

サマリー

Creates a Precision Approach Path Indicator (PAPI) Obstacle Clearance Surface (OCS) based on the FAA Engineering Brief (EB) 95.

A PAPI OCS determines which objects are vertical obstructions. An object is considered a vertical obstruction if it penetrates the PAPI OCS. Surfaces are used to support planning and design activities.

使用法

  • [入力滑走路フィーチャ] パラメーターは、Z 対応である必要があります。

  • This tool creates the obstruction identification surfaces (OIS)in an existing polygon or multipatch feature class. They can also be generated in an existing polygon shapefile. If a feature class is selected for 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.

パラメーター

ラベル説明データ タイプ
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
Runway Direction
(オプション)

Specifies the end of the runway where the approach surface will be created.

  • High Runway End Designator The approach surface will be created at the high end of the runway. This is the default
  • Low Runway End DesignatorThe approach surface will be created at the low end of the runway.
String
Length
(オプション)

The length of the surface in miles. The default value is 4.

Double
Divergence
(オプション)

The divergence of the surface in degrees. The default value is 10.

Double
Slope
(オプション)

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

Double
Distance From Threshold
(オプション)

The distance from the threshold in feet. The default value is 700.

Double
Start Height
(オプション)

The start height of the surface in feet. The default value is 35.

Double
Input Airport Control Point Feature
(オプション)

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

派生した出力

ラベル説明データ タイプ
Output OIS Features

The updated feature class containing the generated obstruction identification surface.

Feature Layer

arcpy.aviation.PAPIObstacleClearanceSurface(in_features, target, {runway_direction}, {length}, {divergence}, {slope}, {distance_from_threshold}, {start_height}, {airport_control_point_feature_class})
名前説明データ タイプ
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 the end of the runway where the approach surface will be created.

  • HIGH_RUNWAY_END_DESIGNATOR The approach surface will be created at the high end of the runway. This is the default
  • LOW_RUNWAY_END_DESIGNATORThe approach surface will be created at the low end of the runway.
String
length
(オプション)

The length of the surface in miles. The default value is 4.

Double
divergence
(オプション)

The divergence of the surface in degrees. The default value is 10.

Double
slope
(オプション)

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

Double
distance_from_threshold
(オプション)

The distance from the threshold in feet. The default value is 700.

Double
start_height
(オプション)

The start height of the surface in feet. The default value is 35.

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

派生した出力

名前説明データ タイプ
derived_outfeatureclass

The updated feature class containing the generated obstruction identification surface.

Feature Layer

コードのサンプル

PAPIObstacleClearanceSurface example (stand-alone script)

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

import arcpy

arcpy.CheckOutExtension("Airports")

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

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

# Define surface dimensions
runway = "HIGH_RUNWAY_END_DESIGNATOR"
length = 4
divergence = 10
slope = 3
distance_from_threshold = 700
start_height = 35

# Generate PAPI Obstacle Clearance Surface
arcpy.PAPIObstacleClearanceSurface_aviation(inFeatures, outFeatures, runway,
                                            length, divergence, slope,
                                            distance_from_threshold, start_height)

arcpy.CheckInExtension("Airports")

環境

このツールは、ジオプロセシング環境を使用しません。

ライセンス情報

  • Basic: No
  • Standard: 次のものが必要 Airports, ArcGIS Aviation Charting
  • Advanced: No

関連トピック