stadiamaps 4.0.0__py3-none-any.whl → 6.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 +32 -14
- stadiamaps/api/geocoding_api.py +976 -153
- stadiamaps/api/geospatial_api.py +7 -3
- stadiamaps/api/routing_api.py +22 -8
- stadiamaps/api_client.py +15 -6
- stadiamaps/configuration.py +156 -40
- stadiamaps/exceptions.py +18 -1
- stadiamaps/models/__init__.py +31 -13
- stadiamaps/models/access.py +1 -1
- stadiamaps/models/addendum_v2.py +143 -0
- stadiamaps/models/address_components_v2.py +134 -0
- stadiamaps/models/admin_region.py +1 -1
- stadiamaps/models/administrative.py +1 -1
- stadiamaps/models/annotation_filters.py +1 -1
- 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 +1 -1
- stadiamaps/models/bulk_request_query.py +1 -1
- stadiamaps/models/bulk_search_response.py +4 -4
- stadiamaps/models/context.py +119 -0
- 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 +4 -4
- 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 +1 -1
- stadiamaps/models/extended_directions_options.py +1 -1
- stadiamaps/models/feature_properties_v2.py +126 -0
- stadiamaps/models/feature_properties_v2_properties.py +184 -0
- stadiamaps/models/foursquare_addendum.py +113 -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/{pelias_response.py → geocode_response.py} +8 -8
- stadiamaps/models/geocode_response_envelope_properties_v2.py +125 -0
- stadiamaps/models/{pelias_geo_json_feature.py → geocoding_geo_json_feature.py} +8 -8
- stadiamaps/models/{pelias_geo_json_properties.py → geocoding_geo_json_properties.py} +43 -15
- stadiamaps/models/{pelias_geo_json_properties_addendum.py → geocoding_geo_json_properties_addendum.py} +7 -7
- stadiamaps/models/{pelias_geo_json_properties_addendum_osm.py → geocoding_geo_json_properties_addendum_osm.py} +5 -5
- stadiamaps/models/{pelias_layer.py → geocoding_layer.py} +3 -3
- stadiamaps/models/geocoding_meta.py +108 -0
- stadiamaps/models/geocoding_object.py +1 -1
- stadiamaps/models/{pelias_source.py → geocoding_source.py} +4 -3
- stadiamaps/models/geonames_addendum.py +101 -0
- stadiamaps/models/height_request.py +1 -1
- stadiamaps/models/height_response.py +1 -1
- 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 +1 -1
- stadiamaps/models/isochrone_response.py +1 -1
- stadiamaps/models/layer_id.py +57 -0
- 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 +1 -1
- stadiamaps/models/low_speed_vehicle_costing_options.py +1 -1
- stadiamaps/models/maneuver_sign.py +1 -1
- stadiamaps/models/maneuver_sign_element.py +1 -1
- stadiamaps/models/map_match_costing_model.py +1 -1
- stadiamaps/models/map_match_request.py +10 -8
- stadiamaps/models/map_match_route_response.py +1 -1
- stadiamaps/models/map_match_trace_options.py +1 -1
- stadiamaps/models/map_match_waypoint.py +3 -3
- stadiamaps/models/match_type.py +39 -0
- 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 +4 -4
- stadiamaps/models/matrix_response.py +4 -4
- 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/open_street_map_addendum.py +162 -0
- stadiamaps/models/optimized_route_request.py +10 -8
- stadiamaps/models/osrm_admin.py +1 -1
- stadiamaps/models/osrm_annotation.py +1 -1
- stadiamaps/models/osrm_banner_component.py +1 -1
- stadiamaps/models/osrm_banner_content.py +1 -1
- stadiamaps/models/osrm_banner_instruction.py +1 -1
- stadiamaps/models/osrm_base_api_response.py +1 -1
- stadiamaps/models/osrm_guidance_modifier.py +1 -1
- stadiamaps/models/osrm_intersection.py +1 -1
- stadiamaps/models/osrm_lane.py +1 -1
- stadiamaps/models/osrm_route.py +1 -1
- stadiamaps/models/osrm_route_leg.py +1 -1
- stadiamaps/models/osrm_route_response.py +1 -1
- stadiamaps/models/osrm_route_step.py +1 -1
- stadiamaps/models/osrm_speed_limit.py +1 -1
- stadiamaps/models/osrm_step_maneuver.py +1 -1
- stadiamaps/models/osrm_via_waypoint.py +1 -1
- stadiamaps/models/osrm_voice_instruction.py +1 -1
- stadiamaps/models/osrm_waypoint.py +1 -1
- stadiamaps/models/pedestrian_costing_options.py +8 -5
- stadiamaps/models/pedestrian_type.py +39 -0
- stadiamaps/models/point.py +104 -0
- stadiamaps/models/precision.py +38 -0
- stadiamaps/models/properties_v2.py +184 -0
- stadiamaps/models/restrictions.py +11 -11
- stadiamaps/models/road_class.py +1 -1
- stadiamaps/models/route200_response.py +1 -1
- stadiamaps/models/route_leg.py +1 -1
- stadiamaps/models/route_maneuver.py +1 -1
- stadiamaps/models/route_request.py +5 -5
- stadiamaps/models/route_response.py +1 -1
- 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/{valhalla_languages.py → routing_languages.py} +4 -4
- stadiamaps/models/{valhalla_long_units.py → routing_long_units.py} +4 -4
- stadiamaps/models/routing_response_waypoint.py +3 -3
- stadiamaps/models/routing_waypoint.py +3 -3
- stadiamaps/models/routing_waypoint_all_of_search_filter.py +1 -1
- stadiamaps/models/search_query.py +7 -7
- stadiamaps/models/search_structured_query.py +8 -8
- stadiamaps/models/simple_routing_waypoint.py +3 -3
- stadiamaps/models/source_attribution.py +110 -0
- stadiamaps/models/source_id.py +41 -0
- 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 +1 -1
- stadiamaps/models/trace_attributes_request.py +10 -8
- stadiamaps/models/trace_attributes_response.py +4 -9
- stadiamaps/models/trace_edge.py +2 -7
- 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/warning.py +1 -1
- stadiamaps/models/whos_on_first_concordances.py +246 -0
- stadiamaps/models/wof_context.py +210 -0
- stadiamaps/models/wof_context_component.py +110 -0
- stadiamaps/rest.py +2 -2
- stadiamaps-6.0.0.dist-info/METADATA +117 -0
- stadiamaps-6.0.0.dist-info/RECORD +183 -0
- {stadiamaps-4.0.0.dist-info → stadiamaps-6.0.0.dist-info}/WHEEL +1 -1
- {stadiamaps-4.0.0.dist-info → stadiamaps-6.0.0.dist-info}/top_level.txt +1 -0
- test/integration/__init__.py +0 -0
- test/integration/test_eu_endpoint.py +21 -0
- test/integration/test_gecoding.py +112 -0
- test/integration/test_geospatial.py +43 -0
- test/integration/test_routing.py +282 -0
- stadiamaps/models/pelias_response_geocoding.py +0 -89
- stadiamaps/models/route_response_trip.py +0 -117
- stadiamaps/models/trace_attributes_response_all_of.py +0 -96
- stadiamaps-4.0.0.dist-info/METADATA +0 -79
- stadiamaps-4.0.0.dist-info/RECORD +0 -160
- {stadiamaps-4.0.0.dist-info → stadiamaps-6.0.0.dist-info/licenses}/LICENSE.txt +0 -0
@@ -1,160 +0,0 @@
|
|
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,,
|
File without changes
|