ÿþ<html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-16"> <title>Connecticut 2006 NAIP Orthophoto</title> <link rel="schema.dc" href="http://dublincore.org/documents/dces/"> <meta name="dc.title" content="Connecticut 2006 NAIP Orthophoto"> <meta name="dc.creator" content="USDA-FSA-APFO Aerial Photography Field Office"> <meta name="dc.creator" content="State of Connecticut, Department of Environmental Protection"> <meta name="dc.subject" content="imageryBaseMapsEarthCover Digital Ortho Rectified Image Mosaic Ortho Rectification Quarter Quadrangle Centered NAIP Compliance Aerial Compliance Farming orthophoto orthophotography orthoimage orthoimagery imagery raster geo-referenced raster image aerial photo"> <meta name="dc.description" content="This data set is a statewide raster mosaic of 2006, natural color, 1 meter ground sample distance imagery for Connecticut from the National Agriculture Imagery Program (NAIP). NAIP acquires digital ortho imagery during the agricultural growing seasons in the continental United States. A primary goal of the NAIP program is to enable availability of ortho imagery within one year of acquisition. NAIP provides two main products: 1 meter ground sample distance (GSD) ortho imagery rectified to a horizontal accuracy of within +/- 5 meters of reference digital ortho quarter quads (DOQQ's) from the National Digital Ortho Program (NDOP); and, 2 meter GSD ortho imagery rectified to within +/- 10 meters of reference DOQQs. The tiling format of NAIP imagery is based on a 3.75' x 3.75' quarter quadrangle with a 300 meter buffer on all four sides. NAIP quarter quads are formatted to the UTM coordinate system using NAD83. NAIP imagery may contain as much as 10% cloud cover per tile."> <meta name="dc.publisher" content="USDA-FSA-APFO Aerial Photography Field Office"> <meta name="dc.date" content="2007"> <meta name="dc.type" content="data.Fgdb raster digital data"> <meta name="dc.format" content="File Geodatabase Raster Dataset"> <meta name="dc.identifier" content="http://www.fsa.usda.gov/FSA/"> <meta name="dc.identifier" content="http://www.ct.gov/dep"> <meta name="dc.source" content="1 meter NAIP 2006 quarter quadrangles (QQ's)"> <meta name="dc.source" content="Connecticut 2006 NAIP Color Orthophoto (statewide mosaic)"> <meta name="dc.lang" content="en"> <meta name="dc.coverage.x.min" scheme="DD" content="-73.771551"> <meta name="dc.coverage.x.max" scheme="DD" content="-71.732771"> <meta name="dc.coverage.y.min" scheme="DD" content="40.932891"> <meta name="dc.coverage.y.max" scheme="DD" content="42.071182"> <meta name="dc.coverage.placeName" content="US"> <meta name="dc.coverage.placeName" content="United States of America"> <meta name="dc.coverage.placeName" content="Connecticut"> <meta name="dc.coverage.placeName" content="CT"> <meta name="dc.rights" content="Access constraints: None. The data is in the public domain and may be redistributed. Please include this metadata record in any redistributions.; Use constraints: Users should be aware that this is an interim release. May contain defects and have horizontal accuracy less than the specified tolerances. Imagery may be replaced to address defects found in a small number of products through quality assurance processes. Imagery containing defects that require the acquisition of new imagery, such as excessive cloud cover, specular reflectance, etc., will not be replaced within a NAIP project year."><script type="text/javascript" language="JavaScript1.3"> /* Onload - Find each <pre> element with an Id="fixvalue" and call fixvalue() function to parse text to respect line breaks, replace <pre> element with <div> elememt, and convert URL address strings in text to <a href> element. */ window.onload = function() { elem = document.getElementById("fixvalue"); while (Boolean(elem != null)) { fixvalue(elem); elem = document.getElementById("fixvalue"); } window.focus() } /* Fix value - Parse text in <pre> element to respect line breaks introduced in ArcCatalog by the metadata author who intentionally introduced single line breaks to start new lines or even more than one consecutive line break to further separate text to form paragraphs. Note, fixvalue() calls the addtext() function, which adds text to DIV elements, which are sequentially added to a parent DIV element to form separate lines and paragraphs of text. */ function fixvalue(elem) { elem.id = ""; var n var val = String(""); var pos = Number(0); // Make a newline character to use for basis for splitting string into // an array of strings that are processed and turned into separate div // elements with either new line or paragraphic-like style. var newline = String.fromCharCode(10); var par = elem.parentNode; if (elem.innerText) { // Position of first newline character in IE n = elem; val = n.innerText; pos = val.indexOf(newline); } else { // Position of first newline character in NS, Firefox n = elem.childNodes[0]; val = n.nodeValue; pos = val.indexOf(newline); } if (pos > 0) { // Text string contains at least one white space character var sValue = new String (""); // Split entire text string value on newline character // in order to create an array of string values to process var aValues = val.split(newline); var padBottom = Number(0); var add = Boolean("false"); // Loop thru each potential new line or paragraph and append <DIV> // element and set its className accordingly. for (var i = 0; i <= aValues.length - 1; i++) { var div = document.createElement("DIV"); sValue = aValues[i]; add = false; for (var j = 0; j < sValue.length; j++) { if (sValue.charCodeAt(j) > 32) { add = true; // window.alert("CHARACTER AT " + sValue.charAt(j) + " CHARCODE " + sValue.charCodeAt(j)) break; } } if (add) { if (i == 0) { // Must clone and append label property (e.g. <b>Abstract</b>) to first <DIV> // element, and then remove it from parent if at first element in aValues array. prev = elem.previousSibling; if (Boolean(prev != null)) { var label = prev.cloneNode(true) div.appendChild(label); par.removeChild(prev); } } // Now test to see whether to set style.paddingBottom to 0 or 4 for newline or // paragraph, respectively. Look ahead and if all characters in the next element // in the aValues array (the next DIV element to make) are not white space then set // style.paddingBottom = 0. Otherwise, set style.paddingBottom = 4 to separate the // the current <DIV> from the next <DIV> element. padBottom = Number(0); if (i < aValues.length - 1) { // Assume paragraph-like separation between DIV elements padBottom = Number(4); // Look for non-white space characters in content for next DIV var nextValue = aValues[i+1]; for (var k = 0; k < nextValue.length; k++) { if (nextValue.charCodeAt(k) > 32) { // Found a non-white space character padBottom = Number(0); // window.alert("CHARACTER AT " + nextval.charAt(k) + " CHARCODE " + nextval.charCodeAt(k)) break; } } } // Pad element div.style.paddingLeft = 0; div.style.paddingRight = 0; div.style.paddingTop = 0; div.style.paddingBottom = padBottom; // Scan text for URL strings before adding text to div element addtext(div,sValue); // Add new div element to parent div element par.appendChild(div); } } par.removeChild(elem); } else { // No white space charaters in text string so can be added directly to parent DIV element. par.removeChild(elem); // Scan text for URL strings before adding text to div element addtext(par,val); } } /* Add text - This function adds text to (inside) DIV element, but before doing so searches for strings in the text that resemble URLs and converts them to hypertext elements and adds them to the div element as well. Searches for strings that begin with "://" or "www." and converts them to <a href> elements. Add text function is called by fixvalue function */ function addtext(elem,txt) { // Scan entire text value and test for presense of URL strings, // convert URL strings to Hypertext Elements, convert text strings // between URL strings to Text Nodes and append all Hypertext // Elements and Text Nodes to DIV element. var start = new Number (0); var end = new Number (0); var url = new String(""); var urlpattern = /(\w+):\/\/([\w.]+)((\S)*)|www\.([\w.]+)((\S)*)/g; var punctuation = /[\.\,\;\:\?\!\[\]\(\)\{\}\'\"]/; var result var elemText while((result = urlpattern.exec(txt)) != null) { var fullurl = result[0]; var protocol = result[1]; url = fullurl; end = result.index; if (start < end){ // Append Text Node to parent elemText = document.createTextNode(txt.substring(start, end)); elem.appendChild(elemText); } var lastchar = fullurl.charAt(fullurl.length - 1); // Remove last character from url if character is punctuation mark, bracket or parenthesis; if (lastchar.match(punctuation) != null) { // Remove next-to-last character from url if character is punctuation mark, bracket or parenthesis. For example the ")" in ")," var nexttolastchar = fullurl.charAt(fullurl.length - 2); if (nexttolastchar.match(punctuation) != null) { url = fullurl.substring(0,fullurl.length - 2); } else { url = fullurl.substring(0,fullurl.length - 1); } } start = (result.index + url.length) // Test to concatinate 'http://' to url if not already begininng with 'http://', 'https://' or 'ftp://'" if (protocol == "") { url = "http://" + url; } // Append Hypertext (anchor) Element to parent elemText = document.createTextNode(url); var elemAnchor = document.createElement("A"); elemAnchor.setAttribute("href", url); elemAnchor.setAttribute("target", "viewer"); elemAnchor.appendChild(elemText); elem.appendChild(elemAnchor); } end = txt.length; if (start < end) { // Append Text Node that follows last Hypertext Element elemText = document.createTextNode(txt.substring(start, end)); elem.appendChild(elemText); } } </script></head><a name="Top"></a><body> <div style="text-align:right; width:100%"> FGDC Classic | <a href="FileGDB_ortho_2006_color_naip_FGDC_FAQ.htm">FGDC FAQ</a> | <a href="FileGDB_ortho_2006_color_naip_FGDC_Plus.htm">FGDC Plus</a> | <a href="FileGDB_ortho_2006_color_naip.xml">XML</a></div> <hr> <h1>Connecticut 2006 NAIP Orthophoto</h1> <h2>Metadata:</h2> <ul> <li><a href="#Identification_Information">Identification_Information</a></li> <li><a href="#Data_Quality_Information">Data_Quality_Information</a></li> <li><a href="#Spatial_Data_Organization_Information">Spatial_Data_Organization_Information</a></li> <li><a href="#Spatial_Reference_Information">Spatial_Reference_Information</a></li> <li><a href="#Entity_and_Attribute_Information">Entity_and_Attribute_Information</a></li> <li>Distribution_Information</li> <li STYLE="margin-left:0.3in"><a href="#Distributor1">Distributor 1</a></li> <li STYLE="margin-left:0.3in"><a href="#Distributor2">Distributor 2</a></li> <li><a href="#Metadata_Reference_Information">Metadata_Reference_Information</a></li> </ul><a name="Identification_Information"><hr></a><dl> <dt><i>Identification_Information: </i></dt> <dd> <dl> <dt><i>Citation: </i></dt> <dd> <dl> <dt><i>Citation_Information: </i></dt> <dd> <dl> <dt><i>Originator: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> <dt><i>Originator: </i>State of Connecticut, Department of Environmental Protection</dt> <dt><i>Publication_Date: </i>2007</dt> <dt><i>Title: </i></dt> <dd>Connecticut 2006 NAIP Orthophoto</dd> <dt><i>Geospatial_Data_Presentation_Form: </i>Fgdb raster digital data</dt> <dt><i>Publication_Information: </i></dt> <dd> <dl> <dt><i>Publication_Place: </i>Salt Lake City, Utah</dt> <dt><i>Publisher: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> </dl> </dd> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.fsa.usda.gov/FSA/">http://www.fsa.usda.gov/FSA/</a></dt> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.ct.gov/dep">http://www.ct.gov/dep</a></dt> </dl> </dd> </dl> </dd> <dt><i>Description: </i></dt> <dd> <dl> <dt><i>Abstract: </i></dt> <dd><pre id="fixvalue">This data set is a statewide raster mosaic of 2006, natural color, 1 meter ground sample distance imagery for Connecticut from the National Agriculture Imagery Program (NAIP). NAIP acquires digital ortho imagery during the agricultural growing seasons in the continental United States. A primary goal of the NAIP program is to enable availability of ortho imagery within one year of acquisition. NAIP provides two main products: 1 meter ground sample distance (GSD) ortho imagery rectified to a horizontal accuracy of within +/- 5 meters of reference digital ortho quarter quads (DOQQ's) from the National Digital Ortho Program (NDOP); and, 2 meter GSD ortho imagery rectified to within +/- 10 meters of reference DOQQs. The tiling format of NAIP imagery is based on a 3.75' x 3.75' quarter quadrangle with a 300 meter buffer on all four sides. NAIP quarter quads are formatted to the UTM coordinate system using NAD83. NAIP imagery may contain as much as 10% cloud cover per tile.</pre></dd> <dt><i>Purpose: </i></dt> <dd><pre id="fixvalue">NAIP imagery is available for distribution within 60 days of the end of a flying season and is intended to provide current information of agricultural conditions in support of USDA farm programs. For USDA Farm Service Agency, the 1 meter GSD product provides an ortho image base for Common Land Unit boundaries and other data sets. The 1 meter NAIP imagery is generally acquired in projects covering full states in cooperation with state government and other federal agencies who use the imagery for a variety of purposes including land use planning and natural resource assessment. With an annual cycle, NAIP is also used for disaster response often providing the most current pre-event imagery. While suitable for a variety of uses the 2 meter GSD NAIP imagery is primarily intended to assess crop condition and compliance to USDA farm program conditions. The 2 meter imagery is generally acquired only for agricultural areas within state projects.</pre></dd> <dt><i>Supplemental_Information: </i></dt> <dd><pre id="fixvalue">This statewide raster mosaic was prepared by the State of Connecticut, Department of Environmental Protection (CT DEP) using 2006, 3 color band, 1 meter ground sample distance imagery (input rasters) from the USDA-FSA-APFO Aerial Photography Field Office. These original input rasters are in GeoTIFF format and because there are two UTM Zones in Connecticut, the input rasters are in either the NAD 1983 UTM Zone 18N Meters or NAD 1983 UTM Zone 19N Meters. The individual rasters were projected to NAD 1983 StatePlane Connecticut FIPS 0600 Feet and merged together in the resulting statewide mosaic.</pre></dd> </dl> </dd> <dt><i>Time_Period_of_Content: </i></dt> <dd> <dl> <dt><i>Time_Period_Information: </i></dt> <dd> <dl> <dt><i>Multiple_Dates/Times: </i></dt> <dd> <dl> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060716</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060717</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060805</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060813</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060814</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060816</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Currentness_Reference: </i></dt> <dd><pre id="fixvalue">ground condition</pre></dd> </dl> </dd> <dt><i>Status: </i></dt> <dd> <dl> <dt><i>Progress: </i>Complete</dt> <dt><i>Maintenance_and_Update_Frequency: </i>Irregular</dt> </dl> </dd> <dt><i>Spatial_Domain: </i></dt> <dd> <dl> <dt><i>Bounding_Coordinates: </i></dt> <dd> <dl> <dt><i>West_Bounding_Coordinate: </i>-73.771551</dt> <dt><i>East_Bounding_Coordinate: </i>-71.732771</dt> <dt><i>North_Bounding_Coordinate: </i>42.071182</dt> <dt><i>South_Bounding_Coordinate: </i>40.932891</dt> </dl> </dd> </dl> </dd> <dt><i>Keywords: </i></dt> <dd> <dl> <dt><i>Theme: </i></dt> <dd> <dl> <dt><i>Theme_Keyword_Thesaurus: </i>ISO 19115 Topic Category</dt> <dt><i>Theme_Keyword: </i>imageryBaseMapsEarthCover</dt> </dl> </dd> <dt><i>Theme: </i></dt> <dd> <dl> <dt><i>Theme_Keyword_Thesaurus: </i>None</dt> <dt><i>Theme_Keyword: </i>Digital Ortho Rectified Image</dt> <dt><i>Theme_Keyword: </i>Mosaic</dt> <dt><i>Theme_Keyword: </i>Ortho Rectification</dt> <dt><i>Theme_Keyword: </i>Quarter Quadrangle Centered</dt> <dt><i>Theme_Keyword: </i>NAIP</dt> <dt><i>Theme_Keyword: </i>Compliance</dt> <dt><i>Theme_Keyword: </i>Aerial Compliance</dt> <dt><i>Theme_Keyword: </i>Farming</dt> <dt><i>Theme_Keyword: </i>orthophoto</dt> <dt><i>Theme_Keyword: </i>orthophotography</dt> <dt><i>Theme_Keyword: </i>orthoimage</dt> <dt><i>Theme_Keyword: </i>orthoimagery</dt> <dt><i>Theme_Keyword: </i>imagery</dt> <dt><i>Theme_Keyword: </i>raster</dt> <dt><i>Theme_Keyword: </i>geo-referenced raster image</dt> <dt><i>Theme_Keyword: </i>aerial photo</dt> </dl> </dd> <dt><i>Place: </i></dt> <dd> <dl> <dt><i>Place_Keyword_Thesaurus: </i>U.S. Department of Commerce, 1995, Countries, Dependencies, Areas of Special Sovereignty, and Their Principal Administrative Divisions (Federal Information Processing Standard (FIPS) 10-4): Washington, D.C., National Institute of Standards and Technology.</dt> <dt><i>Place_Keyword: </i>US</dt> <dt><i>Place_Keyword: </i>United States of America</dt> </dl> </dd> <dt><i>Place: </i></dt> <dd> <dl> <dt><i>Place_Keyword_Thesaurus: </i>U.S. Department of Commerce, 1987, Codes for the Identification of the States, the District of Columbia and the Outlying Areas of The United States, and Associated Areas (Federal Information Processing Standard 5-2): Washington, DC, National Institute of Standards and Technology.</dt> <dt><i>Place_Keyword: </i>Connecticut</dt> <dt><i>Place_Keyword: </i>CT</dt> </dl> </dd> </dl> </dd> <dt><i>Access_Constraints: </i>None. The data is in the public domain and may be redistributed. Please include this metadata record in any redistributions. </dt> <dt><i>Use_Constraints: </i></dt> <dd><pre id="fixvalue">Users should be aware that this is an interim release. May contain defects and have horizontal accuracy less than the specified tolerances. Imagery may be replaced to address defects found in a small number of products through quality assurance processes. Imagery containing defects that require the acquisition of new imagery, such as excessive cloud cover, specular reflectance, etc., will not be replaced within a NAIP project year.</pre></dd> <dt><i>Point_of_Contact: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Organization_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Organization: </i>Aerial Photography Field Office (APFO)</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">2222 West 2300 South</pre></dd> <dt><i>City: </i>Salt Lake City</dt> <dt><i>State_or_Province: </i>Utah</dt> <dt><i>Postal_Code: </i>84119-2020</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>801-975-3503</dt> <dt><i>Contact_Facsimile_Telephone: </i>801-975-3532</dt> <dt><i>Contact_Electronic_Mail_Address: </i>apfo.sales@slc.usda.gov</dt> </dl> </dd> </dl> </dd> <dt><i>Browse_Graphic: </i></dt> <dd> <dl> <dt><i>Browse_Graphic_File_Name: </i><a target="viewer" href="http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2006naipfullview.jpg">http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2006naipfullview.jpg</a></dt> <dt><i>Browse_Graphic_File_Description: </i></dt> <dd>Full view of Connecticut 2006 NAIP Color Orthophoto</dd> <dt><i>Browse_Graphic_File_Type: </i>JPEG</dt> </dl> </dd> <dt><i>Browse_Graphic: </i></dt> <dd> <dl> <dt><i>Browse_Graphic_File_Name: </i><a target="viewer" href="http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2006naipdetailview.jpg">http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2006naipdetailview.jpg</a></dt> <dt><i>Browse_Graphic_File_Description: </i></dt> <dd>Detail view of Connecticut 2006 NAIP Color Orthophoto within vicinity of the University of Connecticut at Avery Point in Groton, Connecticut.</dd> <dt><i>Browse_Graphic_File_Type: </i>JPEG</dt> </dl> </dd> <dt><i>Security_Information: </i></dt> <dd> <dl> <dt><i>Security_Classification_System: </i>None</dt> <dt><i>Security_Classification: </i>Unclassified</dt> <dt><i>Security_Handling_Description: </i>No restrictions for handling the data.</dt> </dl> </dd> <dt><i>Native_Data_Set_Environment: </i></dt> <dd>The statewide raster mosaic is maintained by the State of Connecticut using ArcGIS software developed by Environmental Systems Research Institute (ESRI) in a Microsoft Windows operating system environment.</dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Data_Quality_Information"><hr></a><dl> <dt><i>Data_Quality_Information: </i></dt> <dd> <dl> <dt><i>Logical_Consistency_Report: </i></dt> <dd><pre id="fixvalue">None</pre></dd> <dt><i>Completeness_Report: </i></dt> <dd><pre id="fixvalue">None</pre></dd> <dt><i>Positional_Accuracy: </i></dt> <dd> <dl> <dt><i>Horizontal_Positional_Accuracy: </i></dt> <dd> <dl> <dt><i>Horizontal_Positional_Accuracy_Report: </i></dt> <dd><pre id="fixvalue">FSA Digital Orthophoto Specs.</pre></dd> </dl> </dd> <dt><i>Vertical_Positional_Accuracy: </i></dt> <dd> <dl> </dl> </dd> </dl> </dd> <dt><i>Lineage: </i></dt> <dd> <dl> <dt><i>Source_Information: </i></dt> <dd> <dl> <dt><i>Source_Citation: </i></dt> <dd> <dl> <dt><i>Citation_Information: </i></dt> <dd> <dl> <dt><i>Originator: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> <dt><i>Publication_Date: </i>2007</dt> <dt><i>Title: </i></dt> <dd>NAIP 2006 Digital Orthophoto Quarter Quadrangle (DOQQ) Images</dd> <dt><i>Geospatial_Data_Presentation_Form: </i>remote-sensing image</dt> <dt><i>Publication_Information: </i></dt> <dd> <dl> <dt><i>Publication_Place: </i>Salt Lake City, Utah</dt> <dt><i>Publisher: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> </dl> </dd> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.fsa.usda.gov/FSA/">http://www.fsa.usda.gov/FSA/</a></dt> </dl> </dd> </dl> </dd> <dt><i>Source_Scale_Denominator: </i>40000</dt> <dt><i>Type_of_Source_Media: </i>Digital Linear Tape (DLT)</dt> <dt><i>Source_Time_Period_of_Content: </i></dt> <dd> <dl> <dt><i>Time_Period_Information: </i></dt> <dd> <dl> <dt><i>Multiple_Dates/Times: </i></dt> <dd> <dl> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060716</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060717</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060805</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060813</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060814</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060816</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Source_Currentness_Reference: </i></dt> <dd>Aerial Photography Date for aerial photo source.</dd> </dl> </dd> <dt><i>Source_Citation_Abbreviation: </i></dt> <dd>Georectifed Image</dd> <dt><i>Source_Contribution: </i></dt> <dd><pre id="fixvalue">Digital Georectifed Image (2006 NAIP 1 meter DOQQ). Each image is in GeoTIFF format. Depending in the location, NAIP quarter quads are either in NAD 1983 UTM Zone 18N or NAD 1983 UTM Zone 19N coordinate system. UTM Zones 18N and 19N encompass portions of Connecticut. NAIP DOQQ (3.75 minute tile) file names are based on the USGS quadrangle naming convention.</pre></dd> </dl> </dd> <dt><i>Source_Information: </i></dt> <dd> <dl> <dt><i>Source_Citation: </i></dt> <dd> <dl> <dt><i>Citation_Information: </i></dt> <dd> <dl> <dt><i>Originator: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> <dt><i>Originator: </i>State of Connecticut, Department of Environmental Protection</dt> <dt><i>Publication_Date: </i>20080122</dt> <dt><i>Title: </i></dt> <dd>Connecticut 2006 NAIP Color Orthophoto</dd> <dt><i>Geospatial_Data_Presentation_Form: </i>raster digital data</dt> <dt><i>Publication_Information: </i></dt> <dd> <dl> <dt><i>Publication_Place: </i>Salt Lake City, Utah</dt> <dt><i>Publisher: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> </dl> </dd> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.ct.gov/dep">http://www.ct.gov/dep</a></dt> </dl> </dd> </dl> </dd> <dt><i>Source_Scale_Denominator: </i>40000</dt> <dt><i>Type_of_Source_Media: </i>disc</dt> <dt><i>Source_Time_Period_of_Content: </i></dt> <dd> <dl> <dt><i>Time_Period_Information: </i></dt> <dd> <dl> <dt><i>Multiple_Dates/Times: </i></dt> <dd> <dl> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060716</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060717</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060805</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060813</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060814</dt> </dl> </dd> <dt><i>Single_Date/Time: </i></dt> <dd> <dl> <dt><i>Calendar_Date: </i>20060816</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Source_Currentness_Reference: </i></dt> <dd>Aerial Photography Date for aerial photo source.</dd> </dl> </dd> <dt><i>Source_Citation_Abbreviation: </i></dt> <dd>Mosaic</dd> <dt><i>Source_Contribution: </i></dt> <dd><pre id="fixvalue">Statewide raster mosaic of all NAIP DOQQ input rasters. The raster mosaic is in the Connecticut State Plane Coordinate System, North American Datum of 1983 (NAD83).</pre></dd> </dl> </dd> <dt><i>Process_Step: </i></dt> <dd> <dl> <dt><i>Process_Description: </i></dt> <dd><pre id="fixvalue">The imagery was collected at a flying height of 28000 ft above mean terrain with 20% sidelap using an ADS40 digital sensor, giving the collected data nominal ground sampling distance of 0.9 meters. Collected data was downloaded to portable hard drives and shipped to the processing facility daily. Airborne GPS / IMU data was processed and reviewed to ensure sufficient accuracy for project requirements. Planar rectified images were generated from the collected data for use in image quality review. The planar rectified images were generated at five meter resolution using a two standard deviation histogram stretch. Factors considered during this review included but were not limited to the presence of smoke and/or cloud cover, contrails, light conditions and sun glint. Aerotriangulation blocks were defined primarily by order of acquisition and consisted of one to ten strips. Terrain points providing the observations for the least squares bundle adjustment were selected from the images using an autocorrelation algorithm. Photogrammetric control consisted of photo identifiable points selected from base imagery provided by USDA FSA APFO. Elevations for the control points were sampled from USGS NED DEMs. The control points were loaded in to a softcopy workstation and measured in the collected imagery. A least squares bundle adjustment of terrain points, control points and the ABGPS was performed to develop an aerotriangulation solution for each block. Precedence was given to the photo identifiable control points over control provided by the ABGPS solution in the bundle adjustment to ensure the final solution would agree with the provided base imagery within the required tolerances. The triangulated strips were ortho-rectified to the USGS NED DEM for the project area. The images were re-sampled from the raw resolution of 0.9 meters to the required resolution of 1.0 meters using a cubic convolution filter during the process. The red, green and blue bands were combined to generate a final ortho-rectified image strip. The ADS40 sensor collects twelve bit image data which requires radiometric adjustment for output in standard eight bit image channels. The ortho-rectified image strips were produced with the full 12 bit data range, allowing radiometric adjustment to 8 bit range to be performed on a strip by strip basis during the final mosaicing steps. The imagery was mosaicked using a combination of automated and manual seamline generation. The 12 bit data range was adjusted for display in standard eight bit image channels by defining a piecewise histogram stretch. A constant stretch was defined for each image collection period, and then strip by strip adjustments were made as needed to account for changes in sun angle and azimuth during the collection period. Automated balancing algorithms were applied to account for bi-directional reflectance as a final step before the conversion to 8 bit data range. APFO specified DOQQs were extracted from the final mosaic in GeoTIFF format. Final DOQQs were reviewed for artifacts and anomalies and adjusted as part of quality control procedures. When necessary, local corrections to the imagery were performed to minimize the effects of such artifacts. GeoTIFF tags for the appropriate UTM zone were then applied to all images.</pre></dd> <dt><i>Process_Date: </i>20061207</dt> <dt><i>Source_Produced_Citation_Abbreviation: </i></dt> <dd>Georectifed Image</dd> </dl> </dd> <dt><i>Process_Step: </i></dt> <dd> <dl> <dt><i>Process_Description: </i></dt> <dd><pre id="fixvalue">Using ESRI ArcGIS 9.2 software, an empty raster dataset was created and subequently populated with input rasters to create a statewide raster mosaic. The State of Connecticut, Department of Environmental Protection obtained these input rasters from the Tolland State Office of the NRCS at 344 Merrow Road, Suite A, Tolland, Connecticut 06084-3917. STEP 1 - Create Raster Dataset - The Coordinate System for the raster dataset is NAD_1983_StatePlane_Connecticut_FIPS_0600_Feet. The image compression type is JPEG with a compression quality of 90. The Pyramid Reference Point X and Y coordinate are 687800 and 1015180, respectively. Bands: 3. Pyramids: 8 Bilinear. The Pixel Type is 8_BIT_UNSIGNED, which supports index values from 0 to 255. Raster statistics were not built. Below is a record of the ESRI Geoprocessing CreateRasterDataset command and arguments that created the empty raster dataset. CreateRasterDataset "Database Connections\10.18.8.94.depgisraster@DEP_Direct.sde" Ortho_2006_Color_Load # 8_BIT_UNSIGNED PROJCS['NAD_1983_StatePlane_Connecticut_FIPS_0600_Feet', GEOGCS['GCS_North_American_1983', DATUM['D_North_American_1983', SPHEROID['GRS_1980',6378137.0,298.257222101]], PRIMEM['Greenwich',0.0], UNIT['Degree',0.0174532925199433]], PROJECTION['Lambert_Conformal_Conic'], PARAMETER['False_Easting',999999.999996], PARAMETER['False_Northing',499999.999998], PARAMETER['Central_Meridian',-72.75], PARAMETER['Standard_Parallel_1',41.2], PARAMETER['Standard_Parallel_2',41.86666666666667], PARAMETER['Latitude_Of_Origin',40.83333333333334], UNIT['Foot_US',0.3048006096012192]] 3 DEPRASTER "PYRAMIDS 8 BILINEAR" "128 128" "JPEG 90" "687800 1015180" "Database Connections\10.18.8.94.depgisraster@DEP_Direct.sde\depgisraster.DEP.Ortho_2006_Color"\ STEP 2 - Mosaic 410 of 411 quarter quadrangle input rasters that cover Connecticut. Due to poor image quality, one quarter quad, Amenia SE (n_4107312_se_18_1_20060731_20070319.tif), was not included in the statewide mosaic. The Ignore Background Value was set to one (1). The NoData value was left blank. The Mosaicking Tolerance value was set to zero (0). Consequently, pixel values in the raster mosaic resulted from a resampling of pixels values from individual input rasters due to the difference in alignment of input and mosaic (target) pixels. Note, in the resulting mosaic, the input rasters in NAD 1983 UTM Zone 18N Meters and NAD 1983 UTM Zone 19N Meters were projected to NAD 1983 StatePlane Connecticut FIPS 0600 Feet. Below is an example usage of the ESRI Geoprocessing Mosaic command and arguments used to mosaic 8 (quarter quadrangle) input rasters in TIFF format. Mosaic D:\tif_fomat\42073\n_4207361_se_18_1_20060716_20070201.tif D:\tif_fomat\42073\n_4207361_sw_18_1_20060716_20070201.tif; D:\tif_fomat\42073\n_4207362_se_18_1_20060805_20070201.tif; D:\tif_fomat\42073\n_4207362_sw_18_1_20060805_20070201.tif; D:\tif_fomat\42073\n_4207363_se_18_1_20060814_20070201.tif; D:\tif_fomat\42073\n_4207363_sw_18_1_20060814_20070201.tif; D:\tif_fomat\42073\n_4207364_se_18_1_20060814_20070201.tif; D:\tif_fomat\42073\n_4207364_sw_18_1_20060814_20070201.tif "Database Connections\depdbs11.depgisraster@DEP.sde \DEPGISRASTER.DEP.ORTHO_2006_COLOR_LOAD" LAST FIRST 1 # NONE 0 "Database Connections\depdbs11.depgisraster@DEP.sde \DEPGISRASTER.DEP.ORTHO_2006_COLOR_LOAD"</pre></dd> <dt><i>Source_Used_Citation_Abbreviation: </i></dt> <dd>Georectifed Image</dd> <dt><i>Process_Date: </i>20080219</dt> <dt><i>Process_Time: </i>090215</dt> <dt><i>Source_Produced_Citation_Abbreviation: </i></dt> <dd>Mosaic</dd> <dt><i>Process_Contact: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Organization_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Organization: </i>State of Connecticut, Department of Environmental Protection</dt> <dt><i>Contact_Person: </i>Howie Sternberg</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">79 Elm Street</pre></dd> <dt><i>City: </i>Hartford</dt> <dt><i>State_or_Province: </i>Connecticut</dt> <dt><i>Postal_Code: </i>06106</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>860-424-3594</dt> <dt><i>Contact_Facsimile_Telephone: </i>860-424-4058</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Process_Step: </i></dt> <dd> <dl> <dt><i>Process_Description: </i></dt> <dd><pre id="fixvalue">Copied data from ArcSDE 9.2 raster dataset to FileGeodatabase 9.2 raster dataset format for data distribution purposes. The image properties for the FileGeodatabase 9.2 raster dataset are the same as those for the version of the data in ArcSDE. The image compression type is JPEG with a compression quality of 90. Pyramids: 8 Bilinear. The Pixel Type is 8_BIT_UNSIGNED, which supports index values from 0 to 255. Bands: 1. Raster statistics were not built. Below is a record of the ESRI Geoprocessing CopyRaster command and arguments used in copying the data. CopyRaster "Database Connections\10.18.8.60.depgis@depview_92dc.sde\DEPGIS.DEP.ORTHO_2006_COLOR_NAIP" C:\Raster_format\Connecticut_Ortho_2006_NAIP.gdb\Ortho_2006_Color_NAIP DEFAULTS # # NONE NONE 8_BIT_UNSIGNED On 04/29/09 the FileGeodatabase was subsequently upgraded to version 9.3.</pre></dd> <dt><i>Source_Used_Citation_Abbreviation: </i></dt> <dd>Mosaic</dd> <dt><i>Process_Date: </i>042909</dt> <dt><i>Source_Produced_Citation_Abbreviation: </i></dt> <dd>Mosaic</dd> <dt><i>Process_Contact: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Organization_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Organization: </i>State of Connecticut, Department of Environmental Protection</dt> <dt><i>Contact_Person: </i>Howie Sternberg</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">79 Elm Street</pre></dd> <dt><i>City: </i>Hartford</dt> <dt><i>State_or_Province: </i>Connecticut</dt> <dt><i>Postal_Code: </i>06106</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>860-424-3540</dt> <dt><i>Contact_Facsimile_Telephone: </i>860-424-4058</dt> </dl> </dd> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Cloud_Cover: </i>10</dt> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Spatial_Data_Organization_Information"><hr></a><dl> <dt><i>Spatial_Data_Organization_Information: </i></dt> <dd> <dl> <dt><i>Direct_Spatial_Reference_Method: </i>Raster</dt> <dt><i>Raster_Object_Information: </i></dt> <dd> <dl> <dt><i>Raster_Object_Type: </i>Pixel</dt> <dt><i>Row_Count: </i>123445</dt> <dt><i>Column_Count: </i>163226</dt> <dt><i>Vertical_Count: </i>1</dt> </dl> </dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Spatial_Reference_Information"><hr></a><dl> <dt><i>Spatial_Reference_Information: </i></dt> <dd> <dl> <dt><i>Horizontal_Coordinate_System_Definition: </i></dt> <dd> <dl> <dt><i>Planar: </i></dt> <dd> <dl> <dt><i>Map_Projection: </i></dt> <dd> <dl> <dt><i>Map_Projection_Name: </i>Lambert Conformal Conic</dt> <dt><i>Lambert_Conformal_Conic: </i></dt>Lambert Conformal Conic<dd> <dl> <dt><i>Standard_Parallel: </i>41.200000</dt> <dt><i>Standard_Parallel: </i>41.866667</dt> <dt><i>Longitude_of_Central_Meridian: </i>-72.750000</dt> <dt><i>Latitude_of_Projection_Origin: </i>40.833333</dt> <dt><i>False_Easting: </i>999999.999996</dt> <dt><i>False_Northing: </i>499999.999998</dt> </dl> </dd> </dl> </dd> <dt><i>Planar_Coordinate_Information: </i></dt> <dd> <dl> <dt><i>Planar_Coordinate_Encoding_Method: </i>row and column</dt> <dt><i>Coordinate_Representation: </i></dt> <dd> <dl> <dt><i>Abscissa_Resolution: </i>3.391634</dt> <dt><i>Ordinate_Resolution: </i>3.346918</dt> </dl> </dd> <dt><i>Planar_Distance_Units: </i>survey feet</dt> </dl> </dd> </dl> </dd> <dt><i>Geodetic_Model: </i></dt> <dd> <dl> <dt><i>Horizontal_Datum_Name: </i>North American Datum of 1983</dt> <dt><i>Ellipsoid_Name: </i>Geodetic Reference System 80</dt> <dt><i>Semi-major_Axis: </i>6378137.000000</dt> <dt><i>Denominator_of_Flattening_Ratio: </i>298.257222</dt> </dl> </dd> </dl> </dd> <dt><i>Vertical_Coordinate_System_Definition: </i></dt> <dd> <dl> <dt><i>Altitude_System_Definition: </i></dt> <dd> <dl> <dt><i>Altitude_Resolution: </i>1.000000</dt> <dt><i>Altitude_Encoding_Method: </i>Explicit elevation coordinate included with horizontal coordinates</dt> </dl> </dd> </dl> </dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Entity_and_Attribute_Information"><hr></a><dl> <dt><i>Entity_and_Attribute_Information: </i></dt> <dd> <dl> <dt><i>Overview_Description: </i></dt> <dd> <dl> <dt><i>Entity_and_Attribute_Overview: </i></dt> <dd><pre id="fixvalue">24-bit pixels, 3 band color(RGB) values 0 - 255</pre></dd> <dt><i>Entity_and_Attribute_Detail_Citation: </i></dt> <dd><pre id="fixvalue">None.</pre></dd> </dl> </dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Distributor1"><hr></a><dl> <dt><i>Distribution_Information: </i></dt> <dd> <dl> <dt><i>Distributor: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Person_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Person: </i>Supervisor Customer Services Section</dt> <dt><i>Contact_Organization: </i>USDA-FSA-APFO Aerial Photography Field Office</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">2222 West 2300 South</pre></dd> <dt><i>City: </i>Salt Lake City</dt> <dt><i>State_or_Province: </i>Utah</dt> <dt><i>Postal_Code: </i>84119-2020</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>801-975-3503</dt> <dt><i>Contact_Facsimile_Telephone: </i>801-975-3532</dt> <dt><i>Contact_Electronic_Mail_Address: </i>apfo.sales@slc.usda.gov</dt> </dl> </dd> </dl> </dd> <dt><i>Resource_Description: </i>1 meter NAIP 2006 quarter quadrangles (QQ's)</dt> <dt><i>Distribution_Liability: </i></dt> <dd><pre id="fixvalue">In no event shall the creators, custodians, or distributors of this information be liable for any damages arising out of its use (or the inability to use it).</pre></dd> <dt><i>Standard_Order_Process: </i></dt> <dd> <dl> <dt><i>Digital_Form: </i></dt> <dd> <dl> <dt><i>Digital_Transfer_Information: </i></dt> <dd> <dl> <dt><i>Format_Name: </i>Georeferenced Tagged Image File Format</dt> <dt><i>Format_Information_Content: </i></dt> <dd><pre id="fixvalue">Natural Color</pre></dd> </dl> </dd> <dt><i>Digital_Transfer_Option: </i></dt> <dd> <dl> <dt><i>Offline_Option: </i></dt> <dd> <dl> <dt><i>Offline_Media: </i>CD-ROM</dt> <dt><i>Recording_Format: </i>ISO 9660 Mode 1 Level 2 Extensions</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Fees: </i>Contact the Aerial Photography Field Office for more information</dt> </dl> </dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Distributor2"><hr></a><dl> <dt><i>Distribution_Information: </i></dt> <dd> <dl> <dt><i>Distributor: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Organization_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Organization: </i>State of Connecticut, Department of Environmental Protection</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">79 Elm Street</pre></dd> <dt><i>City: </i>Hartford</dt> <dt><i>State_or_Province: </i>Connecticut</dt> <dt><i>Postal_Code: </i>06106</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>860-424-3540</dt> <dt><i>Contact_Facsimile_Telephone: </i>860-424-4058</dt> <dt><i>Contact_Electronic_Mail_Address: </i>dep.gisdata@po.state.ct.us</dt> <dt><i>Hours_of_Service: </i>Monday to Friday, 08:30 to 16:30 Eastern Standard Time</dt> </dl> </dd> </dl> </dd> <dt><i>Resource_Description: </i>Connecticut 2006 NAIP Color Orthophoto (statewide mosaic)</dt> <dt><i>Distribution_Liability: </i></dt> <dd><pre id="fixvalue">Although these data have been used by the State of Connecticut, no warranty, expressed or implied, is made by the State of Connecticut as to the accuracy of these data and or related materials. The act of distribution shall not constitute any such warranty, and no responsibility is assumed by the State of Connecticut in the use of these data or related materials. The user assumes the entire risk related to the use of these data. Once the data is distributed to the user, modifications made to the data by the user should be noted in the metadata.</pre></dd> <dt><i>Standard_Order_Process: </i></dt> <dd> <dl> <dt><i>Digital_Form: </i></dt> <dd> <dl> <dt><i>Digital_Transfer_Information: </i></dt> <dd> <dl> <dt><i>Format_Name: </i>File Geodatabase Raster Dataset (statewide mosaic)</dt> <dt><i>Format_Version_Number: </i>9.2</dt> <dt><i>Format_Specification: </i></dt> <dd><pre id="fixvalue">Raster Dataset</pre></dd> <dt><i>Format_Information_Content: </i></dt> <dd><pre id="fixvalue">Natural Color</pre></dd> </dl> </dd> <dt><i>Digital_Transfer_Option: </i></dt> <dd> <dl> <dt><i>Offline_Option: </i></dt> <dd> <dl> <dt><i>Offline_Media: </i>disk</dt> </dl> </dd> </dl> </dd> </dl> </dd> <dt><i>Fees: </i>An offline copy of the data may be accessed without charge</dt> </dl> </dd> <dt><i>Custom_Order_Process: </i></dt> <dd><pre id="fixvalue">The data distributor does not provide custom GIS analysis or mapping services. Data is available in a standard format and may be converted to other formats, projections, coordinate systems, or selected for specific geographic regions by the party receiving the data.</pre></dd> <dt><i>Technical_Prerequisites: </i></dt> <dd>Geographic information sytem (GIS), computer-aided drawing or other mapping software is necessary to display, view and access the information.</dd> </dl> </dd> </dl><a href="#Top">Back to Top</a><a name="Metadata_Reference_Information"><hr></a><dl> <dt><i>Metadata_Reference_Information: </i></dt> <dd> <dl> <dt><i>Metadata_Date: </i>20090429</dt> <dt><i>Metadata_Contact: </i></dt> <dd> <dl> <dt><i>Contact_Information: </i></dt> <dd> <dl> <dt><i>Contact_Organization_Primary: </i></dt> <dd> <dl> <dt><i>Contact_Organization: </i>USDA-FSA-APFO Aerial Photography Field Office. (Original metadata provided by USDA was modified by Howie Sternberg of CT DEP to document the process undertaken to create and distribute a statewide mosaic)</dt> <dt><i>Contact_Person: </i>not specified</dt> </dl> </dd> <dt><i>Contact_Address: </i></dt> <dd> <dl> <dt><i>Address_Type: </i>mailing and physical address</dt> <dt><i>Address: </i></dt> <dd><pre id="fixvalue">2222 West 2300 South</pre></dd> <dt><i>City: </i>Salt Lake City</dt> <dt><i>State_or_Province: </i>Utah</dt> <dt><i>Postal_Code: </i>84119-2020</dt> <dt><i>Country: </i>USA</dt> </dl> </dd> <dt><i>Contact_Voice_Telephone: </i>801-975-3503</dt> </dl> </dd> </dl> </dd> <dt><i>Metadata_Standard_Name: </i>FGDC Content Standards for Digital Geospatial Metadata</dt> <dt><i>Metadata_Standard_Version: </i>FGDC-STD-001-1998</dt> <dt><i>Metadata_Time_Convention: </i>local time</dt> <dt><i>Metadata_Access_Constraints: </i>None. No restrictions or legal prerequisites for accessing the metadata.</dt> <dt><i>Metadata_Use_Constraints: </i></dt> <dd>None. No restrictions or legal prerequisites for using the metadata after access is granted.</dd> <dt><i>Metadata_Security_Information: </i></dt> <dd> <dl> <dt><i>Metadata_Security_Classification_System: </i>None</dt> <dt><i>Metadata_Security_Classification: </i>Unclassified</dt> <dt><i>Metadata_Security_Handling_Description: </i></dt> <dd>No restrictions for handling the metadata</dd> </dl> </dd> <dt><i>Metadata_Extensions: </i></dt> <dd> <dl> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.esri.com/metadata/esriprof80.html">http://www.esri.com/metadata/esriprof80.html</a></dt> <dt><i>Profile_Name: </i>ESRI Metadata Profile</dt> </dl> </dd> <dt><i>Metadata_Extensions: </i></dt> <dd> <dl> <dt><i>Online_Linkage: </i><a target="viewer" href="http://www.esri.com/metadata/esriprof80.html">http://www.esri.com/metadata/esriprof80.html</a></dt> <dt><i>Profile_Name: </i>ESRI Metadata Profile</dt> </dl> </dd> </dl> </dd> </dl><a href="#Top">Back to Top</a></body> </html>