stadiamaps 3.0.0__py3-none-any.whl → 3.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. stadiamaps/__init__.py +8 -2
  2. stadiamaps/api/geocoding_api.py +389 -106
  3. stadiamaps/api/geospatial_api.py +15 -13
  4. stadiamaps/api/routing_api.py +57 -50
  5. stadiamaps/api_client.py +54 -33
  6. stadiamaps/configuration.py +19 -5
  7. stadiamaps/exceptions.py +1 -1
  8. stadiamaps/models/__init__.py +7 -1
  9. stadiamaps/models/access.py +1 -1
  10. stadiamaps/models/admin_region.py +1 -1
  11. stadiamaps/models/administrative.py +1 -1
  12. stadiamaps/models/auto_costing_options.py +1 -1
  13. stadiamaps/models/base_costing_options.py +1 -1
  14. stadiamaps/models/base_trace_request.py +5 -5
  15. stadiamaps/models/bicycle_costing_options.py +1 -1
  16. stadiamaps/models/bike_network.py +1 -1
  17. stadiamaps/models/bulk_request.py +141 -0
  18. stadiamaps/models/bulk_search_request_inner.py +141 -0
  19. stadiamaps/models/bulk_search_response.py +109 -0
  20. stadiamaps/models/contour.py +1 -1
  21. stadiamaps/models/coordinate.py +1 -1
  22. stadiamaps/models/costing_model.py +1 -1
  23. stadiamaps/models/costing_options.py +1 -1
  24. stadiamaps/models/directions_options.py +5 -5
  25. stadiamaps/models/distance_unit.py +1 -1
  26. stadiamaps/models/edge_sign.py +1 -1
  27. stadiamaps/models/edge_use.py +1 -1
  28. stadiamaps/models/end_node.py +1 -1
  29. stadiamaps/models/geo_attributes.py +1 -1
  30. stadiamaps/models/geo_json_geometry.py +3 -3
  31. stadiamaps/models/geo_json_geometry_base.py +1 -1
  32. stadiamaps/models/geo_json_line_string.py +1 -1
  33. stadiamaps/models/geo_json_point.py +1 -1
  34. stadiamaps/models/geo_json_polygon.py +1 -1
  35. stadiamaps/models/geocoding_object.py +1 -1
  36. stadiamaps/models/height_request.py +1 -1
  37. stadiamaps/models/height_response.py +1 -1
  38. stadiamaps/models/highway_classification.py +1 -1
  39. stadiamaps/models/intersecting_edge.py +1 -1
  40. stadiamaps/models/isochrone_costing_model.py +8 -1
  41. stadiamaps/models/isochrone_feature.py +1 -1
  42. stadiamaps/models/isochrone_properties.py +1 -1
  43. stadiamaps/models/isochrone_request.py +1 -1
  44. stadiamaps/models/isochrone_response.py +1 -1
  45. stadiamaps/models/locate_detailed_edge.py +1 -1
  46. stadiamaps/models/locate_edge.py +1 -1
  47. stadiamaps/models/locate_edge_info.py +1 -1
  48. stadiamaps/models/locate_node.py +1 -1
  49. stadiamaps/models/locate_object.py +1 -1
  50. stadiamaps/models/low_speed_vehicle_costing_options.py +1 -1
  51. stadiamaps/models/maneuver_sign.py +1 -1
  52. stadiamaps/models/maneuver_sign_element.py +1 -1
  53. stadiamaps/models/map_match_costing_model.py +8 -2
  54. stadiamaps/models/map_match_request.py +5 -5
  55. stadiamaps/models/map_match_route_response.py +1 -1
  56. stadiamaps/models/map_match_trace_options.py +1 -1
  57. stadiamaps/models/map_match_waypoint.py +1 -1
  58. stadiamaps/models/matched_point.py +1 -1
  59. stadiamaps/models/matrix_costing_model.py +1 -1
  60. stadiamaps/models/matrix_distance.py +1 -1
  61. stadiamaps/models/matrix_request.py +5 -5
  62. stadiamaps/models/matrix_response.py +4 -4
  63. stadiamaps/models/matrix_waypoint.py +1 -1
  64. stadiamaps/models/motor_scooter_costing_options.py +1 -1
  65. stadiamaps/models/motorcycle_costing_options.py +1 -1
  66. stadiamaps/models/nearest_roads_request.py +5 -5
  67. stadiamaps/models/node_id.py +1 -1
  68. stadiamaps/models/node_type.py +1 -1
  69. stadiamaps/models/optimized_route_request.py +5 -5
  70. stadiamaps/models/pedestrian_costing_options.py +1 -1
  71. stadiamaps/models/pelias_geo_json_feature.py +3 -5
  72. stadiamaps/models/pelias_geo_json_properties.py +2 -2
  73. stadiamaps/models/pelias_geo_json_properties_addendum.py +1 -1
  74. stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +1 -1
  75. stadiamaps/models/pelias_layer.py +1 -1
  76. stadiamaps/models/pelias_response.py +1 -1
  77. stadiamaps/models/pelias_source.py +1 -1
  78. stadiamaps/models/restrictions.py +1 -1
  79. stadiamaps/models/road_class.py +1 -1
  80. stadiamaps/models/route_leg.py +9 -5
  81. stadiamaps/models/route_maneuver.py +1 -1
  82. stadiamaps/models/route_request.py +12 -8
  83. stadiamaps/models/route_response.py +1 -1
  84. stadiamaps/models/route_response_alternates_inner.py +1 -1
  85. stadiamaps/models/route_summary.py +1 -1
  86. stadiamaps/models/route_trip.py +3 -3
  87. stadiamaps/models/routing_response_waypoint.py +1 -1
  88. stadiamaps/models/routing_waypoint.py +1 -1
  89. stadiamaps/models/routing_waypoint_all_of_search_filter.py +1 -1
  90. stadiamaps/models/search_bulk_query.py +117 -0
  91. stadiamaps/models/search_bulk_request.py +141 -0
  92. stadiamaps/models/search_query.py +134 -0
  93. stadiamaps/models/search_structured_bulk_query.py +117 -0
  94. stadiamaps/models/search_structured_query.py +148 -0
  95. stadiamaps/models/simple_routing_waypoint.py +1 -1
  96. stadiamaps/models/speeds.py +1 -1
  97. stadiamaps/models/trace_attribute_filter_options.py +1 -1
  98. stadiamaps/models/trace_attribute_key.py +1 -1
  99. stadiamaps/models/trace_attributes_base_response.py +1 -1
  100. stadiamaps/models/trace_attributes_request.py +5 -5
  101. stadiamaps/models/trace_attributes_response.py +3 -3
  102. stadiamaps/models/trace_edge.py +1 -1
  103. stadiamaps/models/travel_mode.py +1 -1
  104. stadiamaps/models/traversability.py +1 -1
  105. stadiamaps/models/truck_costing_options.py +1 -1
  106. stadiamaps/models/tz_response.py +1 -1
  107. stadiamaps/models/valhalla_languages.py +1 -1
  108. stadiamaps/models/valhalla_long_units.py +1 -1
  109. stadiamaps/models/warning.py +1 -1
  110. stadiamaps/rest.py +3 -1
  111. {stadiamaps-3.0.0.dist-info → stadiamaps-3.2.0.dist-info}/METADATA +1 -1
  112. stadiamaps-3.2.0.dist-info/RECORD +138 -0
  113. {stadiamaps-3.0.0.dist-info → stadiamaps-3.2.0.dist-info}/WHEEL +1 -1
  114. stadiamaps-3.0.0.dist-info/RECORD +0 -130
  115. {stadiamaps-3.0.0.dist-info → stadiamaps-3.2.0.dist-info}/LICENSE.txt +0 -0
  116. {stadiamaps-3.0.0.dist-info → stadiamaps-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,117 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Stadia Maps Geospatial APIs
5
+
6
+ The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
+
8
+ The version of the OpenAPI document: 6.6.2
9
+ Contact: support@stadiamaps.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, StrictStr, field_validator
22
+ from typing import Any, ClassVar, Dict, List, Optional
23
+ from stadiamaps.models.search_structured_query import SearchStructuredQuery
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+
27
+ class SearchStructuredBulkQuery(BaseModel):
28
+ """
29
+ SearchStructuredBulkQuery
30
+ """ # noqa: E501
31
+ endpoint: Optional[StrictStr] = None
32
+ query: Optional[SearchStructuredQuery] = None
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["endpoint", "query"]
35
+
36
+ @field_validator('endpoint')
37
+ def endpoint_validate_enum(cls, value):
38
+ """Validates the enum"""
39
+ if value is None:
40
+ return value
41
+
42
+ if value not in set(['/v1/search/structured']):
43
+ raise ValueError("must be one of enum values ('/v1/search/structured')")
44
+ return value
45
+
46
+ model_config = ConfigDict(
47
+ populate_by_name=True,
48
+ validate_assignment=True,
49
+ protected_namespaces=(),
50
+ )
51
+
52
+
53
+ def to_str(self) -> str:
54
+ """Returns the string representation of the model using alias"""
55
+ return pprint.pformat(self.model_dump(by_alias=True))
56
+
57
+ def to_json(self) -> str:
58
+ """Returns the JSON representation of the model using alias"""
59
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
60
+ return json.dumps(self.to_dict())
61
+
62
+ @classmethod
63
+ def from_json(cls, json_str: str) -> Optional[Self]:
64
+ """Create an instance of SearchStructuredBulkQuery from a JSON string"""
65
+ return cls.from_dict(json.loads(json_str))
66
+
67
+ def to_dict(self) -> Dict[str, Any]:
68
+ """Return the dictionary representation of the model using alias.
69
+
70
+ This has the following differences from calling pydantic's
71
+ `self.model_dump(by_alias=True)`:
72
+
73
+ * `None` is only added to the output dict for nullable fields that
74
+ were set at model initialization. Other fields with value `None`
75
+ are ignored.
76
+ * Fields in `self.additional_properties` are added to the output dict.
77
+ """
78
+ excluded_fields: Set[str] = set([
79
+ "additional_properties",
80
+ ])
81
+
82
+ _dict = self.model_dump(
83
+ by_alias=True,
84
+ exclude=excluded_fields,
85
+ exclude_none=True,
86
+ )
87
+ # override the default output from pydantic by calling `to_dict()` of query
88
+ if self.query:
89
+ _dict['query'] = self.query.to_dict()
90
+ # puts key-value pairs in additional_properties in the top level
91
+ if self.additional_properties is not None:
92
+ for _key, _value in self.additional_properties.items():
93
+ _dict[_key] = _value
94
+
95
+ return _dict
96
+
97
+ @classmethod
98
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
99
+ """Create an instance of SearchStructuredBulkQuery from a dict"""
100
+ if obj is None:
101
+ return None
102
+
103
+ if not isinstance(obj, dict):
104
+ return cls.model_validate(obj)
105
+
106
+ _obj = cls.model_validate({
107
+ "endpoint": obj.get("endpoint"),
108
+ "query": SearchStructuredQuery.from_dict(obj["query"]) if obj.get("query") is not None else None
109
+ })
110
+ # store additional fields in additional_properties
111
+ for _key in obj.keys():
112
+ if _key not in cls.__properties:
113
+ _obj.additional_properties[_key] = obj.get(_key)
114
+
115
+ return _obj
116
+
117
+
@@ -0,0 +1,148 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Stadia Maps Geospatial APIs
5
+
6
+ The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
+
8
+ The version of the OpenAPI document: 6.6.2
9
+ Contact: support@stadiamaps.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from typing_extensions import Annotated
24
+ from stadiamaps.models.pelias_layer import PeliasLayer
25
+ from stadiamaps.models.pelias_source import PeliasSource
26
+ from typing import Optional, Set
27
+ from typing_extensions import Self
28
+
29
+ class SearchStructuredQuery(BaseModel):
30
+ """
31
+ SearchStructuredQuery
32
+ """ # noqa: E501
33
+ address: Optional[StrictStr] = Field(default=None, description="A street name, optionally with a house number.")
34
+ neighbourhood: Optional[StrictStr] = Field(default=None, description="Varies by area, but has a locally specific meaning (NOT always an official administrative unit).")
35
+ borough: Optional[StrictStr] = Field(default=None, description="A unit within a city (not widely used, but present in places like NYC and Mexico City).")
36
+ locality: Optional[StrictStr] = Field(default=None, description="The city, village, town, etc. that the place/address is part of.")
37
+ county: Optional[StrictStr] = Field(default=None, description="Administrative divisions between localities and regions. Not commonly used as input to structured geocoding.")
38
+ region: Optional[StrictStr] = Field(default=None, description="Typically the first administrative division within a country. For example, a US state or a Canadian province.")
39
+ postal_code: Optional[StrictStr] = Field(default=None, description="A mail sorting code.", alias="postalCode")
40
+ country: Optional[StrictStr] = Field(default=None, description="A full name (ex: Canada), or a 2 or 3 character ISO code. Prefer ISO codes when possible.")
41
+ focus_point_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="The latitude of the point to focus the search on. This will bias results toward the focus point. Requires `focus.point.lon`.", alias="focus.point.lat")
42
+ focus_point_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="The longitude of the point to focus the search on. This will bias results toward the focus point. Requires `focus.point.lat`.", alias="focus.point.lon")
43
+ boundary_rect_min_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="Defines the min latitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.min_lat")
44
+ boundary_rect_max_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="Defines the max latitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.max_lat")
45
+ boundary_rect_min_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="Defines the min longitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.min_lon")
46
+ boundary_rect_max_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="Defines the max longitude component of a bounding box to limit the search to. Requires all other `boundary.rect` parameters to be specified.", alias="boundary.rect.max_lon")
47
+ boundary_circle_lat: Optional[Union[Annotated[float, Field(le=90, strict=True, ge=-90)], Annotated[int, Field(le=90, strict=True, ge=-90)]]] = Field(default=None, description="The latitude of the center of a circle to limit the search to. Requires `boundary.circle.lon`.", alias="boundary.circle.lat")
48
+ boundary_circle_lon: Optional[Union[Annotated[float, Field(le=180, strict=True, ge=-180)], Annotated[int, Field(le=180, strict=True, ge=-180)]]] = Field(default=None, description="The longitude of the center of a circle to limit the search to. Requires `boundary.circle.lat`.", alias="boundary.circle.lon")
49
+ boundary_circle_radius: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The radius of the circle (in kilometers) to limit the search to. Defaults to 50km if unspecified.", alias="boundary.circle.radius")
50
+ boundary_country: Optional[List[StrictStr]] = Field(default=None, description="A list of countries to limit the search to. These may be either full names (ex: Canada), or an ISO 3116-1 alpha-2 or alpha-3 code. Prefer ISO codes when possible.", alias="boundary.country")
51
+ boundary_gid: Optional[StrictStr] = Field(default=None, description="The Pelias GID of an area to limit the search to.", alias="boundary.gid")
52
+ layers: Optional[List[PeliasLayer]] = Field(default=None, description="A list of layers to limit the search to.")
53
+ sources: Optional[List[PeliasSource]] = Field(default=None, description="A list of sources to limit the search to.")
54
+ size: Optional[StrictInt] = Field(default=None, description="The maximum number of results to return.")
55
+ lang: Optional[StrictStr] = Field(default=None, description="A BCP47 language tag which specifies a preference for localization of results. By default, results are in the default locale of the source data, but specifying a language will attempt to localize the results. Note that while a `langtag` (in RFC 5646 terms) can contain script, region, etc., only the `language` portion, an ISO 639 code, will be considered. So `en-US` and `en-GB` will both be treated as English.")
56
+ additional_properties: Dict[str, Any] = {}
57
+ __properties: ClassVar[List[str]] = ["address", "neighbourhood", "borough", "locality", "county", "region", "postalCode", "country", "focus.point.lat", "focus.point.lon", "boundary.rect.min_lat", "boundary.rect.max_lat", "boundary.rect.min_lon", "boundary.rect.max_lon", "boundary.circle.lat", "boundary.circle.lon", "boundary.circle.radius", "boundary.country", "boundary.gid", "layers", "sources", "size", "lang"]
58
+
59
+ model_config = ConfigDict(
60
+ populate_by_name=True,
61
+ validate_assignment=True,
62
+ protected_namespaces=(),
63
+ )
64
+
65
+
66
+ def to_str(self) -> str:
67
+ """Returns the string representation of the model using alias"""
68
+ return pprint.pformat(self.model_dump(by_alias=True))
69
+
70
+ def to_json(self) -> str:
71
+ """Returns the JSON representation of the model using alias"""
72
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
73
+ return json.dumps(self.to_dict())
74
+
75
+ @classmethod
76
+ def from_json(cls, json_str: str) -> Optional[Self]:
77
+ """Create an instance of SearchStructuredQuery from a JSON string"""
78
+ return cls.from_dict(json.loads(json_str))
79
+
80
+ def to_dict(self) -> Dict[str, Any]:
81
+ """Return the dictionary representation of the model using alias.
82
+
83
+ This has the following differences from calling pydantic's
84
+ `self.model_dump(by_alias=True)`:
85
+
86
+ * `None` is only added to the output dict for nullable fields that
87
+ were set at model initialization. Other fields with value `None`
88
+ are ignored.
89
+ * Fields in `self.additional_properties` are added to the output dict.
90
+ """
91
+ excluded_fields: Set[str] = set([
92
+ "additional_properties",
93
+ ])
94
+
95
+ _dict = self.model_dump(
96
+ by_alias=True,
97
+ exclude=excluded_fields,
98
+ exclude_none=True,
99
+ )
100
+ # puts key-value pairs in additional_properties in the top level
101
+ if self.additional_properties is not None:
102
+ for _key, _value in self.additional_properties.items():
103
+ _dict[_key] = _value
104
+
105
+ return _dict
106
+
107
+ @classmethod
108
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
109
+ """Create an instance of SearchStructuredQuery from a dict"""
110
+ if obj is None:
111
+ return None
112
+
113
+ if not isinstance(obj, dict):
114
+ return cls.model_validate(obj)
115
+
116
+ _obj = cls.model_validate({
117
+ "address": obj.get("address"),
118
+ "neighbourhood": obj.get("neighbourhood"),
119
+ "borough": obj.get("borough"),
120
+ "locality": obj.get("locality"),
121
+ "county": obj.get("county"),
122
+ "region": obj.get("region"),
123
+ "postalCode": obj.get("postalCode"),
124
+ "country": obj.get("country"),
125
+ "focus.point.lat": obj.get("focus.point.lat"),
126
+ "focus.point.lon": obj.get("focus.point.lon"),
127
+ "boundary.rect.min_lat": obj.get("boundary.rect.min_lat"),
128
+ "boundary.rect.max_lat": obj.get("boundary.rect.max_lat"),
129
+ "boundary.rect.min_lon": obj.get("boundary.rect.min_lon"),
130
+ "boundary.rect.max_lon": obj.get("boundary.rect.max_lon"),
131
+ "boundary.circle.lat": obj.get("boundary.circle.lat"),
132
+ "boundary.circle.lon": obj.get("boundary.circle.lon"),
133
+ "boundary.circle.radius": obj.get("boundary.circle.radius"),
134
+ "boundary.country": obj.get("boundary.country"),
135
+ "boundary.gid": obj.get("boundary.gid"),
136
+ "layers": obj.get("layers"),
137
+ "sources": obj.get("sources"),
138
+ "size": obj.get("size"),
139
+ "lang": obj.get("lang")
140
+ })
141
+ # store additional fields in additional_properties
142
+ for _key in obj.keys():
143
+ if _key not in cls.__properties:
144
+ _obj.additional_properties[_key] = obj.get(_key)
145
+
146
+ return _obj
147
+
148
+
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -39,8 +39,8 @@ class TraceAttributesRequest(BaseModel):
39
39
  costing: MapMatchCostingModel
