-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUntitled2v.xml
More file actions
1220 lines (1220 loc) · 69.3 KB
/
Untitled2v.xml
File metadata and controls
1220 lines (1220 loc) · 69.3 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<gmi:MI_Metadata xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:gmd="http://www.isotc211.org/2005/gmd"
xmlns:gco="http://www.isotc211.org/2005/gco"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:gmi="http://www.isotc211.org/2005/gmi"
xsi:schemaLocation="http://www.isotc211.org/2005/gmi http://www.ngdc.noaa.gov/metadata/published/xsd/schema.xsd">
<gmd:fileIdentifier>
<gco:CharacterString>VectorRoadsTest.shp.iso.xml</gco:CharacterString>
</gmd:fileIdentifier>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode"
codeListValue="UTF-8">UTF-8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:parentIdentifier>
<gco:CharacterString>TIGER/Line Shapefile, 2016, Series Information for the Current
Block Group State-based shapefile</gco:CharacterString>
</gmd:parentIdentifier>
<gmd:hierarchyLevel>
<gmd:MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"
codeListValue="dataset">dataset</gmd:MD_ScopeCode>
</gmd:hierarchyLevel>
<gmd:hierarchyLevelName>
<gco:CharacterString>This is a TIGER\Line shapefile with an attribute table</gco:CharacterString>
</gmd:hierarchyLevelName>
<gmd:contact xlink:href="https://www.ngdc.noaa.gov/docucomp/186104a8-278b-412d-9b61-d4d488142f3c"
xlink:title="U.S. Department of Commerce, U.S. Census Bureau, Geography Division (Point of Contact)"/>
<gmd:dateStamp>
<gco:Date>20160601</gco:Date>
</gmd:dateStamp>
<gmd:metadataStandardName>
<gco:CharacterString>ISO 19115 Geographic Information - Metadata</gco:CharacterString>
</gmd:metadataStandardName>
<gmd:metadataStandardVersion>
<gco:CharacterString>2009-02-15</gco:CharacterString>
</gmd:metadataStandardVersion>
<gmd:dataSetURI>
<gco:CharacterString>https://www2.census.gov/geo/tiger/TIGER2016/ROADS/tl_2016_02195_roads.zip</gco:CharacterString>
</gmd:dataSetURI>
<gmd:spatialRepresentationInfo>
<gmd:MD_VectorSpatialRepresentation>
<gmd:geometricObjects>
<gmd:MD_GeometricObjects>
<gmd:geometricObjectType>
<gmd:MD_GeometricObjectTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_GeometricObjectTypeCode"
codeListValue="curve"/>
</gmd:geometricObjectType>
<gmd:geometricObjectCount>
<gco:Integer>491</gco:Integer>
</gmd:geometricObjectCount>
</gmd:MD_GeometricObjects>
</gmd:geometricObjects>
</gmd:MD_VectorSpatialRepresentation>
</gmd:spatialRepresentationInfo>
<gmd:referenceSystemInfo>
<gmd:MD_ReferenceSystem>
<gmd:referenceSystemIdentifier>
<gmd:RS_Identifier>
<gmd:code>
<gco:CharacterString>Federal Information Processing Series (FIPS), Geographic Names
Information System (GNIS), and feature names.</gco:CharacterString>
</gmd:code>
<gmd:codeSpace>
<gco:CharacterString>http://www.census.gov/geo/reference/geocodes.html</gco:CharacterString>
</gmd:codeSpace>
</gmd:RS_Identifier>
</gmd:referenceSystemIdentifier>
</gmd:MD_ReferenceSystem>
</gmd:referenceSystemInfo>
<gmd:referenceSystemInfo>
<gmd:MD_ReferenceSystem>
<gmd:referenceSystemIdentifier>
<gmd:RS_Identifier>
<gmd:code>
<gco:CharacterString>urn:ogc:def:crs:EPSG::4269</gco:CharacterString>
</gmd:code>
<gmd:codeSpace>
<gco:CharacterString>http://www.epsg-registry.org/export.htm</gco:CharacterString>
</gmd:codeSpace>
</gmd:RS_Identifier>
</gmd:referenceSystemIdentifier>
</gmd:MD_ReferenceSystem>
</gmd:referenceSystemInfo>
<gmd:identificationInfo>
<gmd:MD_DataIdentification>
<gmd:citation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>TIGER/Line Shapefile, 2016, county, Northwest Arctic Borough, AK, All Roads County-based Shapefile</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date><!--This is the publication date-->
<gmd:date>
<gco:Date>2016</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication">publication
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:edition>
<gco:CharacterString>2016</gco:CharacterString>
</gmd:edition>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>U.S. Department of Commerce, U.S. Census Bureau, Geography
Division, Spatial Data Collection and Products Branch</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>301.763.1128</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString/>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>4600 Silver Hill Road</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:city>
<gco:CharacterString>Washington</gco:CharacterString>
</gmd:city>
<gmd:administrativeArea>
<gco:CharacterString>DC</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>20233-7400</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>USA</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>geo.geography@census.gov</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="custodian">custodian
</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
<gmd:presentationForm>
<gmd:CI_PresentationFormCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_PresentationFormCode"
codeListValue="mapDigital"/>
</gmd:presentationForm>
</gmd:CI_Citation>
</gmd:citation>
<gmd:abstract>
<gco:CharacterString>The TIGER/Line shapefiles and related database files (.dbf) are an extract of
selected geographic and cartographic information from the U.S. Census Bureau's
Master Address File / Topologically Integrated Geographic Encoding and Referencing
(MAF/TIGER) Database (MTDB). The MTDB represents a seamless national file with no
overlaps or gaps between parts, however, each TIGER/Line shapefile is designed to
stand alone as an independent data set, or they can be combined to cover the entire
nation. The All Roads Shapefile includes all features within the MTDB Super Class
"Road/Path Features" distinguished where the MAF/TIGER Feature Classification Code
(MTFCC) for the feature in MTDB that begins with "S". This includes all primary,
secondary, local neighborhood, and rural roads, city streets, vehicular trails
(4wd), ramps, service drives, alleys, parking lot roads, private roads for service
vehicles (logging, oil fields, ranches, etc.), bike paths or trails, bridle/horse
paths, walkways/pedestrian trails, and stairways. </gco:CharacterString>
</gmd:abstract>
<gmd:purpose>
<gco:CharacterString>In order for others to use the information in the Census MAF/TIGER database in
a geographic information system (GIS) or for other geographic applications, the
Census Bureau releases to the public extracts of the database in the form of
TIGER/Line Shapefiles. </gco:CharacterString>
</gmd:purpose>
<gmd:resourceMaintenance>
<gmd:MD_MaintenanceInformation>
<gmd:maintenanceAndUpdateFrequency>
<gmd:MD_MaintenanceFrequencyCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_MaintenanceFrequencyCode"
codeListValue="None planned"/>
</gmd:maintenanceAndUpdateFrequency>
</gmd:MD_MaintenanceInformation>
</gmd:resourceMaintenance>
<gmd:graphicOverview>
<gmd:MD_BrowseGraphic>
<gmd:fileName>
<gco:CharacterString>https://tigerweb.geo.census.gov/arcgis/services/TIGERweb/tigerWMS_PhysicalFeatures/MapServer/WmsServer?REQUEST=GetMap&SERVICE=WMS&VERSION=1.3.0%200%20&LAYERS=Primary%20Roads,Secondary%20Roads,Local%20Roads&STYLES%20=%20default,%20default,default&FORMAT=image/svg+xml&BGCOLOR=0xFFFFFF&TRANSPARENT=FALSE&CRS=EPSG:4326&BBOX=%20+47.5329749,-122.3435865,+47.5969449,-122.2511911,&WIDTH=891&HEIGHT=751URL for the TigerWeb Web Mapping
ServiceURL for a web mapping service</gco:CharacterString>
</gmd:fileName>
<gmd:fileDescription>
<gco:CharacterString>URL for the TigerWeb Web Mapping
Service</gco:CharacterString>
</gmd:fileDescription>
<gmd:fileType>
<gco:CharacterString>URL for a web mapping service</gco:CharacterString>
</gmd:fileType>
</gmd:MD_BrowseGraphic>
</gmd:graphicOverview>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>NGDA</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Transportation Theme</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>National Geospatial Data Asset</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>NGDA Portfolio Themes</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"
codeListValue="theme">theme
</gmd:MD_KeywordTypeCode>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>NGDA Portfolio Themes</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2017-03-24</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="revision">revision </gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:otherCitationDetails>
<gco:CharacterString>https://www.fgdc.gov/policyandplanning/a-16/appendixe/20170324-ngda-themes-fgdc-sc-revised-appendixe.pdf</gco:CharacterString>
</gmd:otherCitationDetails>
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>County or equivalent entity</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Linear Feature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Address Range</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Street Centerline</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Road Feature</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>Roads</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"
codeListValue="theme"/>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>None</gco:CharacterString>
</gmd:title>
<gmd:date gco:nilReason="unknown"/>
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:descriptiveKeywords>
<gmd:MD_Keywords>
<gmd:keyword>
<gco:CharacterString>Northwest Arctic</gco:CharacterString>
</gmd:keyword>
<gmd:keyword>
<gco:CharacterString>02188</gco:CharacterString>
</gmd:keyword>
<gmd:type>
<gmd:MD_KeywordTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_KeywordTypeCode"
codeListValue="place"/>
</gmd:type>
<gmd:thesaurusName>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>National Standard Codes (ANSI INCITS 31-2009), Federal
Information Processing Series (FIPS) - Counties/County
Equivalents</gco:CharacterString>
</gmd:title>
<gmd:date gco:nilReason="unknown"/>
</gmd:CI_Citation>
</gmd:thesaurusName>
</gmd:MD_Keywords>
</gmd:descriptiveKeywords>
<gmd:resourceConstraints>
<gmd:MD_LegalConstraints>
<gmd:accessConstraints>
<gmd:MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode"
codeListValue="unrestricted"/>
</gmd:accessConstraints>
<gmd:useConstraints>
<gmd:MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode"
codeListValue="trademark"/>
</gmd:useConstraints>
<gmd:useConstraints>
<gmd:MD_RestrictionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_RestrictionCode"
codeListValue="otherRestrictions"/>
</gmd:useConstraints>
<gmd:otherConstraints>
<gco:CharacterString>Use Constraints:The TIGER/Line Shapefile products are not copyrighted
however TIGER/Line and Census TIGER are registered trademarks of the U.S. Census
Bureau. These products are free to use in a product or publication, however
acknowledgement must be given to the U.S. Census Bureau as the source. The boundary
information in the TIGER/Line Shapefiles are for statistical data collection and
tabulation purposes only; their depiction and designation for statistical purposes
does not constitute a determination of jurisdictional authority or rights of
ownership or entitlement and they are not legal land descriptions. Coordinates in the
TIGER/Line shapefiles have six implied decimal places, but the positional accuracy
of these coordinates is not as great as the six decimal places suggest.
</gco:CharacterString>
</gmd:otherConstraints>
</gmd:MD_LegalConstraints>
</gmd:resourceConstraints>
<gmd:aggregationInfo>
<gmd:MD_AggregateInformation>
<gmd:aggregateDataSetName>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Current Block Group</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>2016</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="https://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication">publication
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>Spatial Data Collection and Products Branch</gco:CharacterString>
</gmd:organisationName>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:aggregateDataSetName>
<gmd:associationType>
<gmd:DS_AssociationTypeCode codeList="https://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#DS_AssociationTypeCode"
codeListValue="crossReference">crossReference
</gmd:DS_AssociationTypeCode>
</gmd:associationType>
</gmd:MD_AggregateInformation>
</gmd:aggregationInfo>
<gmd:spatialRepresentationType>
<gmd:MD_SpatialRepresentationTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_SpatialRepresentationTypeCode"
codeListValue="Vector"/>
</gmd:spatialRepresentationType>
<gmd:language>
<gco:CharacterString>eng</gco:CharacterString>
</gmd:language>
<gmd:characterSet>
<gmd:MD_CharacterSetCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_CharacterSetCode"
codeListValue="UTF-8">UTF-8</gmd:MD_CharacterSetCode>
</gmd:characterSet>
<gmd:topicCategory>
<gmd:MD_TopicCategoryCode>transportation</gmd:MD_TopicCategoryCode>
</gmd:topicCategory>
<gmd:environmentDescription>
<gco:CharacterString>The TIGER/Line shapefiles contain geographic data only and do not
include display mapping software or statistical data. For information on how to use the
TIGER/Line shapefile data with specific software package users shall contact the company
that produced the software.</gco:CharacterString>
</gmd:environmentDescription>
<gmd:extent>
<gmd:EX_Extent id="boundingExtent">
<gmd:geographicElement>
<gmd:EX_GeographicBoundingBox id="boundingGeographicBoundingBox">
<gmd:westBoundLongitude>
<gco:Decimal>-165.596039</gco:Decimal>
</gmd:westBoundLongitude>
<gmd:eastBoundLongitude>
<gco:Decimal>-154.146221</gco:Decimal>
</gmd:eastBoundLongitude>
<gmd:southBoundLatitude>
<gco:Decimal>65.436944</gco:Decimal>
</gmd:southBoundLatitude>
<gmd:northBoundLatitude>
<gco:Decimal>68.294564</gco:Decimal>
</gmd:northBoundLatitude>
</gmd:EX_GeographicBoundingBox>
</gmd:geographicElement>
<gmd:temporalElement>
<gmd:EX_TemporalExtent id="boundingTemporalExtent">
<gmd:extent/>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:extent>
</gmd:MD_DataIdentification>
</gmd:identificationInfo>
<gmd:contentInfo>
<gmd:MD_FeatureCatalogueDescription>
<gmd:includedWithDataset>
<gco:Boolean>true</gco:Boolean>
</gmd:includedWithDataset>
<gmd:featureTypes>
<gco:LocalName codeSpace="unknown"/>
</gmd:featureTypes>
<gmd:featureCatalogueCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Feature Catalog for the 2016 All Roads County-based Shapefile</gco:CharacterString>
</gmd:title>
<gmd:date>
<gmd:CI_Date><!--This is the publication date-->
<gmd:date>
<gco:Date>2016</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication">publication
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:otherCitationDetails>
<gco:CharacterString>https://meta.geo.census.gov/data/existing/decennial/GEO/GPMB/TIGERline/TIGER2016/roads/tl_2016_roads.shp.ea.iso.xml</gco:CharacterString>
</gmd:otherCitationDetails>
</gmd:CI_Citation>
</gmd:featureCatalogueCitation>
</gmd:MD_FeatureCatalogueDescription>
</gmd:contentInfo>
<gmd:distributionInfo>
<gmd:MD_Distribution>
<gmd:distributionFormat>
<gmd:MD_Format>
<gmd:name>
<gco:CharacterString>TGRSHP (compressed)</gco:CharacterString>
</gmd:name>
<gmd:version>
<gco:CharacterString>2016</gco:CharacterString>
</gmd:version>
</gmd:MD_Format>
</gmd:distributionFormat>
<gmd:distributionFormat>
<gmd:MD_Format>
<gmd:name>
<gco:CharacterString>HTML</gco:CharacterString>
</gmd:name>
<gmd:version>
<gco:CharacterString>unknown</gco:CharacterString>
</gmd:version>
</gmd:MD_Format>
</gmd:distributionFormat>
<gmd:distributor>
<gmd:MD_Distributor>
<gmd:distributorContact>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>U.S. Department of Commerce, U.S. Census Bureau, Geography
Division, Spatial Data Collection and Products Branch</gco:CharacterString>
</gmd:organisationName>
<gmd:contactInfo>
<gmd:CI_Contact>
<gmd:phone>
<gmd:CI_Telephone>
<gmd:voice>
<gco:CharacterString>301.763.1128</gco:CharacterString>
</gmd:voice>
<gmd:facsimile>
<gco:CharacterString>301-763-4710</gco:CharacterString>
</gmd:facsimile>
</gmd:CI_Telephone>
</gmd:phone>
<gmd:address>
<gmd:CI_Address>
<gmd:deliveryPoint>
<gco:CharacterString>4600 Silver Hill Road</gco:CharacterString>
</gmd:deliveryPoint>
<gmd:city>
<gco:CharacterString>Washington</gco:CharacterString>
</gmd:city>
<gmd:administrativeArea>
<gco:CharacterString>DC</gco:CharacterString>
</gmd:administrativeArea>
<gmd:postalCode>
<gco:CharacterString>20233-7400</gco:CharacterString>
</gmd:postalCode>
<gmd:country>
<gco:CharacterString>USA</gco:CharacterString>
</gmd:country>
<gmd:electronicMailAddress>
<gco:CharacterString>geo.geography@census.gov</gco:CharacterString>
</gmd:electronicMailAddress>
</gmd:CI_Address>
</gmd:address>
</gmd:CI_Contact>
</gmd:contactInfo>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="distributor">custodian
</gmd:CI_RoleCode>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:distributorContact>
<gmd:distributionOrderProcess>
<gmd:MD_StandardOrderProcess>
<gmd:fees>
<gco:CharacterString>The online copy of the TIGER/Line Shapefiles may be accessed without
charge.</gco:CharacterString>
</gmd:fees>
<gmd:orderingInstructions>
<gco:CharacterString>To obtain more information about ordering TIGER/Line Shapefiles
visit http://www.census.gov/geo/www/tiger </gco:CharacterString>
</gmd:orderingInstructions>
</gmd:MD_StandardOrderProcess>
</gmd:distributionOrderProcess>
</gmd:MD_Distributor>
</gmd:distributor>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>https://www2.census.gov/geo/tiger/TIGER2016/ROADS/tl_2016_02195_roads.zip</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>https</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnlineFunctionCode"
codeListValue="download">download
</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>https://www.census.gov/geo/maps-data/data/tiger-line.htm</gmd:URL>
</gmd:linkage>
<gmd:protocol>
<gco:CharacterString>https</gco:CharacterString>
</gmd:protocol>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnlineFunctionCode"
codeListValue="download">download
</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>https://tigerweb.geo.census.gov/arcgis/services/TIGERweb/tigerWMS_PhysicalFeatures/MapServer/WMSServer</gmd:URL>
</gmd:linkage>
<gmd:applicationProfile>
<gco:CharacterString>http://opengis.net/spec/wms</gco:CharacterString>
</gmd:applicationProfile>
<gmd:name>
<gco:CharacterString>TIGERweb/tigerWMS_PhysicalFeatures (MapServer)</gco:CharacterString>
</gmd:name>
<gmd:description>
<gco:CharacterString>This web mapping service contains the layer for the 2016 AK, All Roads County-based ShapefileThis URL is to be used in mapping software like ArcMap. To use this in a web browser, see the OGC Web Mapping Specification.
</gco:CharacterString>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnlineFunctionCode"
codeListValue="search">search
</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
<gmd:transferOptions>
<gmd:MD_DigitalTransferOptions>
<gmd:onLine>
<gmd:CI_OnlineResource>
<gmd:linkage>
<gmd:URL>https://tigerweb.geo.census.gov/arcgis/rest/services/TIGERweb/Transportation/MapServer</gmd:URL>
</gmd:linkage>
<gmd:applicationProfile>
<gco:CharacterString>http://www.geoplatform.gov/spec/esri-map-rest</gco:CharacterString>
</gmd:applicationProfile>
<gmd:name>
<gco:CharacterString>TIGERweb/tigerWMS_PhysicalFeatures (MapServer) Rest Service</gco:CharacterString>
</gmd:name>
<gmd:description>
<gco:CharacterString>This Rest Service contains all the Transportation and hydrology layers</gco:CharacterString>
</gmd:description>
<gmd:function>
<gmd:CI_OnLineFunctionCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_OnlineFunctionCode"
codeListValue="search">search
</gmd:CI_OnLineFunctionCode>
</gmd:function>
</gmd:CI_OnlineResource>
</gmd:onLine>
</gmd:MD_DigitalTransferOptions>
</gmd:transferOptions>
</gmd:MD_Distribution>
</gmd:distributionInfo>
<gmd:dataQualityInfo>
<gmd:DQ_DataQuality>
<gmd:scope>
<gmd:DQ_Scope>
<gmd:level>
<gmd:MD_ScopeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#MD_ScopeCode"
codeListValue="dataset"/>
</gmd:level>
</gmd:DQ_Scope>
</gmd:scope>
<gmd:report>
<gmd:DQ_QuantitativeAttributeAccuracy>
<gmd:nameOfMeasure>
<gco:CharacterString>National Standard Codes, Federal Information Processing (FIPS) and the
Geographic Names Information System (GNIS) TIGER/Line Shapefile Test</gco:CharacterString>
</gmd:nameOfMeasure>
<gmd:evaluationMethodDescription>
<gco:CharacterString>Tested against National Standard Codes, Federal Information Processing
(FIPS) and the Geographic Names Information System (GNIS)</gco:CharacterString>
</gmd:evaluationMethodDescription>
<gmd:result>
<gmd:DQ_ConformanceResult>
<gmd:specification gco:nilReason="unknown"/>
<gmd:explanation>
<gco:CharacterString>100% accurate for the codes and base names.</gco:CharacterString>
</gmd:explanation>
<gmd:pass gco:nilReason="unknown"/>
</gmd:DQ_ConformanceResult>
</gmd:result>
</gmd:DQ_QuantitativeAttributeAccuracy>
</gmd:report>
<gmd:report>
<gmd:DQ_ConceptualConsistency>
<gmd:nameOfMeasure>
<gco:CharacterString>TIGER/Line Shapefile topological consistency test</gco:CharacterString>
</gmd:nameOfMeasure>
<gmd:evaluationMethodDescription>
<gco:CharacterString>The Census Bureau performed automated tests to ensure logical
consistency and limits of shapefiles by collecting or generating Node/geometry
and topology relationships to satisfy topological edit requirements. These
requirements include: (1) Complete chains must begin and end at nodes. (2)
Complete chains must connect to each other at nodes. (3) Complete chains do not
extend through nodes. (4) Left and right polygons are defined for each complete
chain element and are consistent throughout the extract process. (5) The chains
representing the limits of the files are free of gaps.</gco:CharacterString>
</gmd:evaluationMethodDescription>
<gmd:result>
<gmd:DQ_ConformanceResult>
<gmd:specification gco:nilReason="unknown"/>
<gmd:explanation>
<gco:CharacterString>There may be some inconsistencies in feature names along features. An
anomaly exists with the sporadic occurrence of road segments comprising a
complete chain with different MAF/TIGER Feature Census Class Code (MTFCC) values
assigned. This problem could affect applications that use the MTFCC values for
network analysis, routing, or for assigning symbology to a feature when creating
a map.</gco:CharacterString>
</gmd:explanation>
<gmd:pass gco:nilReason="unknown"/>
</gmd:DQ_ConformanceResult>
</gmd:result>
</gmd:DQ_ConceptualConsistency>
</gmd:report>
<gmd:report>
<gmd:DQ_CompletenessOmission>
<gmd:nameOfMeasure>
<gco:CharacterString>The Census Bureau uses root mean square error (RMSE) as stated in the
FGDC-STD-007. 3-1998, Geospatial Positioning Accuracy Standards, Part 3:
National Standard for Spatial Data Accuracy.</gco:CharacterString>
</gmd:nameOfMeasure>
<gmd:evaluationMethodDescription>
<gco:CharacterString>The Census Bureau uses Global Positioning System (GPS) coordinates at
road centerline intersections to evaluate the horizontal spatial accuracy of
source files that may be used to realign road features in the MAF/TIGER database
and test the horizontal spatial accuracy of the road features in the TIGER/Line
Shapefiles. The test compares a survey-grade GPS coordinate to its associated
road centerline intersection in the TIGER/Line Shapefiles. The test is based on
an independent collection of GPS coordinates for a random sample of road
intersections from a centerline file that meet certain criteria. The points are
referred to as the sample points and are gathered through a private contractor
working for the Census Bureau. Since the collection method uses survey-quality
GPS-based field techniques, the resulting control points are considered 'ground
truth' against which the TIGER road centerline intersection coordinates are
compared. The distances between the coordinates are calculated and the Census
Bureau determines the Circular Error 95% (CE95). That is, the accuracy of the
file in meters with 95% confidence. The CE95 can be calculated from the mean and
standard deviation by using the formula: mean of differences plus (2.65 times
the standard deviation). CE95 results reported for each file tested are
determined using a spreadsheet with embedded statistical formula. The use and
applicability of the spreadsheet and its embedded formula have been verified by
Census Bureau statisticians. The basis of the calculation is the use of the root
mean square error (RMSE). This is the method as stated in the U.S. Government's
Federal Geographic Data Committee Standard FGDC-STD-007.3-1998, Geospatial
Positioning Accuracy Standards. Part 3: National Standard for Spatial Data
Accuracy. The results of using this measure of accuracy are in compliance with
Federal Spatial Data requirements. In terms of the Census Bureau application,
the dataset coordinate values are those taken from the centerline file and the
coordinate values from an independent source of higher accuracy are those
acquired through the Census Bureau's contractor. Please note that the horizontal
spatial accuracy, where reported, refers only to the realigned road features
identified as matched to the positionally accurate source file with that
accuracy. It is not the spatial accuracy of the TIGER/Line Shapefile as a
whole.</gco:CharacterString>
</gmd:evaluationMethodDescription>
<gmd:result>
<gmd:DQ_QuantitativeResult>
<gmd:valueUnit>
<gml:BaseUnit gml:id="meters">
<gml:identifier codeSpace="meters"/>
<gml:unitsSystem xlink:href="http://www.bipm.org/en/si/"/>
</gml:BaseUnit>
</gmd:valueUnit>
<gmd:value>
<gco:Record>6.5 meters for 5406</gco:Record>
</gmd:value>
<gmd:value>
<gco:Record>1.73 meters for 11213</gco:Record>
</gmd:value>
</gmd:DQ_QuantitativeResult>
</gmd:result>
</gmd:DQ_CompletenessOmission>
</gmd:report>
<gmd:lineage>
<gmd:LI_Lineage>
<gmd:processStep>
<gmd:LI_ProcessStep>
<gmd:description>
<gco:CharacterString>TIGER/Line Shapefiles are extracted from the Census MAF/TIGER
database by nation, state, county, and entity. Census MAF/TIGER data for all of the
aforementioned geographic entities are then distributed among the shapefiles each
containing attributes for line, polygon, or landmark geographic
data.20160101</gco:CharacterString>
</gmd:description>
</gmd:LI_ProcessStep>
</gmd:processStep>
<gmd:source>
<gmd:LI_Source>
<gmd:description>
<gco:CharacterString> All line segments</gco:CharacterString>
</gmd:description>
<gmd:sourceCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>Census MAF/TIGER database</gco:CharacterString>
</gmd:title>
<gmd:alternateTitle>
<gco:CharacterString>MAF/TIGER</gco:CharacterString>
</gmd:alternateTitle>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>201605</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication date">publication date
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>U.S. Department of Commerce, U.S. Census Bureau, Geography
Division</gco:CharacterString>
</gmd:organisationName>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:sourceCitation>
<gmd:sourceExtent>
<gmd:EX_Extent>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="SourceMAFTIGERCens">
<gml:beginPosition/>
<gml:endPosition/>
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:sourceExtent>
</gmd:LI_Source>
</gmd:source>
<gmd:source>
<gmd:LI_Source>
<gmd:description>
<gco:CharacterString>Source Contribution: Coordinates to realign selected road features
in the Census MAF/TIGER database.</gco:CharacterString>
</gmd:description>
<gmd:sourceCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>kotzebue83.shp</gco:CharacterString>
</gmd:title>
<gmd:alternateTitle>
<gco:CharacterString>Alaska ADOT PF</gco:CharacterString>
</gmd:alternateTitle>
<gmd:date>
<gmd:CI_Date>
<gmd:date>
<gco:Date>20030401</gco:Date>
</gmd:date>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication date">publication date
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>5406 Alaska ADOT PF Division of Statewide Planning, GIS Mapping
Section</gco:CharacterString>
</gmd:organisationName>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:sourceCitation>
<gmd:sourceExtent>
<gmd:EX_Extent>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="SourceAlaskaADOTPFkotz">
<gml:beginPosition/>
<gml:endPosition/>
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:sourceExtent>
</gmd:LI_Source>
</gmd:source>
<gmd:source>
<gmd:LI_Source>
<gmd:description>
<gco:CharacterString>Coordinates to realign selected hydrographic features in the Census
MAF/TIGER database.</gco:CharacterString>
</gmd:description>
<gmd:sourceCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>National Hydrography Dataset - Med. Res.</gco:CharacterString>
</gmd:title>
<gmd:alternateTitle>
<gco:CharacterString> USGS NHD</gco:CharacterString>
</gmd:alternateTitle>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="unknown"/>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication date">publication date
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>6178 USGS - National Hydrography Dataset Coordination and Requirements
(C&R)</gco:CharacterString>
</gmd:organisationName>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:sourceCitation>
<gmd:sourceExtent>
<gmd:EX_Extent>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="SourceUSGSNHDNati">
<gml:beginPosition/>
<gml:endPosition/>
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:sourceExtent>
</gmd:LI_Source>
</gmd:source>
<gmd:source>
<gmd:LI_Source>
<gmd:description>
<gco:CharacterString> Coordinates to realign selected hydrographic features in the
Census MAF/TIGER database.</gco:CharacterString>
</gmd:description>
<gmd:sourceCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>National Hydrography Dataset - High Res.</gco:CharacterString>
</gmd:title>
<gmd:alternateTitle>
<gco:CharacterString>USGS NHD</gco:CharacterString>
</gmd:alternateTitle>
<gmd:date>
<gmd:CI_Date>
<gmd:date gco:nilReason="unknown"/>
<gmd:dateType>
<gmd:CI_DateTypeCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_DateTypeCode"
codeListValue="publication date">publication date
</gmd:CI_DateTypeCode>
</gmd:dateType>
</gmd:CI_Date>
</gmd:date>
<gmd:citedResponsibleParty>
<gmd:CI_ResponsibleParty>
<gmd:organisationName>
<gco:CharacterString>6188 USGS - National Hydrography Dataset Coordination and Requirements
(C&R)</gco:CharacterString>
</gmd:organisationName>
<gmd:role>
<gmd:CI_RoleCode codeList="http://www.isotc211.org/2005/resources/Codelist/gmxCodelists.xml#CI_RoleCode"
codeListValue="resourceProvider"/>
</gmd:role>
</gmd:CI_ResponsibleParty>
</gmd:citedResponsibleParty>
</gmd:CI_Citation>
</gmd:sourceCitation>
<gmd:sourceExtent>
<gmd:EX_Extent>
<gmd:temporalElement>
<gmd:EX_TemporalExtent>
<gmd:extent>
<gml:TimePeriod gml:id="SourceUSGSNHDNati">
<gml:beginPosition/>
<gml:endPosition/>
</gml:TimePeriod>
</gmd:extent>
</gmd:EX_TemporalExtent>
</gmd:temporalElement>
</gmd:EX_Extent>
</gmd:sourceExtent>
</gmd:LI_Source>
</gmd:source>
<gmd:source>
<gmd:LI_Source>
<gmd:description>
<gco:CharacterString>Coordinates to realign selected hydrographic features in the Census
MAF/TIGER database.</gco:CharacterString>
</gmd:description>
<gmd:sourceCitation>
<gmd:CI_Citation>
<gmd:title>
<gco:CharacterString>National Hydrography Dataset - High Res.</gco:CharacterString>
</gmd:title>
<gmd:alternateTitle>
<gco:CharacterString>USGS NHD</gco:CharacterString>
</gmd:alternateTitle>