stadiamaps 3.2.0__py3-none-any.whl → 4.0.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.
- stadiamaps/__init__.py +24 -4
- stadiamaps/api/geocoding_api.py +1 -1
- stadiamaps/api/geospatial_api.py +1 -1
- stadiamaps/api/routing_api.py +12 -12
- stadiamaps/api_client.py +9 -2
- stadiamaps/configuration.py +3 -3
- stadiamaps/exceptions.py +1 -1
- stadiamaps/models/__init__.py +23 -3
- stadiamaps/models/access.py +1 -1
- stadiamaps/models/admin_region.py +1 -1
- stadiamaps/models/administrative.py +1 -1
- stadiamaps/models/annotation_filters.py +124 -0
- stadiamaps/models/auto_costing_options.py +1 -1
- stadiamaps/models/base_costing_options.py +1 -1
- stadiamaps/models/base_trace_request.py +4 -4
- stadiamaps/models/bicycle_costing_options.py +1 -1
- stadiamaps/models/bike_network.py +1 -1
- stadiamaps/models/bulk_request.py +80 -104
- stadiamaps/models/bulk_request_query.py +138 -0
- stadiamaps/models/bulk_search_response.py +1 -1
- stadiamaps/models/contour.py +1 -1
- stadiamaps/models/coordinate.py +1 -1
- stadiamaps/models/costing_model.py +1 -1
- stadiamaps/models/costing_options.py +1 -1
- stadiamaps/models/directions_options.py +1 -1
- stadiamaps/models/distance_unit.py +1 -1
- stadiamaps/models/edge_sign.py +1 -1
- stadiamaps/models/edge_use.py +1 -1
- stadiamaps/models/end_node.py +4 -4
- stadiamaps/models/extended_directions_options.py +121 -0
- stadiamaps/models/geo_attributes.py +1 -1
- stadiamaps/models/geo_json_geometry.py +1 -1
- stadiamaps/models/geo_json_geometry_base.py +1 -1
- stadiamaps/models/geo_json_line_string.py +1 -1
- stadiamaps/models/geo_json_point.py +1 -1
- stadiamaps/models/geo_json_polygon.py +1 -1
- stadiamaps/models/geocoding_object.py +1 -1
- stadiamaps/models/height_request.py +4 -4
- stadiamaps/models/height_response.py +4 -4
- stadiamaps/models/highway_classification.py +1 -1
- stadiamaps/models/intersecting_edge.py +1 -1
- stadiamaps/models/isochrone_costing_model.py +1 -1
- stadiamaps/models/isochrone_feature.py +1 -1
- stadiamaps/models/isochrone_properties.py +1 -1
- stadiamaps/models/isochrone_request.py +7 -7
- stadiamaps/models/isochrone_response.py +4 -4
- stadiamaps/models/locate_detailed_edge.py +1 -1
- stadiamaps/models/locate_edge.py +1 -1
- stadiamaps/models/locate_edge_info.py +1 -1
- stadiamaps/models/locate_node.py +1 -1
- stadiamaps/models/locate_object.py +17 -7
- stadiamaps/models/low_speed_vehicle_costing_options.py +1 -1
- stadiamaps/models/maneuver_sign.py +13 -13
- stadiamaps/models/maneuver_sign_element.py +1 -1
- stadiamaps/models/map_match_costing_model.py +1 -1
- stadiamaps/models/map_match_request.py +27 -5
- stadiamaps/models/map_match_route_response.py +4 -4
- stadiamaps/models/map_match_trace_options.py +1 -1
- stadiamaps/models/map_match_waypoint.py +1 -1
- stadiamaps/models/matched_point.py +1 -1
- stadiamaps/models/matrix_costing_model.py +1 -1
- stadiamaps/models/matrix_distance.py +1 -1
- stadiamaps/models/matrix_request.py +7 -7
- stadiamaps/models/matrix_response.py +13 -13
- stadiamaps/models/matrix_waypoint.py +1 -1
- stadiamaps/models/motor_scooter_costing_options.py +1 -1
- stadiamaps/models/motorcycle_costing_options.py +1 -1
- stadiamaps/models/nearest_roads_request.py +4 -4
- stadiamaps/models/node_id.py +1 -1
- stadiamaps/models/node_type.py +1 -1
- stadiamaps/models/optimized_route_request.py +28 -6
- stadiamaps/models/osrm_admin.py +103 -0
- stadiamaps/models/osrm_annotation.py +117 -0
- stadiamaps/models/osrm_banner_component.py +113 -0
- stadiamaps/models/osrm_banner_content.py +131 -0
- stadiamaps/models/osrm_banner_instruction.py +112 -0
- stadiamaps/models/osrm_base_api_response.py +112 -0
- stadiamaps/models/osrm_guidance_modifier.py +44 -0
- stadiamaps/models/osrm_intersection.py +145 -0
- stadiamaps/models/osrm_lane.py +111 -0
- stadiamaps/models/osrm_route.py +119 -0
- stadiamaps/models/osrm_route_leg.py +148 -0
- stadiamaps/models/osrm_route_response.py +132 -0
- stadiamaps/models/osrm_route_step.py +185 -0
- stadiamaps/models/osrm_speed_limit.py +117 -0
- stadiamaps/models/osrm_step_maneuver.py +127 -0
- stadiamaps/models/osrm_via_waypoint.py +105 -0
- stadiamaps/models/osrm_voice_instruction.py +105 -0
- stadiamaps/models/osrm_waypoint.py +108 -0
- stadiamaps/models/pedestrian_costing_options.py +1 -1
- stadiamaps/models/pelias_geo_json_feature.py +1 -1
- stadiamaps/models/pelias_geo_json_properties.py +1 -1
- stadiamaps/models/pelias_geo_json_properties_addendum.py +1 -1
- stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +1 -1
- stadiamaps/models/pelias_layer.py +1 -1
- stadiamaps/models/pelias_response.py +4 -4
- stadiamaps/models/pelias_source.py +1 -1
- stadiamaps/models/restrictions.py +1 -1
- stadiamaps/models/road_class.py +1 -1
- stadiamaps/models/route200_response.py +138 -0
- stadiamaps/models/route_leg.py +4 -4
- stadiamaps/models/route_maneuver.py +1 -1
- stadiamaps/models/route_request.py +30 -8
- stadiamaps/models/route_response.py +4 -4
- stadiamaps/models/route_response_alternates_inner.py +1 -1
- stadiamaps/models/route_summary.py +1 -1
- stadiamaps/models/route_trip.py +7 -7
- stadiamaps/models/routing_response_waypoint.py +1 -1
- stadiamaps/models/routing_waypoint.py +1 -1
- stadiamaps/models/routing_waypoint_all_of_search_filter.py +1 -1
- stadiamaps/models/search_query.py +1 -1
- stadiamaps/models/search_structured_query.py +1 -1
- stadiamaps/models/simple_routing_waypoint.py +1 -1
- stadiamaps/models/speeds.py +1 -1
- stadiamaps/models/trace_attribute_filter_options.py +1 -1
- stadiamaps/models/trace_attribute_key.py +1 -1
- stadiamaps/models/trace_attributes_base_response.py +15 -10
- stadiamaps/models/trace_attributes_request.py +4 -4
- stadiamaps/models/trace_attributes_response.py +18 -13
- stadiamaps/models/trace_edge.py +2 -2
- stadiamaps/models/travel_mode.py +1 -1
- stadiamaps/models/traversability.py +1 -1
- stadiamaps/models/truck_costing_options.py +1 -1
- stadiamaps/models/tz_response.py +1 -1
- stadiamaps/models/valhalla_languages.py +1 -1
- stadiamaps/models/valhalla_long_units.py +1 -1
- stadiamaps/models/warning.py +1 -1
- stadiamaps/rest.py +1 -1
- {stadiamaps-3.2.0.dist-info → stadiamaps-4.0.0.dist-info}/METADATA +1 -1
- stadiamaps-4.0.0.dist-info/RECORD +160 -0
- {stadiamaps-3.2.0.dist-info → stadiamaps-4.0.0.dist-info}/WHEEL +1 -1
- stadiamaps-3.2.0.dist-info/RECORD +0 -138
- {stadiamaps-3.2.0.dist-info → stadiamaps-4.0.0.dist-info}/LICENSE.txt +0 -0
- {stadiamaps-3.2.0.dist-info → stadiamaps-4.0.0.dist-info}/top_level.txt +0 -0
stadiamaps/models/route_trip.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -86,16 +86,16 @@ class RouteTrip(BaseModel):
|
|
86
86
|
# override the default output from pydantic by calling `to_dict()` of each item in locations (list)
|
87
87
|
_items = []
|
88
88
|
if self.locations:
|
89
|
-
for
|
90
|
-
if
|
91
|
-
_items.append(
|
89
|
+
for _item_locations in self.locations:
|
90
|
+
if _item_locations:
|
91
|
+
_items.append(_item_locations.to_dict())
|
92
92
|
_dict['locations'] = _items
|
93
93
|
# override the default output from pydantic by calling `to_dict()` of each item in legs (list)
|
94
94
|
_items = []
|
95
95
|
if self.legs:
|
96
|
-
for
|
97
|
-
if
|
98
|
-
_items.append(
|
96
|
+
for _item_legs in self.legs:
|
97
|
+
if _item_legs:
|
98
|
+
_items.append(_item_legs.to_dict())
|
99
99
|
_dict['legs'] = _items
|
100
100
|
# override the default output from pydantic by calling `to_dict()` of summary
|
101
101
|
if self.summary:
|
@@ -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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
stadiamaps/models/speeds.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -84,29 +84,34 @@ class TraceAttributesBaseResponse(BaseModel):
|
|
84
84
|
# override the default output from pydantic by calling `to_dict()` of each item in edges (list)
|
85
85
|
_items = []
|
86
86
|
if self.edges:
|
87
|
-
for
|
88
|
-
if
|
89
|
-
_items.append(
|
87
|
+
for _item_edges in self.edges:
|
88
|
+
if _item_edges:
|
89
|
+
_items.append(_item_edges.to_dict())
|
90
90
|
_dict['edges'] = _items
|
91
91
|
# override the default output from pydantic by calling `to_dict()` of each item in admins (list)
|
92
92
|
_items = []
|
93
93
|
if self.admins:
|
94
|
-
for
|
95
|
-
if
|
96
|
-
_items.append(
|
94
|
+
for _item_admins in self.admins:
|
95
|
+
if _item_admins:
|
96
|
+
_items.append(_item_admins.to_dict())
|
97
97
|
_dict['admins'] = _items
|
98
98
|
# override the default output from pydantic by calling `to_dict()` of each item in matched_points (list)
|
99
99
|
_items = []
|
100
100
|
if self.matched_points:
|
101
|
-
for
|
102
|
-
if
|
103
|
-
_items.append(
|
101
|
+
for _item_matched_points in self.matched_points:
|
102
|
+
if _item_matched_points:
|
103
|
+
_items.append(_item_matched_points.to_dict())
|
104
104
|
_dict['matched_points'] = _items
|
105
105
|
# puts key-value pairs in additional_properties in the top level
|
106
106
|
if self.additional_properties is not None:
|
107
107
|
for _key, _value in self.additional_properties.items():
|
108
108
|
_dict[_key] = _value
|
109
109
|
|
110
|
+
# set to None if edges (nullable) is None
|
111
|
+
# and model_fields_set contains the field
|
112
|
+
if self.edges is None and "edges" in self.model_fields_set:
|
113
|
+
_dict['edges'] = None
|
114
|
+
|
110
115
|
return _dict
|
111
116
|
|
112
117
|
@classmethod
|
@@ -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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -110,9 +110,9 @@ class TraceAttributesRequest(BaseModel):
|
|
110
110
|
# override the default output from pydantic by calling `to_dict()` of each item in shape (list)
|
111
111
|
_items = []
|
112
112
|
if self.shape:
|
113
|
-
for
|
114
|
-
if
|
115
|
-
_items.append(
|
113
|
+
for _item_shape in self.shape:
|
114
|
+
if _item_shape:
|
115
|
+
_items.append(_item_shape.to_dict())
|
116
116
|
_dict['shape'] = _items
|
117
117
|
# override the default output from pydantic by calling `to_dict()` of costing_options
|
118
118
|
if self.costing_options:
|
@@ -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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -89,36 +89,41 @@ class TraceAttributesResponse(BaseModel):
|
|
89
89
|
# override the default output from pydantic by calling `to_dict()` of each item in edges (list)
|
90
90
|
_items = []
|
91
91
|
if self.edges:
|
92
|
-
for
|
93
|
-
if
|
94
|
-
_items.append(
|
92
|
+
for _item_edges in self.edges:
|
93
|
+
if _item_edges:
|
94
|
+
_items.append(_item_edges.to_dict())
|
95
95
|
_dict['edges'] = _items
|
96
96
|
# override the default output from pydantic by calling `to_dict()` of each item in admins (list)
|
97
97
|
_items = []
|
98
98
|
if self.admins:
|
99
|
-
for
|
100
|
-
if
|
101
|
-
_items.append(
|
99
|
+
for _item_admins in self.admins:
|
100
|
+
if _item_admins:
|
101
|
+
_items.append(_item_admins.to_dict())
|
102
102
|
_dict['admins'] = _items
|
103
103
|
# override the default output from pydantic by calling `to_dict()` of each item in matched_points (list)
|
104
104
|
_items = []
|
105
105
|
if self.matched_points:
|
106
|
-
for
|
107
|
-
if
|
108
|
-
_items.append(
|
106
|
+
for _item_matched_points in self.matched_points:
|
107
|
+
if _item_matched_points:
|
108
|
+
_items.append(_item_matched_points.to_dict())
|
109
109
|
_dict['matched_points'] = _items
|
110
110
|
# override the default output from pydantic by calling `to_dict()` of each item in alternate_paths (list)
|
111
111
|
_items = []
|
112
112
|
if self.alternate_paths:
|
113
|
-
for
|
114
|
-
if
|
115
|
-
_items.append(
|
113
|
+
for _item_alternate_paths in self.alternate_paths:
|
114
|
+
if _item_alternate_paths:
|
115
|
+
_items.append(_item_alternate_paths.to_dict())
|
116
116
|
_dict['alternate_paths'] = _items
|
117
117
|
# puts key-value pairs in additional_properties in the top level
|
118
118
|
if self.additional_properties is not None:
|
119
119
|
for _key, _value in self.additional_properties.items():
|
120
120
|
_dict[_key] = _value
|
121
121
|
|
122
|
+
# set to None if edges (nullable) is None
|
123
|
+
# and model_fields_set contains the field
|
124
|
+
if self.edges is None and "edges" in self.model_fields_set:
|
125
|
+
_dict['edges'] = None
|
126
|
+
|
122
127
|
return _dict
|
123
128
|
|
124
129
|
@classmethod
|
stadiamaps/models/trace_edge.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -59,7 +59,7 @@ class TraceEdge(BaseModel):
|
|
59
59
|
transit_type: Optional[StrictStr] = None
|
60
60
|
id: Optional[StrictInt] = None
|
61
61
|
way_id: Optional[StrictInt] = Field(default=None, description="The way identifier of the edge in OSM.")
|
62
|
-
weighted_grade: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The weighted grade factor.
|
62
|
+
weighted_grade: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The weighted grade factor. The weighted grade is derived from elevation data. It is a measure used for hill avoidance in routing - sort of a relative energy use along an edge. But since an edge can possibly go up and down over several hills, it might not equate to what you would normally think of as grade.")
|
63
63
|
max_upward_grade: Optional[StrictInt] = Field(default=None, description="The maximum upward slope. A value of 32768 indicates no elevation data is available for this edge.")
|
64
64
|
max_downward_grade: Optional[StrictInt] = Field(default=None, description="The maximum downward slope. A value of 32768 indicates no elevation data is available for this edge.")
|
65
65
|
mean_elevation: Optional[StrictInt] = Field(default=None, description="The mean elevation along the edge. Units are meters by default. If the `units` are specified as miles, then the mean elevation is returned in feet. A value of 32768 indicates no elevation data is available for this edge.")
|
stadiamaps/models/travel_mode.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
stadiamaps/models/tz_response.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
stadiamaps/models/warning.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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
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:
|
8
|
+
The version of the OpenAPI document: 7.0.0
|
9
9
|
Contact: support@stadiamaps.com
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
11
11
|
|
@@ -0,0 +1,160 @@
|
|
1
|
+
stadiamaps/__init__.py,sha256=ZswO7_7-akSpCPSNlmGFIEmvJ11KhCtnQ6vSHIMrS5g,8838
|
2
|
+
stadiamaps/api_client.py,sha256=lfr-l8MU8QnPf9QH3oNb5l3rR11nscay86iRAu9bR_o,27096
|
3
|
+
stadiamaps/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
4
|
+
stadiamaps/configuration.py,sha256=vf-pDRCDjWHTFyO0N2O3KAYeWpXAbdvDHvDjHG2kcRQ,16141
|
5
|
+
stadiamaps/exceptions.py,sha256=O0mx8YKW868T7_YoIYAoLPuh13NgDIcb5r1Q9gYPJ60,6019
|
6
|
+
stadiamaps/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
|
+
stadiamaps/rest.py,sha256=EZxUnQgHoAR11zUFQ7aqWFcbUApRk5weuOEZP3zaw2k,9451
|
8
|
+
stadiamaps/api/__init__.py,sha256=NRdfWLDRL2TYgITiS6K4OX8lmmVVmf9-_yyMe2_6hTs,208
|
9
|
+
stadiamaps/api/geocoding_api.py,sha256=oXb1aSe34ad_UblmNQ-Sf6xogiZF1vMnA31rWmo3f4E,165355
|
10
|
+
stadiamaps/api/geospatial_api.py,sha256=r2yVvfS1yjtqkVbf7RCf7TNNXpHK7YufyZ6erLgqiGo,29443
|
11
|
+
stadiamaps/api/routing_api.py,sha256=P-lw7z1ChURrAV2RP6us585SOYu8Kv12IIV33l4t5mU,80623
|
12
|
+
stadiamaps/models/__init__.py,sha256=-Igdw5SGCMFuB23x0L66-V34T7x4pfPcvFWIiBG8RGg,8170
|
13
|
+
stadiamaps/models/access.py,sha256=ZQL8KTZOiflTrpBvhSfBtFWXjiA8KeFDkrWvU8390XI,4179
|
14
|
+
stadiamaps/models/admin_region.py,sha256=xWn_vwyCcwZ3tW4nxjCnh2mf9d4_FnG0qPyiDXQctko,3793
|
15
|
+
stadiamaps/models/administrative.py,sha256=wyDhUiYkrBxYrwkIaFHiRhH9CegrXz1CW-IwkPGkcyA,3842
|
16
|
+
stadiamaps/models/annotation_filters.py,sha256=l0SdzGg2qKHDFj1zKqgSkIlf8Jpek75D8nRivWHUx_M,4314
|
17
|
+
stadiamaps/models/auto_costing_options.py,sha256=DyUKonOeXp7XV3DaHNcfmh1sy3Hmq2PuTCB7ohsAliU,12767
|
18
|
+
stadiamaps/models/auto_costing_options_all_of.py,sha256=JSiFHNEljR4if13lP3jeJc8ny_gSfVzyQZErdt6LaBM,7083
|
19
|
+
stadiamaps/models/base_costing_options.py,sha256=Wu1ywQvzcIPUQWYd6OdAYzqw6mG0mT78Nq2IZxCn7i4,7721
|
20
|
+
stadiamaps/models/base_trace_request.py,sha256=flVRzhyyKV2ISExV_8a47twNUB6G1siWQ-IvymVCrCA,7263
|
21
|
+
stadiamaps/models/bicycle_costing_options.py,sha256=5wIOkXeJLdz1Xw6Nq5WIGBxmxRuJjUKSGmn07j5L5Ag,11693
|
22
|
+
stadiamaps/models/bicycle_costing_options_all_of.py,sha256=AhDT4CYE3wRA0j1EXvBiK_Bevw2mN-WQA4AnAb7uM5A,5904
|
23
|
+
stadiamaps/models/bike_network.py,sha256=v-1qi4y1NPii5iQ9CUWWXuIhbaVAnreiVPGTKb8Tpgc,3432
|
24
|
+
stadiamaps/models/bulk_request.py,sha256=V6rg3_BeWxLKkN4LWxuB8SMoES8Cj8oRB06ywiT6A_8,3897
|
25
|
+
stadiamaps/models/bulk_request_query.py,sha256=FMPMBYaWWR57ArdJqZRd3wziPipi4bPmKMUm7yC1AV8,5439
|
26
|
+
stadiamaps/models/bulk_search_request_inner.py,sha256=nKDAb78ku8Vw-BWL0JRlYHcAYXWfaa-Q4qNwpYwk9w4,5686
|
27
|
+
stadiamaps/models/bulk_search_response.py,sha256=-Q2quVTww1WhIho6sAjtHeci_ARketGRddPuEEInOms,3746
|
28
|
+
stadiamaps/models/contour.py,sha256=WuaNhOSfzT0MLA39NU0dSeFw6pOsTw_0ew43vjhlWiE,3744
|
29
|
+
stadiamaps/models/coordinate.py,sha256=aN2zmPV-ybJV9uvqc9d7g7YfKDeLySOytH0RdIetSuM,3525
|
30
|
+
stadiamaps/models/costing_model.py,sha256=Eh3laR_JTC5AxXvF9RpjKGTcWqmkw1KcEoyWzcezrjw,1332
|
31
|
+
stadiamaps/models/costing_options.py,sha256=IBmingzzLZghFQ6bhhmvDglCOjPF_qD2ssf050CySBk,6813
|
32
|
+
stadiamaps/models/directions_options.py,sha256=sTetqkaaJ4zbj3nX-ZFqsUvKJ9P1eHXlx4rHbAxOdvk,4330
|
33
|
+
stadiamaps/models/distance_unit.py,sha256=NYtNi9rLlcJBjBNuRptu_7koKIdOW-vWHuNS4cGWQBw,780
|
34
|
+
stadiamaps/models/edge_sign.py,sha256=ep7l8rywmXmJgqdfKB9gUGAxJQQftF9awrdb95nrAsI,3491
|
35
|
+
stadiamaps/models/edge_use.py,sha256=pJDNXz7V0RnhCR4EMVRDFk-YP-9z9uioZe-dacRMf24,1663
|
36
|
+
stadiamaps/models/end_node.py,sha256=kyczXMuNJKIO-Wtrw1cUMeHTj1CxjvUFzLY-1o987t4,4775
|
37
|
+
stadiamaps/models/extended_directions_options.py,sha256=4xoog1bX0jl_IwUh0Va99hZ3JuHdPjsIq8fKxiAdtPI,4887
|
38
|
+
stadiamaps/models/geo_attributes.py,sha256=431CDArmEmGeeostd2Rq95YCD80ZfYTuENRWn8RdRDg,4213
|
39
|
+
stadiamaps/models/geo_json_geometry.py,sha256=zt9xx3zW_hFoI_Wl4ANFQZxDL51JJHuhyz0LVKGTWFc,6201
|
40
|
+
stadiamaps/models/geo_json_geometry_base.py,sha256=Y66nJ1pwdz2cG7bLoxXoMjWpWMducW1VOqQqedPz6Mw,3532
|
41
|
+
stadiamaps/models/geo_json_line_string.py,sha256=ytUA4WzMZXhP6KxGfnVM0lUTXsjLL5kf_AKYk0ywY4I,3773
|
42
|
+
stadiamaps/models/geo_json_line_string_all_of.py,sha256=_vHsj7n-c1QEAoL9M8MAWj7Q1wv4AtqpG0lXHluRYzA,2663
|
43
|
+
stadiamaps/models/geo_json_point.py,sha256=_c37ZzUYfZ99VwL_Ukoya3H5SpoCtzocU47fJ87mQPg,3747
|
44
|
+
stadiamaps/models/geo_json_point_all_of.py,sha256=Md1qYy2GAtnsy_8IwXrYXlNc5e_RBAfjTSBKzrrDUn8,2614
|
45
|
+
stadiamaps/models/geo_json_polygon.py,sha256=oUHIFhQOY9AllXmdoADiehgUEIu_Gq1zdUVxSFB17Qo,3767
|
46
|
+
stadiamaps/models/geo_json_polygon_all_of.py,sha256=lOsNbT0B-2d_wJTwOIQt7gny_aldHzT9cMC5XoIETtE,2648
|
47
|
+
stadiamaps/models/geocoding_object.py,sha256=0BtUEMbeuqXM8exWhnlcUp_Zzm4Sms1knTDNIcmkxJc,4217
|
48
|
+
stadiamaps/models/height_request.py,sha256=EWxZSCdcJT8vn6xU5JuBVNMp9gRALZjFfdOD56T7hAk,5968
|
49
|
+
stadiamaps/models/height_response.py,sha256=OnOyyotkfDxg48_lpvsFRKCQonXPooTgtfRFw7K9-HU,5110
|
50
|
+
stadiamaps/models/highway_classification.py,sha256=1XJ9Xl1gdpFAYNs7XgPTt7xbWDWu-F_W8QSbfGqFwdE,6219
|
51
|
+
stadiamaps/models/intersecting_edge.py,sha256=x8Q30dgyMW9yWo6qStPWQx8czopyTgNjmm4wow38XrE,4608
|
52
|
+
stadiamaps/models/isochrone_costing_model.py,sha256=rxeO8AYVexjzjf_r0d4M43vCNcxHbgqNqiwODeTRKzs,1043
|
53
|
+
stadiamaps/models/isochrone_feature.py,sha256=_hWSkdKIHmkMW1oiMpSF_y37RPUpxNcSp7hrIxMFpOY,3996
|
54
|
+
stadiamaps/models/isochrone_properties.py,sha256=a6pxUsMsNVw_7niM8sZRGcgxCNd7NOYsGfkO2GK5i6U,4235
|
55
|
+
stadiamaps/models/isochrone_request.py,sha256=zXTxhXI0WbaqnK-JPPEnacXOZjoWO54WwfpCy0H2S2s,6758
|
56
|
+
stadiamaps/models/isochrone_response.py,sha256=R9QswRdrBtVMm6faRfxx6p5qyqOmXlxrcakR1mnSTxI,4069
|
57
|
+
stadiamaps/models/locate_detailed_edge.py,sha256=agHBi2TlxH_rHPUQEfTVfzgxnuQFr3LvJRxzbd6xKeU,10839
|
58
|
+
stadiamaps/models/locate_edge.py,sha256=xeWoSjRi7XBRrA9JqgS4YslTSw8823U8eacQ3iSqEG0,6553
|
59
|
+
stadiamaps/models/locate_edge_info.py,sha256=i3sJPkcF8ICke-hiuSGa3R3XwgOXthUKXsoojisb82Q,4350
|
60
|
+
stadiamaps/models/locate_node.py,sha256=2Q-_cqLOM2bn462hXiuK_aFJnaYKZogmI7ZumNbgEQ0,5948
|
61
|
+
stadiamaps/models/locate_node_all_of.py,sha256=CIpyV5ssH034gmC-fHlshAOZkolUy7LYejgHLqHeMyI,4800
|
62
|
+
stadiamaps/models/locate_object.py,sha256=q-jDiDp0QU1ddjEN0sI13t65ssn_RvclBIii2ahYruw,5113
|
63
|
+
stadiamaps/models/low_speed_vehicle_costing_options.py,sha256=x_KiKRTu-CLYzKqGiLh_Ki-RJgRFFAzFkoEiD-w03nQ,9820
|
64
|
+
stadiamaps/models/maneuver_sign.py,sha256=G_Y2e-Xc2mB7cNXxXfwYeBvatHmI35TH4I1htumKBjs,6388
|
65
|
+
stadiamaps/models/maneuver_sign_element.py,sha256=9jVRaT-IIfJSiACW7eUp16KkN2a8Yi9nqGE97FMfcA4,3711
|
66
|
+
stadiamaps/models/map_match_costing_model.py,sha256=RfjCKzGfdkWLtTC3RNJkablP1g09i6N_QNFscYA7RfQ,1040
|
67
|
+
stadiamaps/models/map_match_request.py,sha256=HuJJfMPtObM3FDLwICfjpnHT3GGxlsU2g9XIfXhmNnA,10887
|
68
|
+
stadiamaps/models/map_match_request_all_of.py,sha256=4I-A8Lvt59Gu-xMvfsHIe-GcCfO_qLab6uCKAXqTasM,4291
|
69
|
+
stadiamaps/models/map_match_route_response.py,sha256=qB00BiTePrvu-B1-C9wOWGVI_FJS2UjtI4T2R-hc4e0,4404
|
70
|
+
stadiamaps/models/map_match_route_response_all_of.py,sha256=WOWvtLLp801qQM4aJoKR-MTuL6e1nJ3C7FrTRPJ4gxI,2649
|
71
|
+
stadiamaps/models/map_match_trace_options.py,sha256=Dqal8m2tc9lYGWLx7KuhnS-mOkOTLvJS_dIwDGQtZ5Q,4609
|
72
|
+
stadiamaps/models/map_match_waypoint.py,sha256=FhGsij98AG_OOjd7jdkdApnH_yGplwt6ul_0P70IEgo,4836
|
73
|
+
stadiamaps/models/map_match_waypoint_all_of.py,sha256=wLt5dB0JfKtZOqRcNoFZod2k-EJ3OcBGh_nhTjFA2gk,2793
|
74
|
+
stadiamaps/models/matched_point.py,sha256=jq430aygVf4m6VgoEzjnpsxT6BQ8IEcs_c0YA07lXy4,5417
|
75
|
+
stadiamaps/models/matrix_costing_model.py,sha256=b2TrxKHGi30vZhYk2FSuGSJb1byRsiu5W0H2rf7QgRY,1034
|
76
|
+
stadiamaps/models/matrix_distance.py,sha256=ZYXcnrnz5wxJCkG-IQSQXcqKAFMI75EEYKUVGl1Jh3c,4571
|
77
|
+
stadiamaps/models/matrix_request.py,sha256=nh50m6e7qW3ToNn0lchS-r6Th2Br9FQR_sNKv2p4D_E,6863
|
78
|
+
stadiamaps/models/matrix_response.py,sha256=YOuaDle-rNkLvMFmztfYEVF6ifMhViblcIDbdMqK4mU,6858
|
79
|
+
stadiamaps/models/matrix_waypoint.py,sha256=4wJIq9iJRtkMrC6wA12_k8CqMRhY-szfMn9-AixoFUM,3878
|
80
|
+
stadiamaps/models/motor_scooter_costing_options.py,sha256=gGgKE3-_d17VzBIGbMDo5jv4nVSEItiL7oxXaIdSBKg,13848
|
81
|
+
stadiamaps/models/motor_scooter_costing_options_all_of.py,sha256=3XuHRpUB_VvAro0XZwCbq1ExJbEMnB5cm6iagIruuP4,3525
|
82
|
+
stadiamaps/models/motorcycle_costing_options.py,sha256=ASpkm6EdZXUWa9OGplyrpTFg5VLDO7JetH9lInY9Q-4,13304
|
83
|
+
stadiamaps/models/motorcycle_costing_options_all_of.py,sha256=NJQD3ez643xF0r9Dmix88gGrPLzrbgJNBPz9il6G9HM,3479
|
84
|
+
stadiamaps/models/nearest_roads_request.py,sha256=LvM_1YsucMomEjeno6mQQ4MfjUt5SfX8StZjbKdxxCk,5752
|
85
|
+
stadiamaps/models/node_id.py,sha256=9TdRmcEO1YdeIMDjQao5xO7P78pk5cc2W7XG1rYRJGU,3367
|
86
|
+
stadiamaps/models/node_type.py,sha256=pA6u-dB45XxpdJ8n4aSYRse59UOJ57A1eC2dSJIgJlU,1052
|
87
|
+
stadiamaps/models/optimized_route_request.py,sha256=nz-I7xFFDfoYdvlxaBsoSwEddN2XqORaFVsSlnH0P7g,7725
|
88
|
+
stadiamaps/models/osrm_admin.py,sha256=jMUcyAmy7nuYzBAAZUCpBpBrL0ivt_h__xgHuh9y0K8,3460
|
89
|
+
stadiamaps/models/osrm_annotation.py,sha256=Gf6ZUj7vngDXOkR7rd1Jg_HUN7QITpz395lntZ-DCGo,4423
|
90
|
+
stadiamaps/models/osrm_banner_component.py,sha256=2AXouV4KCtShVjctC84lefjTeddVnX782Trf1PBLUtQ,3647
|
91
|
+
stadiamaps/models/osrm_banner_content.py,sha256=QCOCvxV5FYxgmhQJzZrcy5vjlVYzj-iMIFNeU8b5b1s,5100
|
92
|
+
stadiamaps/models/osrm_banner_instruction.py,sha256=hnLAvFX45GoGvjvJ8278ZDcxp_z_LnBc_VTzIFB5Lws,4157
|
93
|
+
stadiamaps/models/osrm_base_api_response.py,sha256=iG_bcrw3DavXE_MqG7nSJleXtF-lchBbuLOYj58TjiM,3944
|
94
|
+
stadiamaps/models/osrm_guidance_modifier.py,sha256=7SKYaV_2cfmE1K3pGrYrgaVOy0ULOYQDNHOoL6L1iHo,1062
|
95
|
+
stadiamaps/models/osrm_intersection.py,sha256=0sVpN47KFPmqfZMOJsatJe9FemY75PlxNiMthLVv9Tc,7294
|
96
|
+
stadiamaps/models/osrm_lane.py,sha256=d11HT414QuZoQQC_Q76ROQsrqxw91kez9lzOVSYb46M,3964
|
97
|
+
stadiamaps/models/osrm_route.py,sha256=XOzZsmOd-d6oUZUhCY5SNsn1sE4c09ON_8yB9qhi2hw,4525
|
98
|
+
stadiamaps/models/osrm_route_leg.py,sha256=0bKZdg9s105_-zF5ZkyBoGZu7pnP65ug7vWzUNaqec8,6308
|
99
|
+
stadiamaps/models/osrm_route_response.py,sha256=tIokHIAeJ1WdWhcD00-noq8yXzduoWMiHl8Zdilk4_g,5084
|
100
|
+
stadiamaps/models/osrm_route_step.py,sha256=O_FEG2wiGFRt-oZ0y-6pHWpKUvTHWu0MLfST80gfO8M,9491
|
101
|
+
stadiamaps/models/osrm_speed_limit.py,sha256=5P3oejnlCJjRJlEAdtwNIaddPDDdPrPIvruxeOcbSWA,4071
|
102
|
+
stadiamaps/models/osrm_step_maneuver.py,sha256=QxE1PnvHcQMk6Y69eQV-JmO5FkqfmnYdImb16iVoH4w,5253
|
103
|
+
stadiamaps/models/osrm_via_waypoint.py,sha256=dGELcOZ0OtN1JkInxXsJ69efdFmU4gw--wI03-hZnI4,3653
|
104
|
+
stadiamaps/models/osrm_voice_instruction.py,sha256=_BK4T6zPfyK83_EwvXDe7lSVDyh_v4FsgSUgNZ2CInk,3887
|
105
|
+
stadiamaps/models/osrm_waypoint.py,sha256=l_aDI8T4m9v4Du3BU3CAgptaq-4zyz5AM_V4kX12lgw,3696
|
106
|
+
stadiamaps/models/pedestrian_costing_options.py,sha256=B_MkoVEspS6aA2Vuon8WbIZrGGKfSWyAAs5urgkAY5o,9210
|
107
|
+
stadiamaps/models/pelias_geo_json_feature.py,sha256=4wPCNSurZHidh3PPKnzEJgXnYREaP2uGFUMtbwnjAUw,4595
|
108
|
+
stadiamaps/models/pelias_geo_json_properties.py,sha256=hUtvwO541y6zOJMiy0yb884rFP8LYI6Z00afOf5lnjg,8507
|
109
|
+
stadiamaps/models/pelias_geo_json_properties_addendum.py,sha256=XLu-CjhcJQl2CFl-r64UgAN1B0a5pHV35uAtqoGt9lA,3714
|
110
|
+
stadiamaps/models/pelias_geo_json_properties_addendum_osm.py,sha256=gMUwIPvpbMSK-5yX_zto4q7i1CY7qHC6Q1hKw3o-GXg,3519
|
111
|
+
stadiamaps/models/pelias_layer.py,sha256=sJH0JRRdHFOx0fXTtABFVMTdQaVSUyKsY-oldBkGArY,2522
|
112
|
+
stadiamaps/models/pelias_response.py,sha256=0Fd0w7A2Xs5RtLanIV6IAf6wzF7II-VKKAfoSdpmg18,4408
|
113
|
+
stadiamaps/models/pelias_response_geocoding.py,sha256=KPrpxVWAvd6U0lZCcsHA2WI29Ij4jyVl3YOuxvhvxmo,3621
|
114
|
+
stadiamaps/models/pelias_source.py,sha256=eHeOAY_sz3IA6GuZ9T_GVqbFtgc8xL0Q0iwIfcrDMLo,1023
|
115
|
+
stadiamaps/models/restrictions.py,sha256=GJF2jJE4gYmYWEmWmqbV3p9GLjULwbdhVReqDIEQ0RI,4203
|
116
|
+
stadiamaps/models/road_class.py,sha256=xvhMqqbkEQYnZTH3axGnFJ0Lu6Nxjejb43kBhECD_Cg,1002
|
117
|
+
stadiamaps/models/route200_response.py,sha256=ocFHpOWZUwD4vv02XZdq6g3pw2Gov67NZCKvnnJfyuY,5405
|
118
|
+
stadiamaps/models/route_leg.py,sha256=LftD935j5aloxw2HoAF1QHRzbYdAdWtpZLtCcncLl5g,4961
|
119
|
+
stadiamaps/models/route_maneuver.py,sha256=1P9EpLez1uzA3wcgT5SXOlRFtDklaEl_UoXcT7rGg6E,12445
|
120
|
+
stadiamaps/models/route_request.py,sha256=YgidL17tfFR8KPNbF-gtZAg4L-MuxpsIrkDuS_ZGDsI,10273
|
121
|
+
stadiamaps/models/route_response.py,sha256=TQqxCcE4auyGoI5KQdoBZ05xK90UyQb4hbceJ9xgpgw,4232
|
122
|
+
stadiamaps/models/route_response_alternates_inner.py,sha256=zpiFDT-RRFRAsYibep24aOk1fX6yZSmi7WbLPGHL-Vo,3448
|
123
|
+
stadiamaps/models/route_response_trip.py,sha256=dArv_kidtG7keQJCrRXRP5GqTaSXJMBMd_MgGbR125I,4565
|
124
|
+
stadiamaps/models/route_summary.py,sha256=EwQGRIXhDGoV-meVLehBqniMggan6Ou0yirvB2_nX08,4117
|
125
|
+
stadiamaps/models/route_trip.py,sha256=_0ESj8719WdEXRgZ4V8jYKP75-0xPqy76hqP5sfdQTY,5258
|
126
|
+
stadiamaps/models/routing_response_waypoint.py,sha256=ATmo4mN6iXONHhFG0W2Hhic_ceC24rbGsLCco7MvCEU,4778
|
127
|
+
stadiamaps/models/routing_response_waypoint_all_of.py,sha256=2u_wmV3NfKkz1rl_DDAbc_6rqMdamOXCFA3XSmh22sA,2756
|
128
|
+
stadiamaps/models/routing_waypoint.py,sha256=Uu9mQVsLUqqj_c0hkbnvWcaJ5GsmGdRTXAjKSWndBFo,9513
|
129
|
+
stadiamaps/models/routing_waypoint_all_of.py,sha256=v7BryWQd_LrFAaEXhHKQBU1OBiF4WmCRN8FJstZUFzU,7320
|
130
|
+
stadiamaps/models/routing_waypoint_all_of_search_filter.py,sha256=w0QjAeUEtwcvPzkJwIQ2Jg61EM0TYRbHGVMkWrAaMmY,4506
|
131
|
+
stadiamaps/models/search_bulk_query.py,sha256=Fv3SYqwdlVMeXnqhqSLRW1Qte0k_NxV8JI1QkxsR2zI,3842
|
132
|
+
stadiamaps/models/search_bulk_request.py,sha256=xFoH4wfaXA2uoN-qd-B01Wu7bQ-MoNq0vA6ERSrvZ4Q,5646
|
133
|
+
stadiamaps/models/search_query.py,sha256=IlcsmXdhU0fgY3gB4uMIqJjHAgzXIueAt1pCpDypvY0,8762
|
134
|
+
stadiamaps/models/search_structured_bulk_query.py,sha256=VKNzx5en5CWoRXneiApWUYjLb_UxRUilQQdr_AKs33A,3945
|
135
|
+
stadiamaps/models/search_structured_query.py,sha256=Qyh0b6VPuglAinuUJH_ABtQdjPKZqMUaHCDpAqXBcdE,10304
|
136
|
+
stadiamaps/models/simple_routing_waypoint.py,sha256=II6G8Uy6PrxK51daH7ARiUzDmh09Fp-Om3dYr-ciQqk,4502
|
137
|
+
stadiamaps/models/simple_routing_waypoint_all_of.py,sha256=mFHVKuKWz3AuOxfqyGA5D_pai-RCu4Msdmmgf7fwm7A,3385
|
138
|
+
stadiamaps/models/speeds.py,sha256=6n8jwkp1xugSFii51tOi6qz6QThYke3XaNHOIXRP3c8,4550
|
139
|
+
stadiamaps/models/trace_attribute_filter_options.py,sha256=nOoQDefla2OgyA3p-p_Mo3GHpKAG8uLd_unav8qaq8E,3813
|
140
|
+
stadiamaps/models/trace_attribute_key.py,sha256=OzclcPksQOKkhanX6TtCyWdAyvevjPAhcegJh4jTD5M,4323
|
141
|
+
stadiamaps/models/trace_attributes_base_response.py,sha256=oy4qcawMLYahWKZVTeetRpJp3JKyC1pnV23fl20fSO8,6202
|
142
|
+
stadiamaps/models/trace_attributes_request.py,sha256=P1r5BbZ9yBVLWfc3YAAn_dkqYodiznWuCSCcr75O9RY,7953
|
143
|
+
stadiamaps/models/trace_attributes_request_all_of.py,sha256=ClTna0geZtUYYJHbVf96BwchKQ8sbf9PwWqKtSNXkyM,2967
|
144
|
+
stadiamaps/models/trace_attributes_request_all_of_filters.py,sha256=GM0OdKUGHcmDECtjbmifzLwS-SnbZWSWzn1qGWgia0o,3374
|
145
|
+
stadiamaps/models/trace_attributes_response.py,sha256=QyOLQkN5-0wJzSJIdDWeSqAH27LpmdaqgXultJ2f1V4,7436
|
146
|
+
stadiamaps/models/trace_attributes_response_all_of.py,sha256=3RKI65ZLB1oH9l_S2yiNWewc-G43E7KrYwr8OK-iRlQ,3632
|
147
|
+
stadiamaps/models/trace_edge.py,sha256=_rJUvFmDIenVJQ8AewL1x7KHs7jXVHGtWeBtbkT0fI8,14690
|
148
|
+
stadiamaps/models/travel_mode.py,sha256=4OrGMfYiNGdroNQr-6Qef5Hf_0DmqkCG76olHARf-QM,844
|
149
|
+
stadiamaps/models/traversability.py,sha256=gz9Sn-H4N2uTTNOqUcuTs-bCCRTYvnsiSf6qa5KgrC0,860
|
150
|
+
stadiamaps/models/truck_costing_options.py,sha256=mjbDgjSckcbT52RILpWXHsya1-uZiXTDR68bUIrzxi4,13669
|
151
|
+
stadiamaps/models/truck_costing_options_all_of.py,sha256=WJDDKZ8rNATbzi8EUoceT7qDzK_kTyu_MQuh45M7Uy0,3804
|
152
|
+
stadiamaps/models/tz_response.py,sha256=vQhaPF5PARxa2AXXf4i3gVeQIoENj6ps3uOmI9BiF7M,3969
|
153
|
+
stadiamaps/models/valhalla_languages.py,sha256=hZONho_AdmTgqvHBOOfaJeiQrETfHn6CleaR9eZhi7w,1551
|
154
|
+
stadiamaps/models/valhalla_long_units.py,sha256=8rTwYNfHvAE9ksb0hZL9XJvvmwA7aEy_LWREaL7K7wE,817
|
155
|
+
stadiamaps/models/warning.py,sha256=yJ4n_L2pUaO9u7MLuGxY5Yl425670aVNHvs2nhsBQqA,3206
|
156
|
+
stadiamaps-4.0.0.dist-info/LICENSE.txt,sha256=vs0H95Mi3Rf1pSskD7rv4KbXLYCSYZ6cqZcFmek0hOg,1518
|
157
|
+
stadiamaps-4.0.0.dist-info/METADATA,sha256=kiEQpmTJhgoWi0UJySciQ5KCVEiIhkEBN2N-RNW6bUU,2455
|
158
|
+
stadiamaps-4.0.0.dist-info/WHEEL,sha256=uCRv0ZEik_232NlR4YDw4Pv3Ajt5bKvMH13NUU7hFuI,91
|
159
|
+
stadiamaps-4.0.0.dist-info/top_level.txt,sha256=dFHpcPo1v2Ajmc74F29BleqU5u8MLB0fgTnNYJIatx0,11
|
160
|
+
stadiamaps-4.0.0.dist-info/RECORD,,
|