40
40
  costing_options: Optional[CostingOptions] = None
41
41
  shape_match: Optional[StrictStr] = Field(default=None, description="Three snapping modes provide some control over how the map matching occurs. `edge_walk` is fast, but requires extremely precise data that matches the route graph almost perfectly. `map_snap` can handle significantly noisier data, but is very expensive. `walk_or_snap`, the default, tries to use edge walking first and falls back to map matching if edge walking fails. In general, you should not need to change this parameter unless you want to trace a multi-leg route with multiple `break` locations in the `shape`.")
42
- units: Optional[DistanceUnit] = None
43
- language: Optional[ValhallaLanguages] = None
42
+ units: Optional[DistanceUnit] = DistanceUnit.KM
43
+ language: Optional[ValhallaLanguages] = ValhallaLanguages.EN_MINUS_US
44
44
  directions_type: Optional[StrictStr] = Field(default='instructions', description="The level of directional narrative to include. Locations and times will always be returned, but narrative generation verbosity can be controlled with this parameter.")
45
45
  filters: Optional[TraceAttributeFilterOptions] = Field(default=None, description="If present, provides either a whitelist or a blacklist of keys to include/exclude in the response. This key is optional, and if omitted from the request, all available info will be returned.")
46
46
  additional_properties: Dict[str, Any] = {}
