<?xml version="1.0" encoding="UTF-8"?><metadata xml:lang="en">
<idinfo>
<citation>
<citeinfo>
<origin>NCDOT GIS Branch, based on the Flood Mapping LIDAR data. GIS web site: http://www.ncdot.org/planning/statewide/gis/ Flood Mapping web Site: http://www.ncfloodmaps.com/default_swf.asp</origin>
<pubdate>March 11, 2005</pubdate>
<title Sync="FALSE">CON_CURRITUC_20</title>
<geoform Sync="TRUE">vector digital data</geoform>
<onlink Sync="FALSE">withheld</onlink>
<ftname Sync="FALSE">CON_CURRITUC_20</ftname>
</citeinfo>
</citation>
<descript>
<abstract>Currituck County shapefile for 20 foot contours. Elevation for this county ranges from -18 to 56 feet. Elevation mean: 3 Feet</abstract>
<purpose>General purpose display of elevation data. You should not expect the contours to be exact. The vertical datum used is NAVD 88, but the accuracy of the LIDAR is about 25cm or about 10, however, using two foot contours might be pushing data beyond the intended accuracy.</purpose>
<supplinf>Refer to NCDOT-GIS and Flood Mapping Web sites</supplinf>
<langdata Sync="TRUE">en</langdata>
</descript>
<timeperd>
<timeinfo>
<sngdate>
<caldate>March 11, 2005</caldate>
</sngdate>
</timeinfo>
<current>publication date</current>
</timeperd>
<status>
<progress>Complete</progress>
<update>As Needed</update>
</status>
<spdom>
<bounding>
<westbc Sync="TRUE">-76.274391</westbc>
<eastbc Sync="TRUE">-75.761171</eastbc>
<northbc Sync="TRUE">36.559473</northbc>
<southbc Sync="TRUE">36.071044</southbc>
</bounding>
<lboundng>
<leftbc Sync="TRUE">2805302.499931</leftbc>
<rightbc Sync="TRUE">2951373.330147</rightbc>
<topbc Sync="TRUE">1033706.723901</topbc>
<bottombc Sync="TRUE">860190.000027</bottombc>
</lboundng>
<maxalti>6684</maxalti>
<minalti>-130</minalti>
<altunits>Feet</altunits>
</spdom>
<keywords>
<theme>
<themekey>Contour, LIDAR, Flood</themekey>
<themekey>LIDAR</themekey>
</theme>
<place>
<placekey>North Carolina</placekey>
</place>
</keywords>
<accconst>None.</accconst>
<useconst>This data should not be used when extreme accuracy is critical.</useconst>
<ptcontac>
<cntinfo>
<cntorgp>
<cntorg>NC Department of Transportation</cntorg>
<cntper>GIS Help Desk (gishelp@dot.state.nc.us)</cntper>
</cntorgp>
<cntaddr>
<addrtype>Mailing Address</addrtype>
<address>1587 Mail Service Center</address>
<city>Raleigh</city>
<state>NC</state>
<postal>27699-1587</postal>
<country>USA</country>
</cntaddr>
<cntvoice>(919)-212-6000</cntvoice>
<hours>8AM-5PM M-F</hours>
</cntinfo>
</ptcontac>
<datacred>LIDAR data is maintained by the Flood Mapping Program.</datacred>
<native Sync="FALSE">ESRI ArcCatalog 9.3.1.3500</native>
<natvform Sync="FALSE">Feature Class</natvform>
</idinfo>
<dataqual>
<posacc>
<vertacc>
<vertaccr>You should not expect the contours to be exact. The vertical datum used is NAVD 88, but the accuracy of the LIDAR is about 25cm or about 10, however, using two foot contours might be pushing data beyond the intended accuracy. </vertaccr>
</vertacc>
</posacc>
<lineage>
<srcinfo>
<srctime>
<srccurr>ground condition</srccurr>
</srctime>
</srcinfo>
<procstep>
<procdesc>AML process. Setting the environment variable "ARCMEMSIZE" to 268435456 might help performance, but only if you have 1GB of RAM with a large swap file.</procdesc>
<procdate>March 11, 2005</procdate>
<proctime>49 Minutes</proctime>
<procsv>Arc Workstation 9; 2.4GHZ / 1 GB RAM; Program was successfully run on smaller systems and older version of Arc</procsv>
</procstep>
<procstep>
<procdesc>
Contours are created from an elevation grid with the z values rounded to the nearest 1/10th of an foot. ************************************************************************************
TempElevationA = INT(RealElevation * 10 + 0.5)
</procdesc>
</procstep>
<procstep>
<procdesc>
Resample 30 meter DEM data to fill in void areas. ************************************************************************************
TempDemResample = INT(RESAMPLE(Statewide30MeterDEM,20) + 0.5)
</procdesc>
</procstep>
<procstep>
<procdesc>
Merge LIDAR with 30 meter DEM with LIDAR taking precedence. ************************************************************************************
TempElevationB = MERGE(TempElevationA, TempDemResample)
</procdesc>
</procstep>
<procstep>
<procdesc>
OPTIONAL STEP: Resample grid to 10 feet instead of 20 feet. This with take the program four times longer to complete but gives a more accurate contour line by about 4 feet along the x,y. Output files will be about 20% larger.
************************************************************************************
TempElevationC = INT(RESAMPLE(TempElevationB,10,BILINEAR) + 0.5)
</procdesc>
</procstep>
<procstep>
<procdesc>
Filter elevation to reduce the significance of anomalous mesh points. ************************************************************************************
ARC FILTER TempElevationC TempElevationD LOW
</procdesc>
</procstep>
<procstep>
<procdesc>
Convert back to integer so each z value is at 1/10th of an foot. ************************************************************************************
TempElevationE = INT(TempElevationD + 0.5)
</procdesc>
</procstep>
<procstep>
<procdesc>
Create Contour at every 40 feet to avoid arc limitation.
Add 0.05 feet to avoid square lines that match the grid.
Weed every 4 feet to reduce file size
Output elevation field is set to "z-feet"
Factor all contours by 0.10 to get feet instead of 1/10th of foot. ************************************************************************************
LATTICECONTOUR TempElevationE ContourLine 40 0.05 z-feet 4.0 0.10
</procdesc>
</procstep>
<procstep>
<procdesc>
Unsplit, Count Vertices, and remove short circluar lines ************************************************************************************
EDIT ContourLine ;
SELECT( fnode# = tnode# and length &lt; 200 and vertices &lt; 20 ) or ( fnode# = tnode# and length &lt; 80 ) ; DELETE
</procdesc>
</procstep>
<procstep>
<procdesc>
Convert the "z-feet" to an integer.
Repeat until all contours are created. ************************************************************************************
Merge all contours and then create 20, 10, 5 and 2 foot files.
</procdesc>
</procstep>
<procstep>
<procdesc Sync="TRUE">Metadata imported.</procdesc>
<srcused Sync="FALSE">withheld</srcused>
<date Sync="TRUE">20050913</date>
<time Sync="TRUE">17064500</time>
</procstep>
</lineage>
</dataqual>
<spdoinfo>
<direct Sync="TRUE">Vector</direct>
<ptvctinf>
<esriterm Name="CON_CURRITUC_20">
<efeatyp Sync="TRUE">Simple</efeatyp>
<efeageom Sync="TRUE" code="3"/>
<esritopo Sync="TRUE">FALSE</esritopo>
<efeacnt Sync="TRUE">6719</efeacnt>
<spindex Sync="TRUE">TRUE</spindex>
<linrefer Sync="TRUE">FALSE</linrefer>
</esriterm>
</ptvctinf>
</spdoinfo>
<spref>
<horizsys>
<planar>
<planci>
<plance Sync="TRUE">coordinate pair</plance>
<coordrep>
<absres Sync="TRUE">0.000256</absres>
<ordres Sync="TRUE">0.000256</ordres>
</coordrep>
<plandu Sync="TRUE">survey feet</plandu>
</planci>
</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>
<cordsysn>
<geogcsn Sync="TRUE">GCS_North_American_1983</geogcsn>
<projcsn Sync="TRUE">NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet</projcsn>
</cordsysn>
</horizsys>
<vertdef>
<altsys>
<altenc Sync="TRUE">Explicit elevation coordinate included with horizontal coordinates</altenc>
<altres Sync="TRUE">1.000000</altres>
</altsys>
</vertdef>
</spref>
<eainfo>
<detailed Name="CON_CURRITUC_20">
<attr>
<attrlabl Sync="TRUE">Z_FEET</attrlabl>
<attalias Sync="TRUE">Z_FEET</attalias>
<attrtype Sync="TRUE">SmallInteger</attrtype>
<attwidth Sync="TRUE">2</attwidth>
<atprecis Sync="TRUE">5</atprecis>
<attscale Sync="TRUE">0</attscale>
</attr>
<enttyp>
<enttypl Sync="FALSE">CON_CURRITUC_20</enttypl>
<enttypc Sync="TRUE">6719</enttypc>
<enttypt Sync="TRUE">Feature Class</enttypt>
</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">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</attrlabl>
<attrdef Sync="TRUE">Feature geometry.</attrdef>
<attrdefs Sync="TRUE">ESRI</attrdefs>
<attrdomv>
<udom Sync="TRUE">Coordinates defining the features.</udom>
</attrdomv>
<atprecis Sync="TRUE">0</atprecis>
<attalias Sync="TRUE">SHAPE.STLength()</attalias>
<attrtype Sync="TRUE">Double</attrtype>
<attscale Sync="TRUE">0</attscale>
<attwidth Sync="TRUE">0</attwidth>
</attr>
</detailed>
</eainfo>
<distinfo>
<resdesc Sync="TRUE">Downloadable Data</resdesc>
<stdorder>
<digform>
<digtinfo>
<transize Sync="TRUE">4.890</transize>
<dssize Sync="TRUE">4.890</dssize>
</digtinfo>
</digform>
</stdorder>
</distinfo>
<metainfo>
<metd Sync="TRUE">20100623</metd>
<metc>
<cntinfo>
<cntorgp>
<cntorg>NC Department of Transportation</cntorg>
<cntper>GIS Help Desk (gishelp@dot.state.nc.us)</cntper>
</cntorgp>
<cntaddr>
<addrtype>Mailing Address</addrtype>
<address>1587 Mail Service Center</address>
<city>Raleigh</city>
<state>NC</state>
<postal>27699-1587</postal>
</cntaddr>
<cntvoice>(919)-212-6000</cntvoice>
</cntinfo>
</metc>
<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>
<langmeta Sync="TRUE">en</langmeta>
</metainfo>
<dataIdInfo>
<envirDesc Sync="TRUE"> Version 6.2 (Build 9200) ; Esri ArcGIS 10.9.1.28388</envirDesc>
<dataLang>
<languageCode Sync="TRUE" value="eng"/>
<countryCode Sync="TRUE" value="USA"/>
</dataLang>
<geoBox esriExtentType="decdegrees">
<westBL Sync="TRUE">-76.274391</westBL>
<eastBL Sync="TRUE">-75.761171</eastBL>
<northBL Sync="TRUE">36.559473</northBL>
<southBL Sync="TRUE">36.071044</southBL>
<exTypeCode Sync="TRUE">1</exTypeCode>
</geoBox>
<idCitation>
<resTitle Sync="FALSE">CON_CURRITUC_20</resTitle>
<presForm>
<PresFormCd Sync="TRUE" value="005"/>
</presForm>
</idCitation>
<spatRpType>
<SpatRepTypCd Sync="TRUE" value="001"/>
</spatRpType>
<dataExt>
<geoEle>
<GeoBndBox esriExtentType="native">
<westBL Sync="TRUE">2805302.499931</westBL>
<northBL Sync="TRUE">1033706.723901</northBL>
<southBL Sync="TRUE">860190.000027</southBL>
<eastBL Sync="TRUE">2951373.330147</eastBL>
<exTypeCode Sync="TRUE">1</exTypeCode>
</GeoBndBox>
</geoEle>
</dataExt>
<dataExt>
<geoEle>
<GeoBndBox esriExtentType="search">
<exTypeCode Sync="TRUE">1</exTypeCode>
<westBL Sync="TRUE">-76.274391</westBL>
<eastBL Sync="TRUE">-75.761171</eastBL>
<northBL Sync="TRUE">36.559473</northBL>
<southBL Sync="TRUE">36.071044</southBL>
</GeoBndBox>
</geoEle>
</dataExt>
</dataIdInfo>
<distInfo>
<distributor>
<distorTran>
<onLineSrc>
<orDesc Sync="TRUE">002</orDesc>
<linkage Sync="FALSE">withheld</linkage>
</onLineSrc>
<transSize Sync="TRUE">4.890</transSize>
</distorTran>
<distorFormat>
<formatName Sync="FALSE">Feature Class</formatName>
</distorFormat>
</distributor>
<distFormat>
<formatName Sync="FALSE">Feature Class</formatName>
</distFormat>
</distInfo>
<Esri>
<ModDate>20260306</ModDate>
<ModTime>14103300</ModTime>
<SyncDate>20260306</SyncDate>
<SyncOnce>FALSE</SyncOnce>
<SyncTime>14103300</SyncTime>
<CreaDate>20180713</CreaDate>
<CreaTime>13463700</CreaTime>
<ArcGISFormat>1.0</ArcGISFormat>
<DataProperties>
<itemProps>
<itemName Sync="FALSE">CON_CURRITUC_20</itemName>
<imsContentType Sync="TRUE">002</imsContentType>
<nativeExtBox>
<westBL Sync="TRUE">2805302.499931</westBL>
<eastBL Sync="TRUE">2951373.330147</eastBL>
<southBL Sync="TRUE">860190.000027</southBL>
<northBL Sync="TRUE">1033706.723901</northBL>
<exTypeCode Sync="TRUE">1</exTypeCode>
</nativeExtBox>
</itemProps>
<coordRef>
<type Sync="TRUE">Projected</type>
<geogcsn Sync="TRUE">GCS_North_American_1983</geogcsn>
<csUnits Sync="TRUE">Linear Unit: Foot_US (0.304801)</csUnits>
<projcsn Sync="TRUE">NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet</projcsn>
<peXml Sync="TRUE">&lt;ProjectedCoordinateSystem xsi:type='typens:ProjectedCoordinateSystem' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xs='http://www.w3.org/2001/XMLSchema' xmlns:typens='http://www.esri.com/schemas/ArcGIS/10.8'&gt;&lt;WKT&gt;PROJCS[&amp;quot;NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet&amp;quot;,GEOGCS[&amp;quot;GCS_North_American_1983&amp;quot;,DATUM[&amp;quot;D_North_American_1983&amp;quot;,SPHEROID[&amp;quot;GRS_1980&amp;quot;,6378137.0,298.257222101]],PRIMEM[&amp;quot;Greenwich&amp;quot;,0.0],UNIT[&amp;quot;Degree&amp;quot;,0.0174532925199433]],PROJECTION[&amp;quot;Lambert_Conformal_Conic&amp;quot;],PARAMETER[&amp;quot;False_Easting&amp;quot;,2000000.002616666],PARAMETER[&amp;quot;False_Northing&amp;quot;,0.0],PARAMETER[&amp;quot;Central_Meridian&amp;quot;,-79.0],PARAMETER[&amp;quot;Standard_Parallel_1&amp;quot;,34.33333333333334],PARAMETER[&amp;quot;Standard_Parallel_2&amp;quot;,36.16666666666666],PARAMETER[&amp;quot;Latitude_Of_Origin&amp;quot;,33.75],UNIT[&amp;quot;Foot_US&amp;quot;,0.3048006096012192],AUTHORITY[&amp;quot;EPSG&amp;quot;,2264]]&lt;/WKT&gt;&lt;XOrigin&gt;-121841899.99977154&lt;/XOrigin&gt;&lt;YOrigin&gt;-93658999.999808758&lt;/YOrigin&gt;&lt;XYScale&gt;15624.999985448079&lt;/XYScale&gt;&lt;ZOrigin&gt;0&lt;/ZOrigin&gt;&lt;ZScale&gt;1&lt;/ZScale&gt;&lt;MOrigin&gt;0&lt;/MOrigin&gt;&lt;MScale&gt;1&lt;/MScale&gt;&lt;XYTolerance&gt;0.0005120000004768373&lt;/XYTolerance&gt;&lt;ZTolerance&gt;2.0000000000000002e-05&lt;/ZTolerance&gt;&lt;MTolerance&gt;2.0000000000000002e-05&lt;/MTolerance&gt;&lt;HighPrecision&gt;true&lt;/HighPrecision&gt;&lt;WKID&gt;102719&lt;/WKID&gt;&lt;LatestWKID&gt;2264&lt;/LatestWKID&gt;&lt;/ProjectedCoordinateSystem&gt;</peXml>
</coordRef>
</DataProperties>
</Esri>
<mdChar>
<CharSetCd Sync="TRUE" value="004"/>
</mdChar>
<mdDateSt Sync="TRUE">20260306</mdDateSt>
<mdHrLv>
<ScopeCd Sync="TRUE" value="005"/>
</mdHrLv>
<mdHrLvName Sync="TRUE">dataset</mdHrLvName>
<mdLang>
<languageCode Sync="TRUE" value="eng"/>
<countryCode Sync="TRUE" value="USA"/>
</mdLang>
<mdStanName Sync="TRUE">ISO 19115 Geographic Information - Metadata</mdStanName>
<mdStanVer Sync="TRUE">DIS_ESRI1.0</mdStanVer>
<refSysInfo>
<RefSystem>
<refSysID>
<identCode Sync="TRUE" code="2264">NAD_1983_StatePlane_North_Carolina_FIPS_3200_Feet</identCode>
<idCodeSpace Sync="TRUE">EPSG</idCodeSpace>
<idVersion Sync="TRUE">6.12(9.0.0)</idVersion>
</refSysID>
</RefSystem>
</refSysInfo>
<spatRepInfo>
<GridSpatRep>
<numDims Sync="TRUE">2</numDims>
<tranParaAv Sync="TRUE">1</tranParaAv>
<axDimProps>
<Dimen>
<dimName>
<DimNameTypCd Sync="TRUE" value="002"/>
</dimName>
<dimResol Sync="TRUE">20</dimResol>
<dimSize Sync="TRUE">4532</dimSize>
</Dimen>
<Dimen>
<dimName>
<DimNameTypCd Sync="TRUE" value="001"/>
</dimName>
<dimResol Sync="TRUE">20</dimResol>
<dimSize Sync="TRUE">7406</dimSize>
</Dimen>
</axDimProps>
<cellGeo>
<CellGeoCd Sync="TRUE" value="002"/>
</cellGeo>
</GridSpatRep>
<VectSpatRep>
<geometObjs Name="CON_CURRITUC_20">
<geoObjTyp>
<GeoObjTypCd Sync="TRUE" value="002"/>
</geoObjTyp>
<geoObjCnt Sync="TRUE">6719</geoObjCnt>
</geometObjs>
<topLvl>
<TopoLevCd Sync="TRUE" value="001"/>
</topLvl>
</VectSpatRep>
</spatRepInfo>
</metadata>
