Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow applying dimensions through WMS FILTER parameter #383

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 39 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,43 @@ The previously defined ``mime_type`` is also used in the WMS requests.

To customise the request you also have the attributes ``params``, ``headers``
and ``generate_salt``.
In ``params`` you can specify additional parameter of the WMS request,

In ``params`` you can specify additional parameter of the WMS request.
Note that ``params["FILTER"]`` behave like a template, populated with other request parameters.
This allow applying a WMS filter for dimension value.

QGIS expression filter example:

.. code-block:: yaml

layers:
layer_name:
type: wms
url: https://localhost/qgis_mapserv
layers: layer1,layer2
params:
FILTER: layer1:\"floor\" = '{floor}';
layer2:\"floor\" = '{floor}'"

OGC filter example:

.. code-block:: yaml

layers:
layer_name:
type: wms
url: https://localhost/qgis_mapserv
layers: layer1,layer2
params:
FILTER: "\
(<Filter>\
<PropertyIsEqualTo>\
<PropertyName>floor</PropertyName>\
<Literal>{FLOOR}</Literal>\
</PropertyIsEqualTo>\
</Filter>)\
()"

in ``headers`` you can modify the request headers. In ``version``, you can change the WMS version. See the
`Proxy/cache issue`_ for additional informations.

Expand Down Expand Up @@ -531,9 +567,9 @@ Alternate mime type
By default TileCloud support only the ``image/jpeg`` and ``image/png`` mime type.


----------------
---------------
Amazon services
----------------
---------------

Authentication
--------------
Expand Down