Skip to content

Commit

Permalink
Add more documentation and examples about dlt operator (#42)
Browse files Browse the repository at this point in the history
* Add more documentation and examples about `dlt` operator

* add dlt docs to swagger
  • Loading branch information
lukmay authored Nov 7, 2024
1 parent 4a41264 commit b9ff3ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ A `filter` has the form `alias.operator.value_or_list`.
covered by the box)
- `bbc`: Bounding box containing objects (e.g. a station or street, that is
completely covered by the box)
- `dlt`: Within distance from point (e.g. all stations within a 5 km radius from point X)
- `dlt`: Within distance from point (e.g. all stations within a 5 km radius from point X)
[Learn more and see examples.](https://github.com/noi-techpark/odh-docs/wiki/Time-series-API-filter-operators#dlt-operator)
- `in`: True, if the value of the alias can be found within the given list.
Example: `name.in.(Patrick,Rudi,Peter)`
- `nin`: False, if the value of the alias can be found within the given list.
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/openapi3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ components:
- nire: Negated Insensitive Regular Expression
- bbi: Bounding box intersecting objects (ex., a street that is only partially covered by the box). Syntax? See below.
- bbc: Bounding box containing objects (ex., a station or street, that is completely covered by the box). Syntax? See below.
- dlt: Within distance (in meters) from point. Syntax? See below.
- dlt: Within distance (in meters) from point. [Learn more and see examples](https://github.com/noi-techpark/odh-docs/wiki/Time-series-API-filter-operators#dlt-operator)
- in: True, if the value of the alias can be found within the given list. Example: name.in.(Peter,Patrick,Rudi)
- nin: False, if the value of the alias can be found within the given list. Example: name.nin.(Peter,Patrick,Rudi)
Expand Down

0 comments on commit b9ff3ae

Please sign in to comment.