ÿþ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- saved from url=(0057)http://172.16.27.2/Library/Census/tl_2008_06095_edges.htm --> <HTML><HEAD> <META content="text/html; charset=unicode" http-equiv=Content-Type> <STYLE>BODY { BACKGROUND-COLOR: #fbffff; MARGIN: 0.25in; FONT-FAMILY: Arial,sans-serif; FONT-SIZE: 10pt } H1 { POSITION: relative; TEXT-ALIGN: center; FONT-FAMILY: Verdana,sans-serif; COLOR: #006400; MARGIN-LEFT: 0.05in; FONT-SIZE: 18px; TOP: -6px; FONT-WEIGHT: bold } H2 { POSITION: relative; TEXT-ALIGN: center; FONT-FAMILY: Verdana,sans-serif; COLOR: #006400; MARGIN-LEFT: 0.25in; FONT-SIZE: 13px; TOP: -16px } TABLE { POSITION: relative; BORDER-COLLAPSE: collapse; TABLE-LAYOUT: fixed; TOP: -10px; valign: top } TD { TEXT-ALIGN: center } TD { BORDER-BOTTOM-COLOR: #6495ed; BORDER-TOP-COLOR: #6495ed; BORDER-RIGHT-COLOR: #6495ed; FONT-SIZE: 11pt; BORDER-LEFT-COLOR: #6495ed; FONT-WEIGHT: bold } .tsel { BACKGROUND-COLOR: #6495ed; COLOR: #ffffff } .tun { BACKGROUND-COLOR: #b8defa; COLOR: #00008b } .tover { BACKGROUND-COLOR: #b8e6ff; COLOR: #0000cd; CURSOR: hand } .f { BORDER-BOTTOM: #6495ed 1.5pt solid; POSITION: relative; BORDER-LEFT: #6495ed 1.5pt solid; BACKGROUND-COLOR: #ffffff; BORDER-TOP: #6495ed 1.5pt solid; TOP: -10px; BORDER-RIGHT: #6495ed 1.5pt solid } .ph1 { COLOR: #2e8b57; FONT-WEIGHT: bold } .ph2 { COLOR: #2e8b57; MARGIN-LEFT: 0.2in; FONT-WEIGHT: bold } .pover1 { COLOR: #006000; CURSOR: hand; FONT-WEIGHT: bold } .pover2 { COLOR: #006000; MARGIN-LEFT: 0.2in; CURSOR: hand; FONT-WEIGHT: bold } .pn { COLOR: #00008b; FONT-WEIGHT: bold } .pv { LINE-HEIGHT: 135%; MARGIN: 0in 0.15in 0.75in; FONT-FAMILY: Verdana,sans-serif; COLOR: #191970 } .pe1 { MARGIN-LEFT: 0.2in } .pe2 { COLOR: #191970; MARGIN-LEFT: 0.25in; FONT-WEIGHT: normal } .lt { LINE-HEIGHT: 115% } .lt2 { LINE-HEIGHT: 115%; MARGIN-BOTTOM: 1mm } .sr1 { MARGIN-LEFT: 0in } .sr2 { MARGIN-LEFT: 0.2in } .sr3 { MARGIN-LEFT: 0.4in } .srh1 { COLOR: #00008b; MARGIN-LEFT: 0in; FONT-WEIGHT: bold } .srh2 { COLOR: #00008b; MARGIN-LEFT: 0.2in; FONT-WEIGHT: bold } .name { POSITION: relative; TEXT-ALIGN: center; FONT-FAMILY: Verdana,sans-serif; COLOR: #006400; MARGIN-LEFT: 0.05in; FONT-SIZE: 18px; TOP: -6px; FONT-WEIGHT: bold } .sub { POSITION: relative; TEXT-ALIGN: center; FONT-FAMILY: Verdana,sans-serif; COLOR: #006400; MARGIN-LEFT: 0.25in; FONT-SIZE: 13px; TOP: 3px; FONT-WEIGHT: bold } .search { MARGIN: 0in 0.15in 0.75in; FONT-FAMILY: Verdana,sans-serif; COLOR: #191970; FONT-SIZE: 13px } .head { COLOR: #006400 } </STYLE> <SCRIPT language=JScript><!-- //changes the color of the tabs or headings that you can click //when the mouse hovers over them function doHilite() { var e = window.event.srcElement; if (e.className == "tun") { e.className = "tover"; } else if (e.className == "tover") { e.className = "tun"; } else if (e.className == "ph1") { e.className = "pover1"; } else if (e.className == "ph2") { e.className = "pover2"; } else if (e.className == "pover1") { e.className = "ph1"; } else if (e.className == "pover2") { e.className = "ph2"; } window.event.cancelBubble = true; } //changes the style of the selected tab to unselected and hide its text, then //set the style of the tab that was clicked on to selected and show its text function changeTab(eRow) { var tabs = eRow.cells; for (var i = 0; i < tabs.length; i++) { var oldTab = tabs[i]; if (oldTab.className == "tsel") { break; } } oldTab.className = "tun"; var oldContent = getAssociated(oldTab); oldContent.style.display = "none"; var newTab = window.event.srcElement; newTab.className ="tsel"; var newContent = getAssociated(newTab); newContent.style.display = "block"; window.event.cancelBubble = true; } //hide or show the text assoicated with the heading that was clicked function hideShowGroup(e) { var theGroup = e.children[0]; if (theGroup.style.display == "none") { theGroup.style.display="block"; } else { theGroup.style.display="none"; } window.event.cancelBubble = true; } //returns the name of the element containing the text associated with each tab function getAssociated(e) { if (e.tagName == "TD") { switch (e.id) { case "DescTab": return (Description); case "SpatialTab": return (Spatial); case "AttribTab": return (Attributes); } } } //centers the thumbnail function position() { var e; e = document.all("thumbnail"); if (e != null) { b = document.body; w1 = b.clientWidth - 80; w2 = w1 - thumbnail.width; var margin = Math.floor(w2 * .5); thumbnail.style.visibility = "hidden"; thumbnail.style.marginLeft = margin; thumbnail.style.visibility = "visible"; } } //parse text to respect line breaks added - increases readability. //lines beginning with a ">" character are presented with a monospace //(fixed-width) font - e.g., so equations will appear correctly function fix(e) { var par = e.parentNode; e.id = ""; var pos = e.innerText.indexOf("\n"); if (pos > 0) { while (pos > 0) { var t = e.childNodes(0); var n = document.createElement("PRE"); var s = t.splitText(pos); e.insertAdjacentElement("afterEnd", n); n.appendChild(s); e = n; pos = e.innerText.indexOf("\n"); } var count = (par.children.length); for (var i = 0; i < count; i++) { e = par.children(i); if (e.tagName == "PRE") { pos = e.innerText.indexOf(">"); if (pos != 0) { n = document.createElement("DIV"); e.insertAdjacentElement("afterEnd", n); n.innerText = e.innerText; e.removeNode(true); } } } if (par.children.tags("PRE").length > 0) { count = (par.childNodes.length); for (i = 0; i < count; i++) { e = par.children(i); if (e.tagName == "PRE") { e.id = ""; if (i < (count-1)) { var e2 = par.children(i + 1); if (e2.tagName == "PRE") { e.insertAdjacentText("beforeEnd", e2.innerText+"\n"); e2.removeNode(true); count = count-1; i = i-1; } } } } } } else { n = document.createElement("DIV"); par.appendChild(n); n.innerText = e.innerText; e.removeNode(true); } } --></SCRIPT> <META name=GENERATOR content="MSHTML 8.00.6001.18999"></HEAD> <BODY oncontextmenu="return true" onresize=position(); onload=position();> <H1>TIGER/Line Shapefile, 2008, county, Solano County, CA, All Lines</H1> <TABLE rules=cols width=315 frame=void height=28 cols=3> <COLGROUP> <COL width=105> <COL width=105> <COL width=105> <TBODY> <TR onmouseover=doHilite() onmouseout=doHilite() onclick=changeTab(this) height=28> <TD id=DescTab class=tsel title="Click to see a description of the data">Description</TD> <TD id=SpatialTab class=tun title="Click for details about the spatial data">Spatial</TD> <TD id=AttribTab class=tun title="Click for details about the attribute data">Attributes</TD></TR></TBODY></TABLE> <DIV id=Group class=f> <DIV style="DISPLAY: block" id=Description class=pv><BR> <DIV class=pn>Keywords</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=lt2><SPAN class=pn>Theme: </SPAN>transportation, inlandWaters, boundaries</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=lt2><SPAN class=pn>Theme: </SPAN>County or equivalent entity, Linear, Feature, Address Range, Street Centerline, Road Feature, Roads, Hydrography</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=lt2><SPAN class=pn>Place: </SPAN>United States, U.S., County or Equivalent Entity, Solano, 06095</DIV><BR> <DIV class=pn>Description</DIV> <DIV class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Abstract <DIV class=pe2><SPAN class=lt><PRE id=original>The TIGER/Line Shapefiles are an extract of selected geographic and cartographic information from the Census MAF/TIGER database. The Census MAF/TIGER database 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 the shapefiles can be combined to cover the whole nation.</PRE></SPAN><BR> <SCRIPT>fix(original)</SCRIPT> </DIV></DIV> <DIV class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Purpose <DIV id=Purpose class=pe2><SPAN class=lt><PRE id=original>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.</PRE></SPAN><BR> <SCRIPT>fix(original)</SCRIPT> </DIV></DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Status of the data <DIV style="DISPLAY: none" class=pe2>Complete<BR><I>Data update frequency: </I>TIGER/Line Shapefiles are extracted from the Census MAF/TIGER database. No changes or updates will be made to this version of the TIGER/Line Shapefiles. Future releases of TIGER/Line Shapefiles will reflect updates made to the Census MAF/TIGER database.<BR></DIV></DIV><BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Time period for which the data is relevant <DIV style="DISPLAY: none" class=pe2> <DIV><I>Beginning date and time: </I>200801 </DIV> <DIV><I>Ending date and time: </I>200807 </DIV> <DIV><I>Description: </I><SPAN class=lt><PRE id=original>Publication Date</PRE></SPAN><BR> <SCRIPT>fix(original)</SCRIPT> </DIV></DIV></DIV><BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Publication Information <DIV style="DISPLAY: none" class=pe2><SPAN class=lt2><I>Who created the data: </I>U.S. Department of Commerce, U.S. Census Bureau, Geography Division<BR></SPAN> <DIV><I>Date and time: </I>2008</DIV></DIV></DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Data storage and access information <DIV style="DISPLAY: none" class=pe2><I>Type of data: </I>vector digital data<BR> <DIV><I>Location of the data: </I></DIV> <DIV> <LI style="MARGIN-LEFT: 0.2in">http://www.census.gov/geo/www/tiger</LI></DIV> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Accessing the data <DIV style="DISPLAY: none" class=pe2><I>Data format: </I>TGRSHP (compressed)<BR><I>How to decompress the file: </I>PK-ZIP, version 1.93 A or higher<BR> <DIV class=pn>Network location:</DIV> <DIV class=pe2> <LI>http://www.census.gov/geo/www/tiger </LI></DIV><I>Available media: </I>DVD-ROM (Only if offered offline)<BR><BR></DIV></DIV> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Constraints on accessing and using the data <DIV style="DISPLAY: none" class=pe2><I>Access constraints: </I><SPAN class=lt>None<BR></SPAN> <DIV><I>Use constraints: </I><SPAN class=lt><PRE id=original>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 horizontal spatial accuracy information present in these files is provided for the purposes of statistical analysis and census operations only. No warranty, expressed or implied is made with regard to the accuracy of the spatial accuracy, and no liability is assumed by the U.S. Government in general or the U.S. Census Bureau, specifically as to the spatial or attribute accuracy of the data. The TIGER/Line Shapefiles may not be suitable for high-precision measurement applications such as engineering problems, property transfers, or other uses that might require highly accurate measurements of the earth's surface.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.</PRE></SPAN><BR> <SCRIPT>fix(original)</SCRIPT> </DIV></DIV></DIV></DIV></DIV><BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Details about this document <DIV style="DISPLAY: none" class=pe2> <DIV>Contents last updated: 2008</DIV> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Who completed this document <DIV style="DISPLAY: none" class=pe2>U.S. Department of Commerce, U.S. Census Bureau, Geography Division, Geographic Products Branch<BR><I>Mailing address:</I><BR> <DIV style="MARGIN-LEFT: 0.3in"> <DIV class=lt><PRE id=original>4600 Silver Hill Road, Stop 7400</PRE> <SCRIPT>fix(original)</SCRIPT> </DIV> <DIV>Washington, DC 20233-7400</DIV> <DIV>United States</DIV></DIV><BR>301-763-1128 (voice)<BR>301-763-4710 (fax)<BR>tiger@census.gov<BR><BR></DIV></DIV> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Standards used to create this document <DIV style="DISPLAY: none" class=pe2><I>Standard name: </I>FGDC Content Standards for Digital Geospatial Metadata<BR><I>Standard version: </I>FGDC-STD-001-1998<BR></DIV></DIV></DIV></DIV><BR></DIV> <DIV style="DISPLAY: none" id=Spatial class=pv><BR> <DIV class=pn>Horizontal coordinate system</DIV> <DIV class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Details <DIV style="DISPLAY: none" class=pe2> <DIV class=srh1>Geographic Coordinate System</DIV> <DIV class=sr2><I>Latitude Resolution: </I>0.000458</DIV> <DIV class=sr2><I>Longitude Resolution: </I>0.000458</DIV> <DIV class=sr2><I>Geographic Coordinate Units: </I>Decimal degrees</DIV><BR> <DIV class=srh1>Geodetic Model</DIV> <DIV class=sr2><I>Horizontal Datum Name: </I>North American Datum of 1983 in the 48 contiguous states, the District of Columbia, Alaska, Hawaii, Puerto Rico, the Virgin Islands of the United States, and the Pacific Island Areas.</DIV> <DIV class=sr2><I>Ellipsoid Name: </I>Geodetic Reference System 80</DIV> <DIV class=sr2><I>Semi-major Axis: </I>6378137</DIV> <DIV class=sr2><I>Denominator of Flattening Ratio: </I>298257</DIV></DIV></DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=pn>Bounding coordinates</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn>Horizontal</DIV> <DIV style="MARGIN-LEFT: 0.4in" class=pn>In decimal degrees</DIV> <DIV style="MARGIN-LEFT: 0.6in"><I>West: </I>-122.40699</DIV> <DIV style="MARGIN-LEFT: 0.6in"><I>East: </I>-121.593273</DIV> <DIV style="MARGIN-LEFT: 0.6in"><I>North: </I>38.53905</DIV> <DIV style="MARGIN-LEFT: 0.6in"><I>South: </I>38.031721</DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=pn>Lineage</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn>FGDC lineage</DIV> <DIV style="MARGIN-LEFT: 0.4in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Process step 1 <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><I>Process description: </I>TIGER/Line Shapefiles are extracted from the Census MAF/TIGER database by nation, state, county, and entity. Census MAF/TIGER data for the nation, state, county, and entity are then distributed among 58 shapefiles each containing attributes for line, polygon, or landmark geographic data.<BR><I>Source used: </I>Census MAF/TIGER<BR><I>Process date: </I>2008 <BR></DIV></DIV> <DIV style="MARGIN-LEFT: 0.4in" class=pn>Sources</DIV> <DIV style="MARGIN-LEFT: 0.6in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Source 1: Census MAF/TIGER database (MAF/TIGER) <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><I>Media: </I>online<BR><I>Contribution: </I>The selected geographic and cartographic information (line segments) are derived from the U.S. Census Bureau's Master Address File Topologically Integrated Geographic Encoding and Referencing (MAF/TIGER) database.<BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Currentness of this source <DIV style="DISPLAY: none" class=pe2> <DIV><I>Beginning date and time: </I>200801 </DIV> <DIV><I>Ending date and time: </I>200807 </DIV></DIV></DIV><BR></DIV></DIV> <DIV style="MARGIN-LEFT: 0.6in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Source 2: National Hydrography Dataset - High Res. (None) <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><I>Media: </I>Internet Download<BR><I>Contribution: </I>Coordinates to realign selected hydrographic features in the Census MAF/TIGER database.<BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Currentness of this source <DIV style="DISPLAY: none" class=pe2> <DIV><I>Beginning date and time: </I>Unknown </DIV> <DIV><I>Ending date and time: </I>Unknown </DIV></DIV></DIV><BR></DIV></DIV> <DIV style="MARGIN-LEFT: 0.6in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Source 3: National Hydrography Dataset - High Res. (None) <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><I>Media: </I>Internet Download<BR><I>Contribution: </I>Coordinates to realign selected hydrographic features in the Census MAF/TIGER database.<BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Currentness of this source <DIV style="DISPLAY: none" class=pe2> <DIV><I>Beginning date and time: </I>Unknown </DIV> <DIV><I>Ending date and time: </I>Unknown </DIV></DIV></DIV><BR></DIV></DIV> <DIV style="MARGIN-LEFT: 0.6in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Source 4: Solano Co., CA- From HAS Imagery (None) <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><I>Media: </I>Unknown<BR><I>Contribution: </I>Coordinates to realign selected road features in the Census MAF/TIGER database.<BR> <DIV class=ph1 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Currentness of this source <DIV style="DISPLAY: none" class=pe2> <DIV><I>Beginning date and time: </I>Unknown </DIV> <DIV><I>Ending date and time: </I>Unknown </DIV></DIV></DIV></DIV></DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=pn>Spatial data quality</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Horizontal positional accuracy <DIV style="DISPLAY: none; MARGIN-LEFT: 0.2in" class=pe2><SPAN class=lt><PRE id=original>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 (RSME). 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.</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <DIV style="MARGIN-LEFT: 0.2in"><I>Estimated accuracy: </I>4.23 meters for 2397</DIV> <DIV style="MARGIN-LEFT: 0.2in"><I>How this value was determined: </I><SPAN class=lt><PRE id=original>The Census Bureau uses root mean square error (RSME) as stated in the FGDC-STD-007. 3-1998, Geospatial Positioning Accuracy Standards, Part 3: National Standard for Spatial Data Accuracy.</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> </DIV></DIV></DIV> <DIV style="TEXT-ALIGN: center; COLOR: #6495ed">_________________</DIV><BR> <DIV class=pn>Spatial data description</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn>Vector data information</DIV> <DIV style="MARGIN-LEFT: 0.4in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>SDTS description <DIV style="DISPLAY: none" class=pe2> <DIV>Feature class: SDTS feature type, feature count</DIV> <DIV style="MARGIN-LEFT: 0.2in"> <LI>Feature class: Complete chain, 64733 </LI></DIV></DIV></DIV><BR></DIV> <DIV style="DISPLAY: none" id=Attributes class=pv><BR> <DIV class=pn>Details for EDGES.shp</DIV> <DIV style="MARGIN-LEFT: 0.2in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>Description <DIV style="DISPLAY: none" class=pe2><SPAN class=lt>Current All Lines</SPAN><BR><SPAN class=lt><I>Source: </I>U.S. Census Bureau</SPAN><BR><BR></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn>Attributes <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>STATEFP <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Current state Federal Information Processing Standards (FIPS) code</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>COUNTYFP <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Current county Federal Information Processing Standards (FIPS) code</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TLID <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Permanent edge ID</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TFIDL <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Permanent face ID on the left of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TFIDR <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Permanent face ID on the right of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>MTFCC <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>MAF/TIGER feature class code of the primary feature for the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>FULLNAME <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Concatenation of expanded text for prefix qualifier, prefix direction, prefix type, base name, suffix type, suffix direction, and suffix qualifier (as available) with a space between each expanded text field</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>SMID <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Spatial metadata identifier</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>LFROMADD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>From house number associated with the most inclusive address range on the left side of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>LTOADD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>To house number associated with the most inclusive address range on the left side of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>RFROMADD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>From house number associated with the most inclusive address range on the right side of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>RTOADD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>To house number associated with the most inclusive address range on the right side of the edge</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>ZIPL <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>ZIP code associated with the most inclusive address range on the left side</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>ZIPR <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>ZIP code associated with the most inclusive address range on the right side</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>FEATCAT <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>General feature classification category</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>HYDROFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Hydrography feature indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>RAILFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Rail feature indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>ROADFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Road feature indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>OLFFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Other linear feature indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>PASSFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Special passage flag</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>DIVROAD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Divided road flag</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>EXTTYP <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Extension type</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TTYP <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Track type</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>DECKEDROAD <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Decked road indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>ARTPATH <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Artificial path indicator</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>PERSIST <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Hydrographic persistence flag</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>GCSEFLG <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Short lines flag for geographic corridors</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>OFFSETL <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Left offset flag</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>OFFSETR <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>Right offset flag</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TNIDF <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>From TIGER node identifier</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV> <DIV style="MARGIN-LEFT: 0.2in" class=pn> <DIV style="MARGIN-LEFT: 0.25in" class=ph2 onmouseover=doHilite() onmouseout=doHilite() onclick=hideShowGroup(this)>TNIDT <DIV style="DISPLAY: none" class=pe2><SPAN class=lt><I>Definition: </I><PRE id=original>To TIGER node identifier</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <SPAN class=lt><I>Definition Source: </I><PRE id=original>U.S. Census Bureau</PRE></SPAN> <SCRIPT>fix(original)</SCRIPT> <BR></DIV></DIV></DIV><BR></DIV></DIV></BODY></HTML>