diff --git a/CHANGELOG.md b/CHANGELOG.md index 182f1ea7..b356c795 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ Changelog ## 1.11.0-SNAPSHOT (current main) +### Other +* Fix filter documentation ([#326]) + +[#326]: https://github.com/GIScience/ohsome-api/pull/326 + ## 1.10.2 diff --git a/docs/filter.rst b/docs/filter.rst index dbdddd81..97d7e117 100644 --- a/docs/filter.rst +++ b/docs/filter.rst @@ -45,10 +45,10 @@ Selectors | ``id:osm-type/osm-id`` | matches the entity with the given | ``id:node/1234`` | | | osm type and id | | +------------------------------------+------------------------------------+-----------------------------------+ - | ``id:(id list)`` | matches all entities with the | ``id:(1, 42, 1234)`` | + | ``id:(osm-id list)`` | matches all entities with the | ``id:(1, 42, 1234)`` | | | given osm ids [1]_ | | +------------------------------------+------------------------------------+-----------------------------------+ - | ``id:(id list)`` | matches all entities with the | ``id:(node/1, way/3)`` | + | ``id:(osm-type/osm-id list)`` | matches all entities with the | ``id:(node/1, way/3)`` | | | given osm types and ids | | +------------------------------------+------------------------------------+-----------------------------------+ | ``id:(id range)`` | matches all entities with an id | ``id:(1 .. 9999)`` |