Hello,<br><br>I&#39;ve been working with mapserver to get a map with time support, time parameter, I followed the tutorial in documetation <a href="http://mapserver.org/ogc/wms_time.html">http://mapserver.org/ogc/wms_time.html</a> and this post <a href="http://osgeo-org.1803224.n2.nabble.com/Accessing-images-using-time-dimension-td1991324.html#a1991324">http://osgeo-org.1803224.n2.nabble.com/Accessing-images-using-time-dimension-td1991324.html#a1991324</a> and I can&#39;t run the mapserver to change the image with a time parameter.<br>
<br>I test several configurations but any works, the last is the same like the post in the maillist, this is what i&#39;ve done:<br><br>in a postgis database<br><br>create table satellite (image_path text, image_time timestamp); <br>
select AddGeometryColumn(&#39;satellite&#39;, &#39;the_geom&#39;, 4326, &#39;POLYGON&#39;, 2); <br><br>insert into satellite (image_path, image_time, the_geom) <br>values (&#39;/home/vbox/Downloads/animacio/sat1.tif&#39;, &#39;2007-05-11 10:00Z&#39;, GeomFromText(&#39;POLYGON((-31.82 75.55, -31.82 26.5, 51.31 26.5,51.31 75.55, -31.82 75.55))&#39;, 4326)); <br>
<br>insert into satellite (image_path, image_time, the_geom) <br>values (&#39;/home/vbox/Downloads/animacio/sat2.tif&#39;, &#39;2007-05-11 11:00Z&#39;, GeomFromText(&#39;POLYGON((-31.82 75.55, -31.82 26.5, 51.31 26.5,51.31 75.55, -31.82 75.55))&#39;, 4326)); <br>
<br><br>and the map file:<br><br> LAYER<br>    NAME    &quot;time_w&quot;<br>    TYPE    POLYGON<br>    STATUS    ON<br>    CONNECTIONTYPE  POSTGIS<br>    CONNECTION    &quot;dbname=tile_index host=127.0.0.1 user=postgres password=xxxxxx&quot;<br>
    DATA    &quot;the_geom from satellite using unique oid using srid = 4326&quot; <br>    METADATA<br>        &quot;wms_title&quot;    &quot;time_index_w&quot;<br>        &quot;wms_srs&quot;    &quot;EPSG:4326&quot;<br>        &quot;wms_timeextent&quot;    &quot;2007-01-01/2007-12-31&quot;<br>
        &quot;wms_timedefault&quot;   &quot;2007-05-11T11:00:00Z&quot; <br>        &quot;wms_timeitem&quot;    &quot;image_time&quot; #a column in postgis table of type <br>    END<br>  END<br><br>  LAYER<br>    NAME    &quot;sat_w&quot;<br>
    STATUS  ON<br>    TYPE    RASTER<br>    METADATA<br>        &quot;wms_title&quot;    &quot;Satellite&quot;<br>        &quot;wms_timeextent&quot;    &quot;2007-01-01/2007-12-31&quot;<br>    END<br>    PROJECTION<br>      &quot;init=epsg:4326&quot;<br>
    END<br>    TILEINDEX &quot;time_w&quot; # Layer name containing time index<br>    TILEITEM  &quot;image_path&quot; # DB column containing path to image <br>  END<br><br><br>anyone finds some error?<br><br><br>thanks<br>
<br>