Skip to content

Commit db92c9c

Browse files
author
GitLab CI/CD
committed
Generated update for version 9.0.0. Please review before merging.
1 parent 1d50279 commit db92c9c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+259
-97
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The openrouteservice library gives you painless access to the [openrouteservice]
88

99
| API Version | Package version | Build package |
1010
| -------------- | ------------------ | ------------------ |
11-
| 8.2.0 | 8.2.0 | io.swagger.codegen.v3.generators.python.PythonClientCodegen |
11+
| 9.0.0 | 9.0.0 | io.swagger.codegen.v3.generators.python.PythonClientCodegen |
1212

1313
For further details, please visit:
1414
- our [homepage](https://openrouteservice.org)

docs/DirectionsServiceBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**maximum_speed** | **float** | The maximum speed specified by user. | [optional]
2222
**options** | [**RouteOptions**](RouteOptions.md) | | [optional]
2323
**preference** | **str** | Specifies the route preference | [optional] [default to 'recommended']
24+
**profile_name** | **str** | | [optional]
2425
**radiuses** | **list[float]** | A list of maximum distances (measured in metres) that limit the search of nearby road segments to every given waypoint. The values must be greater than 0, the value of -1 specifies using the maximum possible search radius. The number of radiuses correspond to the number of waypoints. If only a single value is given, it will be applied to all waypoints. | [optional]
2526
**roundabout_exits** | **bool** | Provides bearings of the entrance and all passed roundabout exits. Adds the `exit_bearings` array to the step object in the response. | [optional] [default to False]
2627
**schedule** | **bool** | If true, return a public transport schedule starting at <departure> for the next <schedule_duration> minutes. | [optional] [default to False]

docs/IsochronesProfileBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**location_type** | **str** | `start` treats the location(s) as starting point, `destination` as goal. | [optional] [default to 'start']
1212
**locations** | **list[list[float]]** | The locations to use for the route as an array of `longitude/latitude` pairs in WGS 84 (EPSG:4326) |
1313
**options** | [**RouteOptions**](RouteOptions.md) | | [optional]
14+
**profile_name** | **str** | | [optional]
1415
**range** | **list[float]** | Maximum range value of the analysis in **seconds** for time and **metres** for distance.Alternatively a comma separated list of specific range values. Ranges will be the same for all locations. |
1516
**range_type** | **str** | Specifies the isochrones reachability type. | [optional] [default to 'time']
1617
**smoothing** | **float** | Applies a level of generalisation to the isochrone polygons generated as a `smoothing_factor` between `0` and `100.0`. Generalisation is produced by determining a maximum length of a connecting line between two points found on the outside of a containing polygon. If the distance is larger than a threshold value, the line between the two points is removed and a smaller connecting line between other points is used. Note that the minimum length of this connecting line is ~1333m, and so when the `smoothing_factor` results in a distance smaller than this, the minimum value is used. The threshold value is determined as `(maximum_radius_of_isochrone / 100) * smoothing_factor`. Therefore, a value closer to 100 will result in a more generalised shape. The polygon generation algorithm is based on Duckham and al. (2008) `\"Efficient generation of simple polygons for characterizing the shape of a set of points in the plane.\"` | [optional]

docs/MatrixProfileBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
77
**id** | **str** | Arbitrary identification string of the request reflected in the meta information. | [optional]
88
**locations** | **list[list[float]]** | List of comma separated lists of `longitude,latitude` coordinates in WGS 84 (EPSG:4326) |
99
**metrics** | **list[str]** | Specifies a list of returned metrics. \"* `distance` - Returns distance matrix for specified points in defined `units`. * `duration` - Returns duration matrix for specified points in **seconds**. | [optional]
10+
**profile_name** | **str** | | [optional]
1011
**resolve_locations** | **bool** | Specifies whether given locations are resolved or not. If the parameter value set to `true`, every element in `destinations` and `sources` will contain a `name` element that identifies the name of the closest street. Default is `false`. | [optional] [default to False]
1112
**sources** | **list[str]** | A list of indices that refers to the list of locations (starting with `0`). `{index_1},{index_2}[,{index_N} ...]` or `all` (default). example `[0,3]` for the first and fourth locations | [optional]
1213
**units** | **str** | Specifies the distance unit. Default: m. | [optional] [default to 'm']

docs/ProfileGeojsonBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **str** | Arbitrary identification string of the request reflected in the meta information. | [optional]
77
**locations** | **list[list[float]]** | The locations to be snapped as array of `longitude/latitude` pairs. |
8+
**profile_name** | **str** | | [optional]
89
**radius** | **float** | Maximum radius in meters around given coordinates to search for graph edges. |
910

1011
[[Back to Model list]](../README.md#documentation_for_models) [[Back to API list]](../README.md#documentation_for_api_endpoints) [[Back to README]](../README.md)

docs/ProfileJsonBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **str** | Arbitrary identification string of the request reflected in the meta information. | [optional]
77
**locations** | **list[list[float]]** | The locations to be snapped as array of `longitude/latitude` pairs. |
8+
**profile_name** | **str** | | [optional]
89
**radius** | **float** | Maximum radius in meters around given coordinates to search for graph edges. |
910

1011
[[Back to Model list]](../README.md#documentation_for_models) [[Back to API list]](../README.md#documentation_for_api_endpoints) [[Back to README]](../README.md)

docs/SnapProfileBody.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**id** | **str** | Arbitrary identification string of the request reflected in the meta information. | [optional]
77
**locations** | **list[list[float]]** | The locations to be snapped as array of `longitude/latitude` pairs. |
8+
**profile_name** | **str** | | [optional]
89
**radius** | **float** | Maximum radius in meters around given coordinates to search for graph edges. |
910

1011
[[Back to Model list]](../README.md#documentation_for_models) [[Back to API list]](../README.md#documentation_for_api_endpoints) [[Back to README]](../README.md)

openrouteservice/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"""
66
Openrouteservice
77
8-
This is the openrouteservice API documentation for ORS Core-Version 8.2.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
8+
This is the openrouteservice API documentation for ORS Core-Version 9.0.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
99
10-
OpenAPI spec version: 8.2.0
10+
OpenAPI spec version: 9.0.0
1111
1212
Generated by: https://github.com/swagger-api/swagger-codegen.git
1313
"""

openrouteservice/api/directions_service_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
Openrouteservice
55
6-
This is the openrouteservice API documentation for ORS Core-Version 8.2.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
6+
This is the openrouteservice API documentation for ORS Core-Version 9.0.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
77
8-
OpenAPI spec version: 8.2.0
8+
OpenAPI spec version: 9.0.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

openrouteservice/api/elevation_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"""
44
Openrouteservice
55
6-
This is the openrouteservice API documentation for ORS Core-Version 8.2.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
6+
This is the openrouteservice API documentation for ORS Core-Version 9.0.0. Documentations for [older Core-Versions](https://github.com/GIScience/openrouteservice-docs/releases) can be rendered with the [Swagger-Editor](https://editor-next.swagger.io/). # noqa: E501
77
8-
OpenAPI spec version: 8.2.0
8+
OpenAPI spec version: 9.0.0
99
1010
Generated by: https://github.com/swagger-api/swagger-codegen.git
1111
"""

0 commit comments

Comments
 (0)