<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="fgdc_classic.xsl"?>
<metadata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://water.usgs.gov/GIS/metadata/usgswrd/fgdc-std-001-1998.xsd">
	<idinfo>
		<citation>
			<citeinfo>
				<origin>U.S. Dept of Commerce, Bureau of Census</origin>
				<pubdate>1993</pubdate>
				<title>1:100,000-scale Counties of the United States</title>
				<edition>1.1</edition>
				<geoform>vector digital data</geoform>
				<pubinfo>
					<pubplace>Reston, Virginia</pubplace>
					<publish>U.S. Geological Survey</publish>
				</pubinfo>
				<onlink>http://water.usgs.gov/lookup/getspatial?county100</onlink>
			</citeinfo>
		</citation>
		<descript>
			<abstract>This is a coverage of the county boundaries of the conterminous United
States (AK, HI and Puerto Rico are available separately).  The lines were
extracted from U.S. Census TIGER/line files using an AML program (see 4.),
written by Doug Nebert and Mark Negri, running on two Data General 6220
servers.

Counties
Boundaries
United States
			</abstract>
			<purpose>This coverage is intended as a basemap for any desired GIS application.
			</purpose>
			<supplinf>Procedures_Used:
The data was extracted from Census TIGER/line files stored on 38 compact
discs (CD) using the following four step procedure:

1) Copy the data off the TIGER/line CD onto magnetic disc of a Data General
6220 server.  The data was copied on a per state basis under an
individual directory.

2) Run the data through ARCTIGER.AML which goes as follows:

