ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Help
  • Sign Out
ArcGIS Desktop

ArcGIS Online

The mapping platform for your organization

ArcGIS Desktop

A complete professional GIS

ArcGIS Enterprise

GIS in your enterprise

ArcGIS Developers

Tools to build location-aware apps

ArcGIS Solutions

Free template maps and apps for your industry

ArcGIS Marketplace

Get apps and data for your organization

  • Documentation
  • Support
Esri
  • Sign In
user
  • My Profile
  • Sign Out

ArcMap

  • Home
  • Get Started
  • Map
  • Analyze
  • Manage Data
  • Tools
  • Extensions

Export Airports To FAA 18B Shapefile

  • Summary
  • Usage
  • Syntax
  • Code sample
  • Environments
  • Licensing information

Summary

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

Usage

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

Syntax

arcpy.aviationmanagement.ExportAirportsToFAA18BShapefile(in_workspace, output_location, {in_features})
ParameterExplanationData Type
in_workspace

The workspace that contains the Airports data.

Workspace
output_location

The folder to which shapefiles are written.

Folder
in_features
[in_features,...]
(Optional)

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

Code sample

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")

Environments

  • Current Workspace

Licensing information

  • Basic: No
  • Standard: Requires ArcGIS Aviation Airports
  • Advanced: Requires ArcGIS Aviation Airports

Related topics

  • An overview of the FAA toolset

ArcGIS Desktop

  • Home
  • Documentation
  • Support

ArcGIS

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

About Esri

  • About Us
  • Careers
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Tell us what you think.
Copyright © 2021 Esri. | Privacy | Legal