@@ -143,8 +143,8 @@ class TraceAttributesRequest(BaseModel):
143
143
  "costing": obj.get("costing"),
144
144
  "costing_options": CostingOptions.from_dict(obj["costing_options"]) if obj.get("costing_options") is not None else None,
145
145
  "shape_match": obj.get("shape_match"),
146
- "units": obj.get("units"),
147
- "language": obj.get("language"),
146
+ "units": obj.get("units") if obj.get("units") is not None else DistanceUnit.KM,
147
+ "language": obj.get("language") if obj.get("language") is not None else ValhallaLanguages.EN_MINUS_US,
148
148
  "directions_type": obj.get("directions_type") if obj.get("directions_type") is not None else 'instructions',
149
149
  "filters": TraceAttributeFilterOptions.from_dict(obj["filters"]) if obj.get("filters") is not None else None
150
150
  })
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -40,7 +40,7 @@ class TraceAttributesResponse(BaseModel):
40
40
  shape: Optional[StrictStr] = Field(default=None, description="The encoded polyline (https://developers.google.com/maps/documentation/utilities/polylinealgorithm) of the matched path.")
41
41
  confidence_score: Optional[Union[Annotated[float, Field(le=1, strict=True, ge=0)], Annotated[int, Field(le=1, strict=True, ge=0)]]] = None