/*  ARCTIGER.AML - An aml that will extract county outer boundary lines from
/*            Census TIGER line files and MAPJOIN these lines to create a
/*            full state coverage of county lines.  Directory must contain
/*            albers.prj Projection file.
/*  --------------------------------------------------------------------------
/*  Read county list from a particular state and set # of iterations to the
/*  # of counties.
&amp;args stno state
&amp;setvar countycount [filelist /gis/%stno%[unquote '/*'] county.list -full -dir]
&amp;setvar fileunit [open county.list ostat -r]
&amp;do i = 1 &amp;to %countycount%
/*  Read individual TIGER files.
&amp;setvar cty [locase [read %fileunit% rstat]]
&amp;setvar xyz [filelist %cty%/tgr* tigerfiles -full -file]
&amp;setvar filunit [open tigerfiles ostat -r]
&amp;sv fname [locase [read %filunit% rstat]]
&amp;sv statecounty [substr %fname% 16 5]
/*  Block TIGER file record 1 and perform SORTTIGER.
&amp;if [after %fname% .] = f21 &amp;then
&amp;sys dd if=%fname% of=line%statecounty% ibs=228 obs=228 cbs=228 conv=unblock
sorttiger 1 line%statecounty% lnsrt%statecounty%
&amp;sv fname [locase [read %filunit% rstat]]
/*  Block TIGER file record 2 and perform SORTTIGER.
&amp;if [after %fname% .] = f22 &amp;then
&amp;sys dd if=%fname% of=shape%statecounty% ibs=208 obs=208 cbs=208 conv=unblock
&amp;sv cerr1 [close %filunit%]
sorttiger 2 shape%statecounty% shpsrt%statecounty%
/*  Create ARC coverage from blocked and sorted TIGER files using the
/*  TIGERARC command.
tigerarc precensus geo%statecounty% lnsrt%statecounty% shpsrt%statecounty%
&amp;sys rm line%statecounty% lnsrt%statecounty% shape%statecounty% ~
shpsrt%statecounty%
build geo%statecounty% line
/*  Extract items geo%statecounty%-ID and SOURCE from geo%statecounty%.ACODE
/*  datafile and add to geo%statecounty%.AAT
pullitems [translate geo%statecounty%].ACODE PULL
[translate geo%statecounty%]-ID
SOURCE
END
joinitem [translate geo%statecounty%].AAT PULL ~
[translate geo%statecounty%].AAT [translate geo%statecounty%]-ID ~
[translate geo%statecounty%]-ID ORDERED
tables
$kill PULL
q stop
/*  Project geo%statecounty% into Albers equal area to create prj%statecounty%,
/*  BUILD with LINE, CLEAN with 10 10 POLY and extract outer boundary to create
/*  cov%statecounty%.
project cover geo%statecounty% prj%statecounty% albers.prj
build prj%statecounty% line
clean prj%statecounty% gcl%statecounty% 10 10 poly
reselect gcl%statecounty% cov%statecounty% line
RESELECT LPOLY# = 1 OR RPOLY# = 1
[unquote ' ']
n
n
build cov%statecounty% line
build cov%statecounty% poly
/*  ADDITEM STATECTY and populate cov%statecounty%.PAT with %statecounty%,
/*  calculate cov%statecounty%-ID in the cov%statecounty%.AAT to equal SOURCE
/*  so pseudonodes can be deleted with UNSPLIT in ARCEDIT, then set all
/*  cov%statecounty%-ID's in cov%statecounty%.AAT to equal
/*  cov%statecounty%#.
createlabels cov%statecounty%
build cov%statecounty% poly
additem [translate cov%statecounty%].PAT [translate cov%statecounty%].PAT ~
STATECTY 5 5 I
tables
select [translate cov%statecounty%].PAT
reselect [translate cov%statecounty%]# GT 1
calc STATECTY = %statecounty%
select [translate cov%statecounty%].AAT
reselect SOURCE CN ' '
calc [translate cov%statecounty%]-ID = 0
aselect
reselect SOURCE CN 'A'
calc [translate cov%statecounty%]-ID = 1
aselect
reselect SOURCE CN 'B'
calc [translate cov%statecounty%]-ID = 2
aselect
reselect SOURCE CN 'C'
calc [translate cov%statecounty%]-ID = 3
aselect
reselect SOURCE CN 'D'
calc [translate cov%statecounty%]-ID = 4
aselect
reselect SOURCE CN 'E'
calc [translate cov%statecounty%]-ID = 5
aselect
reselect SOURCE CN 'F'
calc [translate cov%statecounty%]-ID = 6
aselect
reselect SOURCE CN 'G'
calc [translate cov%statecounty%]-ID = 7
q stop
idedit cov%statecounty% line
arcedit
ec cov%statecounty%
ef arcs
select all
unsplit
save
quit
build cov%statecounty% line
build cov%statecounty% poly
tables
select [translate cov%statecounty%].AAT
calc [translate cov%statecounty%]-ID = [translate cov%statecounty%]#
q stop
idedit cov%statecounty% line
kill geo%statecounty% all
kill prj%statecounty% all
kill gcl%statecounty% all
&amp;end
&amp;setvar cerr2 [close %fileunit%]
&amp;sys rm county.list
&amp;sys rm tigerfiles
/*  MAPJOIN the individual county coverages to form a full state coverage.
&amp;setvar covercount [filelist cov* covlist -cover -network]
&amp;setvar fileunit [open covlist ostat -r]
mapjoin %state% net features
&amp;do i = 1 &amp;to %covercount%
&amp;setvar cover [read %fileunit% rstat]
%cover%
&amp;end
end
&amp;sys rm covlist
/*  Set SOURCE codes equal to cover-ID so pseudonodes can be removed with
/*  UNSPLIT in ARCEDIT.
tables
select [translate %state%].AAT
reselect SOURCE CN ' '
calc [translate %state%]-ID = 0
aselect
reselect SOURCE CN 'A'
calc [translate %state%]-ID = 1
aselect
reselect SOURCE CN 'B'
calc [translate %state%]-ID = 2
aselect
reselect SOURCE CN 'C'
calc [translate %state%]-ID = 3
aselect
reselect SOURCE CN 'D'
calc [translate %state%]-ID = 4
aselect
reselect SOURCE CN 'E'
calc [translate %state%]-ID = 5
aselect
reselect SOURCE CN 'F'
calc [translate %state%]-ID = 6
aselect
reselect SOURCE CN 'G'
calc [translate %state%]-ID = 7
q stop
idedit %state% line
arcedit
ec %state%
ef arcs
select all
unsplit
save
quit
build %state% poly
build %state% line
/*  Set cover-ID's back to equal cover#.
tables
select [translate %state%].AAT
calc [translate %state%]-ID = [translate %state%]#
q stop
idedit %state% line
/*  Remove sliver polygons while retaining SOURCE codes.
createlabels %state% 1001
build %state% poly
pullitems [translate %state%].AAT PULL
[translate %state%]-ID
SOURCE
END
eliminate %state% el%state% # poly
RESELECT [translate %state%]-ID &gt; 1000
[unquote ' ']
n
n
build el%state% line
build el%state% poly
kill %state% all
rename el%state% %state%
joinitem [translate %state%].AAT PULL [translate %state%].AAT ~
[translate %state%]-ID [translate %state%]-ID LINEAR
tables
$kill PULL
q stop
&amp;return

3) Visually check the data for accuracy against the 1:2,000,000 county
boundaries.  When discrepancies occured, the data was checked against
USGS 1:100,000 quad maps.

4) Add data from counties which were missing from the TIGER/line CDs or
that could not be converted on the Data General.  This was performed
by several methods.  Each method is followed by a list of counties
by STATECTY code in which the data was inserted by that method.

a) Missing or non-convertible counties which were completely surrounded
by county boundaries that did convert had a label added to their
blank polygon which was tagged with the appropriate STATECTY code.

Missing Counties:

Alabama: 01009, 01013, 01025, 01051, 01053, 01071, 01093, 01121,
01125.

Texas:  48105, 48107, 48109, 48155, 48157, 48159.

Utah:   49019, 49027, 49033, 49045, 49053.

Non-convertible Counties:

California: 06001, 06017, 06025, 06049, 06095.

Florida:   12105.

Georgia:   13289, 13305.

Louisiana:  22019, 22079, 22089.

Maine:    23019.

Minnesota:  27055, 27099.

Nevada:    32031.

New York:  36071.

Texas:    48027, 48037, 48121, 48453.

b) Non-convertible counties with a shoreline that were delineated by
using the adjacent inland county boundaries and a shoreline obtained
from the USGS 1:2,000,000 data set with a buffer to match the buffer
of the adjacent Census shoreline.  The shorelines of these counties
have a SOURCE code in the .AAT file of 'X'.

Alabama:      01097.

California:    06037, 06073.

Florida:      12009, 12071, 12099.

Georgia:      13051.

Louisiana:    22075.

North Carolina: 37053.

South Carolina: 45019.

Texas:       48167, 48245, 48261.

c) The following county boudaries were obtained by processing Census
TIGER/line files obtained from the U.S. Environmental Protection
Agency (The same procedures were used on this data):

Alabama: 01027, 01035, 01037, 01059, 01073, 01095, 01099, 01115,
01123, 01129, 01133.

Texas:  48101, 48103, 48153.

Utah:   49023, 49025, 49037, 49043, 49047.

d) The following county boudaries were obtained by processing Census
TIGER/line files on an IBM RS6000:

Florida:      12105.

South Carolina: 45053.

Texas:       48253.

Revisions:
Revision 1.1, 8/16/94.  Made a coding change as discovered by EPA:
1. A New Mexico county polygon coded FIPS = 35006, La Paz should
be FIPS = 35006, Cibola.
Revision by Mark Negri, mnegri@qvarsx.er.usgs.gov, 703-648-5613
Process_Date  8/16/94
Reviews_Applied_to_Data:
Post-processing data review performed as mentioned above by Mark Negri.

Related_Spatial_and_Tabular_Data_Sets:

Other_References_Cited:
Lines with SOURCE code type 'X' were obtained by bufferring USGS
1:2,000,000-scale digital map of counties, 1985.

Notes:
			</supplinf>
		</descript>
		<timeperd>
			<timeinfo>
				<sngdate>
					<caldate>1990</caldate>
				</sngdate>
			</timeinfo>
			<current>(Here you put information defining how the time period of
content information, on the DOC file, was determined)
			</current>
		</timeperd>
		<status>
			<progress>Complete</progress>
			<update>(Here you pick one of the following entries that describes
how often changes or additions are made to the data set.
Pick one, and delete the rest)

Continually
Daily
Weekly
Monthly
Annually
Unknown
As Needed
Irregular
None planned
			</update>
		</status>
		<spdom>
			<bounding>
				<westbc>-127.97569044</westbc>
				<eastbc>-65.25507606</eastbc>
				<northbc>48.27065081</northbc>
				<southbc>22.76830813</southbc>
			</bounding>
		</spdom>
		<keywords>
			<theme>
				<themekt>None</themekt>
				<themekey>county boundaries</themekey>
				<themekey>county</themekey>
				<themekey>Conterminous United States</themekey>
				<themekey>inlandWaters</themekey>
			</theme>
			<place>
				<placekt>None</placekt>
				<placekey>Conterminous United States (AK, HI &amp; Puerto Rico available separately)</placekey>
			</place>
			<stratum>
				<stratkt>None</stratkt>
				<stratkey>None</stratkey>
			</stratum>
			<temporal>
				<tempkt>None</tempkt>
				<tempkey>None</tempkey>
			</temporal>
		</keywords>
		<accconst>(describe any restrictions or legal prerequisites for accessing
the data set.  Put "None" if there are no restrictions)
		</accconst>
		<useconst>Lines with a SOURCE code of 'A' are from Census 1980 GBF/DIME-files and
have a much poorer resolution than lines of all other SOURCE code types.
'A' line types tend to be mostly in urban areas.

There are no shorelines in this coverage.  Coastal counties have their
boundaries extended approximately 3 miles into the ocean.  Counties that
bound the Great Lakes and other large inland waterbodies have their
boundaries extended proportionally into the waterbody.
		</useconst>
		<browse>
			<browsen>http://water.usgs.gov/GIS/browse/county100.gif</browsen>
			<browsed>Illlustration of data set</browsed>
			<browset>GIF</browset>
		</browse>
		<datacred>(Here you acknowledge the agencies and organizations that gave
you money, resources, and encouragement to digitize the data and
to enter all this wonderful metadata.)
		</datacred>
		<secinfo>
			<secsys>None</secsys>
			<secclass>Unclassified</secclass>
			<sechandl>None</sechandl>
		</secinfo>
		<native>dgux, 5.4R3.10, AViiON UNIX, ARC/INFO version 7.0.4</native>
		<crossref>
			<citeinfo>
				<origin>U.S. Geological Survey, Water Resources Div. (WRD)'</origin>
				<pubdate></pubdate>
				<pubtime>Computer Support</pubtime>
				<title></title>
				<edition>IT Specialist,</edition>
				<geoform>' Spatial Data Suppor Team'</geoform>
				<serinfo>
					<sername>Geographic Information Unit</sername>
					<issue></issue>
				</serinfo>
				<pubinfo>
					<pubplace>Unspecified</pubplace>
					<publish>Reston</publish>
				</pubinfo>
				<othercit>VA</othercit>
				<onlink></onlink>
			</citeinfo>
		</crossref>
	</idinfo>
	<dataqual>
		<attracc>
			<attraccr>See Entity_Attribute_Information</attraccr>
			<qattracc>
				<attraccv>See Explanation</attraccv>
				<attracce>Attribute accuracy is described, where present, with each
attribute defined in the Entity and Attribute Section.
				</attracce>
			</qattracc>
		</attracc>
		<logic>Polygon and chain-node topology present.</logic>
		<complete>(Information in wordy narrative form describing omissions,
selection criteria, generalization, definitions used, and other
rules applied to derive the data set)
		</complete>
		<posacc>
			<horizpa>
				<horizpar>(An explanation of the accuracy of the horizontal coordinate
measurements and a description of tests used, if any, to
determine horizontal positional accuracy.  This is different
from horizontal resolution as reported in the DOC file.
Positional accuracy defines how correctly the digital features
match real-world features and woiuld be related to the concept
of the National Map Accuracy Standard -- xx% of well-defined
point features fall within xx units of their true position.
The resolution is the smallest unit of measure the GIS can
reliably manage without truncation or rounding.)
				</horizpar>
				<qhorizpa>
					<horizpav>10 meters</horizpav>
					<horizpae>Resolution as reported</horizpae>
				</qhorizpa>
			</horizpa>
			<vertacc>
				<vertaccr>(The same as above, but for vertical information that may
be encoded with the 2-D features such as cell or contour
estimates of a vertical dimension.  A description of the
contour interval of input data and its basis could be described
here.)
				</vertaccr>
			</vertacc>
		</posacc>
		<lineage>
			<srcinfo>
				<srccite>
					<citeinfo>
						<origin>Unspecified</origin>
						<pubdate>0000</pubdate>
						<title>Unspecified</title>
					</citeinfo>
				</srccite>
				<srcscale>100,000-scale</srcscale>
				<typesrc>Unspecified</typesrc>
				<srctime>
					<timeinfo>
						<sngdate>
							<caldate>0000</caldate>
						</sngdate>
					</timeinfo>
					<srccurr>Unspecified</srccurr>
				</srctime>
				<srccitea>Unspecified</srccitea>
				<srccontr>Unspecified</srccontr>
			</srcinfo>
			<procstep>
				<procdesc>ELIMINATE USA ELUSA # POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910606</procdate>
				<proctime>1457</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD ELUSA LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910606</procdate>
				<proctime>1458</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD ELUSA POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910606</procdate>
				<proctime>1619</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>RENAME ELUSA USA</procdesc>
				<srcused>None</srcused>
				<procdate>19910606</procdate>
				<proctime>1619</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>RENAME USA COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910606</procdate>
				<proctime>1724</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>IDEDIT COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910610</procdate>
				<proctime>0706</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>ARCEDIT /GIS/DSDL/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910610</procdate>
				<proctime>0712</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910610</procdate>
				<proctime>0759</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910610</procdate>
				<proctime>0800</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>IDEDIT COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910610</procdate>
				<proctime>0802</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 CREATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19910611</procdate>
				<proctime>1048</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19910613</procdate>
				<proctime>1639</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>ARCEDIT /GIS/DSDL/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910619</procdate>
				<proctime>0718</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910619</procdate>
				<proctime>0721</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910619</procdate>
				<proctime>0847</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>ARCEDIT /GIS/DSDL/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910620</procdate>
				<proctime>0809</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910620</procdate>
				<proctime>0816</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910620</procdate>
				<proctime>0918</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>ARCEDIT /GIS/DSDL/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910621</procdate>
				<proctime>1208</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>ARCEDIT /GIS/DSDL/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910621</procdate>
				<proctime>1211</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 LINE</procdesc>
				<srcused>None</srcused>
				<procdate>19910621</procdate>
				<proctime>1217</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>BUILD COUNTY100 POLY</procdesc>
				<srcused>None</srcused>
				<procdate>19910621</procdate>
				<proctime>1312</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19910621</procdate>
				<proctime>1506</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19910624</procdate>
				<proctime>0813</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>COPY /GIS/DSDL/COUNTY100 /DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910913</procdate>
				<proctime>0949</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>COPY /GIS/DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100 COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910913</procdate>
				<proctime>1016</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>COPY /GIS/DSDL/COUNTY100 /DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910913</procdate>
				<proctime>1026</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19910918</procdate>
				<proctime>1318</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>COPY COUNTY100 COUNTY100X</procdesc>
				<srcused>None</srcused>
				<procdate>19910923</procdate>
				<proctime>1126</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>RENAME COUNTY100X COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19910923</procdate>
				<proctime>1128</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /GIS/DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19911108</procdate>
				<proctime>1644</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXTERNALALL</procdesc>
				<srcused>None</srcused>
				<procdate>19911126</procdate>
				<proctime>1527</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19911204</procdate>
				<proctime>1023</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19911230</procdate>
				<proctime>0852</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /DSDL/DATALIB/CUSA/TILES/CUSA/COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19920108</procdate>
				<proctime>2359</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19920115</procdate>
				<proctime>1004</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19920214</procdate>
				<proctime>0814</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>IMPORT COVER COUNTY100.E00 COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19920929</procdate>
				<proctime>1413</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>COPY COUNTY100 /DSDL1/CUSA/TILES/CUSA/COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19920929</procdate>
				<proctime>2132</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>FOOTPRINT COUNTY100 BND COUNTY100.BND FOOTPRINT</procdesc>
				<srcused>None</srcused>
				<procdate>19920930</procdate>
				<proctime>0919</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19930106</procdate>
				<proctime>1048</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXTERNALALL</procdesc>
				<srcused>None</srcused>
				<procdate>19930106</procdate>
				<proctime>1111</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXTERNALALL</procdesc>
				<srcused>None</srcused>
				<procdate>19930106</procdate>
				<proctime>1115</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /DSDL1/CUSA/TILES/CUSA/COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19930113</procdate>
				<proctime>0959</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19940816</procdate>
				<proctime>1216</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>DOCUMENT COUNTY100 UPDATE MNEGRI</procdesc>
				<srcused>None</srcused>
				<procdate>19940816</procdate>
				<proctime>1227</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /DSDL1/CUSA/TILES/CUSA/COUNTY100 COUNTY100_CUSA.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19940816</procdate>
				<proctime>1525</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>EXPORT COVER /DSDL1/CUSA/TILES/CUSA/COUNTY100 WAIS/COUNTY100_CUSA.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19940817</procdate>
				<proctime>1007</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>JPORTER DOCUMENT COUNTY100 DELETE JPORTER</procdesc>
				<srcused>None</srcused>
				<procdate>19950117</procdate>
				<proctime>1043</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>JPORTER DOCUMENT COUNTY100 COPY /HOME/GIS/LANFEAR/NEWDOC/COVERS/COUNTY100 JPORTE</procdesc>
				<srcused>None</srcused>
				<procdate>19950117</procdate>
				<proctime>1044</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>JPORTER EXPORT COVER /DSDL1/CUSA/TILES/CUSA/COUNTY100 COUNTY100</procdesc>
				<srcused>None</srcused>
				<procdate>19950120</procdate>
				<proctime>1310</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>JPORTER   DOCUMENT COUNTY100 DELETE JPORTER</procdesc>
				<srcused>None</srcused>
				<procdate>19950223</procdate>
				<proctime>1151</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>JPORTER   DOCUMENT COUNTY100 COPY   /HOME/GIS/LANFEAR/NEWDOC/COVERS/COUNTY100 JP</procdesc>
				<srcused>None</srcused>
				<procdate>19950223</procdate>
				<proctime>1153</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>MNEGRI EXPORT COVER COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19950302</procdate>
				<proctime>1319</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>MNEGRI EXPORT COVER COUNTY100 COUNTY100.E00</procdesc>
				<srcused>None</srcused>
				<procdate>19950613</procdate>
				<proctime>1452</proctime>
				<srcprod>None</srcprod>
			</procstep>
			<procstep>
				<procdesc>MNEGRI   EXPORT COVER COUNTY100 /SCRATCH_AREA1/MNEGRI/COUNTY100.E00 NONE</procdesc>
				<srcused>None</srcused>
				<procdate>19950919</procdate>
				<proctime>1552</proctime>
				<srcprod>None</srcprod>
			</procstep>
		</lineage>
	</dataqual>
	<spdoinfo>
		<direct>Vector</direct>
		<ptvctinf>
			<sdtsterm>
				<sdtstype>Point</sdtstype>
				<ptvctcnt>3167</ptvctcnt>
			</sdtsterm>
			<sdtsterm>
				<sdtstype>String</sdtstype>
				<ptvctcnt>63040</ptvctcnt>
			</sdtsterm>
			<sdtsterm>
				<sdtstype>GT-polygon composed of chains</sdtstype>
				<ptvctcnt>3168</ptvctcnt>
			</sdtsterm>
		</ptvctinf>
	</spdoinfo>
	<spref>
		<horizsys>
			<planar>
				<mapproj>
					<mapprojn>Albers Conical Equal Area</mapprojn>
					<albers>
						<stdparll>29.5</stdparll>
						<stdparll>45.5</stdparll>
						<longcm>-96</longcm>
						<latprjo>23</latprjo>
						<feast>0.0</feast>
						<fnorth>0.0</fnorth>
					</albers>
				</mapproj>
				<planci>
					<plance>coordinate pair</plance>
					<coordrep>
						<absres>1.0</absres>
						<ordres>1.0</ordres>
					</coordrep>
					<plandu>METERS</plandu>
				</planci>
			</planar>
			<geodetic>
				<horizdn>Unknown</horizdn>
				<ellips>Clarke 1866</ellips>
				<semiaxis>6378206.4</semiaxis>
				<denflat>294.98</denflat>
			</geodetic>
		</horizsys>
	</spref>
	<eainfo>
		<detailed>
			<enttyp>
				<enttypl>COUNTY100.PAT</enttypl>
				<enttypd>Polygon attribute table</enttypd>
				<enttypds>Census TIGER/line files</enttypds>
			</enttyp>
			<attr>
				<attrlabl>AREA</attrlabl>
				<attrdef>Area of polygon in square coverage units</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Positive real numbers</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>PERIMETER</attrlabl>
				<attrdef>Perimeter of polygon in coverage units</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Positive real numbers</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>COUNTY100#</attrlabl>
				<attrdef>Internal feature number</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>COUNTY100-ID</attrlabl>
				<attrdef>User-assigned feature number</attrdef>
				<attrdefs>User-defined</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>STATECTY</attrlabl>
				<attrdef>State/county code</attrdef>
				<attrdefs>Federal Information Processing Standard</attrdefs>
				<attrdomv>
					<edom>
						<edomv>01001-56999, none = 0</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>ST</attrlabl>
				<attrdef>State abbreviation</attrdef>
				<attrdefs>U.S. Postal Service</attrdefs>
				<attrdomv>
					<edom>
						<edomv>AL - WY, none = blank</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>CNTYNAME</attrlabl>
				<attrdef>County name</attrdef>
				<attrdefs>U.S. Geological Survey files</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Upper-case alphanumeric</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>POLYTYPE</attrlabl>
				<attrdef>Polygon type</attrdef>
				<attrdefs>See narrative</attrdefs>
				<attrdomv>
					<edom>
						<edomv>0-2</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>FIPS:ST</attrlabl>
				<attrdef>Standard 2-digit FIPS State code</attrdef>
				<attrdefs>Federal Information Processing Standard</attrdefs>
				<attrdomv>
					<edom>
						<edomv>01 - 56</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>FIPS:CO</attrlabl>
				<attrdef>Standard 3-digit FIPS County code</attrdef>
				<attrdefs>Federal Information Processing Standard</attrdefs>
				<attrdomv>
					<edom>
						<edomv>001 - 999</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>FIPS</attrlabl>
				<attrdef>Standard 5-digit FIPS code</attrdef>
				<attrdefs>Federal Information Processing Standard</attrdefs>
				<attrdomv>
					<edom>
						<edomv>01001-56999, none = 0</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
		</detailed>
		<detailed>
			<enttyp>
				<enttypl>COUNTY100.AAT</enttypl>
				<enttypd>Arc attribute table</enttypd>
				<enttypds>Census TIGER/line files</enttypds>
			</enttyp>
			<attr>
				<attrlabl>FNODE#</attrlabl>
				<attrdef>Internal number of from-node</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>TNODE#</attrlabl>
				<attrdef>Internal number of to-node</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>LPOLY#</attrlabl>
				<attrdef>Internal number of polygon to left of arc</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>RPOLY#</attrlabl>
				<attrdef>Internal number of polygon to right of arc</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>LENGTH</attrlabl>
				<attrdef>Length of arc in coverage units</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Positive real numbers</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>COUNTY100#</attrlabl>
				<attrdef>Internal feature number</attrdef>
				<attrdefs>Computed</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Sequential unique positive integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>COUNTY100-ID</attrlabl>
				<attrdef>User-assigned feature number</attrdef>
				<attrdefs>User-defined</attrdefs>
				<attrdomv>
					<edom>
						<edomv>Integer</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>SOURCE</attrlabl>
				<attrdef>Census TIGER/line Source code</attrdef>
				<attrdefs>Census TIGER/line files</attrdefs>
				<attrdomv>
					<edom>
						<edomv>'A - D, '' '' (blank) &amp; X'</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
			<attr>
				<attrlabl>BNDYTYPE</attrlabl>
				<attrdef>Boundary type</attrdef>
				<attrdefs>See narrative</attrdefs>
				<attrdomv>
					<edom>
						<edomv>0-8</edomv>
						<edomvd>unspecified</edomvd>
						<edomvds>unspecified</edomvds>
					</edom>
				</attrdomv>
			</attr>
		</detailed>
		<overview>
			<eaover>Each county is identified by a 5-digit STATECTY code derived from the
Federal Information Processing Standard (FIPS) code.  The first 2 digits
represent the state and the remaining 3 digits represent the county within
that state.

All polygons are encoded by a POLYTYPE code as follows (As of 06/24/91, this
ITEM has not been populated yet):

0 - U.S. Land.

1 - Extensions of counties into the ocean and estuaries.  Some boundaries
between counties may be arbitrary.

2 - U.S. Great Lakes.  Some boundaries  between counties may be arbitrary.

Each line has a SOURCE code showing where Census obtained the data, except
lines with a SOURCE code of 'X'.  These lines were added after the TIGER/
line files had been processed (see 4.).  The following is a list of SOURCE
code types:

Value   Description
-------  ------------------------------------
(Blank)  Nondocumented
A     1980 GBF/DIME-file
B     USGS 1:100,000-Scale DLG-3 File
C     Other USGS Map
D      Census Bureau Precensus Update
X    USGS-WRD Shoreline Buffer

Using the FREQUENCY command, the SOURCE code line types break down as
follows:

FREQUENCY SOURCE  LENGTH
--------- ------  ------------
89             44,744.740
2,674     A     33111756.000
26905     B     86667344.000
1      C        8,457.944
33346     D      2.456652E+08
19      X      1450036.000

All arcs are encoded by a BNDYTYPE (boundary type) code as follows (As of
06/24/91, codes 0, 3 and 4  have not been populated yet):

0 - Coastline of the United States.

1 - State-state border occurring on land.

2 - County-county border, within state, occurring on land.

3 - State-state border occurring on the ocean, estuary, or a Great Lake.
Some of these borders are arbitrary.

4 - County-county border, within state, occurring on the ocean, estuary, or
a Great Lake.  Some of these borders are arbitrary.

5 - International border occurring on land.

6 - International border occurring on water.

7 - U.S. Census shoreline buffer (approximately 3 miles).

8 - USGS-WRD shoreline buffer (SOURCE code 'X').

As of 06/21/91, the frequency of BNDYTYPE is as follows:

Using the FREQUENCY command, the BNDYTYPE code line types break down as
follows (As of 06/21/91):

FREQUENCY BNDYTYPE  LENGTH
--------- --------  ------------
6,354     1      41037204.000
55739     2      3.061601E+08
703     5       7541641.000
63     6       1824460.000
162     7       8934106.000
19      8       1450036.000
			</eaover>
			<eadetcit>Not Available</eadetcit>
		</overview>
	</eainfo>
	<distinfo>
		<distrib>
			<cntinfo>
				<cntorgp>
					<cntorg>U.S. Geological Survey</cntorg>
				</cntorgp>
				<cntpos>Ask USGS - Water Webserver Team</cntpos>
				<cntaddr>
					<addrtype>mailing</addrtype>
					<address>445 National Center</address>
					<city>Reston</city>
					<state>VA</state>
					<postal>20192</postal>
				</cntaddr>
				<cntvoice>1-888-275-8747 (1-888-ASK-USGS)</cntvoice>
				<cntemail>http://water.usgs.gov/user_feedback_form.html </cntemail>
			</cntinfo>
		</distrib>
		<distliab>Although this data set has been used by the U.S. Geological
Survey, U.S. Department of the Interior, no warranty expressed or
implied is made by the U.S. Geological Survey as to the accuracy
of the data and related materials. The act of distribution shall not 
constitute any such warranty, and no responsibility is assumed by 
the U.S. Geological Survey in the use of this data, software, or 
related materials.

Any use of trade, product, or firm names is for descriptive
purposes only and does not imply endorsement by the U.S.
Government.</distliab>
		<stdorder>
					<digform>
				<digtinfo>
					<formname>Export</formname>
					<formcont>Full coverage</formcont>
					<filedec>Win zipped</filedec>
					<transize>48</transize>
				</digtinfo>
				<digtopt>
					<onlinopt>
						<computer>
							<networka>
								<networkr>http://water.usgs.gov/GIS/dsdl/county100.e00.zip</networkr>
							</networka>
						</computer>
					</onlinopt>
				</digtopt>
			</digform>
			<digform>
				<digtinfo>
					<formname>Export</formname>
					<formcont>Full coverage</formcont>
					<filedec>gun zipped</filedec>
					<transize>48</transize>
				</digtinfo>
				<digtopt>
					<onlinopt>
						<computer>
							<networka>
								<networkr>http://water.usgs.gov/GIS/dsdl/county100.e00.gz</networkr>
							</networka>
						</computer>
					</onlinopt>
				</digtopt>
			</digform>
						<digform>
				<digtinfo>
					<formname>Export</formname>
					<formcont>Full coverage</formcont>
					<filedec>tar zipped</filedec>
					<transize>48</transize>
				</digtinfo>
				<digtopt>
					<onlinopt>
						<computer>
							<networka>
								<networkr>http://water.usgs.gov/GIS/dsdl/county100.e00.tgz</networkr>
							</networka>
						</computer>
					</onlinopt>
				</digtopt>
			</digform>
			<digform>
				<digtinfo>
					<formname>SDTS</formname>
					<formcont>Full coverage</formcont>
					<filedec>tar zipped</filedec>
					<transize>41</transize>
				</digtinfo>
				<digtopt>
					<onlinopt>
						<computer>
							<networka>
								<networkr>http://water.usgs.gov/GIS/dsdl/county100.sdts.tgz</networkr>
							</networka>
						</computer>
					</onlinopt>
				</digtopt>
			</digform>
			<fees>None. This dataset is provided by USGS as a public service.</fees>
		</stdorder>
	</distinfo>
	<metainfo>
		<metd>20041108</metd>
		<metc>
			<cntinfo>
				<cntorgp>
					<cntorg>U.S. Geological Survey</cntorg>
				</cntorgp>
				<cntpos>Ask USGS -- Water Webserver Team</cntpos>
				<cntaddr>
					<addrtype>mailing</addrtype>
					<address>445 National Center</address>
					<city>Reston</city>
					<state>VA</state>
					<postal>20192</postal>
				</cntaddr>
				<cntvoice>1-888-275-8747 (1-888-ASK-USGS)</cntvoice>
				<cntemail>http://answers.usgs.gov/cgi-bin/gsanswers?pemail=h2oteam&amp;subject=GIS+Dataset+county100</cntemail>
			</cntinfo>
		</metc>
		<metstdn>FGDC Content Standards for Digital Geospatial Metadata</metstdn>
		<metstdv>FGDC-STD-001-1998</metstdv>
	</metainfo>
</metadata>
