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

Add more documentation and examples about dlt operator #42

Merged
merged 2 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
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
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
Loading