-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathairports.txt
1902 lines (1902 loc) · 63 KB
/
airports.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<metadata>
<idinfo>
<citation>
<citeinfo>
<origin>Federal Aviation Administration (Aeronautical Information Services, ATA-100)</origin>
<pubdate>20150101</pubdate>
<title>airports v. 18</title>
<edition>2015</edition>
<geoform>vector digital data</geoform>
<pubinfo>
<pubplace>Washington, DC</pubplace>
<publish>Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS)</publish>
</pubinfo>
<onlink>http://www.bts.gov/programs/geographic_information_services/</onlink>
<lworkcit>
<citeinfo>
<origin>Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS)</origin>
<pubdate>20110101</pubdate>
<title>National Transportation Atlas Databases (NTAD) 2015</title>
<geoform>vector digital data</geoform>
<pubinfo>
<pubplace>Washington, DC</pubplace>
<publish>Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS)</publish>
</pubinfo>
<onlink>http://www.bts.gov/programs/geographic_information_services/</onlink>
</citeinfo>
</lworkcit>
</citeinfo>
</citation>
<descript>
<abstract>The Airports database is a geographic point database of aircraft landing facilities in the United States and U.S. Territories. Attribute data is provided on the physical and operational characteristics of the landing facility, current usage including enplanements and aircraft operations, congestion levels and usage categories. This geospatial data is derived from the FAA's National Airspace System Resource Aeronautical Data Product.</abstract>
<purpose>The dataset provides users with information about airport locations and attributes and can be used for national and regional analysis applications.</purpose>
</descript>
<timeperd>
<timeinfo>
<sngdate>
<caldate>20110101</caldate>
</sngdate>
</timeinfo>
<current>publication date</current>
</timeperd>
<status>
<progress>Complete</progress>
<update>Annually</update>
</status>
<spdom>
<bounding>
<westbc>-177.381308</westbc>
<eastbc>174.113619</eastbc>
<northbc>76.533333</northbc>
<southbc>-14.331660</southbc>
</bounding>
</spdom>
<keywords>
<theme>
<themekt>ISO 19115 Topic Categories</themekt>
<themekey>transportation</themekey>
</theme>
<theme>
<themekt>location</themekt>
<themekey>Transportation Theme</themekey>
<themekey>airport</themekey>
<themekey>NGDA</themekey>
<themekey>National Geospatial Data Asset</themekey>
</theme>
<place>
<placekt>None</placekt>
<placekey>US</placekey>
<placekey>US Territories</placekey>
<placekey>United States</placekey>
<placekey>USA</placekey>
</place>
<stratum>
<stratkt>None</stratkt>
<stratkey>air</stratkey>
</stratum>
<temporal>
<tempkt>None</tempkt>
<tempkey>2009</tempkey>
<tempkey>2010</tempkey>
<tempkey>2014</tempkey>
<tempkey>2008</tempkey>
<tempkey>2012</tempkey>
<tempkey>2013</tempkey>
<tempkey>2011</tempkey>
<tempkey>2015</tempkey>
</temporal>
</keywords>
<accconst>None</accconst>
<useconst>None. Acknowledgment of the Federal Aviation Administration (FAA) and the Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS) National Transportation Atlas Databases (NTAD) 2015 would be appreciated in products derived from these data.</useconst>
<ptcontac>
<cntinfo>
<cntorgp>
<cntorg>Federal Aviation Administration (Aeronautical Information Services, ATA-100)</cntorg>
</cntorgp>
<cntaddr>
<addrtype>mailing and physical</addrtype>
<address>FAA National Headquarters</address>
<city>Washington</city>
<state>DC</state>
<postal>20591</postal>
<country>US</country>
</cntaddr>
<cntvoice>1-800-457-6656 x35442</cntvoice>
</cntinfo>
</ptcontac>
<datacred>The Federal Aviation Administration (FAA) develops and maintains the textual data from which this geospatial layer was derived.</datacred>
<secinfo>
<secclass>Unclassified</secclass>
</secinfo>
<native>Microsoft Windows Server 2008 R2 Version 6.1 (Build 7601) Service Pack 1; Esri ArcGIS 10.2.2.3552</native>
<crossref>
<citeinfo>
<origin>Office of the Assistant Secretary for Research and Technology's Bureau of Transporation Statistics (OST-R/BTS)</origin>
<pubdate>20110101</pubdate>
<title>National Transportation Atlas Databases (NTAD) 2015</title>
<geoform>vector digital data</geoform>
<pubinfo>
<pubplace>Washington, DC</pubplace>
<publish>Office of the Assistant Secretary for Research and Technology's Bureau of Transporation Statistics (OST-R/BTS)</publish>
</pubinfo>
<onlink>http://www.bts.gov/programs/geographic_information_services/</onlink>
</citeinfo>
</crossref>
</idinfo>
<dataqual>
<attracc>
<attraccr>Airport attributes were obtained from the Federal Aviation Administration's (FAA) National Airspace System Resource Aeronautical Data and the Office of Airline Information (OAI) Enplanement Data. The FAA Data was published by the Aeronautical Information Services with an Effective Date of April 2015. All records were assigned the accurate state name, state abbreviation and FIPS code.</attraccr>
<qattracc>
<attraccv>unknown</attraccv>
<attracce>N/A</attracce>
</qattracc>
</attracc>
<logic>All point records in this dataset are represented by a single coordinate pair and two unique feature identifiers -- the landing facility location identifier (LOCID) and the site number (SITE_NO) assigned by the FAA. BTS quality checks were to cross reference the place dataset with the state dataset, to determine that the spatial data and attribute data were accurate.</logic>
<complete>unknown</complete>
<posacc>
<horizpa>
<horizpar>Horizontal positional accuracy is based on coordinate data provided in the FAA National Airspace System Resource Aeronautical Dataset. These coordinate data identify the approximate location of the Airport Reference Point (ARP) as reported by the landing facility on the NFDC (National Flight Data Center) 5010 form. According to NFDC guidelines, the location of the ARP should be reported to a horizontal accuracy of one arc second of latitude and longitude. However, the accuracy of these reported coordinates are not verified by FAA. The records were loaded into a GIS and checked for any unusual or obviously erroneous locations.</horizpar>
</horizpa>
</posacc>
<lineage>
<srcinfo>
<srccite>
<citeinfo>
<origin>Federal Aviation Administration (Aeronautical Information Services, ATA-100)</origin>
<pubdate>20110101</pubdate>
<title>FAA National Airspace System Resource Aeronautical Data</title>
<edition>FAA National Airspace System Resource Aeronautical Data</edition>
<pubinfo>
<pubplace>Washington, DC</pubplace>
<publish>Federal Aviation Administration (FAA)</publish>
</pubinfo>
</citeinfo>
</srccite>
<typesrc>None</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>20110101</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>FAA National Airspace System Resource Aeronautical Data</srccitea>
<srccontr>Data were obtained from the Federal Aviation Administration's (FAA) National Airspace System Resource Aeronautical Data. This product was published by the Aeronautical Information Services.</srccontr>
</srcinfo>
<procstep>
<procdesc>The creation of this geospatial data layer was completed by OST-R/BTS in April 2015. This Shapefile was built from textual data on the FAA National Airspace System Resource Aeronautical Data CDROM, effective April 2015.</procdesc>
<srcused>FAA-NASRAD</srcused>
<procdate>20110101</procdate>
<proccont>
<cntinfo>
<cntorgp>
<cntorg>Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS)</cntorg>
<cntper>Office of Geospatial Information Systems</cntper>
</cntorgp>
<cntaddr>
<addrtype>mailing and physical</addrtype>
<address>1200 New Jersey Ave. S.E.</address>
<city>Washington</city>
<state>DC</state>
<postal>20590</postal>
<country>US</country>
</cntaddr>
<cntvoice>202-366-DATA</cntvoice>
<cntemail>[email protected]</cntemail>
</cntinfo>
</proccont>
</procstep>
</lineage>
</dataqual>
<spdoinfo>
<direct>Vector</direct>
<ptvctinf>
<sdtsterm>
<sdtstype>Entity point</sdtstype>
<ptvctcnt>19527</ptvctcnt>
</sdtsterm>
</ptvctinf>
</spdoinfo>
<spref>
<horizsys>
<geograph>
<latres>8.983152841195215e-009</latres>
<longres>8.983152841195215e-009</longres>
<geogunit>Decimal Degrees</geogunit>
</geograph>
<geodetic>
<horizdn>D WGS 1984</horizdn>
<ellips>WGS 1984</ellips>
<semiaxis>6378137.0</semiaxis>
<denflat>298.257223563</denflat>
</geodetic>
</horizsys>
</spref>
<eainfo>
<detailed>
<enttyp>
<enttypl>airports</enttypl>
<enttypd>Airports of the United States and its territories in GIS format.</enttypd>
<enttypds>Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics (OST-R/BTS)</enttypds>
</enttyp>
<attr>
<attrlabl>FID</attrlabl>
<attrdef>Internal feature number.</attrdef>
<attrdefs>ESRI</attrdefs>
<attrdomv>
<udom>Sequential unique whole numbers that are automatically generated.</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>Shape</attrlabl>
<attrdef>Feature geometry.</attrdef>
<attrdefs>ESRI</attrdefs>
<attrdomv>
<edom>
<edomv>None</edomv>
<edomvd>Point Shapes as defined by ArcView</edomvd>
<edomvds>ArcView Internal Attribute</edomvds>
</edom>
</attrdomv>
<attrdomv>
<udom>Coordinates defining the features.</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>SiteNumber</attrlabl>
<attrdef>A unique identifying number followed by an asterisk and the 'landing facility type' code. The SITE_NO forms the key to the airport records in the NFDC (5010) database. Example: 04508.*A</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>List of Official Airport Site Numbers</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>FacilityTy</attrlabl>
<attrdef>Landing Facility Type</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>AIRPORT</edomv>
<edomvd>Airport Facility</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>BALLOONPORT</edomv>
<edomvd>Balloon Launch and Landing Facility</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>SEAPLANE BASE</edomv>
<edomvd>Facility for sea plane operations</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>GLIDERPORT</edomv>
<edomvd>Facility for glider operations</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>HELIPORT</edomv>
<edomvd>Facility for helicopter operations</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>STOLPORT</edomv>
<edomvd>Short Take Off and Landing Facility</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ULTRALIGHT</edomv>
<edomvd>Facility for ultralight operations</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>LocationID</attrlabl>
<attrdef>A unique 3-4 character identifier assigned to the landing facility (i.e. airport).</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>List of Official LOC ID Codes</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>EffectiveD</attrlabl>
<attrdef>Information Effective Data (MM/DD/YYYY). This date coincides with the 56-day charting and publication cycle date.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<udom>date value</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>RegionCode</attrlabl>
<attrdef>FAA Region where the facility is located</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>AAL</edomv>
<edomvd>Alaska</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ACE</edomv>
<edomvd>Central</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>AEA</edomv>
<edomvd>Eastern</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>AGL</edomv>
<edomvd>Great Lakes</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>AIN</edomv>
<edomvd>International</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ANE</edomv>
<edomvd>New England</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ANM</edomv>
<edomvd>Northwest Mountain</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ASO</edomv>
<edomvd>Southern</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ASW</edomv>
<edomvd>Southwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>AWP</edomv>
<edomvd>Western-Pacific</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>DistrictCo</attrlabl>
<attrdef>FAA District or Field Office Code</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>List of Official FAA District and Field Office Codes</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>StateAbbv</attrlabl>
<attrdef>State Postal abbreviation, as coded by OST-R/BTS</attrdef>
<attrdefs>USPS</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Official List of U.S. Postal Code Abbreviations</codesetn>
<codesets>U.S. Postal Service (USPS)</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>StateName</attrlabl>
<attrdef>Airport's associated state or territory name, as coded by FAA.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Official List of U.S. States and Territories</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>County</attrlabl>
<attrdef>Name of the county or parish associated with the airport, as coded by FAA.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Official List of U.S. County and Parish Names</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>CountyPost</attrlabl>
<attrdef>Associated county's state (post office code) state where the associated county is located; may not be the same as the associated city's state code, as coded by FAA.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Official List of U.S. State Names</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>City</attrlabl>
<attrdef>Name of the city associated with the airport, as coded by FAA.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Official List of U.S. Cities</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>FullName</attrlabl>
<attrdef>Official Airport Name</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>List of Official Airport Names</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>OwnerType</attrlabl>
<attrdef>Type of Airport Facility Owner</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>PU</edomv>
<edomvd>Publicly Owned</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>PR</edomv>
<edomvd>Privately Owned</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>MA</edomv>
<edomvd>Air Force Owned</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>MN</edomv>
<edomvd>Navy Owned</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>MR</edomv>
<edomvd>Army Owned</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>FacilityUs</attrlabl>
<attrdef>Facility Use -- Public or Private</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>PU</edomv>
<edomvd>Public Use Airport Facility</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>PR</edomv>
<edomvd>Private Use Airport Facility</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>CoordDet</attrlabl>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>Elevation</attrlabl>
<attrdef>Elevation in feet at the highest point on the centerline of the useable landing surface. Measured to the nearest foot with respect to mean sea level (MSL).</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<udom>measured value</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>ElevDet</attrlabl>
<attrdef>Airport Elevation Determination Method</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>MagneticVa</attrlabl>
<attrdef>MAGNETIC VARIATION TO NEAREST DEGREE</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>MagneticDi</attrlabl>
<attrdef>MAGNETIC DIRECTION</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>MageneticY</attrlabl>
</attr>
<attr>
<attrlabl>TrafficPat</attrlabl>
<attrdef>TRAFFIC PATTERN ALTITUDE (WHOLE FEET AGL)</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>AeroChart</attrlabl>
<attrdef>Aeronautical chart on which the airport facility appears.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Index of Official Aeronautical Charts</codesetn>
<codesets>FAA</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>DistanceFr</attrlabl>
<attrdef>Distance from the central business district of the associated city to the airport in nautical miles (1 nautical mile = 6,080 feet). Measured to the nearest nautical mile</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<udom>measured value</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>DirectionT</attrlabl>
<attrdef>Direction of airport from the central business district of the associated city. Measured to the nearest 1/8 compass point</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>North</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ENE</edomv>
<edomvd>East Northeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ESE</edomv>
<edomvd>East Southeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>North</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NE</edomv>
<edomvd>Northeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NNE</edomv>
<edomvd>North Northeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NNW</edomv>
<edomvd>North Northwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NW</edomv>
<edomvd>Northwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>S</edomv>
<edomvd>South</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>SE</edomv>
<edomvd>Southeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>SSE</edomv>
<edomvd>South Southeast</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>SSW</edomv>
<edomvd>South Southwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>SW</edomv>
<edomvd>Southwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>W</edomv>
<edomvd>West</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>WNW</edomv>
<edomvd>West Northwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>WSW</edomv>
<edomvd>West Southwest</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>Acres</attrlabl>
<attrdef>LAND AREA COVERED BY AIRPORT (ACRES)</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>ARTCID</attrlabl>
<attrdef>THE BOUNDARY ARTCC IS THE FAA AIR ROUTE TRAFFIC CONTROL CENTER WITHIN WHOSE PUBLISHED BOUNDARIES THE AIRPORT LIES. IT MAY NOT BE THE CONTROLLING ARTCC FOR THE AIRPORT IF A LETTER OF AGREEMENT EXISTS BETWEEN THE BOUNDARY ARTCC AND ANOTHER ARTCC.</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>ARTCCID</attrlabl>
<attrdef>BOUNDARY ARTCC (FAA) COMPUTER IDENTIFIER</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>ARTCName</attrlabl>
<attrdef>BOUNDARY ARTCC NAME</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>RespARTCID</attrlabl>
<attrdef>THE RESPONSIBLE ARTCC IS THE FAA AIR ROUTE TRAFFIC CONTROL CENTER WHO HAS ASSUMED CONTROL OVER THE AIRPORT THROUGH A LETTER OF AGREEMENT WITH THE BOUNDARY ARTCC.</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>RespARTCCI</attrlabl>
<attrdef>RESPONSIBLE ARTCC (FAA) COMPUTER IDENTIFIER</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>RespARTCNa</attrlabl>
<attrdef>RESPONSIBLE ARTCC NAME</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>FacilityRe</attrlabl>
<attrdef>IDENTIFIER OF THE FACILITY RESPONSIBLE FOR ISSUING NOTICES TO AIRMEN (NOTAMS) AND WEATHER INFORMATION FOR THE AIRPORT</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>hasNOTAMSe</attrlabl>
<attrdef>AVAILABILITY OF NOTAM 'D' SERVICE AT AIRPORT</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>Activation</attrlabl>
<attrdef>Identifies the month and year that the facility was added to the NFDC airport database - only available for facilities opened since 1981 (MM/YYYY).</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<udom>date value</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>Status</attrlabl>
<attrdef>AIRPORT STATUS CODE</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>CI</edomv>
<edomvd>CLOSED INDEFINITELY</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>CP</edomv>
<edomvd>CLOSED PERMANENTLY</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>O</edomv>
<edomvd>OPERATIONAL</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>ARFFClass</attrlabl>
<attrdef>Airport Certification Type and Date - Class Code</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>I</edomv>
<edomvd>First Class. Landing facilities having a full certificate under FAR Part 139 and receiving scheduled air carrier service from carriers certified by the Civil Aeronautics Board.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>ii</edomv>
<edomvd>Second Class. Landing facilities having a full certificate under FAR Part 139 and receiving scheduled air carrier service from carriers certified by the Civil Aeronautics Board.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>iii</edomv>
<edomvd>Third Class. Landing facilities having a full certificate under FAR Part 139 and receiving scheduled air carrier service from carriers certified by the Civil Aeronautics Board.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>iv</edomv>
<edomvd>Fourth Class. Landing facilities having a full certificate under FAR Part 139 and receiving scheduled air carrier service from carriers certified by the Civil Aeronautics Board.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>ARFFIndx</attrlabl>
<attrdef>Airport Certification Type and Date - Certification Code</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>A</edomv>
<edomvd>FULL CERTIFICATE UNDER CFR PART 139, AND IDENTIFIES THE AIRCRAFT RESCUE AND FIREFIGHTING INDEX FOR THE AIRPORT.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>B</edomv>
<edomvd>FULL CERTIFICATE UNDER CFR PART 139, AND IDENTIFIES THE AIRCRAFT RESCUE AND FIREFIGHTING INDEX FOR THE AIRPORT.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>C</edomv>
<edomvd>FULL CERTIFICATE UNDER CFR PART 139, AND IDENTIFIES THE AIRCRAFT RESCUE AND FIREFIGHTING INDEX FOR THE AIRPORT.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>D</edomv>
<edomvd>FULL CERTIFICATE UNDER CFR PART 139, AND IDENTIFIES THE AIRCRAFT RESCUE AND FIREFIGHTING INDEX FOR THE AIRPORT.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>E</edomv>
<edomvd>FULL CERTIFICATE UNDER CFR PART 139, AND IDENTIFIES THE AIRCRAFT RESCUE AND FIREFIGHTING INDEX FOR THE AIRPORT.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>L</edomv>
<edomvd>AIRPORTS HAVING LIMITEDCERTIFICATION UNDER CFR PART 139.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>ARFFServ</attrlabl>
<attrdef>Airport Certification Type and Date - Service Code</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>S</edomv>
<edomvd>AIRPORTS RECEIVING SCHEDULED AIR CARRIER SERVICE FROM CARRIERS CERTIFICATED BY THE CIVIL AERONAUTICS BOARD</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>U</edomv>
<edomvd>AIRPORTS NOT RECEIVING THIS SCHEDULED SERVICE.</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>ARFFDate</attrlabl>
<attrdef>Airport Certification Type and Date - ARFF Certification Date</attrdef>
<attrdefs>FAA</attrdefs>
</attr>
<attr>
<attrlabl>AAADet</attrlabl>
<attrdef>AIRPORT AIRSPACE ANALYSIS DETERMINATION</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>CONDITIONAL</edomv>
<edomvd>CONDITIONAL</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NOT ANALYZED</edomv>
<edomvd>NOT ANALYZED</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>NO OBJECTION</edomv>
<edomvd>NO OBJECTION</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>OBJECTIONABLE</edomv>
<edomvd>OBJECTIONABLE</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>isInternat</attrlabl>
<attrdef>Customs international airport - Whether the landing facility has been designated by the U.S. Treasury as an international airport of entry for customs.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>Y</edomv>
<edomvd>Yes</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>No</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>hasCustoms</attrlabl>
<attrdef>Customs Landing Rights Airport - Whether the landing facility has been designated by the U.S. Treasury as a customs landing rights airport (some landing facilities may have these rights for cargo only).</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>Y</edomv>
<edomvd>Yes</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>No</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>isMilCivJo</attrlabl>
<attrdef>Joint Use - Whether the landing facility has a military/civil joint use agreement that allows civil operations at a military airport or military operations at a civil airport.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>Y</edomv>
<edomvd>Yes</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>No</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>hasMilLand</attrlabl>
<attrdef>Military Landing Rights - Whether the airport has entered into an agreement that grants landing rights to the military.</attrdef>
<attrdefs>FAA</attrdefs>
<attrdomv>
<edom>
<edomv>Y</edomv>
<edomvd>Yes</edomvd>
<edomvds>FAA</edomvds>
</edom>
</attrdomv>
<attrdomv>
<edom>
<edomv>N</edomv>
<edomvd>No</edomvd>
<edomvds>FAA</edomvds>