42
42
  id: Optional[StrictStr] = Field(default=None, description="An identifier to disambiguate requests (echoed by the server).")
43
- units: Optional[ValhallaLongUnits] = None
43
+ units: Optional[ValhallaLongUnits] = ValhallaLongUnits.KILOMETERS
44
44
  alternate_paths: Optional[List[TraceAttributesBaseResponse]] = Field(default=None, description="Alternate paths, if any, that were not classified as the best match.")
45
45
  additional_properties: Dict[str, Any] = {}
46
46
  __properties: ClassVar[List[str]] = ["edges", "admins", "matched_points", "osm_changeset", "shape", "confidence_score", "id", "units", "alternate_paths"]
@@ -138,7 +138,7 @@ class TraceAttributesResponse(BaseModel):
138
138
  "shape": obj.get("shape"),
139
139
  "confidence_score": obj.get("confidence_score"),
140
140
  "id": obj.get("id"),
141
- "units": obj.get("units"),
141
+ "units": obj.get("units") if obj.get("units") is not None else ValhallaLongUnits.KILOMETERS,
142
142
  "alternate_paths": [TraceAttributesBaseResponse.from_dict(_item) for _item in obj["alternate_paths"]] if obj.get("alternate_paths") is not None else None
143
143
  })
144
144
  # store additional fields in additional_properties
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
stadiamaps/rest.py CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  The Stadia Maps Geospatial APIs provide you with the data you need to build awesome applications.
7
7
 
8
- The version of the OpenAPI document: 6.3.0
8
+ The version of the OpenAPI document: 6.6.2
9
9
  Contact: support@stadiamaps.com
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
@@ -203,6 +203,8 @@ class RESTClientObject:
203
203
  # Content-Type which generated by urllib3 will be
204
204
  # overwritten.
205
205
  del headers['Content-Type']
