ICAO Annex 15 (Aviation OIS)

ライセンス レベル:BasicStandardAdvanced

サマリ

Creates obstruction identification surfaces based on the ICAO Annex 15 specification. These surfaces define areas of airspace around an aerodrome. Each area defines the limits to which an obstruction may project into an airspace. This tool creates surfaces as polygon or multipatch features, or triangulated irregular networks (TINs).

使用法

構文

ICAOAnnex15_aviationois (in_features, highend_clear_way_length, lowend_clear_way_length, out_features)
パラメータ説明データ タイプ
in_features

The input runway dataset. The feature class must be Z enabled and contain points, polylines, or polygons.

Feature Layer
highend_clear_way_length

The length of the area at the high end of the runway, in meters. An aircraft can make a portion of its initial climb over this area.

Double
lowend_clear_way_length

The length of the area at the low end of the runway. An aircraft can make a portion of its initial climb over this area.

Double
out_features

The output feature class or TIN that will contain the generated obstacle identification surfaces.

Feature Layer; TIN

コードのサンプル

ICAOAnnex15 example (stand-alone Python 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_aviationois(inFeatures,10,0,outFeatureClass)

環境

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: 次のものが必要 Airports or Aviation Charting
ArcGIS for Desktop Advanced: 次のものが必要 Airports or Aviation Charting
4/26/2014