ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • 主页
  • 入门
  • 地图
  • 分析
  • 管理数据
  • 工具
  • 扩展模块

Export Airports To FAA 18B Shapefile

  • 描述
  • 使用方法
  • 语法
  • 代码示例
  • 环境
  • 许可信息

描述

Exports feature classes from an Airports geodatabase to the FAA 18B shapefile format. Output shapefile attribute names conform to the requirements specified in Advisory Circular 150/5300-18B. Use this tool to create safety critical data for submission to the FAA Airport Surveying - Geographic Information System (GIS) Program.

This program establishes standards for surveying and collecting data around airports. Required data collection includes, but is not limited to, the following domains:

  • Runways and stopways
  • Navigational aids
  • Obstructions
  • Taxiways
  • Aprons
  • Landmarks

Once submitted to the FAA, safety critical data is validated and verified by the National Geodetic Survey (NGS).

使用方法

  • The FAA Airports GIS program requires Esri data to be submitted as shapefiles only.

  • Submit shapefiles to https://adip.faa.gov/agis/public/#/public.

  • This tool uses the Feature Class To Shapefile tool to create shapefiles with attribute names that comply with the 18B format. Only feature classes and attributes that are defined in the 18B specification will be exported.

  • Input Workspace must contain an Airports data model. Shapefiles created from a non-Airports data model are not guaranteed to pass validation by the NGS.

语法

arcpy.aviationmanagement.ExportAirportsToFAA18BShapefile(in_workspace, output_location, {in_features})
参数说明数据类型
in_workspace

The workspace that contains the Airports data.

Workspace
output_location

The folder to which shapefiles are written.

Folder
in_features
[in_features,...]
(可选)

A list of feature classes to export to shapefiles. If not set, all feature classes within the Input Workspace are exported to shapefiles.

Feature Layer

代码示例

ExportAirportsToFAA18BShapefile example (stand-alone script)

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

# Name: ExportAirportsToFAA18BShapefile_Example.py
# Description: Exports 3 Airports feature classes to shapefiles.
# Requirements: ArcGIS Aviation Airports

import arcpy

arcpy.CheckOutExtension("Aeronautical")

# local variables for workspace and output parameters
inWork = "C:/data/Airports.sde"
outLocation = "C:/data"

# make three feature layers for export
arcpy.MakeFeatureLayer_management("C:/data/Airports.sde/Airports.DBO.Airspace/Airports.DBO.Obstacle","Obstacle")
arcpy.MakeFeatureLayer_management("C:/data/Airports.sde/Airports.DBO.Airspace/Airports.DBO.ObstructionArea","ObstructionArea")
arcpy.MakeFeatureLayer_management("C:/data/Airports.sde/Airports.DBO.Airspace/Airports.DBO.LandmarkSegment","LandmarkSegment")

# create a list of the input features to export
inFeatures = ["Obstacle","ObstructionArea","LandmarkSegment"]

# export to FAA 18B shapefile format
arcpy.ExportAirportsToFAA18BShapefile_aviationmanagement(inWork,outLocation,inFeatures)

arcpy.CheckInExtension("Aeronautical")

环境

  • 当前工作空间

许可信息

  • Basic: 否
  • Standard: 需要 ArcGIS Aviation Airports
  • Advanced: 需要 ArcGIS Aviation Airports

相关主题

  • An overview of the FAA toolset

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS
  • ArcGIS Developer
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • Esri 博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2021 Esri. | 隐私政策 | 法律声明