206
+ # Ensures that dict objects are serialized
207
+ post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
206
208
  r = self.pool_manager.request(
207
209
  method,
208
210
  url,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stadiamaps
3
- Version: 3.0.0
3
+ Version: 3.2.0
4
4
  Summary: Stadia Maps Geospatial APIs
5
5
  Home-page: https://github.com/stadiamaps/stadiamaps-api-py
6
6
  Author: Stadia Maps Support
@@ -0,0 +1,138 @@
1
+ stadiamaps/__init__.py,sha256=f4yU3WUOYe4qSJziGcNnl4iHVVOHnZNstlHAokY6xY8,7556
2
+ stadiamaps/api_client.py,sha256=X3i8j0GsqBKAyo7HbI7KOhm2HQlu1QvYclC9Us-Fm5w,26826
3
+ stadiamaps/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ stadiamaps/configuration.py,sha256=Q8IJP13hlZO6a-qda-2xtN1sBN28HNt9QBESq3BKSH4,16141
5
+ stadiamaps/exceptions.py,sha256=qCBib1Zzmfdq5BT-efyQqQahvPU_FbmnN-TvgT-zBlE,6019
6
+ stadiamaps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ stadiamaps/rest.py,sha256=9ruYhIfLo9pD0l2aDNY2KXEphwCgp_fNiPG6QVbVgqg,9451
8
+ stadiamaps/api/__init__.py,sha256=NRdfWLDRL2TYgITiS6K4OX8lmmVVmf9-_yyMe2_6hTs,208
9
+ stadiamaps/api/geocoding_api.py,sha256=88g0ERJwHVPWADAK9F-7wfN2bBKyqgzj17zoZyG2otE,165355
10
+ stadiamaps/api/geospatial_api.py,sha256=jTjXq1xPfuhsu-clpjwNIuFtbX3mN4HBTS5--Z-6mRU,29443
11
+ stadiamaps/api/routing_api.py,sha256=zrKAai2WuLw6tBDkjNJGuEnQm6hNZIotARIMss2Qgp8,80587
12
+ stadiamaps/models/__init__.py,sha256=d_mxdXiP8zrX1NdWxfGDvb-LVLVXMWt-ISsEj8QiLN8,6888
13
+ stadiamaps/models/access.py,sha256=FVL3ivu_IZPHjFEVmTuFr5UlFLCtebtzxrgzlGl7HMc,4179
14
+ stadiamaps/models/admin_region.py,sha256=54Mi2DqXt5bMEqoMMAwAmef2njcqI_GYPv3xXE1_Tjc,3793
15
+ stadiamaps/models/administrative.py,sha256=FyGQKULJF4SzJoMtwcYo9zOpCuaetoA2dyGimPs2bq8,3842
16
+ stadiamaps/models/auto_costing_options.py,sha256=8QPEPduYBF_7gwKa8f9rKwjn6jT5X5DbpNJS9RZprXw,12767
17
+ stadiamaps/models/auto_costing_options_all_of.py,sha256=JSiFHNEljR4if13lP3jeJc8ny_gSfVzyQZErdt6LaBM,7083
18
+ stadiamaps/models/base_costing_options.py,sha256=2HRFkzIumaIcJaTx64JpGc2-pj5uTAHqXu6Tgv458bU,7721
19
+ stadiamaps/models/base_trace_request.py,sha256=GvmKHApLp1BM0fMg9YgTfXT-pkbh5SVNz0E8ihTvxpg,7245
20
+ stadiamaps/models/bicycle_costing_options.py,sha256=19klfqQrRx02QODcPcm7OqZ7bmX5eW1MOVNijo0bZtE,11693
21
+ stadiamaps/models/bicycle_costing_options_all_of.py,sha256=AhDT4CYE3wRA0j1EXvBiK_Bevw2mN-WQA4AnAb7uM5A,5904
22
+ stadiamaps/models/bike_network.py,sha256=bXVVOfns1Yqkw754tUGTjR7_L1ecxeXRAQxIcu16ito,3432
23
+ stadiamaps/models/bulk_request.py,sha256=sMBKyZx2E5PJ54ZCNK-YiwpeaN-C_1s0fj_7Fa-FDPc,5598
24
+ stadiamaps/models/bulk_search_request_inner.py,sha256=nKDAb78ku8Vw-BWL0JRlYHcAYXWfaa-Q4qNwpYwk9w4,5686
25
+ stadiamaps/models/bulk_search_response.py,sha256=z8xVrV23ohwlZ9zLd372UnqZWfgc-1XO4bYCtNV3aTs,3746
26
+ stadiamaps/models/contour.py,sha256=PQKTM598OmTyWcr-HvUsrG1MwiPNaN-holBI7Cvik5s,3744
27
+ stadiamaps/models/coordinate.py,sha256=zkg-gkuNtWha595IYllRyBLusLnZQqWM8uElCMgEWY4,3525
28
+ stadiamaps/models/costing_model.py,sha256=NPIRoculydzJqpIBzb8k6kKBGBV-p4e5K3NyRHHj858,1332
29
+ stadiamaps/models/costing_options.py,sha256=d0F6Cx4O6uL1BanE5IEKSaV1BX0JIGsm4ErLz9vSVd4,6813
30
+ stadiamaps/models/directions_options.py,sha256=RntNHCqYUJCYgXkhPARXaKOLGOdhL24kEB6HjgbZcwE,4330
31
+ stadiamaps/models/distance_unit.py,sha256=T4VZBnjM2Cr9wbqj1VsOqZ4h29bCi4dSsPxmF52PBcc,780
32
+ stadiamaps/models/edge_sign.py,sha256=zlBDw7jrBE5p-n1CSCn4ZJJyRKKMIlKlp0ZPlkawnaI,3491
33
+ stadiamaps/models/edge_use.py,sha256=_9N74p9qH1cM7cYUeeJQPIJ2uSWkV4eBRva9wkZQcCs,1663
34
+ stadiamaps/models/end_node.py,sha256=6lF_jKg0n_qSfT4u9lcQGxpG865POz10tZOyMkMjwL4,4718
35
+ stadiamaps/models/geo_attributes.py,sha256=jHHiH-hQ7YPpGPZ7Osx2k-XYr6jR3srVgXoEQGpeSU0,4213
36
+ stadiamaps/models/geo_json_geometry.py,sha256=OpLnYMrORTfrjvY5AU4AXejVx8HnxwhMchekEBz__4E,6201
37
+ stadiamaps/models/geo_json_geometry_base.py,sha256=oEdrCINZzACP17fQw7DFWdvHJyBEKBZOP9oi7C2Tl1w,3532
38
+ stadiamaps/models/geo_json_line_string.py,sha256=QdPQhR9uKU9EUMF5AautPIvMm75nSvF3-O-OAgjPv44,3773
39
+ stadiamaps/models/geo_json_line_string_all_of.py,sha256=_vHsj7n-c1QEAoL9M8MAWj7Q1wv4AtqpG0lXHluRYzA,2663
40
+ stadiamaps/models/geo_json_point.py,sha256=_1tkshu0rG_M53YtK-KI3vxJtGiNtf_WcaQh46qIYY0,3747
41
+ stadiamaps/models/geo_json_point_all_of.py,sha256=Md1qYy2GAtnsy_8IwXrYXlNc5e_RBAfjTSBKzrrDUn8,2614
42
+ stadiamaps/models/geo_json_polygon.py,sha256=nlVlifEZdpp-d6IIoNrjzxWnsmbpZh_G88m_c6ETlHI,3767
43
+ stadiamaps/models/geo_json_polygon_all_of.py,sha256=lOsNbT0B-2d_wJTwOIQt7gny_aldHzT9cMC5XoIETtE,2648
44
+ stadiamaps/models/geocoding_object.py,sha256=2v3H7OkIQGF_PXM3pbR5hAsTBGKm3JfWeXy3F7CV_tw,4217
45
+ stadiamaps/models/height_request.py,sha256=7sCP6eLmvpi1F2UVxCNuVLAZYA7zSh7utatQ-N89hgg,5950
46
+ stadiamaps/models/height_response.py,sha256=87FWTuync0vZ5vBu-1RhQYQJxduT-TL9DAuseXD9Qso,5092
47
+ stadiamaps/models/highway_classification.py,sha256=kACXsPy3tW1-RhELvzbR6hLqVrGsyCmJncYlQ15JdWE,6219
48
+ stadiamaps/models/intersecting_edge.py,sha256=a3DBx9Jw4KHHfkyRZ4ckM2mTXnWMIdbexMSqhrH3Ots,4608
49
+ stadiamaps/models/isochrone_costing_model.py,sha256=189jOAiqBLepqYx5-pLTniSyiuITupS-WtGs5e_e4sc,1043
50
+ stadiamaps/models/isochrone_feature.py,sha256=hc5oIwFSFs5nBGtLHYobM5tdKjhRMV0YHXd8BnLNufk,3996
51
+ stadiamaps/models/isochrone_properties.py,sha256=Lpi7lXVCA85QnGUbN78WtPL0eEnai8REKCpBaX8dUC4,4235
52
+ stadiamaps/models/isochrone_request.py,sha256=ouDkAdE8Z-kKxInZ9FrWmtZr5Bz6elOvl9AkjQsYhYA,6701
53
+ stadiamaps/models/isochrone_response.py,sha256=e1pxFzgycdPv3MRtKLeNA4osoF_9JeSvhew1t0OENiU,4042
54
+ stadiamaps/models/locate_detailed_edge.py,sha256=k9pMF7VDrXThhFJXcXckkdwz1wGpcsc20pqjlzpt3Vo,10839
55
+ stadiamaps/models/locate_edge.py,sha256=SfAysW5VTBY2NfVKyMZEu1w6IcCcpUz9p0-8uRv7-Lo,6553
56
+ stadiamaps/models/locate_edge_info.py,sha256=NlX3uq4LjxJAnQiehyKXsMuMCRIKhdvazRXJ1LW-az4,4350
57
+ stadiamaps/models/locate_node.py,sha256=huF7RQNd1xs6BmJpfxTpWUe0rWe8K-IyNy4jJ-TmHW4,5948
58
+ stadiamaps/models/locate_node_all_of.py,sha256=CIpyV5ssH034gmC-fHlshAOZkolUy7LYejgHLqHeMyI,4800
59
+ stadiamaps/models/locate_object.py,sha256=6wI9Sv6voFomuoCOZGPFv7PEWL-Vnm76mOECNfi5iD8,4671
60
+ stadiamaps/models/low_speed_vehicle_costing_options.py,sha256=zyIQSZQKPjSmSVRmilExK8ofKa19XmI7LMw5pjXr6rQ,9820
61
+ stadiamaps/models/maneuver_sign.py,sha256=koeWFyM7ZnRFzi4m7TFrdcLOfW4uhjkdHpXB_JsJDuY,6142
62
+ stadiamaps/models/maneuver_sign_element.py,sha256=XgrrUGbOj7jb_ZZNlFiB9TkMjakXwlNQUtcDpZKgkyk,3711
63
+ stadiamaps/models/map_match_costing_model.py,sha256=MS8JDbflIT8_f0KAt1Z0ZU7nsD11K90nB6tzinaYkUg,1040
64
+ stadiamaps/models/map_match_request.py,sha256=JZ6qrvCmJXgmMqjYebZPZIG56KTAzdvr_5G8741zub0,9121
65
+ stadiamaps/models/map_match_request_all_of.py,sha256=4I-A8Lvt59Gu-xMvfsHIe-GcCfO_qLab6uCKAXqTasM,4291
66
+ stadiamaps/models/map_match_route_response.py,sha256=8j9pPnbsugZqEJtJ-X3FGEdjizs87jROaAGGhWnkqk8,4371
67
+ stadiamaps/models/map_match_route_response_all_of.py,sha256=WOWvtLLp801qQM4aJoKR-MTuL6e1nJ3C7FrTRPJ4gxI,2649
68
+ stadiamaps/models/map_match_trace_options.py,sha256=XAGu9oy4iyyPPvzjLbcqHLIZmntCSQvbzir0zXxCT_c,4609
69
+ stadiamaps/models/map_match_waypoint.py,sha256=B1KVQf_bd5BVOAtwDxjiaqyhfgls95N4DJSgP7HkiuQ,4836
70
+ stadiamaps/models/map_match_waypoint_all_of.py,sha256=wLt5dB0JfKtZOqRcNoFZod2k-EJ3OcBGh_nhTjFA2gk,2793
71
+ stadiamaps/models/matched_point.py,sha256=k6ZOyKjKR0FsXnVYjRE5WJe9vl-Ijk_hEIBCX4VbyJ0,5417
72
+ stadiamaps/models/matrix_costing_model.py,sha256=QK4uSzxh5Wx0osoAnZfKhcMbVZ5jNa1sDcejKt-zkhA,1034
73
+ stadiamaps/models/matrix_distance.py,sha256=fRkN45hUsDZzbpazlp5gUd8BE7C_DBddmM_pCroGIoU,4571
74
+ stadiamaps/models/matrix_request.py,sha256=G8-0YHmX6_9zbm0WFB3HRAvm3z-tCmK3UX9YjI067Bg,6815
75
+ stadiamaps/models/matrix_response.py,sha256=kABCsNuel6XOseYueUpELJt8BP06iTmaeHkKKdFdano,6726
76
+ stadiamaps/models/matrix_waypoint.py,sha256=Qu-lb1jYst-5dCCUrh_0wcmjKD_xnTJALSlXBWvJILs,3878
77
+ stadiamaps/models/motor_scooter_costing_options.py,sha256=eShENnUSHWRGds5K6G6C2NxC24BbtcvS7ZlNNCcKd2s,13848
78
+ stadiamaps/models/motor_scooter_costing_options_all_of.py,sha256=3XuHRpUB_VvAro0XZwCbq1ExJbEMnB5cm6iagIruuP4,3525
79
+ stadiamaps/models/motorcycle_costing_options.py,sha256=KBZXK1NtRO-E5Su2wLDeoy_4ckbXLwjjFGc-ia522aw,13304
80
+ stadiamaps/models/motorcycle_costing_options_all_of.py,sha256=NJQD3ez643xF0r9Dmix88gGrPLzrbgJNBPz9il6G9HM,3479
81
+ stadiamaps/models/nearest_roads_request.py,sha256=CWL0v6Pyi__pBYiil6ShdTlL2G7gM8pZwIEMPM4GmwI,5722
82
+ stadiamaps/models/node_id.py,sha256=9yDTM-9NTcxQtBiXFY7jXgzt7due4fw4wJLgY0ygZnA,3367
83
+ stadiamaps/models/node_type.py,sha256=7IMLpIhj0BA9zKrRaoiKgh_TKYaIEsY5RU3rpYNqDPU,1052
84
+ stadiamaps/models/optimized_route_request.py,sha256=eocg25K09DqpKybZs67pc0dRET9R4nwH-ykRL0v5WGU,5935
85
+ stadiamaps/models/pedestrian_costing_options.py,sha256=QNzLvxcm42CkaZSSg6e6yUOnuuHT0O98M1Ai5xWzAes,9210
86
+ stadiamaps/models/pelias_geo_json_feature.py,sha256=eFnMWv05EU-yGLfoKS_bXu4QlTTi7nxIvvNLxpxg92w,4595
87
+ stadiamaps/models/pelias_geo_json_properties.py,sha256=gW9sXdLXJ_TLXGXXPFFItIwA6yFJ_fjc8HTJhQUIsNY,8507
88
+ stadiamaps/models/pelias_geo_json_properties_addendum.py,sha256=NEz70eH2GhlKjz_Xx80vW_dgALFjvOwLlV9fKB-4hro,3714
89
+ stadiamaps/models/pelias_geo_json_properties_addendum_osm.py,sha256=Gjujc2MG0dNdQxDY7z6ZK7awiTw2_VU1DNzPzFXEUfs,3519
90
+ stadiamaps/models/pelias_layer.py,sha256=C8i8bzab76g6Dwe33u1ycSx4bsqpsCqfGAdU2Kz8tfM,2522
91
+ stadiamaps/models/pelias_response.py,sha256=M2auW-6hqtDpL225xaLF33MtexBVtxXyicFhxL-2USI,4381
92
+ stadiamaps/models/pelias_response_geocoding.py,sha256=KPrpxVWAvd6U0lZCcsHA2WI29Ij4jyVl3YOuxvhvxmo,3621
93
+ stadiamaps/models/pelias_source.py,sha256=oQzEfxdixkD3KEsI4Oe4M2sK1RtKO6tpu0dwDwuegzI,1023
94
+ stadiamaps/models/restrictions.py,sha256=FRztJ7bHs_prbpG2HCQBXnK1IP-69k-8qKHt0zL7Eis,4203
95
+ stadiamaps/models/road_class.py,sha256=eDA-5NjtFVEsgTf84WU_d_AozH_RNDR_NosTv_Q47FI,1002
96
+ stadiamaps/models/route_leg.py,sha256=iipThsvGqsqOvsrdZPpknsGxj4IpJmKUwJ6RQtuMmQE,4931
97
+ stadiamaps/models/route_maneuver.py,sha256=RkAlq8WPa52HdDxfyZVm1E_1L_M5zva4YQ_Cb-EY2KM,12445
98
+ stadiamaps/models/route_request.py,sha256=8qc8kFCjqqFjsT90lOmbWzTf5WwJxaWTkr41F0CQko8,8441
99
+ stadiamaps/models/route_response.py,sha256=LDOfOYNOeiuwpT8u6IGWB_2-4UQW-52l8PMUJb9kEaw,4199
100
+ stadiamaps/models/route_response_alternates_inner.py,sha256=ObJ3H6VSsfhDoGSQbupEZZ_wOgQuMISJfN30MVi63yA,3448
101
+ stadiamaps/models/route_response_trip.py,sha256=dArv_kidtG7keQJCrRXRP5GqTaSXJMBMd_MgGbR125I,4565
102
+ stadiamaps/models/route_summary.py,sha256=P0qc8ogAa54Xh44_mN0hMWXxQe7D9ab41e3GJgcwjpc,4117
103
+ stadiamaps/models/route_trip.py,sha256=ByY0RVwFfHM86Ic-NA54fqfmxiJYVd7R1PP-oSyBSTY,5213
104
+ stadiamaps/models/routing_response_waypoint.py,sha256=muBBWqxZHn7nHp7o3O94nhfptsdF4xtUu5Y6sx_01LQ,4778
105
+ stadiamaps/models/routing_response_waypoint_all_of.py,sha256=2u_wmV3NfKkz1rl_DDAbc_6rqMdamOXCFA3XSmh22sA,2756
106
+ stadiamaps/models/routing_waypoint.py,sha256=KDy29xhGrC0UrjOSW2H6ncPb320ZJ6qbAUXkBo4e6I0,9513
107
+ stadiamaps/models/routing_waypoint_all_of.py,sha256=v7BryWQd_LrFAaEXhHKQBU1OBiF4WmCRN8FJstZUFzU,7320
108
+ stadiamaps/models/routing_waypoint_all_of_search_filter.py,sha256=2VEmWFD6jozx9RZo_HCzTHWyA1c25FMGxwb8-04LRG8,4506
109
+ stadiamaps/models/search_bulk_query.py,sha256=Fv3SYqwdlVMeXnqhqSLRW1Qte0k_NxV8JI1QkxsR2zI,3842
110
+ stadiamaps/models/search_bulk_request.py,sha256=xFoH4wfaXA2uoN-qd-B01Wu7bQ-MoNq0vA6ERSrvZ4Q,5646
111
+ stadiamaps/models/search_query.py,sha256=kWQRtEigoRI0Wmw9Ou0DZ9jrLRMaDjZfAACoUv0U6Fg,8762
112
+ stadiamaps/models/search_structured_bulk_query.py,sha256=VKNzx5en5CWoRXneiApWUYjLb_UxRUilQQdr_AKs33A,3945
113
+ stadiamaps/models/search_structured_query.py,sha256=zsIf7PTfuuF_07tglv8Qqk4z08HSLpyvaQENvF9MdsA,10304
114
+ stadiamaps/models/simple_routing_waypoint.py,sha256=gByDQU64ExDPeGj5RQzRKcIfGbJoMFTK0nqHGa3tI-c,4502
115
+ stadiamaps/models/simple_routing_waypoint_all_of.py,sha256=mFHVKuKWz3AuOxfqyGA5D_pai-RCu4Msdmmgf7fwm7A,3385
116
+ stadiamaps/models/speeds.py,sha256=TlVIPaxPCCmnVmdYNTPGsgIW10ogMTFGLYlP3Ss8Zgg,4550
117
+ stadiamaps/models/trace_attribute_filter_options.py,sha256=skaRne2XgsBZEQf1HqnWu9BXVQeJcJyN7Zop5Mn_-W4,3813
118
+ stadiamaps/models/trace_attribute_key.py,sha256=ZtTJ78Jiy6hi5tUXkwrE5SDO1uac24NQ1hsYhC5xgxQ,4323
119
+ stadiamaps/models/trace_attributes_base_response.py,sha256=CpZI-yT0O4vwAItvpY9gkgOPvsnWBd1-sFUWicHthoY,5915
120
+ stadiamaps/models/trace_attributes_request.py,sha256=RAfzOdVCLlGkMUUmys62HiJ4fU5CwuxusLtQNZ2SP_g,7935
121
+ stadiamaps/models/trace_attributes_request_all_of.py,sha256=ClTna0geZtUYYJHbVf96BwchKQ8sbf9PwWqKtSNXkyM,2967
122
+ stadiamaps/models/trace_attributes_request_all_of_filters.py,sha256=GM0OdKUGHcmDECtjbmifzLwS-SnbZWSWzn1qGWgia0o,3374
123
+ stadiamaps/models/trace_attributes_response.py,sha256=r1RcfBRsb9XLDy-eeTNfz3t9MvwtsqzdvwpJBp-TT6g,7101
124
+ stadiamaps/models/trace_attributes_response_all_of.py,sha256=3RKI65ZLB1oH9l_S2yiNWewc-G43E7KrYwr8OK-iRlQ,3632
125
+ stadiamaps/models/trace_edge.py,sha256=39g7spemTjqnj6dfeC6XsbJWfTpk1CLEHK35cxCWMlw,14710
126
+ stadiamaps/models/travel_mode.py,sha256=AfZG7E-nRtLdSQuGZ00NFLS4nYc_B576T72JuyJ5DfQ,844
127
+ stadiamaps/models/traversability.py,sha256=v6XCfvri39ExSun2vD45HtzAXZxZl4RQvq3dz4GmU2E,860
128
+ stadiamaps/models/truck_costing_options.py,sha256=78f1oARU6na-_L2WihJAXsOUDBNhhCh0p3PaoiXnaF0,13669
129
+ stadiamaps/models/truck_costing_options_all_of.py,sha256=WJDDKZ8rNATbzi8EUoceT7qDzK_kTyu_MQuh45M7Uy0,3804
130
+ stadiamaps/models/tz_response.py,sha256=r5m0MijXXcSBqWrbiHbjEF_z93ojgHihV4unqqHKxf8,3969
131
+ stadiamaps/models/valhalla_languages.py,sha256=YZWab_48146juHBLNfCxek9sfZjN3ewHFA6v43d9s0s,1551
132
+ stadiamaps/models/valhalla_long_units.py,sha256=aQ0WyB7q0znSZR-9zER4nRDzHdgSpKvM0pWndUCcJ3A,817
133
+ stadiamaps/models/warning.py,sha256=vJ7BmJknsNVzen4vaClyIO9FfxMgT67aZq_bLBdPN0g,3206
134
+ stadiamaps-3.2.0.dist-info/LICENSE.txt,sha256=vs0H95Mi3Rf1pSskD7rv4KbXLYCSYZ6cqZcFmek0hOg,1518
135
+ stadiamaps-3.2.0.dist-info/METADATA,sha256=THRFCXnaoqaMdwb0VBAUrtpugwx3eY35EwRZJrb1SyE,2455
136
+ stadiamaps-3.2.0.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
137
+ stadiamaps-3.2.0.dist-info/top_level.txt,sha256=dFHpcPo1v2Ajmc74F29BleqU5u8MLB0fgTnNYJIatx0,11
138
+ stadiamaps-3.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (72.2.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5