I've been building a WMS service for time series data following this
tutorial:
Everything is fine and my GetMap function work well and all the maps are
loaded according to their data. The problem is when I want to use the
GetFeatureInfo function. if I use it to retrieve the feature value of a
point for a single date it works well, but if I try to add the time range
parameter I only get the feature info of the starting date.
I've always used the time range in this way for all wms service I used. Now
that I'm trying to build my own WMS service I get this problem. I've enabled
the time dimension setting the presentation value to List.
Here in the following the layer properties retrieved with GetCapabilities:
<Layer queryable="1" opaque="0">
<Name>9_S_int</Name>
<Title>CMEMS_int_S</Title>
<Abstract/>
<KeywordList>
<Keyword>CMEMS_int_S</Keyword>
<Keyword>WCS</Keyword>
<Keyword>ImageMosaic</Keyword>
</KeywordList>
<CRS>EPSG:4326</CRS>
<CRS>CRS:84</CRS>
<EX_GeographicBoundingBox>
<westBoundLongitude>-83.8750025510788</westBoundLongitude>
<eastBoundLongitude>-63.79166538715362</eastBoundLongitude>
<southBoundLatitude>-55.70833460489909</southBoundLatitude>
<northBoundLatitude>-35.62500127156576</northBoundLatitude>
</EX_GeographicBoundingBox>
<BoundingBox CRS="CRS:84" minx="-83.8750025510788"
miny="-55.70833460489909" maxx="-63.79166538715362"
maxy="-35.62500127156576"/>
<BoundingBox CRS="EPSG:4326" minx="-55.70833460489909"
miny="-83.8750025510788" maxx="-35.62500127156576"
maxy="-63.79166538715362"/>
<Dimension name="time" default="current"
units="ISO8601">2018-08-08T00:00:00.000Z,2018-08-09T00:00:00.000Z,2018-08-10T00:00:00.000Z,2018-08-11T00:00:00.000Z,2018-08-14T00:00:00.000Z</Dimension>
</Layer>
Are there other properties I should check to enable the time range
capability?
--
Sent from: http://osgeo-org.1560.x6.nabble.com/GeoServer-User-f3786390.html