ÿþ<html> <head> <META http-equiv="Content-Type" content="text/html; charset=UTF-16"> <title>2005 Connecticut Coastal Color Infrared Aerial Photography Project</title> <link rel="schema.dc" href="http://dublincore.org/documents/dces/"> <meta name="dc.title" content="2005 Connecticut Coastal Color Infrared Aerial Photography Project"> <meta name="dc.title" content="2005 Connecticut Coastal Color Infrared Aerial Photography Project"> <meta name="dc.creator" content="James W. Sewall Company (data compiler)"> <meta name="dc.creator" content="State of Connecticut Department of Environmental Protection (data maintainer and publisher)"> <meta name="dc.creator" content="James W. Sewall Company is the collector and creator of the data (compiler). The State of Connecticut Department of Environmental Protection is maintainer and producer (publisher) of this data for use."> <meta name="dc.subject" content="imageryBaseMapsEarthCover"> <meta name="dc.description" content="Coastal Connecticut 2005 Color Infrared Orthophoto is a set of 1:12,000-scale orthorectified imagery. These data were compiled from a set of 1129 individual tide controlled vertical aerial photos taken over six distinct days during June 15 to September 15, 2005. The 2005 Connecticut Coastal Color Infrared Aerial Photography Project which captured these photos covers the geographic extent of Connecticut defined by : * all land areas within one-thousand (1000) feet of Mean High Water (MHW) and within one-thousand (1000) feet of state-regulated tidal wetlands; * an area of at least two-thousand (2000) feet waterward of the immediate shoreline of Long Island Sound in order to clearly depict the interface between the shorelands and coastal waters; * all offshore islands within the territorial borders of the State of Connecticut including Goose Island and Falkner Island (offshore of Branford); Calf Islands and Great Captain Island (offshore of Greenwich); Norwalk Islands (offshore of Norwalk); Thimble Islands (offshore of Branford); Sandy Point (offshore of Stonington); and all islands in the Connecticut part of Fishers Island Sound; and * the main stem of the Connecticut River up to the Massachusetts State line. The individual aerial photos were scanned, orthorectifed, and mosaicked into grid-based system. The geographic extent of each digital orthophoto is equivalent to 3¾ minutes of latitude and longitude, plus a little overlap based on US Geological Survey (USGS) Quarter Quads. Typically USGS Quarter Quads are comprised of four sections per 7½ minute USGS Quadrangle map area - one for the northeast, northwest, southeast, and southwest sections. For this project, since the extent of the area photographed may not cover an entire quarter quad section there are cases where there is either no data for parts of a section or no section at all. Naming conventions follow standard USGS fomat, i.e., Q1234_ne, Q1234_nw, Q1234_se, Q1234_sw, etc. The ground resolution of the imagery is approximately 1 ft per pixel. Data is compiled at 1:12,000 scale. This data is not updated."> <meta name="dc.publisher" content="State of Connecticut Department of Environmental Protection"> <meta name="dc.contributor" content="James W. Sewall Co. of Old Town, Maine was contracted by the State of Connecticut to perform the 2005 Connecticut Coastal Color Infrared Aerial Photography Project. All imagery and data products were defined under State of Connecticut contract award number 05PSX0128AA."> <meta name="dc.date" content="20070712"> <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.ct.gov/dep"> <meta name="dc.source" content="Coastal Connecticut 2005 Color Infrared Orthophoto"> <meta name="dc.lang" content="en"> <meta name="dc.coverage.x.min" scheme="DD" content="-73.703859"> <meta name="dc.coverage.x.max" scheme="DD" content="-71.801598"> <meta name="dc.coverage.y.min" scheme="DD" content="40.936511"> <meta name="dc.coverage.y.max" scheme="DD" content="42.062680"> <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: No restrictions or legal prerequisites for using the data. The data is suitable for use at appropriate scale, and is not intended for maps printed at scales greater or more detailed than 1:12,000 scale (1 inch = 1,000 feet). Although this data set has been used by the State of Connecticut, Department of Environmental Protection, no warranty, expressed or implied, is made by the State of Connecticut, Department of Environmental Protection as to the accuracy of the 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, Department of Environmental Protection 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. When printing this data on a map or using it in a software application, analysis, or report, please acknowledge the State of Connecticut, Department of Environmental Protection as the source for this information. For example, include the following data source description when printing this layer on a map: &quot;2005 Connecticut Coastal Color Infrared Digital Orthophotography, compiled by James W. Sewall Co. and published by the State of Connecticut, Department of Environmental Protection. Source map scale is 1:12,000.&quot;"><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> <body> <div style="text-align:right; width:100%"><a href="FileGDB_ortho_2005_coast_infrared_FGDC_Classic.htm">FGDC Classic</a> | FGDC FAQ | <a href="FileGDB_ortho_2005_coast_infrared_FGDC_Plus.htm">FGDC Plus</a> | <a href="FileGDB_ortho_2005_coast_infrared.xml">XML</a></div> <hr> <h1>2005 Connecticut Coastal Color Infrared Aerial Photography Project</h1> <h2>Frequently-asked questions:</h2> <ul> <li><a href="#what">What does this data set describe?</a><ol> <li><a href="#what.1">How should this data set be cited?</a></li> <li><a href="#what.2">What geographic area does the data set cover?</a></li> <li><a href="#what.3">What does it look like?</a></li> <li><a href="#what.4">Does the data set describe conditions during a particular time period?</a></li> <li><a href="#what.5">What is the general form of this data set?</a></li> <li><a href="#what.6">How does the data set represent geographic features?</a></li> <li><a href="#what.7">How does the data set describe geographic features?</a></li> </ol> </li> <li><a href="#who">Who produced the data set?</a><ol> <li><a href="#who.1">Who are the originators of the data set?</a></li> <li><a href="#who.2">Who also contributed to the data set?</a></li> <li><a href="#who.3">To whom should users address questions about the data?</a></li> </ol> </li> <li><a href="#why">Why was the data set created?</a></li> <li><a href="#how">How was the data set created?</a><ol> <li><a href="#how.1">Where did the data come from?</a></li> <li><a href="#how.2">What changes have been made?</a></li> </ol> </li> <li><a href="#quality">How reliable are the data; what problems remain in the data set?</a><ol> <li><a href="#quality.1">How well have the observations been checked?</a></li> <li><a href="#quality.2">How accurate are the geographic locations?</a></li> <li><a href="#quality.3">How accurate are the heights or depths?</a></li> <li><a href="#quality.4">Where are the gaps in the data? What is missing?</a></li> <li><a href="#quality.5">How consistent are the relationships among the data, including topology?</a></li> </ol> </li> <li><a href="#getacopy">How can someone get a copy of the data set?</a><ol> <li><a href="#getacopy.0">Are there legal restrictions on access or use of the data?</a></li> <li><a href="#getacopy.1">Who distributes the data?</a></li> <li><a href="#getacopy.2">What's the catalog number I need to order this data set?</a></li> <li><a href="#getacopy.3">What legal disclaimers am I supposed to read?</a></li> <li><a href="#getacopy.4">How can I download or order the data?</a></li> <li><a href="#getacopy.5">Is there some other way to get the data?</a></li> <li><a href="#getacopy.6">What hardware or software do I need in order to use the data set?</a></li> </ol> </li> <li><a href="#metaref">Who wrote the metadata?</a></li> </ul> <hr><a name="what"><h3>What does this data set describe?</h3></a><div style="margin-left:20"> <div><i>Title: </i></div> <div style="margin-left:40">2005 Connecticut Coastal Color Infrared Aerial Photography Project</div><br><div><i>Abstract: </i></div> <div style="margin-left:40"> <pre id="fixvalue">Coastal Connecticut 2005 Color Infrared Orthophoto is a set of 1:12,000-scale orthorectified imagery. These data were compiled from a set of 1129 individual tide controlled vertical aerial photos taken over six distinct days during June 15 to September 15, 2005. The 2005 Connecticut Coastal Color Infrared Aerial Photography Project which captured these photos covers the geographic extent of Connecticut defined by : * all land areas within one-thousand (1000) feet of Mean High Water (MHW) and within one-thousand (1000) feet of state-regulated tidal wetlands; * an area of at least two-thousand (2000) feet waterward of the immediate shoreline of Long Island Sound in order to clearly depict the interface between the shorelands and coastal waters; * all offshore islands within the territorial borders of the State of Connecticut including Goose Island and Falkner Island (offshore of Branford); Calf Islands and Great Captain Island (offshore of Greenwich); Norwalk Islands (offshore of Norwalk); Thimble Islands (offshore of Branford); Sandy Point (offshore of Stonington); and all islands in the Connecticut part of Fishers Island Sound; and * the main stem of the Connecticut River up to the Massachusetts State line. The individual aerial photos were scanned, orthorectifed, and mosaicked into grid-based system. The geographic extent of each digital orthophoto is equivalent to 3¾ minutes of latitude and longitude, plus a little overlap based on US Geological Survey (USGS) Quarter Quads. Typically USGS Quarter Quads are comprised of four sections per 7½ minute USGS Quadrangle map area - one for the northeast, northwest, southeast, and southwest sections. For this project, since the extent of the area photographed may not cover an entire quarter quad section there are cases where there is either no data for parts of a section or no section at all. Naming conventions follow standard USGS fomat, i.e., Q1234_ne, Q1234_nw, Q1234_se, Q1234_sw, etc. The ground resolution of the imagery is approximately 1 ft per pixel. Data is compiled at 1:12,000 scale. This data is not updated.</pre> </div><br><div><i>Supplemental information: </i></div> <div style="margin-left:40"> <pre id="fixvalue">A digital orthophoto is a digital image of an aerial photograph in which displacements caused by the camera and the terrain have been removed. It combines the image characteristics of a photograph with the geometric qualities of a map. A digital orthophoto has the same scale throughout and can be used as a map for measuring distances, calculating areas, determining the shape of features, and reading coordinate locations, for example. Digital orthophotos provide the necessary background (base map) layer information to which other spatial data layers are registered or created. The process of creating an orthophoto, orthorectification, corrects the geometry of a aerial photo image so that it appears as though each pixel were acquired from directly overhead. Orthorectification uses elevation data to correct terrain distortion in aerial or satellite imagery. To maximize the quality of the images and their contents, photography for the 2005 Connecticut Coastal Color Infrared Aerial Photography Project conformed to the following environmental conditions: * photos were only taken during times of no/minimal cloud cover when lighting and weather conditions optimized the color infrared film; * solar altitude was more than thirty (30) degrees; * the ground detail was not obscured by flooding; * the foliage (salt marsh vegetation in particular) was fully developed; * seasonal conditions (summer) favored maximum human use/recreation activities (e.g., boats &amp; temporary docks/structures in water, etc.); * photo times were planned within one (1) hour window before or after a predicted low tide based on National Oceanic &amp; Atmospheric Administration (NOAA) predicted tide tables. (In instances where this window caused conflicts with the general restricted hours, tide coordination times superceded that limitation); and * no photography was flown between the hours 1100 and 1300 Eastern Standard Time (EST) to minimize specular reflection. The photos exist as 1:12,000 orthorectified color infrared images. Color infrared photography, often called false color photography because it renders the scene in other than the normal colors seen by the human eye, is widely used for interpretation of natural resources. Atmospheric haze does not interfere with the acquisition of the image, therefore is well suited to aerial photography. Because the film is high speed and subject to degrees of degradation in handling before exposure, the aerial photographs can vary in overall tone. This variability can complicate the interpretation of color tones between photographs, but some general guidelines can be given to aid the inexperienced interpreter. * The red tone of color infrared aerial photographs is almost always associated with live vegetation. Very intense reds indicate vegetation which is growing vigorously and is quite dense. Knowledge of the vigor and density of vegetation is important to the interpretation of the red colors on color infrared aerial photography. * As the vigor and density of vegetation decreases, the tones may change to light reds and pinks. If plant density becomes low enough the faint reds may be overcome by the tones of the soils on which the plants are growing. The ground areas in this case will appear in shades of white, blue, or green depending on the kind of soil and its moisture content. As plant vigor decreases, the vegetation will show as lighter shades of red and pink, various shades of greens, and possible tans. Dead vegetation will often be shades of greens or tans. * Bare soils will appear as shades of white, blue, or green in most agricultural regions. In general, the more moist the soil the darker the shade of that particular soil color. Composition of the soil will affect the color tones shown on the photographs. Dry sand will appear white and, with more moisture, may be very light gray or possibly light tan. Clayey soils will generally be darker in color than sands and tend toward tans and bluegreens. Again, wetter clays will be darker shades of the same tones. Soils high in organic matter, like silts and loams will be even darker in color, and usually in shades of blues and greens. Wet organic soils can be very dark blue or green in the aerial photographs. * Man-made features will show in the tones that relate to the materials they are made of. Asphalt roads, for example, will be dark blue or black, gravel or dirt roads will show as lighter colors, depending on the soil materials involved in their composition, and concrete roads will appear light in tone, assuming clean concrete. The buildings and streets of towns can be considered in a similar manner, their color dependent on the material they are made of. * Water will appear as shades of blue, varying from nearly black to very pale blue. Clear, clean water will appear nearly black. As the amount of sediment increases, the color becomes increasingly lighter blue. Very shallow water will often appear as the material present in the bottom of the stream. For example, a very shallow stream with a sandy bottom will appear white due to the high level of reflection of the sand. * Degraded film will result in photographs which have an overall blue or green cast. When that occurs, the interpretation must consider what that overall cast will do to a "normal" rendition of the scene. (Description and guidelines for color infrared photography taken from the United States Geological Survey Aerial Photo FAQ web page, http://edc.usgs.gov/guides/news/aerialfaq.htmlt#A10)</pre> </div><br></div> <ol> <li><a name="what.1"><b>How should this data set be cited?</b></a><br><br><div style="margin-left:20; margin-right:40">James W. Sewall Company (data compiler), State of Connecticut Department of Environmental Protection (data maintainer and publisher), 20070712, 2005 Connecticut Coastal Color Infrared Aerial Photography Project: State of Connecticut Department of Environmental Protection, Hartford, Connecticut USA. </div><br><div style="margin-left:20"><i>Online links: </i><ul> <li TYPE="disc"><a target="viewer" href="http://www.ct.gov/dep">http://www.ct.gov/dep</a></li> </ul><br></div> <div style="margin-left:20"><i>Other citation details: </i><div style="margin-left:40">This is a set of digital color infrared imagery collected and compiled during the 2005 Connecticut Coastal Color Infrared Aerial Photography Project by James W. Sewall, Co. for the State of Connecticut Department of Environmental Protection. </div><br></div> <div style="margin-left:20"> <div>This is part of the following larger work:</div><br><div style="margin-left:40"><div style="margin-left:20; margin-right:40">James W. Sewall Company is the collector and creator of the data (compiler). The State of Connecticut Department of Environmental Protection is maintainer and producer (publisher) of this data for use., Winter/Spring 2006, 2005 Connecticut Coastal Color Infrared Aerial Photography Project. </div><br><div style="margin-left:20"><i>Other citation details: </i><div style="margin-left:40">The 2005 Connecticut Coastal Color Infrared Aerial Photography Project includes the following products: 1129 individual original color infrared film transparencies; 1129 individual digital scans of the color infrared transparencies; 1129 contact prints of the digital scans; 1:50,000 scale Black &amp; White Photo Indices of the project area; color infrared digital orthophotos based on USGS Digital Ortho Quarter Quad boundaries; GIS photo centers of the individual photos.</div><br></div> </div> </div> </li> <li><a name="what.2"><b>What geographic area does the data set cover?</b></a><br><br><div style="margin-left:20"> <div>Bounding coordinates:</div> <div style="margin-left:40"> <div><i>West: </i>-73.703859</div><div><i>East: </i>-71.801598</div><div><i>North: </i>42.062680</div><div><i>South: </i>40.936511</div></div> </div><br></li> <li><a name="what.3"><b>What does it look like?</b></a><br><br><div style="margin-left:20"> <div><a target="viewer" href="http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2005coastfullview.jpg">http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2005coastfullview.jpg</a> (JPEG) </div> <div style="margin-left:40">Full view of Coastal Connecticut 2005 Color Infrared Orthophoto</div> </div><br><div style="margin-left:20"> <div><a target="viewer" href="http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2005coastdetailview.jpg">http://www.cteco.uconn.edu/metadata/dep/browsegraphic/orthophoto2005coastdetailview.jpg</a> (JPEG) </div> <div style="margin-left:40">Detail view of Coastal Connecticut 2005 Color Infrared Orthophoto within vicinity of the University of Connecticut at Avery Point in Groton, Connecticut.</div> </div><br></li> <li><a name="what.4"><b>Does the data set describe conditions during a particular time period?</b></a><br><br><div style="margin-left:20"><i>Calendar date: </i>7/12/2005</div> <div style="margin-left:20"><i>Calendar date: </i>7/12/2005</div> <div style="margin-left:20"><i>Calendar date: </i>7/26/2005</div> <div style="margin-left:20"><i>Calendar date: </i>8/3/2005</div> <div style="margin-left:20"><i>Calendar date: </i>8/25/2005</div> <div style="margin-left:20"><i>Calendar date: </i>8/25/2005</div> <div style="margin-left:20"><i>Calendar date: </i>9/2/2005</div> <div style="margin-left:20"><i>Calendar date: </i>9/10/2005</div> <div style="margin-left:20"><i>Currentness reference: </i></div> <div style="margin-left:60"> <pre id="fixvalue">date of photography</pre> </div><br></li> <li><a name="what.5"><b>What is the general form of this data set?</b></a><br><br><div style="margin-left:20"><i>Geospatial data presentation form: </i>Fgdb raster digital data</div><br></li> <li><a name="what.6"><b>How does the data set represent geographic features?</b></a><br><br><ol TYPE="a"> <li><b>How are geographic features stored in the data set?</b><br><br><div style="margin-left:20"> This is a Raster data set. It contains the following raster data types: <ul> <li> Dimensions 408949 x 516598 x 1, type Pixel</li> </ul> </div><br></li> <li><b>What coordinate system is used to represent geographic features?</b><br><br><div style="margin-left:20"> <div>The map projection used is Lambert Conformal Conic.</div><br><div>Projection parameters: </div>Lambert Conformal Conic<div style="margin-left:40"> <div><i>Standard parallel: </i>41.200000</div> <div><i>Standard parallel: </i>41.866667</div> <div><i>Longitude of central meridian: </i>-72.750000</div> <div><i>Latitude of projection origin: </i>40.833333</div> <div><i>False easting: </i>999999.999996</div> <div><i>False northing: </i>499999.999998</div> </div><br><div>Planar coordinates are encoded using row and column.</div><div>Abscissae (x-coordinates) are specified to the nearest 1.000000.</div><div>Ordinates (y-coordinates) are specified to the nearest 1.000000.</div><div>Planar coordinates are specified in survey feet.</div><br><div>The horizontal datum used is North American Datum of 1983.</div><div>The ellipsoid used is Geodetic Reference System 80.</div><div>The semi-major axis of the ellipsoid used is 6378137.000000.</div><div>The flattening of the ellipsoid used is 1/298.257222.</div><br> Vertical coordinate system definition: <div style="margin-left:20"> Altitude system definition: <div style="margin-left:40"> <div><i>Altitude datum name: </i>National Geodetic Vertical Datum of 1929</div><div><i>Altitude resolution: </i>1.000000</div><div><i>Altitude distance units: </i>feet</div><div><i>Altitude encoding method: </i>Explicit elevation coordinate included with horizontal coordinates</div></div> </div><br></div> </li> </ol> </li> <li><a name="what.7"><b>How does the data set describe geographic features?</b></a><br><br></li> </ol><a href="#Top">Back to Top</a><hr><a name="who"><h3>Who produced the data set?</h3></a><ol> <li><a name="who.1"><b>Who are the originators of the data set?</b> (may include formal authors, digital compilers, and editors)</a><br><br><ul> <li>James W. Sewall Company (data compiler)</li> <li>State of Connecticut Department of Environmental Protection (data maintainer and publisher)</li> </ul><br></li> <li><a name="who.2"><b>Who also contributed to the data set?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">James W. Sewall Co. of Old Town, Maine was contracted by the State of Connecticut to perform the 2005 Connecticut Coastal Color Infrared Aerial Photography Project. All imagery and data products were defined under State of Connecticut contract award number 05PSX0128AA.</pre> </div><br></li> <li><a name="who.3"><b>To whom should users address questions about the data?</b></a><br><br><div style="margin-left:20"> <div>Kevin O'Brien</div><div>State of Connecticut Department of Environmental Protection</div><div><pre id="fixvalue">79 Elm St.</pre></div> <div>Hartford, CT 06106-5127</div> <div>US</div><br><div>860-424-3034 (voice)</div><div>860-424-4054 (FAX)</div><div>dep.gisdata@po.state.ct.us </div><div><i>Hours of Service: </i>Monday to Friday, 08:30 to 16:30 Eastern Standard Time </div></div> </li> </ol><a href="#Top">Back to Top</a><hr><a name="why"><h3>Why was the data set created?</h3></a><div style="margin-left:20"> <pre id="fixvalue">2005 Connecticut Coastal Color Infrared Digital Orthophotography is 1:12,000-scale data. It depicts land use, natural resources, vegetation, and other features and characteristics in the immediate shoreline areas of Connecticut during the summer of 2005. Use this layer as a basemap for depicting coastal features/landscapes, as a source for georeferencing other imagery or data, or to analyze the landscape, features, or activities of the coastal area. </pre> </div><br><a href="#Top">Back to Top</a><hr><a name="how"><h3>How was the data set created?</h3></a><ol> <li><a name="how.1"><b>Where did the data come from?</b></a><br><br><div style="margin-left:20"> <div><b>Source 1 - 2005 CT Coastal CIR Aerial Photos</b> (source 1 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">James W. Sewall Company is the collector and creator of the data (compiler). The State of Connecticut Department of Environmental Protection is maintainer and producer (publisher) of this data for use., Winter/Spring 2006, 2005 Connecticut Coastal Color Infrared Aerial Photos. </div><br></div> <div style="margin-left:40"><i>Type of source media: </i>stable-base material</div> <div style="margin-left:40"><i>Source scale denominator: </i>12000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">Original photos on aerial photography grade color infrared film. Used to create the digital scans. Final product deliverable.</pre> </div> </div><br><div style="margin-left:20"> <div><b>Source 2 - Digital Scans of 2005 CT Coastal CIR Aerial Photos</b> (source 2 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">James W. Sewall Company is the collector and creator of the data (compiler). The State of Connecticut Department of Environmental Protection is maintainer and producer (publisher) of this data for use., Winter/Spring 2006, Digital Scans of 2005 Connecticut Coastal Color Infrared Aerial Photos. </div><br></div> <div style="margin-left:40"><i>Type of source media: </i>digital imagery</div> <div style="margin-left:40"><i>Source scale denominator: </i>12000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">Digital scans of the original film used during the orthorectification and mosaicking processes and in the creation of the contact prints. Final product deliverable.</pre> </div> </div><br><div style="margin-left:20"> <div><b>Source 3 - 2005 Coastal CT Aerial Photography Flight Data</b> (source 3 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">James W. Sewall Company is the collector and creator of the data (compiler)., Unpublished Material, 2005 Connecticut Coastal Aerial Photography Flight Data. </div><br></div> <div style="margin-left:40"><i>Type of source media: </i>computer program</div> <div style="margin-left:40"><i>Source scale denominator: </i>12000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">Used as triangulation controls during the orthorectification process.</pre> </div> </div><br><div style="margin-left:20"> <div><b>Source 4 - USGS NED Connecticut DEM</b> (source 4 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">The United States Geological Survey is the collector of the data (compiler), the creator and maintainer of the data layer (editor), and producer (publisher) of this information for use. Data compiled at 1:24,000 scale., before February, 2005, United States Geological Survey National Elevation Dataset Digital Elevation Model for Connecticut. </div><br><div style="margin-left:20"><i>Online links: </i><ul> <li TYPE="disc"><a target="viewer" href="http://ned.usgs.gov/">http://ned.usgs.gov/</a></li> </ul><br></div> </div> <div style="margin-left:40"><i>Type of source media: </i>computer program</div> <div style="margin-left:40"><i>Source scale denominator: </i>24000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">Used to correct aerial photography. Removes image displacements caused by camera tilt and relief of terrain.</pre> </div> </div><br><div style="margin-left:20"> <div><b>Source 5 - 2005 CT Coastal CIR Digital Orthos</b> (source 5 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">James W. Sewall Company is the collector and creator of the data (compiler). The State of Connecticut Department of Environmental Protection is maintainer and producer (publisher) of this data for use., Winter/Spring 2006, 2005 Connecticut Coastal Color Infrared Digital Orthophotos. </div><br><div style="margin-left:20"><i>Online links: </i><ul> <li TYPE="disc"><a target="viewer" href="http://www.ct.gov/dep">http://www.ct.gov/dep</a></li> </ul><br></div> </div> <div style="margin-left:40"><i>Type of source media: </i>digital imagery</div> <div style="margin-left:40"><i>Source scale denominator: </i>12000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">Final product deliverable.</pre> </div> </div><br><div style="margin-left:20"> <div><b>Source 6 - 2005 CT Coastal CIR Digital Orthophoto mosaic</b> (source 6 of 6) </div><br><div style="margin-left:20"> <div style="margin-left:20; margin-right:40">State of Connecticut, Department of Environmental Protection, 20090605, Coastal Connecticut 2005 Color Infrared Orthophoto. </div><br><div style="margin-left:20"><i>Online links: </i><ul> <li TYPE="disc"><a target="viewer" href="http://www.ct.gov/dep">http://www.ct.gov/dep</a></li> </ul><br></div> </div> <div style="margin-left:40"><i>Type of source media: </i>disc</div> <div style="margin-left:40"><i>Source scale denominator: </i>12000</div> <div style="margin-left:40"><i>Source contribution: </i></div> <div style="margin-left:80"> <pre id="fixvalue">ESRI Raster Dataset mosaic of all input rasters delivered.</pre> </div> </div><br></li> <li><a name="how.2"><b>What changes have been made?</b></a><br><br><div style="margin-left:20"> <div><i>Date: </i>June 15 - September 15 2005 (change 1 of 5) </div> <div style="margin-left:40"> <pre id="fixvalue">Aerial Flight: Overview: A set of 1129 individual aerial photos were taken over six distinct days during June 15 to September 15, 2005. The geographic extent of the photography includes: * all land areas within one-thousand (1000) feet of Mean High Water (MHW) and within one-thousand (1000) feet of state-regulated tidal wetlands; * an area of at least two-thousand (2000) feet waterward of the immediate shoreline of Long Island Sound in order to clearly depict the interface between the shorelands and coastal waters; * all offshore islands within the territorial borders of the State of Connecticut including Goose Island and Falkner Island (offshore of Branford); Calf Islands and Great Captain Island (offshore of Greenwich); Norwalk Islands (offshore of Norwalk); Thimble Islands (offshore of Branford); Sandy Point (offshore of Stonington); and all islands in the Connecticut part of Fishers Island Sound; and * the main stem of the Connecticut River up to the Massachusetts State line. Project Specifications: * Scale - Flown at altitudes suitable to produce photography at a scale of 1:12000 (1inch = 1000 ft) (Recommended tolerance of +/- 5%) * Timing - Photography was only taken during times of no/minimal cloud cover when lighting and weather conditions were such that color infrared film suited for the desired use of the imagery were optimized; No photography was flown between the hours 1100 and 1300 Eastern Standard Time (EST) to minimize specular reflection. Seasonal conditions (summer) favored maximum human use/recreation activities (e.g., boats &amp; temporary docks/structures in water, etc.) * Solar Angle - Solar altitude was more than thirty (30) degrees; * Ground Conditions - Ground detail was not obscured by flooding; Foliage (salt marsh vegetation in particular) was fully developed (i.e., leaf-on conditions) * Tide Control - All photography was taken within a one (1) hour window before or after low tide based on NOAA predicted tide tables. (In instances where this window caused conflicts with the general restricted hours, tide coordination times superceded that limitation.) * Sidelap - ~30% (Recommended Tolerance of 25% +/- 10%) * Endlap - ~60% (Recommended Tolerance between 57 - 62%) * Crabbing - No more than 5 degrees for two or more consecutive photos * Tilt - Not to exceed 4 degrees for any photo, 2 degrees for any 10 mile flight line, 1 degree for entire project Flight Info: Aerial photos taken over 6 flights during the window of June 15 to September 15, 2005. All photography also included Global Positioning System (GPS) logging of photo centers. Flight details described below: Flight #1 - (2 planes) * Date: 7/12/2005 * Time: 07:31 - 08:58 (EST) * Aircraft #: N14012 * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 142826 * Magazine Serial #: 117938 * Focal Length (mm): 153.549 * # Flight Lines: 4 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-012) * Roll #: 1 * Date: 7/12/2005 * Time: 07:44 - 08:42 (EST) * Aircraft #: N3520X * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 144126 * Magazine Serial #: 145781 * Focal Length (mm): 153.328 * # Flight Lines: 6 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-01/03) * Roll #: 2 Flight #2 - * Date: 7/26/2005 * Time: 08:07 - 09:09 (EST) * Aircraft #: N3520X * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 144126 * Magazine Serial #: 145781 * Focal Length (mm): 153.328 * # Flight Lines: 6 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-01/03) * Roll #: 3 Flight #3 - * Date: 8/3/2005 * Time: 10:07 - 10:43 (EST) * Aircraft #: N3520X * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 144126 * Magazine Serial #: 145781 * Focal Length (mm): 153.328 * # Flight Lines: 4 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-01/02) * Roll #: 4 Flight #4 - (2 planes) * Date: 8/25/2005 * Time: 08:04 - 09:42 (EST) * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Aircraft #: N3520X * Camera Serial #: 144126 * Magazine Serial #: 145781 * Focal Length (mm): 153.328 * # Flight Lines: 8 (includes reflights for recapture due to shadows/other reasons) * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-04/02) * Roll #: 5 * Date: 8/25/2005 * Time: 08:09 - 09:56 (EST) * Aircraft #: N14012 * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 142826 * Magazine Serial #: 117938 * Focal Length (mm): 153.549 * # Flight Lines: 8 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-01/01) * Roll #: 6 Flight #5 - * Date: 9/2/2005 * Time: 13:47 - 14:42 (EST) * Aircraft #: N3520X * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 144126 * Magazine Serial #: 36295 * Focal Length (mm): 153.328 * # Flight Lines: 4 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-04/02) * Roll #: 7 Flight #6 - * Date: 9/10/2005 * Time: 08:04 - 08:15 (EST) * Aircraft #: N3520X * Camera Type: Zeiss RMK-A 15/23 6 inch (F-4) with Forward Motion Compensation (FMC) * Camera Serial #: 144126 * Magazine Serial #: 145781 * Focal Length (mm): 153.328 * # Flight Lines: 2 * Film: Kodak Aerochrome III Infrared Film 1443 (1443-1411-011-01-01/02) * Roll #: 8 All flight photography was QA/QC inspected by James W. Sewall Co. prior to shipment to the State of Connecticut, Department of Environmental Protection for final QA/QC. In instances where photos were unacceptable to due to excessive cloud cover, sun reflections or other environmental factors, these areas were reflown. All flight data was recorded POS/AV-DG Inertial Measurement Units.</pre> </div><br><div style="margin-left:40"><i>Person responsible for change: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Robert Riley</div><div>James W. Sewall Company</div><div>207-827-4456*318 (voice)</div><div>rilr@jws.com</div></div> </div> </div><br><div style="margin-left:40"><i>Data sources used in this process: </i><ul> <li TYPE="disc">Source 1 - 2005 CT Coastal CIR Aerial Photos</li> <li TYPE="disc">Source 3 - 2005 Coastal CT Aerial Photography Flight Data</li> </ul> </div><br><div style="margin-left:40"><i>Data sources produced in this process: </i><ul> <li TYPE="disc">Source 1 - 2005 CT Coastal CIR Aerial Photos</li> <li TYPE="disc">Source 3 - 2005 Coastal CT Aerial Photography Flight Data</li> </ul> </div><br></div> <div style="margin-left:20"> <div><i>Date: </i>Fall/Winter 2005 (change 2 of 5) </div> <div style="margin-left:40"> <pre id="fixvalue">Aerial Film Processing: Development: Following intial QA/QC process by James W. Sewall Co. and the final QA/QC by the State of Connecticut Department of Environmental Protection, each final film roll was processed by James W. Sewall Co. photo lab technicians. Photo Labeling: After processing, each photo was annotated with the following information: * A numerical abbreviation of the month, day, and year of the exposure (MM/DD/YYYY); * The roll number; * The flight line number; * The exposure number; and * The photo scale The rolls of film were numbered consecutively. Further, the exposure numbers began at one (1) and ran consecutively until the final photo number of the entire project (1129), thus ensuring consecutive and unique numbering for each photo. In addition to the items listed above, the first and last exposures of each flight line also show: * The flight height above mean ground in feet; * The time of exposure (in terms of a twenty-four (24) hour clock set on Eastern Standard Time); and The Zeiss RMK-A 15/23 Camera and CCNS4 Flight Management System also provided additional flight data for each photo. This included: * Date: (YYMMDD) * Time: Greenwich Mean Time (GMT) 24 hr format * Contractor Project ID Number * Location * Flight Line/Line exposure Number/Direction of Flight (degrees) * North Arrow * Contractor Name * Camera F-stop &amp; shutter speed * Latitude/Longitude (Decimal degrees) * Altitude (ft) * Camera Exposure Number Sleeving: Once all film was scanned and the orthophotos were created and delivered, the film rolls were cut and sleeved into transparent archive quality photo envelopes. Each sleeve was labeled with the roll number, flight line number, and unique exposure number.</pre> </div><br><div style="margin-left:40"><i>Person responsible for change: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Robert Riley</div><div>James W. Sewall Company</div><div>207-827-4456*318 (voice)</div><div>rilr@jws.com</div></div> </div> </div><br><div style="margin-left:40"><i>Data sources used in this process: </i><ul> <li TYPE="disc">Source 1 - 2005 CT Coastal CIR Aerial Photos</li> </ul> </div><br><div style="margin-left:40"><i>Data sources produced in this process: </i><ul> <li TYPE="disc">Source 1 - 2005 CT Coastal CIR Aerial Photos</li> </ul> </div><br></div> <div style="margin-left:20"> <div><i>Date: </i>Fall 2005 (change 3 of 5) </div> <div style="margin-left:40"> <pre id="fixvalue">Aerial Film Scanning: Film was roll scanned on Vexcel 4000 HT photogrammetric scanners at 1000 DPI.</pre> </div><br><div style="margin-left:40"><i>Person responsible for change: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Robert Riley</div><div>James W. Sewall Company</div><div>207-827-4456*318 (voice)</div><div>rilr@jws.com</div></div> </div> </div><br><div style="margin-left:40"><i>Data sources used in this process: </i><ul> <li TYPE="disc">Source 1 - 2005 CT Coastal CIR Aerial Photos</li> </ul> </div><br><div style="margin-left:40"><i>Data sources produced in this process: </i><ul> <li TYPE="disc">Source 2 - Digital Scans of 2005 CT Coastal CIR Aerial Photos</li> </ul> </div><br></div> <div style="margin-left:20"> <div><i>Date: </i>Fall 2005 (change 4 of 5) </div> <div style="margin-left:40"> <pre id="fixvalue">Orthorectification, Mosaicking, &amp; Color Balancing: Orthorectification: Orthophotos combine the image characteristics of a photograph with the geometric qualities of a map. They are created by scanning an aerial photography transparency and then digitally rectifying the scanned image to an orthographic projection. This process georeferences the image and removes image displacements caused by camera tilt and relief of terrain. The 2005 CT Coastal CIR Digital Orthophotos were generated using Inertial Measurement Unit (IMU) exterior orientation data, the scanned versions of the 2005 CT Coastal Aerial Photos and USGS 1:24,000 National Elevation Dataset (NED) Digital Elevation Model (DEM) elevation data within INPHO OrthoMaster V 1.5. Mosaicking: Once each of the photos was orthorectified, they were mosiacked into geographic extents equivalent to 3¾ minutes of latitude and longitude, plus a little overlap based on US Geological Survey (USGS) Quarter Quads. Typically USGS Quarter Quads are comprised of four sections per 7½ minute USGS Quadrangle map area - one each for the northeast, northwest, southeast, and southwest sections. For this project, since the extent of the area photographed may not include coverage for an entire quarter quad section there are cases where there is either no data for parts of a section or no section at all. The ground resolution of the final orthophoto imagery is approximately 1 ft per pixel. Mosaicking was performed in INPHO OrthoVista V 4.1. Colorbalancing: The color qualities of the photographs were affected by a variety of environmental and processing conditions that combine to alter the color and intensity of each image. When the images were mosaicked together these differences in color between images become markedly pronounced. Colorbalancing mitigates these differences, eliminating different color tones and intensities to produce a more visually seamless mosaic across many images. In this case, the color correction did not include the pixel values for large areas of water, which typically skew the results. Colorbalancing was performed in INPHO OrthoVista V 4.1. Once all the orthophotos were mosiacked in to USGS Quarter Quad boundary extents, files were created following the standard USGS fomat, i.e., Q1234_ne, Q1234_nw, Q1234_se, Q1234_sw, etc. </pre> </div><br><div style="margin-left:40"><i>Person responsible for change: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Robert Riley</div><div>James W. Sewall Company</div><div>207-827-4456*318 (voice)</div><div>rilr@jws.com</div></div> </div> </div><br><div style="margin-left:40"><i>Data sources used in this process: </i><ul> <li TYPE="disc">Source 2 - Digital Scans of 2005 CT Coastal CIR Aerial Photos</li> <li TYPE="disc">Source 3 - 2005 Coastal CT Aerial Photography Flight Data</li> <li TYPE="disc">Source 4 - USGS NED Connecticut DEM</li> </ul> </div><br><div style="margin-left:40"><i>Data sources produced in this process: </i><ul> <li TYPE="disc">Source 5 - 2005 CT Coastal CIR Digital Orthos</li> </ul> </div><br></div> <div style="margin-left:20"> <div><i>Date: </i>20090605 (change 5 of 5) </div> <div style="margin-left:40"> <pre id="fixvalue">Using ESRI ArcGIS 9.3 software, an empty raster dataset was created and subequently populated with input rasters to create a statewide raster mosaic. 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 75. The Pyramid Reference Point X and Y coordinate are 687800 and 1015180, respectively. Pyramids: 9 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 C:\Ortho_2005_Coast_CIR_FileGeodatabase\ Connecticut_Ortho_2005_Coast_Infrared.gdb ORTHO_2005_COAST_INFRARED # 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 # "PYRAMIDS 9 BILINEAR" "128 128" "JPEG 75" "687800 1015180" C:\Ortho_2005_Coast_CIR_FileGeodatabase\ Connecticut_Ortho_2005_Coast_Infrared.gdb\ORTHO_2005_COAST_INFRARED STEP 2 - Mosaic 98 input rasters. 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. Below is an example usage of the ESRI Geoprocessing Mosaic command and arguments used to mosaic quarter quadrangle input rasters. Mosaic C:\GIS\Raster\jpg_format\q0022NE.jpg; C:\GIS\Raster\jpg_format\q0022SE.jpg; C:\GIS\Raster\jpg_format\q0023NW.jpg; C:\GIS\Raster\jpg_format\q0023SW.jpg; C:\Ortho_2005_Coast_CIR_FileGeodatabase\ Connecticut_Ortho_2005_Coast_Infrared.gdb\ORTHO_2005_COAST_INFRARED LAST FIRST # # NONE 0 C:\Ortho_2005_Coast_CIR_FileGeodatabase\ Connecticut_Ortho_2005_Coast_Infrared.gdb\ORTHO_2005_COAST_INFRARED NONE</pre> </div><br><div style="margin-left:40"><i>Person responsible for change: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Howie Sternberg</div><div>State of Connecticut, Department of Environmental Protection</div><div><pre id="fixvalue">79 Elm Street</pre></div> <div>Hartford, Connecticut 06106</div> <div>USA</div><br><div>860-424-3540 (voice)</div><div>860-424-4058 (FAX)</div></div> </div> </div><br><div style="margin-left:40"><i>Data sources used in this process: </i><ul> <li TYPE="disc">Source 5 - 2005 CT Coastal CIR Digital Orthos</li> </ul> </div><br><div style="margin-left:40"><i>Data sources produced in this process: </i><ul> <li TYPE="disc">Source 6 - 2005 CT Coastal CIR Digital Orthophoto mosaic</li> </ul> </div><br></div> </li> </ol><a href="#Top">Back to Top</a><hr><a name="quality"><h3>How reliable are the data; what problems remain in the data set?</h3></a><ol> <li><a name="quality.1"><b>How well have the observations been checked?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">N/A</pre> </div><br></li> <li><a name="quality.2"><b>How accurate are the geographic locations?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">The 2005 Coastal Color Infrared Digital Orthophotography was created in part from aerial triangulation data collected during the flight as well as the 1:24:000 USGS National Elevation Dataset Digital Elevation Model (DEM) for Connecticut. Since this version of a DEM was used ton control the elevation correction, overall accuracy assessment is approximately +/- 50 ft. The State of Connecticut, Department of Environmental Protection has spot checked the 2005 Coastal Color Infrared Digital Orthophotography against existing 2004 Statewide orthophoto basemaps (1:12000 scale and 0.9 ft pixel resolution) and have found the mean accuracy of the 2005 orthophotography to be approximately +/- 9.5 feet. The assessment was performed by identifying common features (roadway markings, sidewalk corners, storm drains, corners of retaining walls, bridge abuttments, etc.) in both datasets and calculating the distances between them. In cases of the "near ground features" (i.e., not including features on bridges, buildings, or other man-made structures) horizontal accuracy increases to +/- 5.5 feet.</pre> </div><br></li> <li><a name="quality.3"><b>How accurate are the heights or depths?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">N/A</pre> </div><br></li> <li><a name="quality.4"><b>Where are the gaps in the data? What is missing?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">The completeness of the data reflects the content of the data sources, which include the 2005 Connecticut Coastal Color Infrared Aerial Photos. The 2005 Connecticut Coastal Color Infrared Digital Orthophotography layer is complete in the sense that it accurately reflects the content of the 2005 Coastal Color Infrared Aerial Photos available at the time James W. Sewall Co. created the layer. However, compared to current conditions, the 2005 Connecticut Coastal Color Infrared Digital Orthophotography layer is incomplete. This data is not updated.</pre> </div><br></li> <li><a name="quality.5"><b>How consistent are the relationships among the observations, including topology?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">N/A</pre> </div><br></li> </ol><a href="#Top">Back to Top</a><hr><a name="getacopy"><h3>How can someone get a copy of the data set?</h3></a><div style="margin-left:20"><a name="getacopy.0"><b>Are there legal restrictions on access or use of the data?</b></a><br><br><div style="margin-left:20"><i>Access constraints: </i>None. The data is in the public domain and may be redistributed. Please include this metadata record in any redistributions.</div> <div style="margin-left:20"><i>Use constraints: </i></div> <div style="margin-left:60"> <pre id="fixvalue">No restrictions or legal prerequisites for using the data. The data is suitable for use at appropriate scale, and is not intended for maps printed at scales greater or more detailed than 1:12,000 scale (1 inch = 1,000 feet). Although this data set has been used by the State of Connecticut, Department of Environmental Protection, no warranty, expressed or implied, is made by the State of Connecticut, Department of Environmental Protection as to the accuracy of the 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, Department of Environmental Protection 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. When printing this data on a map or using it in a software application, analysis, or report, please acknowledge the State of Connecticut, Department of Environmental Protection as the source for this information. For example, include the following data source description when printing this layer on a map: "2005 Connecticut Coastal Color Infrared Digital Orthophotography, compiled by James W. Sewall Co. and published by the State of Connecticut, Department of Environmental Protection. Source map scale is 1:12,000."</pre> </div><br></div><a name="Distrib1"></a><div style="margin-left:20"><b>Distributor 1</b> of 1</div><br><ol> <div style="margin-left:20"> <li><a name="getacopy.1"><b>Who distributes the data set?</b></a><br><br><div style="margin-left:20"> <div>State of Connecticut, Department of Enviromental Protection </div><div><pre id="fixvalue">79 Elm St.</pre></div> <div>Hartford, CT 06106-5127</div> <div>USA</div><br><div>860-424-3034 (voice)</div><div>860-424-4054 (FAX)</div><div>dep.gisdata@po.state.ct.us</div><div><i>Hours of Service: </i>Monday to Friday, 08:30 to 16:30 Eastern Standard Time </div></div><br></li> <li><a name="getacopy.2"><b>What's the catalog number I need to order this data set?</b></a><br><br><div style="margin-left:20">Coastal Connecticut 2005 Color Infrared Orthophoto</div><br></li> <li><a name="getacopy.3"><b>What legal disclaimers am I supposed to read?</b></a><br><br><div style="margin-left:20"> <pre id="fixvalue">The data is in the public domain and may be redistributed. No restrictions or legal prerequisites for using the data. The data is suitable for use at appropriate scale, and is not intended for maps printed at scales greater or more detailed than 1:12,000 scale (1 inch = 1,000 feet). Although this data set has been used by the State of Connecticut, Department of Environmental Protection, no warranty, expressed or implied, is made by the State of Connecticut, Department of Environmental Protection as to the accuracy of the 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, Department of Environmental Protection 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. When printing this data on a map or using it in a software application, analysis, or report, please acknowledge the State of Connecticut, Department of Environmental Protection as the source for this information. For example, include the following data source description when printing this layer on a map: 2005 Connecticut Coastal Color Infrared Digital Orthophotography, compiled by James W. Sewall Co. and published by the State of Connecticut, Department of Environmental Protection. Source map scale is 1:12,000.</pre> </div><br></li> <li><a name="getacopy.4"><b>How can I download or order the data?</b></a><br><br><ul> <li><b>Availability in digital form:</b></li><br><br><div style="margin-left:20"> <table style="border-collapse:collapse;"> <tbody> <tr> <th style="font-size: 9pt; border: solid 1px #A9A9A9; padding:4px; vertical-align:top; text-align:left;">Data format:</th> <td style="font-size: 9pt; border: solid 1px #A9A9A9; padding:4px; vertical-align:top;"> <div> in format GeoDatabase (version ArcGIS 9.3) Raster Dataset</div> </td> </tr> <tr> <th style="font-size: 9pt; border: solid 1px #A9A9A9; padding:4px; vertical-align:top; text-align:left;">Media you can order:</th> <td style="font-size: 9pt; border: solid 1px #A9A9A9; padding:4px; vertical-align:top;">disk</td> </tr> </tbody> </table> </div><br><li><b>Cost to order the data: </b>An offline copy of the data may be accessed without charge</li><br><br></ul> </li> <li><a name="getacopy.5"><b>Is there some other way to get the data?</b></a><br><br><div style="margin-left:20"> <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> </div><br></li> <li><a name="getacopy.6"><b>What hardware or software do I need in order to use the data set?</b></a><br><br><div style="margin-left:20">Geographic information sytem (GIS), computer-aided drawing or other mapping software is necessary to display, view and access the information.</div><br></li> </div> </ol><a href="#Top">Back to Top</a><hr><a name="metaref"><h3>Who wrote the metadata?</h3></a><div style="margin-left:20"> Dates:<br><div style="margin-left:40"> <div><i>Last modified: </i>20090605</div></div> </div><br><div style="margin-left:20"><i>Metadata author: </i><br><div style="margin-left:20"><div style="margin-left:20"> <div>Kevin O'Brien</div><div>State of Connecticut, Department of Environmental Protection </div><div><pre id="fixvalue">79 Elm St.</pre></div> <div>Hartford, CT 06106-5127</div> <div>USA</div><br><div>860-424-3034 (voice)</div><div>860-424-4054 (FAX)</div><div>dep.gisdata@po.state.ct.us</div><div><i>Hours of Service: </i>Monday to Friday, 08:30 to 16:30 Eastern Standard Time</div></div> </div> </div><br><div style="margin-left:20"><i>Metadata standard: </i><br><div style="margin-left:40">FGDC Content Standards for Digital Geospatial Metadata(FGDC-STD-001-1998)</div> </div><br><div style="margin-left:20"><i>Metadata extensions used: </i><br><li style="margin-left:30"><a target="viewer" href="http://www.esri.com/metadata/esriprof80.html">http://www.esri.com/metadata/esriprof80.html</a></li> </div><br><a href="#Top">Back to Top</a><br><br></body> </html>