[Geoserver-users] The requested coverage could not be found

Hi,

Having a problem with my WCS getCoverage request. Geoserver tells me this:

Jan 23, 2007 5:32:08 PM org.geotools.gce.imagemosaic.ImageMosaicReader loadTiles
WARNING: The requested envelope does not intersect the envelope of this mosaic,
we will return a null coverage.
Jan 23, 2007 5:32:08 PM org.vfny.geoserver.servlets.AbstractService doService
WARNING: service exception while executing request:
Request: null
coverage:nurc:tindex
output format:TIFF
version:1.0.0
envelope:Env[2178638.75 : 2179730.0, 1358241.25 : 1393977.5]
interpolation:null
cause: java.io.IOException: The requested coverage could not be found.
Jan 23, 2007 5:32:08 PM org.vfny.geoserver.wcs.WcsException getXmlResponse
WARNING: encountered error: java.io.IOException: The requested coverage could
not be found.

I'm pretty sure that the request envelope and coverage name are valid because
they're copied directly from the describeCoverage. My describeCoverage response
and my getCoverage requests are below. Any ideas?

Brock

<CoverageDescription version="1.0.0"
xsi:schemaLocation="http://www.opengis.net/wcs
http://schemas.opengis.net/wcs/1.0.0/describeCoverage.xsd&quot;&gt;
-
  <CoverageOffering>
<description>Generated from LeicaMosaic</description>
<name>nurc:tindex</name>
<label>tindex is a Image mosaicking plugin</label>
-
  <lonLatEnvelope srsName="urn:ogc:def:crs:OGC:1.3:CRS84">
<gml:pos>-84.5845384723754 33.7057304186668</gml:pos>
<gml:pos>-84.22567405002954 33.85959733199501</gml:pos>
</lonLatEnvelope>
-
  <keywords>
<keyword>WCS</keyword>
<keyword>LeicaMosaic</keyword>
<keyword>tindex</keyword>
</keywords>
-
  <domainSet>
-
  <spatialDomain>
-
  <gml:Envelope srsName="EPSG:26967">
<gml:pos>2169730.0 1348241.25</gml:pos>
<gml:pos>2278638.75 1403977.5</gml:pos>
</gml:Envelope>
-
  <gml:RectifiedGrid dimension="2">
-
  <gml:limits>
-
  <gml:GridEnvelope>
<gml:low>0 0 </gml:low>
<gml:high>87127 44589 </gml:high>
</gml:GridEnvelope>
</gml:limits>
<gml:axisName>X</gml:axisName>
<gml:axisName>Y</gml:axisName>
-
  <gml:origin>
<gml:pos>2169730.0 1403977.5</gml:pos>
</gml:origin>
<gml:offsetVector>1.25 0.0</gml:offsetVector>
<gml:offsetVector>0.0 -1.25</gml:offsetVector>
</gml:RectifiedGrid>
</spatialDomain>
</domainSet>
-
  <rangeSet>
-
  <RangeSet>
<name>nurc:tindex</name>
<label>tindex is a Image mosaicking plugin</label>
-
  <axisDescription>
-
  <AxisDescription>
<name>Band</name>
<label>Band</label>
-
  <values>
-
  <interval>
<min>1</min>
<max>3</max>
</interval>
</values>
</AxisDescription>
</axisDescription>
-
  <nullValues>
<singleValue>0</singleValue>
</nullValues>
</RangeSet>
</rangeSet>
-
  <supportedCRSs>
<requestResponseCRSs>EPSG:26967 </requestResponseCRSs>
</supportedCRSs>
-
  <supportedFormats nativeFormat="ImageMosaic">
<formats>GIF</formats>
<formats>PNG</formats>
<formats>JPEG</formats>
<formats>TIFF</formats>
<formats>IMAGEPYRAMID</formats>
<formats>GeoTIFF</formats>
<formats>IMAGEMOSAIC</formats>
<formats>ARCGRID</formats>
<formats>GTOPO30</formats>
</supportedFormats>
-
  <supportedInterpolations default="nearest neighbor">
<interpolationMethod>nearest neighbor</interpolationMethod>
<interpolationMethod>bilinear</interpolationMethod>
<interpolationMethod>bicubic</interpolationMethod>
</supportedInterpolations>
</CoverageOffering>
</CoverageDescription>

and.. the getCoverage request that produces the error:

<!-- Performs a get coverage. Feel free to play with the elements, -->
<!-- to get different results. -->
<GetCoverage service="WCS" version="1.0.0"
  xmlns="http://www.opengis.net/wcs&quot;
  xmlns:nurc="http://www.nurc.nato.int"
  xmlns:ogc="http://www.opengis.net/ogc&quot;
  xmlns:gml="http://www.opengis.net/gml&quot;
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance&quot;
  xsi:schemaLocation="http://www.opengis.net/wcs
http://schemas.opengis.net/wcs/1.0.0/getCoverage.xsd&quot;&gt;
  <sourceCoverage>nurc:tindex</sourceCoverage>
  <domainSubset>
    <spatialSubset>
      <gml:Envelope srsName="EPSG:26967">
        <gml:pos>2169730.0 1348241.25</gml:pos>
                                <gml:pos>2278638.75 1403977.5</gml:pos>
      </gml:Envelope>
      <gml:Grid dimension="2" srsName="EPSG:26967">
        <gml:limits>
          <gml:GridEnvelope>
            <gml:low>0 0</gml:low>
                                                <gml:high>87127 44589</gml:high>
          </gml:GridEnvelope>
        </gml:limits>
      </gml:Grid>
    </spatialSubset>
  </domainSubset>
  <rangeSubset>
    <axisSubset name="Band">
    <singleValue>1</singleValue>
    </axisSubset>
  </rangeSubset>
  <output>
      <crs>EPSG:26967</crs>
      <responseCrs>EPSG:26967</responseCrs>
      <format>TIFF</format>
  </output>
</GetCoverage>