<?xml version="1.0" encoding="UTF-8"?><metadata>
&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;
&lt;xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" version="2.0"&gt;
&lt;!-- A sample custom stylesheet template
Revision History: Created 05/03/00 avienneau
Modified 10/13/00 mlyszkiewicz
--&gt;
&lt;!-- When the root node in the XML is encountered (the metadata element), the HTML template is set up --&gt;
&lt;xsl:template match="/"&gt;
&lt;HTML&gt;
&lt;!-- The HEAD section provides information that doesn't affect the content of the page. --&gt;
&lt;HEAD&gt;
&lt;!-- The STYLE block defines the formatting and text styles for this page. The BODY style
defines the defaults for the entire page. The following style classes customize the BODY
style, and can be applied to any HTML element on the page by setting its CLASS property --&gt;
&lt;STYLE&gt;
BODY {margin-left:0.25in; margin-right:0.4in; background-color:#FFFFFF;
font-size:10pt; font-family:Arial,sans-serif; color:#000000}
TABLE {font-size:8pt; borderStyle:solid; border-collapse:collapse}
.title {font-size:22; font-weight:bold; text-decoration:underline;
text-align:center}
.entity {font-weight:bold; font-size:12; color:#000000}
.attribute {font-weight:bold; font-size:11; color:#000000}
.heading {color:#D2691E}
.valuedef {text-decoration:underline;font-weight:bold;font-size:11;color:#0000FA}
.valuedef1 {font-size:10;color:#000000}
&lt;/STYLE&gt;
&lt;/HEAD&gt;
&lt;!-- The BODY section defines the content of the HTML page. The style of the page is defined
above. This page has a 1/4 inch margin on both sides, a background colour, and a default font look --&gt;
&lt;BODY&gt;
&lt;!-- Add a title to the page. It's look will be as defined by the styles in the head
section above: centered, large bold font and underlined --&gt;
&lt;DIV CLASS="title"&gt;&lt;xsl:value-of select="metadata/idinfo/citation/citeinfo/title"/&gt;&lt;/DIV&gt;
&lt;BR/&gt;
&lt;BR/&gt;
&lt;HR/&gt;
&lt;!-- &lt;xsl:apply-templates select="/metadata//img[(@src != '')]" /&gt; --&gt;
&lt;table cellspacing="1" cellpadding="1" border="1"&gt;
&lt;tr&gt;
&lt;td width="20%"&gt;&lt;FONT class="entity"&gt;Description: &lt;/FONT&gt;&lt;/td&gt;
&lt;td width="55%"&gt;&lt;xsl:value-of select="metadata/idinfo/descript/purpose"/&gt;&lt;/td&gt;
&lt;td rowspan="4" width="25%"&gt;
&lt;FONT class="entity"&gt;Contact:&lt;/FONT&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntperp/cntper"/&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntpos"/&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntperp/cntorg"/&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntaddr/address"/&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntaddr/city"/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntaddr/state"/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntaddr/postal"/&gt;&lt;br/&gt;&lt;br/&gt;
&lt;xsl:value-of select="metadata/idinfo/ptcontac/cntinfo/cntemail"/&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;FONT class="entity"&gt;Feature Type:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;&lt;xsl:value-of select="metadata/idinfo/natvform"/&gt;&lt;/td&gt;
&lt;!--&lt;td&gt;&lt;xsl:value-of select="metadata/spdoinfo/ptvctinf/esriterm/efeageom"/&gt;&lt;/td&gt;--&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;FONT class="entity"&gt;SDE Name:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;&lt;xsl:value-of select="metadata/idinfo/citation/citeinfo/ftname"/&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;FONT class="entity"&gt;Last Major Update: &lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;&lt;xsl:value-of select="metadata/idinfo/timeperd/timeinfo/sngdate/caldate"/&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;br/&gt;
&lt;!-- DETAILED. There is one detailed element in the metadata for each entity in the data source.
This xsl:for-each selects these detailed elements --&gt;
&lt;xsl:choose&gt;
&lt;!-- This is for Feature Classes only: --&gt;
&lt;!-- Datasets do not have values for the /attr element therefore it must be a feature class --&gt;
&lt;xsl:when test="metadata/eainfo/detailed/attr"&gt;
&lt;xsl:for-each select="metadata/eainfo/detailed"&gt;
&lt;xsl:apply-templates select="/metadata/eainfo/detailed"/&gt;
&lt;/xsl:for-each&gt;
&lt;/xsl:when&gt;
&lt;xsl:otherwise &gt;
&lt;!-- This is for Data Sets only: --&gt;
&lt;!-- Since the above was false (ie /attr was invalid so it must be a data set --&gt;
&lt;table width="100%" cellspacing="2" cellpadding="1" border="1"&gt;
&lt;tr bgcolor="#CCCCCC" class="entity"&gt;
&lt;td width="75%"&gt;Feature Classes:&lt;/td&gt;
&lt;td width="25%"&gt;Feature Count&lt;/td&gt;
&lt;/tr&gt;
&lt;xsl:apply-templates select="/metadata/eainfo/detailed/enttyp"/&gt;
&lt;/table&gt;
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
&lt;BR/&gt;
&lt;BR/&gt;
&lt;table width="100%" cellspacing="2" cellpadding="1" border="1"&gt;
&lt;tr&gt;&lt;td width="30%"&gt;&lt;FONT class="entity"&gt;Geographic Extent:&lt;/FONT&gt;&lt;/td&gt;
&lt;td width="70%"&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Spatial Reference:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/spref/horizsys/cordsysn/projcsn"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Intended Scale:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/idinfo/useconst"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Positional Accuracy:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/dataqual/posacc/horizpa/qhorizpa/horizpav"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Positional Verification:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/dataqual/posacc/horizpa/horizpar"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Source:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/dataqual/lineage/srcinfo/srccite/citeinfo/origin"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Source Medium:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/dataqual/lineage/srcinfo/srccite/citeinfo/geoform"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Source Scale:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/dataqual/lineage/srcinfo/srcscale"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Maintenance Frequency:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/idinfo/status/update"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;FONT class="entity"&gt;Comments:&lt;/FONT&gt;&lt;/td&gt;
&lt;td&gt;
&lt;xsl:value-of select="metadata/arlington/comments"/&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;br/&gt;
&lt;P&gt;
&lt;xsl:apply-templates select="/metadata/idinfo/browse[browsen != '']" /&gt;
&lt;/P&gt;
&lt;/BODY&gt;
&lt;/HTML&gt;
&lt;/xsl:template&gt;
&lt;!-- Browse Graphics --&gt;
&lt;xsl:template match="/metadata/idinfo/browse[browsen != '']"&gt;
&lt;xsl:for-each select="browsed[. != '']"&gt;&lt;xsl:value-of /&gt;&lt;/xsl:for-each&gt;&lt;BR/&gt;
&lt;xsl:for-each select="browsen[. != '']"&gt;
&lt;!-- &lt;A TARGET="viewer"&gt;&lt;xsl:attribute name="HREF"&gt;&lt;xsl:value-of/&gt;&lt;/xsl:attribute&gt;&lt;xsl:value-of/&gt;&lt;/A&gt; --&gt;
&lt;IMG ID="thumbnail" ALIGN="absmiddle" STYLE="border:'2 outset #FFFFFF'; position:relative" width="100%"&gt;
&lt;xsl:attribute name="SRC"&gt;&lt;xsl:value-of/&gt;&lt;/xsl:attribute&gt;
&lt;/IMG&gt;
&lt;/xsl:for-each&gt;&lt;BR/&gt;&lt;BR/&gt;
&lt;/xsl:template&gt;
&lt;!-- Thumbnail --&gt;
&lt;xsl:template match="/metadata/Binary/Thumbnail/img[(@src != '')]"&gt;
&lt;center&gt;&lt;IMG ID="thumbnail" ALIGN="absmiddle" STYLE="height:144;
border:'2 outset #FFFFFF'; position:relative"&gt;
&lt;xsl:attribute name="SRC"&gt;&lt;xsl:value-of select="@src"/&gt;&lt;/xsl:attribute&gt;
&lt;/IMG&gt;&lt;/center&gt;
&lt;BR/&gt;&lt;BR/&gt;
&lt;/xsl:template&gt;
&lt;xsl:template match="/metadata/idinfo/browse/img[@src != '']"&gt;
&lt;xsl:if test="context()[not (/metadata/Binary/Thumbnail/img)]"&gt;
&lt;xsl:if test="../@BrowseGraphicType[. = 'Thumbnail']"&gt;
&lt;IMG ID="thumbnail" ALIGN="absmiddle" STYLE="height:144;
border:'2 outset #FFFFFF'; position:relative"&gt;
&lt;xsl:attribute name="SRC"&gt;&lt;xsl:value-of select="@src"/&gt;&lt;/xsl:attribute&gt;
&lt;/IMG&gt;
&lt;BR/&gt;&lt;BR/&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[not (../../browse/@BrowseGraphicType)]"&gt;
&lt;IMG ID="thumbnail" ALIGN="absmiddle" STYLE="height:144;
border:'2 outset #FFFFFF'; position:relative"&gt;
&lt;xsl:attribute name="SRC"&gt;&lt;xsl:value-of select="@src"/&gt;&lt;/xsl:attribute&gt;
&lt;/IMG&gt;
&lt;BR/&gt;&lt;BR/&gt;
&lt;/xsl:if&gt;
&lt;/xsl:if&gt;
&lt;/xsl:template&gt;
&lt;xsl:template match="/metadata/eainfo/detailed"&gt;
&lt;!-- the rest of the information for the currently selected attribute will be presented in table format --&gt;
&lt;table width="100%" cellspacing="2" cellpadding="1" border="1"&gt;
&lt;!-- write out the table headings as the first row of the table. A table heading will exist if at
least one attribute in the set of attributes for the selected entity has that property defined --&gt;
&lt;tr bgcolor="#CCCCCC"&gt;
&lt;xsl:if test="context()[attr/attrlabl[. != '']]"&gt;
&lt;th&gt;Attribute Name&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;xsl:if test="context()[attr/attrtype[. != '']]"&gt;
&lt;th&gt;Data Type&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/attwidth[. != '']]"&gt;
&lt;th&gt;Width&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/atoutwid[. != '']]"&gt;
&lt;th&gt;Output Width&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/atnumdec[. != '']]"&gt;
&lt;th&gt;Decimals&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/atprecis[. != '']]"&gt;
&lt;th&gt;Precision&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/attscale[. != '']]"&gt;
&lt;th&gt;Scale&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;!--&lt;xsl:if test="context()[attr/attalias[. != '']]"&gt;
&lt;th&gt;Alias&lt;/th&gt;
&lt;/xsl:if&gt;--&gt;
&lt;!--&lt;xsl:if test="context()[attr/attrdomv/udom[. != '']]"&gt;
&lt;th&gt;Values - unrepresentable domain&lt;/th&gt;
&lt;/xsl:if&gt;--&gt;
&lt;xsl:if test="context()[attr/attrdomv/edom/* [. != '']]"&gt;
&lt;th&gt;Value Definition&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[(attr/attrdomv/rdom/* [. != '']) or (attr/attrmfrq != '')]"&gt;
&lt;th&gt;Range of Values&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;xsl:if test="context()[attr/attrdomv/codesetd/* [. != '']]"&gt;
&lt;th&gt;Values Formal Codeset&lt;/th&gt;
&lt;/xsl:if&gt;
&lt;/xsl:if&gt;
&lt;/tr&gt;
&lt;!-- This for-each statement selects only those attributes that have the label property defined.
As the code loops through each attribute that is selected by the for-each statement, each
attribute's information will be written out on a separate row. --&gt;
&lt;xsl:for-each select="attr[attrlabl != '']"&gt;
&lt;tr&gt;
&lt;!-- Write out the name of the attribute --&gt;
&lt;xsl:for-each select="attrlabl"&gt;
&lt;th align="left"&gt;&lt;DIV CLASS="attribute"&gt;&lt;xsl:value-of /&gt;&lt;/DIV&gt;&lt;/th&gt;
&lt;/xsl:for-each&gt;
&lt;!-- Write out the attribute's description if it exists. If it doesn't, write "no description".
Also, write out the source if it exists --&gt;
&lt;td&gt;
&lt;xsl:choose&gt;
&lt;xsl:when test="attrdef[. != '']"&gt;&lt;xsl:value-of select="attrdef"/&gt;&lt;/xsl:when&gt;
&lt;xsl:otherwise&gt;No description&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
&lt;xsl:for-each select="attrdefs"&gt;
&lt;xsl:if test="context()[. != '']"&gt;
(&lt;I&gt;Source: &lt;/I&gt;&lt;xsl:value-of /&gt;)
&lt;/xsl:if&gt;
&lt;/xsl:for-each&gt;
&lt;BR/&gt;
&lt;/td&gt;
&lt;!-- Test to see if any of the following properties are defined for the currently selected
&lt;!-- Write out the attribute's "values and definitions" property--&gt;
&lt;xsl:choose&gt;
&lt;xsl:when test="context()[(attrdomv/edom[(edomv != '') or (edomvd != '')])]"&gt;
&lt;td&gt;
&lt;xsl:for-each select="attrdomv/edom[(edomv != '') or (edomvd != '')]"&gt;
&lt;xsl:if test="edomv[. != '']"&gt;
&lt;FONT CLASS="valuedef" &gt;&lt;xsl:value-of select="edomv"/&gt;:&lt;/FONT&gt;
&lt;/xsl:if&gt;
&lt;xsl:choose&gt;
&lt;xsl:when test="edomvd[. != '']"&gt;
&lt;FONT CLASS="valuedef1" &gt;&lt;xsl:for-each select="edomvd[. != '']"&gt;
&lt;xsl:value-of/&gt;
&lt;/xsl:for-each&gt;&lt;/FONT&gt;
&lt;/xsl:when&gt;
&lt;xsl:otherwise&gt;
not provided
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;&lt;BR/&gt;&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;/td&gt;
&lt;/xsl:when&gt;
&lt;xsl:otherwise&gt;
&lt;xsl:if test="..[($any$ attr/attrdomv/edom/* != '')]"&gt;
&lt;td&gt;---&lt;/td&gt;
&lt;/xsl:if&gt;
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
&lt;!-- Write out the attribute's "range of values" property--&gt;
&lt;xsl:choose&gt;
&lt;xsl:when test="context()[attrmfrq[. != ''] or attrdomv[($any$ rdom/* != '')]]"&gt;
&lt;td&gt;
&lt;xsl:for-each select="attrdomv/rdom/rdommin[. != '']"&gt;
&lt;FONT COLOR="#0000AA"&gt;Min:&lt;/FONT&gt; &lt;xsl:value-of/&gt;
&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;xsl:for-each select="attrdomv/rdom/rdommax[. != '']"&gt;
&lt;FONT COLOR="#0000AA"&gt;Max:&lt;/FONT&gt; &lt;xsl:value-of/&gt;
&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;xsl:for-each select="attrdomv/rdom/attrunit[. != '']"&gt;
&lt;FONT COLOR="#0000AA"&gt;Units:&lt;/FONT&gt; &lt;xsl:value-of/&gt;
&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;xsl:for-each select="attrdomv/rdom/attrmres[. != '']"&gt;
&lt;FONT COLOR="#0000AA"&gt;Resolution:&lt;/FONT&gt; &lt;xsl:value-of/&gt;
&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;xsl:for-each select="attrmfrq[. != '']"&gt;
&lt;FONT COLOR="#0000AA"&gt;Frequency of Measurement:&lt;/FONT&gt; &lt;xsl:value-of/&gt;
&lt;/xsl:for-each&gt;
&lt;/td&gt;
&lt;/xsl:when&gt;
&lt;xsl:otherwise&gt;
&lt;xsl:if test="..[($any$ attr/attrdomv/rdom/* != '') or ($any$ attr/attrmfreq != '')]"&gt;
&lt;td&gt;---&lt;/td&gt;
&lt;/xsl:if&gt;
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
&lt;!-- Write out the attribute's "codeset" property--&gt;
&lt;xsl:choose&gt;
&lt;xsl:when test="context()[(attrdomv/codesetd[$any$ * != ''])]"&gt;
&lt;td&gt;
&lt;xsl:for-each select="attrdomv/codesetd/codesetn[. != '']"&gt;
Codeset Name: &lt;xsl:value-of/&gt;
&lt;BR/&gt;
&lt;/xsl:for-each&gt;
&lt;xsl:for-each select="attrdomv/codesetd/codesets[. != '']"&gt;
Codeset Source: &lt;xsl:value-of/&gt;
&lt;/xsl:for-each&gt;
&lt;/td&gt;
&lt;/xsl:when&gt;
&lt;xsl:otherwise&gt;
&lt;xsl:if test="..[($any$ attr/attrdomv/codesetd/* != '')]"&gt;
&lt;td&gt;---&lt;/td&gt;
&lt;/xsl:if&gt;
&lt;/xsl:otherwise&gt;
&lt;/xsl:choose&gt;
&lt;/tr&gt;
&lt;/xsl:for-each&gt;
&lt;/table&gt;
&lt;!-- SPACE. If the current attribute is not the last in the set, add an empty line before the
next attribute is added to the page. --&gt;
&lt;xsl:if test="context()[not(end())]"&gt;
&lt;BR/&gt;
&lt;/xsl:if&gt;
&lt;!-- DIVIDER. If the current attribute is not the last in the set, add an dividing line before the
next attribute is added to the page. --&gt;
&lt;xsl:if test="context()[not(end())]"&gt;
&lt;DIV STYLE="text-align:center"&gt;__________________&lt;/DIV&gt;&lt;BR/&gt;
&lt;/xsl:if&gt;
&lt;/xsl:template&gt;
&lt;xsl:template match="/metadata/eainfo/detailed/enttyp"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;xsl:value-of select="enttypl"/&gt;&lt;/td&gt;
&lt;td&gt;&lt;xsl:value-of select="enttypc"/&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/xsl:template&gt;
&lt;/xsl:stylesheet&gt;
<Esri>
<CreaDate>20220225</CreaDate>
<CreaTime>13063000</CreaTime>
<SyncOnce>FALSE</SyncOnce>
<SyncDate>20100712</SyncDate>
<SyncTime>13241300</SyncTime>
<ModDate>20100712</ModDate>
<ModTime>13243300</ModTime>
<Sync>FALSE</Sync>
<DataProperties>
<itemProps/>
</DataProperties>
<ArcGISFormat>1.0</ArcGISFormat>
</Esri>
<dataqual>
<lineage>
<procstep>
<procdesc Sync="TRUE">Metadata imported.</procdesc>
<srcused Sync="FALSE">withheld</srcused>
<date Sync="TRUE">20070718</date>
<time Sync="TRUE">13353200</time>
</procstep>
<srcinfo>
<srccite>
<citeinfo>
<origin>updates provided by CPHD, after Board action.</origin>
<geoform>email, paper</geoform>
</citeinfo>
</srccite>
<srcscale>varies</srcscale>
</srcinfo>
</lineage>
<posacc>
<horizpa>
<qhorizpa>
<horizpav>primarily built off the property layer</horizpav>
</qhorizpa>
</horizpa>
</posacc>
</dataqual>
<idinfo>
<native Sync="FALSE">ESRI ArcCatalog 9.3.1.3000</native>
<descript>
<langdata Sync="TRUE">en</langdata>
<abstract>REQUIRED: A brief narrative summary of the data set.</abstract>
<purpose>polygons derived from the zoning arcs representing areas of like zoning classification</purpose>
</descript>
<citation>
<citeinfo>
<origin>REQUIRED: The name of an organization or individual that developed the data set.</origin>
<pubdate>REQUIRED: The date when the data set is published or otherwise made available for release.</pubdate>
<title>Zoning polygons</title>
<ftname Sync="FALSE">Zoning_poly</ftname>
<geoform Sync="TRUE">vector digital data</geoform>
<onlink Sync="FALSE">withheld</onlink>
</citeinfo>
</citation>
<timeperd>
<current>REQUIRED: The basis on which the time period of content information is determined.</current>
<timeinfo>
<sngdate>
<caldate>7/13/2009</caldate>
</sngdate>
</timeinfo>
</timeperd>
<status>
<progress>REQUIRED: The state of the data set.</progress>
<update>updated as required; zoning changes are provided by CPHD</update>
</status>
<spdom>
<bounding>
<westbc Sync="TRUE">-77.173512</westbc>
<eastbc Sync="TRUE">-77.030478</eastbc>
<northbc Sync="TRUE">38.934897</northbc>
<southbc Sync="TRUE">38.826792</southbc>
</bounding>
<lboundng>
<leftbc Sync="TRUE">11860792.110000</leftbc>
<rightbc Sync="TRUE">11900924.090000</rightbc>
<bottombc Sync="TRUE">6987491.520000</bottombc>
<topbc Sync="TRUE">7026256.980000</topbc>
</lboundng>
</spdom>
<keywords>
<theme>
<themekt>REQUIRED: Reference to a formally registered thesaurus or a similar authoritative source of theme keywords.</themekt>
<themekey>REQUIRED: Common-use word or phrase used to describe the subject of the data set.</themekey>
</theme>
</keywords>
<accconst>REQUIRED: Restrictions and legal prerequisites for accessing the data set.</accconst>
<useconst>1:1200 or 1:14400</useconst>
<natvform Sync="FALSE">Feature Class</natvform>
<ptcontac>
<cntinfo>
<cntperp>
<cntper>Bill Grether</cntper>
<cntorg>GIS Mapping Center Bureau</cntorg>
</cntperp>
<cntpos>Cartographer II</cntpos>
<cntaddr>
<address>2100 Clarendon Blvd Ste 813</address>
<city>Arlington</city>
<state>VA</state>
<postal>22201</postal>
</cntaddr>
<cntemail>gismc@arlingtonva.us</cntemail>
</cntinfo>
</ptcontac>
<browse>
<browsen>http://meridian.arlingtonva.local/metadata/MD_images/Zoning_Historic.jpg</browsen>
<browsed>Zoning Poly (with ZoneCode) and Historic Poly</browsed>
<browset>JPEG</browset>
</browse>
</idinfo>
<dataIdInfo>
<envirDesc Sync="FALSE">ESRI ArcCatalog 9.3.1.3000</envirDesc>
<dataLang>
<languageCode Sync="TRUE" value="en"/>
</dataLang>
<idCitation>
<resTitle Sync="FALSE">Zoning_poly</resTitle>
<presForm>
<PresFormCd Sync="TRUE" value="005"/>
</presForm>
</idCitation>
<spatRpType>
<SpatRepTypCd Sync="TRUE" value="001"/>
</spatRpType>
<dataExt>
<geoEle>
<GeoBndBox esriExtentType="native">
<westBL Sync="TRUE">11860792.11</westBL>
<eastBL Sync="TRUE">11900924.09</eastBL>
<northBL Sync="TRUE">7026256.98</northBL>
<southBL Sync="TRUE">6987491.52</southBL>
<exTypeCode Sync="TRUE">1</exTypeCode>
</GeoBndBox>
</geoEle>
</dataExt>
<geoBox esriExtentType="decdegrees">
<westBL Sync="TRUE">-77.173512</westBL>
<eastBL Sync="TRUE">-77.030478</eastBL>
<northBL Sync="TRUE">38.934897</northBL>
<southBL Sync="TRUE">38.826792</southBL>
<exTypeCode Sync="TRUE">1</exTypeCode>
</geoBox>
</dataIdInfo>
<metainfo>
<langmeta Sync="TRUE">en</langmeta>
<metstdn Sync="TRUE">FGDC Content Standards for Digital Geospatial Metadata</metstdn>
<metstdv Sync="TRUE">FGDC-STD-001-1998</metstdv>
<mettc Sync="TRUE">local time</mettc>
<metc>
<cntinfo>
<cntorgp>
<cntper>REQUIRED: The person responsible for the metadata information.</cntper>
<cntorg>REQUIRED: The organization responsible for the metadata information.</cntorg>
</cntorgp>
<cntaddr>
<addrtype>REQUIRED: The mailing and/or physical address for the organization or individual.</addrtype>
<city>REQUIRED: The city of the address.</city>
<state>REQUIRED: The state or province of the address.</state>
<postal>REQUIRED: The ZIP or other postal code of the address.</postal>
</cntaddr>
<cntvoice>REQUIRED: The telephone number by which individuals can speak to the organization or individual.</cntvoice>
</cntinfo>
</metc>
<metd Sync="TRUE">20100712</metd>
<metextns>
<onlink Sync="TRUE">http://www.esri.com/metadata/esriprof80.html</onlink>
<metprof Sync="TRUE">ESRI Metadata Profile</metprof>
</metextns>
</metainfo>
<mdLang>
<languageCode Sync="TRUE" value="en"/>
</mdLang>
<mdStanName Sync="TRUE">ISO 19115 Geographic Information - Metadata</mdStanName>
<mdStanVer Sync="TRUE">DIS_ESRI1.0</mdStanVer>
<mdChar>
<CharSetCd Sync="TRUE" value="004"/>
</mdChar>
<mdHrLv>
<ScopeCd Sync="TRUE" value="005"/>
</mdHrLv>
<mdHrLvName Sync="TRUE">dataset</mdHrLvName>
<distinfo>
<resdesc Sync="TRUE">Downloadable Data</resdesc>
</distinfo>
<distInfo>
<distributor>
<distorTran>
<onLineSrc>
<orDesc Sync="TRUE">002</orDesc>
<linkage Sync="FALSE">withheld</linkage>
<protocol Sync="TRUE">Local Area Network</protocol>
</onLineSrc>
</distorTran>
<distorFormat>
<formatName Sync="FALSE">Feature Class</formatName>
</distorFormat>
</distributor>
</distInfo>
<spdoinfo>
<direct Sync="TRUE">Vector</direct>
<ptvctinf>
<esriterm Name="Zoning_poly">
<efeatyp Sync="TRUE">Simple</efeatyp>
<efeageom Sync="TRUE">Polygon</efeageom>
<esritopo Sync="TRUE">TRUE</esritopo>
<efeacnt Sync="TRUE">615</efeacnt>
<spindex Sync="TRUE">TRUE</spindex>
<linrefer Sync="TRUE">FALSE</linrefer>
<XYRank Sync="TRUE">2</XYRank>
<ZRank Sync="TRUE">1</ZRank>
<topoWeight Sync="TRUE">5.000000</topoWeight>
<validateEvents Sync="TRUE">FALSE</validateEvents>
<partTopoRules>
<topoRuleID Sync="TRUE">316</topoRuleID>
</partTopoRules>
<partTopoRules>
<topoRuleID Sync="TRUE">317</topoRuleID>
</partTopoRules>
<partTopoRules>
<topoRuleID Sync="TRUE">318</topoRuleID>
</partTopoRules>
<partTopoRules>
<topoRuleID Sync="TRUE">319</topoRuleID>
</partTopoRules>
</esriterm>
<sdtsterm Name="Zoning_poly">
<sdtstype Sync="TRUE">G-polygon</sdtstype>
<ptvctcnt Sync="TRUE">615</ptvctcnt>
</sdtsterm>
</ptvctinf>
</spdoinfo>
<spref>
<horizsys>
<cordsysn>
<geogcsn Sync="TRUE">GCS_North_American_1983</geogcsn>
<projcsn>NAD_1983_StatePlane_Virginia_North_FIPS_4501_Feet</projcsn>
</cordsysn>
<planar>
<planci>
<plance Sync="TRUE">coordinate pair</plance>
<plandu Sync="TRUE">survey feet</plandu>
<coordrep>
<absres Sync="TRUE">0.000625</absres>
<ordres Sync="TRUE">0.000625</ordres>
</coordrep>
</planci>
<mapproj>
<mapprojn Sync="TRUE">Lambert Conformal Conic</mapprojn>
<lambertc>
<stdparll Sync="TRUE">38.033333</stdparll>
<stdparll Sync="TRUE">39.200000</stdparll>
<longcm Sync="TRUE">-78.500000</longcm>
<latprjo Sync="TRUE">37.666667</latprjo>
<feast Sync="TRUE">11482916.666667</feast>
<fnorth Sync="TRUE">6561666.666667</fnorth>
</lambertc>
</mapproj>
</planar>
<geodetic>
<horizdn Sync="TRUE">North American Datum of 1983</horizdn>
<ellips Sync="TRUE">Geodetic Reference System 80</ellips>
<semiaxis Sync="TRUE">6378137.000000</semiaxis>
<denflat Sync="TRUE">298.257222</denflat>
</geodetic>
</horizsys>
<vertdef>
<altsys>
<altenc Sync="TRUE">Explicit elevation coordinate included with horizontal coordinates</altenc>
<altres Sync="TRUE">1.000000</altres>
</altsys>
</vertdef>
</spref>
<refSysInfo>
<RefSystem>
<refSysID>
<identCode Sync="TRUE">NAD_1983_StatePlane_Virginia_North_FIPS_4501_Feet</identCode>
</refSysID>
</RefSystem>
</refSysInfo>
<spatRepInfo>
<VectSpatRep>
<topLvl>
<TopoLevCd Sync="TRUE" value="001"/>
</topLvl>
<geometObjs Name="Zoning_poly">
<geoObjTyp>
<GeoObjTypCd Sync="TRUE" value="001"/>
</geoObjTyp>
<geoObjCnt Sync="TRUE">615</geoObjCnt>
</geometObjs>
</VectSpatRep>
</spatRepInfo>
<eainfo>
<detailed Name="Zoning_poly">
<enttyp>
<enttypl Sync="FALSE">Zoning_poly</enttypl>
<enttypt Sync="TRUE">Feature Class</enttypt>
<enttypc Sync="TRUE">615</enttypc>
</enttyp>
<attr>
<attrlabl Sync="TRUE">OBJECTID</attrlabl>
<attalias Sync="TRUE">OBJECTID</attalias>
<attrtype Sync="TRUE">OID</attrtype>
<attwidth Sync="TRUE">4</attwidth>
<atprecis Sync="TRUE">10</atprecis>
<attscale Sync="TRUE">0</attscale>
<attrdef Sync="TRUE">Internal feature number.</attrdef>
<attrdefs Sync="TRUE">ESRI</attrdefs>
<attrdomv>
<udom Sync="TRUE">Sequential unique whole numbers that are automatically generated.</udom>
</attrdomv>
</attr>
<attr>
<attrlabl Sync="TRUE">ZONECODE</attrlabl>
<attalias Sync="TRUE">ZONECODE</attalias>
<attrtype Sync="TRUE">String</attrtype>
<attwidth Sync="TRUE">3</attwidth>
<atprecis Sync="TRUE">0</atprecis>
<attscale Sync="TRUE">0</attscale>
<attrdef>3-digit code representing zoning designation (key field to link to ZONECODE table)</attrdef>
</attr>
<attr>
<attrlabl Sync="TRUE">SHAPE</attrlabl>
<attalias Sync="TRUE">Shape</attalias>
<attrtype Sync="TRUE">Geometry</attrtype>
<attwidth Sync="TRUE">4</attwidth>
<atprecis Sync="TRUE">0</atprecis>
<attscale Sync="TRUE">0</attscale>
<attrdef Sync="TRUE">Feature geometry.</attrdef>
<attrdefs Sync="TRUE">ESRI</attrdefs>
<attrdomv>
<udom Sync="TRUE">Coordinates defining the features.</udom>
</attrdomv>
</attr>
<attr>
<attrlabl Sync="TRUE">SHAPE.area</attrlabl>
<attalias Sync="TRUE">SHAPE.area</attalias>
<attrtype Sync="TRUE">Double</attrtype>
<attwidth Sync="TRUE">0</attwidth>
<atprecis Sync="TRUE">0</atprecis>
<attscale Sync="TRUE">0</attscale>
</attr>
<attr>
<attrlabl Sync="TRUE">SHAPE.len</attrlabl>
<attalias Sync="TRUE">SHAPE.len</attalias>
<attrtype Sync="TRUE">Double</attrtype>
<attwidth Sync="TRUE">0</attwidth>
<atprecis Sync="TRUE">0</atprecis>
<attscale Sync="TRUE">0</attscale>
</attr>
</detailed>
</eainfo>
<mdDateSt Sync="TRUE">20100712</mdDateSt>
<arlington>
<comments>Zoning boundaries generally follow property lines (but not always), and street centerlines. All parts of the County are zoned some value; if source material shows only a property being rezoned, that may extend in to the right of way to the centerline.</comments>
</arlington>
</metadata>
