-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacility.txt
1160 lines (1160 loc) · 43.4 KB
/
facility.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>
<pubdate>20030101</pubdate>
<title>facility v. 1</title>
<geoform>vector digital data</geoform>
<onlink>http://www.bts.gov/programs/geographic_information_services/</onlink>
</citeinfo>
</citation>
<descript>
<abstract>This is a public dataset for the Department of Transportation, Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics. The public database consists of four tables. One of the tables is a spatial table: INTERMODAL_FACILITY. The three other tables consist of attribute data for the database: INTERMODAL_CARGO, INTERMODAL_COMMODITY and INTERMODAL_DIRECTIONALITY. This database was based on the requirements from the Commodity Flow Survey and with the different modes of DOT, supervised by OST-R/BTS. The database will extend its design to support all of the modes within the DOT and in reference to modes involved with Intermodal transfer.</abstract>
<purpose>This is a public dataset for the Department of Transportation, Office of the Assistant Secretary for Research and Technology's Bureau of Transportation Statistics for internal use in GIS efforts. The data can be utilized alone or in conjunction with various networks developed for the data.</purpose>
</descript>
<timeperd>
<timeinfo>
<sngdate>
<caldate>20110101</caldate>
</sngdate>
</timeinfo>
<current>August 2002</current>
</timeperd>
<status>
<progress>In work</progress>
<update>As needed</update>
</status>
<spdom>
<bounding>
<westbc>-165.436110</westbc>
<eastbc>-66.002000</eastbc>
<northbc>64.807090</northbc>
<southbc>18.439000</southbc>
</bounding>
</spdom>
<keywords>
<theme>
<themekt>Geographical Reference</themekt>
<themekey>Point</themekey>
</theme>
<theme>
<themekt>Transference</themekt>
<themekey>Transportation</themekey>
<themekey>NGDA</themekey>
<themekey>National Geospatial Data Asset</themekey>
<themekey>Transportation Theme</themekey>
</theme>
<theme>
<themekt>Transference Presence</themekt>
<themekey>Transfer Locations</themekey>
</theme>
<theme>
<themekt>Transport Amenities</themekt>
<themekey>Intermodal Facility</themekey>
</theme>
<theme>
<themekt>Transport</themekt>
<themekey>Intermodal</themekey>
</theme>
<theme>
<themekt>ISO 19115 Topic Categories</themekt>
<themekey>transportation</themekey>
<themekey>location</themekey>
<themekey>economy</themekey>
<themekey>structure</themekey>
</theme>
<place>
<placekt>None</placekt>
<placekey>United States</placekey>
<placekey>United States of America</placekey>
<placekey>USA</placekey>
</place>
<stratum>
<stratkt>None</stratkt>
<stratkey>ground</stratkey>
</stratum>
<temporal>
<tempkt>None</tempkt>
<tempkey>2007</tempkey>
<tempkey>2010</tempkey>
<tempkey>2011</tempkey>
<tempkey>2009</tempkey>
<tempkey>2003</tempkey>
<tempkey>2008</tempkey>
<tempkey>2006</tempkey>
<tempkey>2012</tempkey>
<tempkey>2013</tempkey>
<tempkey>2014</tempkey>
<tempkey>2015</tempkey>
</temporal>
</keywords>
<accconst>The access of this data is not restricted.</accconst>
<useconst>None. Acknowledgment of the Office of the Assistant Secretary for Research and Technology/Bureau of Transportation Statistics (BTS) National Transportation Atlas Databases (NTAD) 2015 would be appreciated in products derived from these data. http://www.bts.gov/programs/geographic_information_services/</useconst>
<ptcontac>
<cntinfo>
<cntorgp>
<cntorg>Office of the Assistant Secretary for Research and Technology/Bureau of Transportation Statistics (BTS)</cntorg>
<cntper>National Transportation Atlas Databases (NTAD) 2015</cntper>
</cntorgp>
<cntpos>Office of Geospatial Information Systems</cntpos>
<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>
</ptcontac>
<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>
<pubdate>20120724</pubdate>
<title>National Transportation Atlas Databases (NTAD) 2015</title>
<geoform>vector digital data</geoform>
<onlink>http://www.bts.gov/programs/geographic_information_services/</onlink>
</citeinfo>
</crossref>
</idinfo>
<dataqual>
<logic>A single coordinate pair for GIS reference represents all points. A unique id number relates the records to other tables. A parent id is required, which may be used to aggregate to its facility, which is the granularity of the publicly released data.</logic>
<complete>All records require geocoding, mode type, facility type, unique name combination, and unique id to be included in the final dataset.</complete>
<posacc>
<horizpa>
<horizpar>Geocode source holds the source of the spatial coordinates, particular sources have varying spatial accuracy and is noted below.</horizpar>
<qhorizpa>
<horizpav>1:100,000</horizpav>
<horizpae>GDT98Streets: - The original digital source of line segment, such as a Census Bureau 1980 GBF/DIME File or a USGS 1:100,000 scale DLG-3. - Scale 1: 24,000 - For line segments that originated with the USGS DLG-3 files, the FCC is based on the USGS classification code in the DLG-3 file. For line segments that originated with the 1980 GBF / DIME Files, the FCC is based on the NS code and other feature identification content of the GBF/DIME -File. - Latitude/longitude Data: except for DIME format (ASCII) boundary files, all latitude and longitude coordinates are signed and have six decimal places. Northern latitude is positive (0 degrees to 90 degrees), southern latitude is negative (0 degrees to -90 degrees). West longitude are negative (0 degrees to -180 degrees), and longitude are positive (0 degrees to 180 degrees) - DIME format boundary file coordinates are expressed as all positive values with six implied decimal places. Any longitude west of 180 degrees is expressed in increasing, rather than decreasing values. Projection using latitude/longitude coordinate values with an implied 6 decimal places All coordinates are based on the 1983 North American Datum (NAD83). - As new streets are reported, they are added daily by digital map technicians (DMTs) working in teams assigned to specific geographic areas covering the entire nation. As DMTs work through their particular regions, they concentrate on areas that contain the largest numbers of missing addresses, usually newly developed areas. They apply address ranges to unaddressed street segments, digitized new streets, correct inaccurate segment shapes, and add exits and turn or one-way restrictions. Each addition is verified with current maps and other data. - ARC/INFO format products are available in double precision. Precision refers to the number of bits (single - 32bits, double - 64 bits) used to store coordinate data. Coverages in double precision are slightly more accurate, but larger than those in single precision. For more detailed information please see Geographic Data Technology Inc. 1(800) 331.7881 or email to [email protected]</horizpae>
</qhorizpa>
</horizpa>
</posacc>
<lineage>
<srcinfo>
<srccite>
<citeinfo>
<origin>American Authority Port Association</origin>
<pubdate>unknown</pubdate>
<title>American Authority Port Association</title>
<onlink>www.aapa-ports.org</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>AAPA</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>Primedia Information Inc. 2002</origin>
<pubdate>20020101</pubdate>
<title>The Official Railway Guide. Freight Service Edition</title>
<othercit>Bi-Monthly</othercit>
<onlink>www.primedia.com</onlink>
</citeinfo>
</srccite>
<typesrc>hardcopyPaper</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality. This publication is biannual.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AIR CARGO WORLD ONLINE/2002 AIRPORT DIRECTORY</origin>
<pubdate>unknown</pubdate>
<title>AIR CARGO WORLD ONLINE/2002 AIRPORT DIRECTORY</title>
<onlink>www.aircargoworld.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AIR CARGO WORLD ONLINE/2001 AIR EXPRESS DIRECTORY</origin>
<pubdate>unknown</pubdate>
<title>AIR CARGO WORLD ONLINE/2001 AIR EXPRESS DIRECTORY</title>
<onlink>www.aircargoworld.com/</onlink>
</citeinfo>
</srccite>
<typesrc>hardcopyPaper</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AIR CANADA CARGO</origin>
<pubdate>unknown</pubdate>
<title>AIR CANADA CARGO</title>
<onlink>www.aircanada.ca/cargo/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>Aberdeen and Rockfish</origin>
<pubdate>unknown</pubdate>
<title>Aberdeen and Rockfish</title>
<onlink>www.aberdeen-rockfish.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>THE RAIL-BRIDGE CORPORATION</origin>
<pubdate>unknown</pubdate>
<title>THE RAIL-BRIDGE CORPORATION</title>
<onlink>www.railbridge.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AMERICAN TRANS AIR</origin>
<pubdate>unknown</pubdate>
<title>AMERICAN TRANS AIR</title>
<onlink>www.ata.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PORT OF INDIANA</origin>
<pubdate>unknown</pubdate>
<title>PORT OF INDIANA</title>
<onlink>http://www.portsofindiana.com/?pageRef=87</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AIR JAMAICA</origin>
<pubdate>unknown</pubdate>
<title>AIR JAMAICA</title>
<onlink>www.airjamaica.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>OMNITRAX</origin>
<pubdate>unknown</pubdate>
<title>OMNITRAX</title>
<onlink>www.omnitrax.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>MARYLAND PORT AUTHORITY</origin>
<pubdate>unknown</pubdate>
<title>MARYLAND PORT AUTHORITY</title>
<onlink>www.mpa.state.md.us/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>MPA</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>U.S. Army Corp of Engineers</origin>
<pubdate>20010101</pubdate>
<title>NDC Publications and U.S. Waterway Data (Port Report)</title>
<edition>7</edition>
<onlink>www.hecsa.usace.army.mil/</onlink>
</citeinfo>
</srccite>
<typesrc>CD-ROM</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>USACE</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PORT OF OAKLAND</origin>
<pubdate>unknown</pubdate>
<title>PORT OF OAKLAND</title>
<onlink>http://www.portofoakland.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>AIR CARGO WORLD ONLINE/2002 FORWARDER DIRECTORY</origin>
<pubdate>unknown</pubdate>
<title>AIR CARGO WORLD ONLINE/2002 FORWARDER DIRECTORY</title>
<onlink>www.aircargoworld.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>INTERMODAL CARTAGE COMPANY</origin>
<pubdate>unknown</pubdate>
<title>INTERMODAL CARTAGE COMPANY</title>
<onlink>www.imcg.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>IMCG</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>CANADIAN NATIONAL</origin>
<pubdate>unknown</pubdate>
<title>CANADIAN NATIONAL</title>
<onlink>www.cn.ca/index.shtml</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>CN</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>ARKANSAS - MISSOURI RAIL ROAD</origin>
<pubdate>unknown</pubdate>
<title>ARKANSAS - MISSOURI RAIL ROAD</title>
<onlink>www.arkansasmissouri-rr.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>ANACOSTIA AND PACIFIC COMPANY, INC.</origin>
<pubdate>unknown</pubdate>
<title>ANACOSTIA AND PACIFIC COMPANY, INC.</title>
<onlink>www.anacostia.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PACIFIC HARBOR LINE, INC.</origin>
<pubdate>unknown</pubdate>
<title>PACIFIC HARBOR LINE, INC.</title>
<onlink>http://www.anacostia.com/phl/faciliti.html</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>FEDRAL MOTOR CARRIER SAFTEY ADMINISTRATION</origin>
<pubdate>unknown</pubdate>
<title>FEDRAL MOTOR CARRIER SAFTEY ADMINISTRATION</title>
<onlink>http://www.dot.gov/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>MODALGISTICS</origin>
<pubdate>unknown</pubdate>
<title>MODALGISTICS</title>
<onlink>http://www.modalgistics.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>VIRGINIA PORT AUTHORITY</origin>
<pubdate>unknown</pubdate>
<title>VIRGINIA PORT AUTHORITY</title>
<onlink>www.vaport.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PORT OF LOS ANGELES</origin>
<pubdate>unknown</pubdate>
<title>PORT OF LOS ANGELES</title>
<onlink>www.portoflosangeles.org/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PACIFIC COAST CONTAINER</origin>
<pubdate>unknown</pubdate>
<title>PACIFIC COAST CONTAINER</title>
<onlink>www.pacificcoastcontainer.net/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>Emery</origin>
<pubdate>unknown</pubdate>
<title>Emery</title>
</citeinfo>
</srccite>
<typesrc>None</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>United States Postal Service</origin>
<pubdate>unknown</pubdate>
<title>United States Postal Service</title>
</citeinfo>
</srccite>
<typesrc>None</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PORT OF TAMPA</origin>
<pubdate>unknown</pubdate>
<title>PORT OF TAMPA</title>
<onlink>http://www.tampaport.com/display.asp?PAGE_NAME=Home+Page</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>PORT OF LONG BEACH</origin>
<pubdate>unknown</pubdate>
<title>PORT OF LONG BEACH</title>
<onlink>http://www.polb.com</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>N/A</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>Norfolk Southern</origin>
<pubdate>unknown</pubdate>
<title>Norfolk Southern</title>
<onlink>www.nscorp.com/nscorp/html/home.html</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>NS</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<srcinfo>
<srccite>
<citeinfo>
<origin>Burlington Northern Santa Fe</origin>
<pubdate>unknown</pubdate>
<title>Burlington Northern Santa Fe</title>
<onlink>www.bnsf.com/</onlink>
</citeinfo>
</srccite>
<typesrc>onLine</typesrc>
<srctime>
<timeinfo>
<sngdate>
<caldate>unknown</caldate>
</sngdate>
</timeinfo>
<srccurr>publication date</srccurr>
</srctime>
<srccitea>BNSF</srccitea>
<srccontr>Facility information containing cargo, commodity, and directionality.</srccontr>
</srcinfo>
<procstep>
<procdesc>The use of this data for network or attribute related queries should note that supplementary data is stored in a separate dbf files. These tables hold pertinent information in a relational database format, ID fields being linked as the primary keys and foreign keys. PU_FAC table's primary key is ID and is the foreign key in PU_CAR, PU_COM, and PU_DIR, identified by FAC_ID. The shape files match the corresponding dbf files, no conversion is needed to utilize either format for analysis. Data is based on various public and private published sources, i.e. IANA Railway Guide, WWW, Army Corps of Engineers - Port Report. These sources are frequently updated and revised, any particular inquires should be directed to the data source of the record or records.</procdesc>
<procdate>20020101</procdate>
<proccont>
<cntinfo>
<cntorgp>
<cntorg>Office of the Assistant Secretary for Research and Technology/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>District of Columbia</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>3280</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>facility</enttypl>
<enttypd>An Intermodal facility is defined as generalized descriptors for collated customers and services. The PU_FAC table contains facilities that support two or more modes of transportation. These facilities can contain an address, but must contain a latitude and longitude.</enttypd>
<enttypds>USDOT/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>
<udom>Coordinates defining the features.</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>ID</attrlabl>
<attrdef>Primary Key</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>NAME</attrlabl>
<attrdef>Unique name for the facility location</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>TYPE</attrlabl>
<attrdef>The primary function of the facility.</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<edom>
<edomv>Truck</edomv>
<edomvd>Truck</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>Rail</edomv>
<edomvd>Rail</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>Port</edomv>
<edomvd>Port</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>Air</edomv>
<edomvd>Air</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>Independent Port</edomv>
<edomvd>Independent Port</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>MODE_TYPE</attrlabl>
<attrdef>Defines all the modes that are affiliated with this facility.</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<edom>
<edomv>AIR & TRUCK</edomv>
<edomvd>AIR & TRUCK</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>PORT & TRUCK</edomv>
<edomvd>PORT & TRUCK</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>RAIL & PORT</edomv>
<edomvd>RAIL & PORT</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>RAIL & TRUCK</edomv>
<edomvd>RAIL & TRUCK</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>TRUCK & TRUCK</edomv>
<edomvd>TRUCK & TRUCK</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>TRUCK - AIR - RAIL</edomv>
<edomvd>TRUCK - AIR - RAIL</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>TRUCK - PORT - AIR</edomv>
<edomvd>TRUCK - PORT - AIR</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>TRUCK - PORT - RAIL - AIR</edomv>
<edomvd>TRUCK - PORT - RAIL - AIR</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
<edom>
<edomv>TRUCK - PORT - RAIL</edomv>
<edomvd>TRUCK - PORT - RAIL</edomvd>
<edomvds>OST-R/BTS</edomvds>
</edom>
</attrdomv>
</attr>
<attr>
<attrlabl>CITY</attrlabl>
<attrdef>The city for the facilities location</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>STATE</attrlabl>
<attrdef>The state abbreviation for the facilities location</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>FIPS</attrlabl>
<attrdef>Federal Information Processing Standards for the states</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<codesetd>
<codesetn>Federal Information Processing Standard (FIPS), Publication 6-4</codesetn>
<codesets>National Institute for Standards and Technology (NIST)</codesets>
</codesetd>
</attrdomv>
</attr>
<attr>
<attrlabl>ZIP</attrlabl>
<attrdef>The zip code for the facilities location</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>
</attrdomv>
</attr>
<attr>
<attrlabl>ZIP2</attrlabl>
<attrdef>Zip Code Plus 4</attrdef>
<attrdefs>OST-R/BTS</attrdefs>
<attrdomv>
<udom>Character String</udom>