Skip to content

Commit 118adef

Browse files
committed
update OGC services [build_translations]
1 parent 19a1aed commit 118adef

15 files changed

Lines changed: 887 additions & 207 deletions

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __getattr__(cls, name):
5050
#extensions = ['labels', 'sphinxcontrib.spelling']
5151

5252
extensions = ['labels', 'sphinx.ext.autodoc', 'sphinx.ext.autosummary', 'sphinx.ext.viewcode'
53-
, 'sphinxcontrib.jquery', 'sphinx_copybutton']
53+
, 'sphinxcontrib.jquery', 'sphinx_copybutton', 'sphinx_collapse']
5454

5555
autosummary_generate = True # when True create a page for each mapscript class
5656

en/images/qgis-add-wcs-layer.png

30.3 KB
Loading

en/images/qgis-add-wcs-layer2.png

45.1 KB
Loading

en/images/wcs-index1.png

39 KB
Loading

en/images/wcs-index2.png

45.6 KB
Loading

en/ogc/ogc_api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Example 2. On Windows:
117117
::
118118

119119
C:\ms4w> mapserv -v
120-
MapServer version 8.7.0-dev (MS4W 5.2.0) PROJ version 9.8
120+
MapServer version 8.7-dev (MS4W 5.2.0) PROJ version 9.8
121121
GDAL version 3.13 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ SUPPORTS=AGG
122122
SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS SUPPORTS=SVGCAIRO
123123
SUPPORTS=ICONV SUPPORTS=FRIBIDI SUPPORTS=WMS_SERVER SUPPORTS=WMS_CLIENT

en/ogc/sos_server.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Example 2. On Windows:
9797
.. code-block:: bash
9898

9999
C:\ms4w> mapserv -v
100-
MapServer version 8.7.0-dev (MS4W 5.2.0) PROJ version 9.9
100+
MapServer version 8.7-dev (MS4W 5.2.0) PROJ version 9.9
101101
GDAL version 3.13 OUTPUT=PNG OUTPUT=JPEG OUTPUT=KML SUPPORTS=PROJ
102102
SUPPORTS=AGG SUPPORTS=FREETYPE SUPPORTS=CAIRO SUPPORTS=SVG_SYMBOLS
103103
SUPPORTS=SVGCAIRO SUPPORTS=ICONV SUPPORTS=FRIBIDI SUPPORTS=WMS_SERVER

en/ogc/wcs_format.txt

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
:Contact: nbarker at ittvis.com
1212
:Author: Gail Millin
1313
:Contact: nbarker at ittvis.com
14-
:Last Updated: 2026-04-09
14+
:Author: Jeff McKenna
15+
:Contact: jmckenna at gatewaygeomatics.com
16+
:Last Updated: 2026-04-13
1517

1618

1719
.. contents::
@@ -24,6 +26,8 @@ Steve Lime and Frank Warmerdam for their assistance with these projects
2426

2527
It also shows how to configure MapServer for GRIB2 output format.
2628

29+
.. seealso:: :ref:`WCS Server HowTo <wcs_server>`
30+
2731
Landsat
2832
=======
2933

@@ -273,16 +277,23 @@ Define your output format as
273277
EXTENSION 'tif'
274278
END
275279

276-
Then you need to define your tile index within the map file
280+
Then you need to define your tile index within the mapfile.
281+
282+
.. NOTE::
283+
You must setup a :ref:`VALIDATION <validation>` block for MapServer to
284+
properly pass the *time* values in the WCS request.
277285

278286
.. code-block:: mapfile
279287

280288
LAYER
281289
NAME 'time_idx'
282290
TYPE TILEINDEX
283-
DATA 'timeIndex'
284-
FILTERITEM 'time'
285-
FILTER '%time%'
291+
DATA 'timeIndex.shp'
292+
FILTER ("[time]" = '%time%')
293+
VALIDATION
294+
#handle time values of format YYYY-MM-DDT00:00:00
295+
'time' '^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$'
296+
END
286297
END
287298

288299
and the actual layer

0 commit comments

Comments
 (0)