stadiamaps 1.0.7__py3-none-any.whl → 2.1.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 +6 -24
- stadiamaps/api/geocoding_api.py +1917 -760
- stadiamaps/api/geospatial_api.py +483 -221
- stadiamaps/api/routing_api.py +1615 -723
- stadiamaps/api_client.py +275 -272
- stadiamaps/api_response.py +12 -16
- stadiamaps/configuration.py +13 -11
- stadiamaps/exceptions.py +67 -30
- stadiamaps/models/__init__.py +5 -23
- stadiamaps/models/access.py +44 -26
- stadiamaps/models/admin_region.py +46 -28
- stadiamaps/models/administrative.py +48 -30
- stadiamaps/models/auto_costing_options.py +75 -48
- stadiamaps/models/base_costing_options.py +59 -34
- stadiamaps/models/base_trace_request.py +70 -40
- stadiamaps/models/bicycle_costing_options.py +67 -42
- stadiamaps/models/bike_network.py +42 -24
- stadiamaps/models/contour.py +45 -27
- stadiamaps/models/coordinate.py +45 -26
- stadiamaps/models/costing_model.py +10 -12
- stadiamaps/models/costing_options.py +51 -33
- stadiamaps/models/directions_options.py +45 -27
- stadiamaps/models/distance_unit.py +8 -11
- stadiamaps/models/edge_sign.py +46 -28
- stadiamaps/models/edge_use.py +8 -11
- stadiamaps/models/end_node.py +48 -30
- stadiamaps/models/geo_attributes.py +47 -29
- stadiamaps/models/geo_json_geometry.py +25 -25
- stadiamaps/models/geo_json_geometry_base.py +45 -27
- stadiamaps/models/geo_json_line_string.py +47 -28
- stadiamaps/models/geo_json_line_string_all_of.py +1 -1
- stadiamaps/models/geo_json_point.py +47 -28
- stadiamaps/models/geo_json_point_all_of.py +1 -1
- stadiamaps/models/geo_json_polygon.py +47 -28
- stadiamaps/models/geo_json_polygon_all_of.py +1 -1
- stadiamaps/models/geocoding_object.py +46 -28
- stadiamaps/models/height_request.py +55 -34
- stadiamaps/models/height_response.py +49 -30
- stadiamaps/models/highway_classification.py +52 -34
- stadiamaps/models/intersecting_edge.py +45 -27
- stadiamaps/models/isochrone_costing_model.py +8 -11
- stadiamaps/models/isochrone_feature.py +45 -27
- stadiamaps/models/isochrone_properties.py +48 -30
- stadiamaps/models/isochrone_request.py +54 -35
- stadiamaps/models/isochrone_response.py +47 -29
- stadiamaps/models/locate_detailed_edge.py +73 -55
- stadiamaps/models/locate_edge.py +56 -39
- stadiamaps/models/locate_edge_info.py +47 -29
- stadiamaps/models/locate_node.py +50 -31
- stadiamaps/models/locate_object.py +49 -31
- stadiamaps/models/maneuver_sign.py +50 -32
- stadiamaps/models/maneuver_sign_element.py +45 -27
- stadiamaps/models/map_match_costing_model.py +8 -11
- stadiamaps/models/map_match_request.py +74 -44
- stadiamaps/models/map_match_route_response.py +57 -29
- stadiamaps/models/map_match_trace_options.py +47 -29
- stadiamaps/models/map_match_waypoint.py +49 -30
- stadiamaps/models/matched_point.py +52 -34
- stadiamaps/models/matrix_costing_model.py +9 -12
- stadiamaps/models/matrix_distance.py +46 -28
- stadiamaps/models/matrix_request.py +70 -39
- stadiamaps/models/matrix_response.py +60 -36
- stadiamaps/models/motor_scooter_costing_options.py +76 -49
- stadiamaps/models/motorcycle_costing_options.py +75 -48
- stadiamaps/models/nearest_roads_request.py +65 -34
- stadiamaps/models/node_id.py +42 -24
- stadiamaps/models/node_type.py +8 -11
- stadiamaps/models/optimized_route_request.py +66 -35
- stadiamaps/models/pedestrian_costing_options.py +59 -40
- stadiamaps/models/pelias_geo_json_feature.py +50 -31
- stadiamaps/models/pelias_geo_json_properties.py +54 -36
- stadiamaps/models/pelias_geo_json_properties_addendum.py +43 -25
- stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +42 -24
- stadiamaps/models/pelias_layer.py +8 -11
- stadiamaps/models/pelias_response.py +49 -30
- stadiamaps/models/pelias_source.py +8 -11
- stadiamaps/models/restrictions.py +44 -26
- stadiamaps/models/road_class.py +8 -11
- stadiamaps/models/route_leg.py +48 -29
- stadiamaps/models/route_maneuver.py +73 -55
- stadiamaps/models/route_request.py +76 -43
- stadiamaps/models/route_response.py +56 -28
- stadiamaps/models/route_response_alternates_inner.py +105 -0
- stadiamaps/models/route_summary.py +48 -30
- stadiamaps/models/route_trip.py +135 -0
- stadiamaps/models/routing_response_waypoint.py +49 -30
- stadiamaps/models/routing_waypoint.py +60 -41
- stadiamaps/models/routing_waypoint_all_of_search_filter.py +48 -30
- stadiamaps/models/simple_routing_waypoint.py +48 -29
- stadiamaps/models/speeds.py +49 -31
- stadiamaps/models/trace_attribute_filter_options.py +47 -28
- stadiamaps/models/trace_attribute_key.py +8 -11
- stadiamaps/models/trace_attributes_base_response.py +51 -32
- stadiamaps/models/trace_attributes_request.py +72 -42
- stadiamaps/models/trace_attributes_request_all_of_filters.py +1 -1
- stadiamaps/models/trace_attributes_response.py +54 -35
- stadiamaps/models/trace_edge.py +88 -70
- stadiamaps/models/travel_mode.py +8 -11
- stadiamaps/models/traversability.py +8 -11
- stadiamaps/models/truck_costing_options.py +78 -51
- stadiamaps/models/tz_response.py +45 -27
- stadiamaps/models/valhalla_languages.py +8 -11
- stadiamaps/models/valhalla_long_units.py +8 -11
- stadiamaps/models/warning.py +42 -24
- stadiamaps/py.typed +0 -0
- stadiamaps/rest.py +127 -172
- {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/METADATA +4 -4
- stadiamaps-2.1.0.dist-info/RECORD +128 -0
- {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/WHEEL +1 -1
- stadiamaps-1.0.7.dist-info/RECORD +0 -125
- {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/LICENSE.txt +0 -0
- {stadiamaps-1.0.7.dist-info → stadiamaps-2.1.0.dist-info}/top_level.txt +0 -0
@@ -1,125 +0,0 @@
|
|
1
|
-
stadiamaps/__init__.py,sha256=WJiaUo39yBpXpgZEKelfnEHJLiCsMZIwGlJDZ0mdtFA,8524
|
2
|
-
stadiamaps/api_client.py,sha256=UOIOsdW8myBhX8jUP5DgcrPr7rnDQ7SALrstww-73xM,30062
|
3
|
-
stadiamaps/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
|
4
|
-
stadiamaps/configuration.py,sha256=Cj3jjs9pvatQv0A9S7lBsobQqaZdXJfHKTw4F1vlk2c,15506
|
5
|
-
stadiamaps/exceptions.py,sha256=NpZr0WhgYYWDL8nRBz8IUE9HS7PmIofA0VANqdM2MKo,5207
|
6
|
-
stadiamaps/rest.py,sha256=0jpMdaZhgq7D_JJOHcG-eQqNeNvYHregyQP8EQyoZqk,12849
|
7
|
-
stadiamaps/api/__init__.py,sha256=NRdfWLDRL2TYgITiS6K4OX8lmmVVmf9-_yyMe2_6hTs,208
|
8
|
-
stadiamaps/api/geocoding_api.py,sha256=jKTdzP9qpY7NV4mD_ovbNMaZA4uyCa493aFFWo1XEDY,97488
|
9
|
-
stadiamaps/api/geospatial_api.py,sha256=VgZ3RGrnsQU-SdTgkcRiPbU0nwmd3tdL-NZvv_vr248,18619
|
10
|
-
stadiamaps/api/routing_api.py,sha256=JLKPZZKREdT8Ah0qnp_FjGlh6RUqHwxSwbxWLQjEzjU,50673
|
11
|
-
stadiamaps/models/__init__.py,sha256=dVclUAQvZ-NdQ7pBHOHW7aMhcK_zzcRREeJTT6-ztQI,7856
|
12
|
-
stadiamaps/models/access.py,sha256=JPHLPDlKb9Vh5lCbZntNcJpo3REifjhIzgOMl7BmxnQ,3475
|
13
|
-
stadiamaps/models/admin_region.py,sha256=nGSEEO9uwRi02HL6VswZP7HnCaYqNUrXI6mY1O6Bs-8,3085
|
14
|
-
stadiamaps/models/administrative.py,sha256=6dd0f1dawqDjj2PGbpcbpsCYIa4iAo4ZtANuKTh45XY,3146
|
15
|
-
stadiamaps/models/auto_costing_options.py,sha256=sCGUBNaieIGfX-1G0mbofB3kSkSJVq5gK2sYP1_YSSg,10457
|
16
|
-
stadiamaps/models/auto_costing_options_all_of.py,sha256=JSiFHNEljR4if13lP3jeJc8ny_gSfVzyQZErdt6LaBM,7083
|
17
|
-
stadiamaps/models/base_costing_options.py,sha256=6Lq41AytDCuPEmC9hw1MvccurDm4_SV1X2pmdDnul7k,5886
|
18
|
-
stadiamaps/models/base_trace_request.py,sha256=8UwIEz0wPifrYIQ_aaD9kMyZlbd_VKa5JKm_Krw6mlE,5850
|
19
|
-
stadiamaps/models/bicycle_costing_options.py,sha256=UD671EZ4mQe8jzNUgYU6BKj0Cp8XMNW9D7GPuLYEyrg,9291
|
20
|
-
stadiamaps/models/bicycle_costing_options_all_of.py,sha256=AhDT4CYE3wRA0j1EXvBiK_Bevw2mN-WQA4AnAb7uM5A,5904
|
21
|
-
stadiamaps/models/bike_network.py,sha256=kIAncD7-LBIlytul8I3CU29ddQnyrvas-KC43lD3Khc,2756
|
22
|
-
stadiamaps/models/contour.py,sha256=cWPN4JIvelPo78xe_EZdIIsmGwV6N2HshNa3zTb5Y_0,3028
|
23
|
-
stadiamaps/models/coordinate.py,sha256=5qTRUrwpTThTRlxCRkxEuvXLJW6jLitv4OClpIUwq_E,2675
|
24
|
-
stadiamaps/models/costing_model.py,sha256=vAkmJqZ9XTKkvsxODyZaadLG0ZZXMErSo-VtGulaZdg,1328
|
25
|
-
stadiamaps/models/costing_options.py,sha256=nCvpspnf4rPa4NYgLbU30D7mXoSOlcRApN-G7q2Bf_Q,5637
|
26
|
-
stadiamaps/models/directions_options.py,sha256=z-nS6j9V6NQ-JbV6lCLsiDeLmw5pRsMhqajx6BaCo5M,3494
|
27
|
-
stadiamaps/models/distance_unit.py,sha256=CWJ4rbThJTZmwYYpjJWIgOGGdevsWTWKGgN3RVja42M,777
|
28
|
-
stadiamaps/models/edge_sign.py,sha256=VpmhgOYYnyUk6Ow9VLEGS8nQJ65eu6joKgTRg16Hkm8,2830
|
29
|
-
stadiamaps/models/edge_use.py,sha256=zev9OpdWQk59cRAYCzivPgZdjT15YuT1ttF9XrzjMBw,1650
|
30
|
-
stadiamaps/models/end_node.py,sha256=UfuSMfjOqxlJjcGYTNoXsboZGRLVbeSLV-sbN3v92Tg,4008
|
31
|
-
stadiamaps/models/geo_attributes.py,sha256=in-thnY8vDD6bJuKH7sI7dwhC-NFXkIH8wW_Ek2Qm8E,3505
|
32
|
-
stadiamaps/models/geo_json_geometry.py,sha256=BuYjUjqW98aP90gKN9gQk_xLUoPms9qrFbXF4g3HXzw,5934
|
33
|
-
stadiamaps/models/geo_json_geometry_base.py,sha256=ChRC6Cc9ohksN4BG56oNVHbx7VMcMn7i_FiGqPYdoyI,2874
|
34
|
-
stadiamaps/models/geo_json_line_string.py,sha256=05sradCB5M00-uSqVTXCJeoGPyrcEh1tcuh8uJ7W4O0,3091
|
35
|
-
stadiamaps/models/geo_json_line_string_all_of.py,sha256=UXBubbEPHUy81O-sAQoXHIRn3eov56NG_TkqhEWQ8d0,2661
|
36
|
-
stadiamaps/models/geo_json_point.py,sha256=xxZ2sTbaO9SCHq1X5ZV_txh652JD_fSX0tKVgLISN7Q,3042
|
37
|
-
stadiamaps/models/geo_json_point_all_of.py,sha256=yN8e1mO01ejlEq8cwLR20yazCFOCF08iU1d7Fhvcib0,2612
|
38
|
-
stadiamaps/models/geo_json_polygon.py,sha256=vkjboMTNECabEoQY7z8AY4Fy5U_nybdakCn7HhAOGUw,3076
|
39
|
-
stadiamaps/models/geo_json_polygon_all_of.py,sha256=0Wt5PHjIyzgNDk73Eua3QShSvDdn0D44g2oBP7ae008,2646
|
40
|
-
stadiamaps/models/geocoding_object.py,sha256=NYahizJ1eiAiWzoAS6vgrkier38VKEWQQe90EyFVopM,3557
|
41
|
-
stadiamaps/models/height_request.py,sha256=UUerWXZKa5RXpKUzq379_tGCSUE0nzfQO8xWX88vsAI,4844
|
42
|
-
stadiamaps/models/height_response.py,sha256=x9c_B2xJPEqmb80HwATt-OOMwPEi6pV4sP4UVU4N9m8,4281
|
43
|
-
stadiamaps/models/highway_classification.py,sha256=qvYnhGxCaHfv4wIRNUQlJDuWWepTjx09b9Nom_7PhU0,5512
|
44
|
-
stadiamaps/models/intersecting_edge.py,sha256=4DNLxm3FpIm0bzp1vnf-cw-5xrFD7-lYfmJGF1NgAuA,3928
|
45
|
-
stadiamaps/models/isochrone_costing_model.py,sha256=nekESEPr5Yzm3-kcM8ZK03PQJV85LLID1iWA4my_IaU,866
|
46
|
-
stadiamaps/models/isochrone_feature.py,sha256=nX5g-UIO-zLMPMgjJ7_1KXh_ak5hCSuQivwkaPwLMX8,3338
|
47
|
-
stadiamaps/models/isochrone_properties.py,sha256=y7Att1e7Vdo7CZ-Zq5KEmFyLd-6mKZ5M-ZRaso9tSzE,3560
|
48
|
-
stadiamaps/models/isochrone_request.py,sha256=Qt4r07SgBkxxx-OMwOFh-SB71JcW7RUBn-Ha8Db0e-4,6005
|
49
|
-
stadiamaps/models/isochrone_response.py,sha256=pbac2B561s6dAmPegBElndTLnMpzq0yVt3NaOiGIISc,3428
|
50
|
-
stadiamaps/models/locate_detailed_edge.py,sha256=Z-S8VUrg6Dd7sRqo-uqVTLSdNtsUMNjYNV_DqVWYpzU,10047
|
51
|
-
stadiamaps/models/locate_edge.py,sha256=dzQJnz_wpr-CA9O_lbgwt8hjrR3SZD0noI9Fq50r4As,5783
|
52
|
-
stadiamaps/models/locate_edge_info.py,sha256=Dud-Koin_LNfPIEaMtFeOfNXona99Tg9Ao_cRiiibrY,3660
|
53
|
-
stadiamaps/models/locate_node.py,sha256=2jWTAI2sjUgHbTN9wCUIb-Qs3v6B3Es7pqOSLVG7b7c,5082
|
54
|
-
stadiamaps/models/locate_node_all_of.py,sha256=CIpyV5ssH034gmC-fHlshAOZkolUy7LYejgHLqHeMyI,4800
|
55
|
-
stadiamaps/models/locate_object.py,sha256=N_XMUuhMT1GY4OVkFfjlQJPTwBznmvi9ZKZE1WJGLR0,4004
|
56
|
-
stadiamaps/models/maneuver_sign.py,sha256=PeVutRW-CncNchZlOekdo73RwlxITbpWO4RgRPnktHY,5481
|
57
|
-
stadiamaps/models/maneuver_sign_element.py,sha256=0Q7xM6lD0qypHj3-NfuJZ9RiDEaAywMTpWxA3_vI-OA,3056
|
58
|
-
stadiamaps/models/map_match_costing_model.py,sha256=-Q8Q3a1HEky9Sl8-T0zRV50OouXkNcibKSwW7Ji74E8,877
|
59
|
-
stadiamaps/models/map_match_request.py,sha256=nZoHcySy-rz1MxNVlIUhBUZ4fpc1hzGRunJkbGDlazw,7694
|
60
|
-
stadiamaps/models/map_match_request_all_of.py,sha256=4I-A8Lvt59Gu-xMvfsHIe-GcCfO_qLab6uCKAXqTasM,4291
|
61
|
-
stadiamaps/models/map_match_route_response.py,sha256=wWQ2NmmLdplZcazemE--29BHSbds4fy0Dm-hLtvsgCM,3152
|
62
|
-
stadiamaps/models/map_match_route_response_all_of.py,sha256=WOWvtLLp801qQM4aJoKR-MTuL6e1nJ3C7FrTRPJ4gxI,2649
|
63
|
-
stadiamaps/models/map_match_trace_options.py,sha256=8gwM_uCI_S5azTzzuS6sjoxxKSdC9CWPFE0aW3il4DE,3929
|
64
|
-
stadiamaps/models/map_match_waypoint.py,sha256=F-XyH_gnufLc-4NGiAnd7dtHAy05dswUFjWi4Y8rwvc,3966
|
65
|
-
stadiamaps/models/map_match_waypoint_all_of.py,sha256=wLt5dB0JfKtZOqRcNoFZod2k-EJ3OcBGh_nhTjFA2gk,2793
|
66
|
-
stadiamaps/models/matched_point.py,sha256=x3zrzir5iY_9AHbExZjXmM2RzQm-oDxcpIrjsYmPYHk,4711
|
67
|
-
stadiamaps/models/matrix_costing_model.py,sha256=8GO8tmxU-EI3KD2_CAgk7G6qAGFOvHeCAXdzQN3YZhY,1015
|
68
|
-
stadiamaps/models/matrix_distance.py,sha256=gk8R9XxPh0tjEAEUbcYEBjcpQv-XOD3ATFWCO1W_iN4,3215
|
69
|
-
stadiamaps/models/matrix_request.py,sha256=unKPrTTbfL0dD5DkkdWR3BDBVOomjsZHsllvLfE2gWM,5338
|
70
|
-
stadiamaps/models/matrix_response.py,sha256=Og-mPnGeUx_Kb6huNd9ec5djUGFFGb1VHlOIx1rUw_I,5542
|
71
|
-
stadiamaps/models/motor_scooter_costing_options.py,sha256=n1uqPoo4Zbw0DvGWIRiF60RyrJf7VZTMi3TwdM0DXlc,11494
|
72
|
-
stadiamaps/models/motor_scooter_costing_options_all_of.py,sha256=3XuHRpUB_VvAro0XZwCbq1ExJbEMnB5cm6iagIruuP4,3525
|
73
|
-
stadiamaps/models/motorcycle_costing_options.py,sha256=sjUvtfuFzLbkr9RO5_g-pDhPe1sEyobzYerojRFSq9U,10980
|
74
|
-
stadiamaps/models/motorcycle_costing_options_all_of.py,sha256=NJQD3ez643xF0r9Dmix88gGrPLzrbgJNBPz9il6G9HM,3479
|
75
|
-
stadiamaps/models/nearest_roads_request.py,sha256=rhBB7IpyXhPGXAh32_V4emhp3v7wZBkvWpjmc2k2x3A,4301
|
76
|
-
stadiamaps/models/node_id.py,sha256=ISsMI02TCczXlsWNvx69NJv3dEGrJmhT3grEibJmzGg,2671
|
77
|
-
stadiamaps/models/node_type.py,sha256=WP3ByQd9ZqaHpGj-OyouZ0NRVpRr3WSKwPmXDNdy0ao,1041
|
78
|
-
stadiamaps/models/optimized_route_request.py,sha256=J5pajRSaZQ2rKu5kci3Bnxlc9on0zudJsbdjSpwjblM,4530
|
79
|
-
stadiamaps/models/pedestrian_costing_options.py,sha256=qKelcRAgmH3H8hpOEqYregsZ-kc6-JuvlQg0tmWUv6Y,8256
|
80
|
-
stadiamaps/models/pelias_geo_json_feature.py,sha256=m0ziZeVeBpEtjGiOMFksMB7hYyX_qPnRzESFsv8AvAE,3996
|
81
|
-
stadiamaps/models/pelias_geo_json_properties.py,sha256=8P0kh9WEbvuVhLJ-vzzO9jOQaI1JHF2UTL0l3UUFz7M,7800
|
82
|
-
stadiamaps/models/pelias_geo_json_properties_addendum.py,sha256=pXQxM7GK04YbJFPwFPDHmv42peYGAIEKSjYSLQqKxyo,3122
|
83
|
-
stadiamaps/models/pelias_geo_json_properties_addendum_osm.py,sha256=GKN2uEqDSuQN0CWaMfyZOquMvJtaDOjpvD8xgJyolGg,2935
|
84
|
-
stadiamaps/models/pelias_layer.py,sha256=BU0DKpHSB8MRSr1IyZOaKxFqDmsgT19OGVMbrufdjr0,2517
|
85
|
-
stadiamaps/models/pelias_response.py,sha256=hQNOclXNTpfnmdRzeYTq7C4QrNoT096AHoiurhEMpSs,3737
|
86
|
-
stadiamaps/models/pelias_response_geocoding.py,sha256=KPrpxVWAvd6U0lZCcsHA2WI29Ij4jyVl3YOuxvhvxmo,3621
|
87
|
-
stadiamaps/models/pelias_source.py,sha256=rBZUTS63-Sp35wnI9s5nL5ESTwFNecziQEPPvxLz7zs,1020
|
88
|
-
stadiamaps/models/restrictions.py,sha256=h4fXoCo-7vMyjT8Nl_CztXgBoR9N5-ZXWKEuqvP9fQE,3523
|
89
|
-
stadiamaps/models/road_class.py,sha256=uD2bpU017XrlDgexVDrsq_4b9oRvX8e3gi1hv9SYZvg,993
|
90
|
-
stadiamaps/models/route_leg.py,sha256=_d67rdS2kHyH-mA9RE14knXKnUbqaKWS_ABjVP6S-Os,3562
|
91
|
-
stadiamaps/models/route_maneuver.py,sha256=KT-7999OvqmcDcxJn1PjgFKoMX-v9heXB5Z4IfOHweQ,11655
|
92
|
-
stadiamaps/models/route_request.py,sha256=hosDSLIgWME97amEJ7g3OM0crmYE_HzAcibTrHJGWEI,5266
|
93
|
-
stadiamaps/models/route_response.py,sha256=MUtq5w9xiMmBhFLUN6sVGQZSYt-NRXneQ9O1w05UVAM,2930
|
94
|
-
stadiamaps/models/route_response_trip.py,sha256=dArv_kidtG7keQJCrRXRP5GqTaSXJMBMd_MgGbR125I,4565
|
95
|
-
stadiamaps/models/route_summary.py,sha256=WhOVQrUlHkU0axnWMgspUVOztJngJgeutzx8Z0vW0HE,3475
|
96
|
-
stadiamaps/models/routing_response_waypoint.py,sha256=XNLrRrRoh5_XCKwzJF_yKN_pjc_dQkqBdS3KsjJt3Qc,3940
|
97
|
-
stadiamaps/models/routing_response_waypoint_all_of.py,sha256=2u_wmV3NfKkz1rl_DDAbc_6rqMdamOXCFA3XSmh22sA,2756
|
98
|
-
stadiamaps/models/routing_waypoint.py,sha256=eQkifUPkDz_u0Koeb6_R3DdIN2M_DmQ5m78ipHTxswE,8482
|
99
|
-
stadiamaps/models/routing_waypoint_all_of.py,sha256=v7BryWQd_LrFAaEXhHKQBU1OBiF4WmCRN8FJstZUFzU,7320
|
100
|
-
stadiamaps/models/routing_waypoint_all_of_search_filter.py,sha256=LLv48rlbnNn9W_7Zi6jq_W6n9Brg_YykLUJtMMpjCk4,3761
|
101
|
-
stadiamaps/models/simple_routing_waypoint.py,sha256=tYfgNmeYg89eXQnnZzJAKtywrlDH5FDHO_Fy4fPPr9E,3671
|
102
|
-
stadiamaps/models/simple_routing_waypoint_all_of.py,sha256=mFHVKuKWz3AuOxfqyGA5D_pai-RCu4Msdmmgf7fwm7A,3385
|
103
|
-
stadiamaps/models/speeds.py,sha256=rA9421wt3ciMw9VXgYczqMOP2y8aGg9uZ8B5KuFfz3I,3797
|
104
|
-
stadiamaps/models/trace_attribute_filter_options.py,sha256=HoIW4RB2_20wpLNusnGbcUvXKplQ5A9zADhu1YCfA4M,3161
|
105
|
-
stadiamaps/models/trace_attribute_key.py,sha256=IT5Kb4k_V7dHHdAFaW0mn7thxSMnCk2HuQfEdvV4W3M,4330
|
106
|
-
stadiamaps/models/trace_attributes_base_response.py,sha256=315IpCX99yBgjm2vhaBeniLjpfGCI9W1hW4AE_HRMao,5255
|
107
|
-
stadiamaps/models/trace_attributes_request.py,sha256=w2iTPwSoOyPjBOi9dpyR8aNUwH6_hGPY4Fix3OtwSmw,6377
|
108
|
-
stadiamaps/models/trace_attributes_request_all_of.py,sha256=ClTna0geZtUYYJHbVf96BwchKQ8sbf9PwWqKtSNXkyM,2967
|
109
|
-
stadiamaps/models/trace_attributes_request_all_of_filters.py,sha256=C2RXNXiLHpkrZiua0Ou8yPY0LpzhzQ1XkKca-IlI0Ow,3373
|
110
|
-
stadiamaps/models/trace_attributes_response.py,sha256=GJSx8arw4xI2B2jXlgBdjhKHizCPkp8k-TVwzQ_Q_0I,6326
|
111
|
-
stadiamaps/models/trace_attributes_response_all_of.py,sha256=3RKI65ZLB1oH9l_S2yiNWewc-G43E7KrYwr8OK-iRlQ,3632
|
112
|
-
stadiamaps/models/trace_edge.py,sha256=Oop9nMjtCml-jOuoM5vN7FrVOsHplj4-oLBPvHG7GFE,13690
|
113
|
-
stadiamaps/models/travel_mode.py,sha256=9d7y3228e9fZ4dP3hXgpHdp5vRabODt_ZWVJ2wP-Hj8,837
|
114
|
-
stadiamaps/models/traversability.py,sha256=-95LE57A5CQASAdb4FRLzYZyd-37roonYRxFdJPYUks,861
|
115
|
-
stadiamaps/models/truck_costing_options.py,sha256=V8zxiewpIYW49TAlxtidP72bmz5YtwSAh_7sgGGb-d4,11331
|
116
|
-
stadiamaps/models/truck_costing_options_all_of.py,sha256=WJDDKZ8rNATbzi8EUoceT7qDzK_kTyu_MQuh45M7Uy0,3804
|
117
|
-
stadiamaps/models/tz_response.py,sha256=e5ZqECUPxFpq8nB_XY0Nz6cycYeb7ezfzqiQETlPeZg,3287
|
118
|
-
stadiamaps/models/valhalla_languages.py,sha256=Hd2fom9sRAGcCyZ45XQsNSaaKnHRd_YlYvZTe8PzjwA,1558
|
119
|
-
stadiamaps/models/valhalla_long_units.py,sha256=a5uUoJ6YH4osJG3nrrf9a3fiSprE0B6--SoSXlOpeRA,824
|
120
|
-
stadiamaps/models/warning.py,sha256=4QY173kPZbCkf5xrpVsqotnoVKaRo3-r0rgCc7fxhW0,2514
|
121
|
-
stadiamaps-1.0.7.dist-info/LICENSE.txt,sha256=vs0H95Mi3Rf1pSskD7rv4KbXLYCSYZ6cqZcFmek0hOg,1518
|
122
|
-
stadiamaps-1.0.7.dist-info/METADATA,sha256=PHgxOKf-n6JmBaQsEwWB_ZyhYFXS32e1P11fqcQTY_w,2440
|
123
|
-
stadiamaps-1.0.7.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
124
|
-
stadiamaps-1.0.7.dist-info/top_level.txt,sha256=dFHpcPo1v2Ajmc74F29BleqU5u8MLB0fgTnNYJIatx0,11
|
125
|
-
stadiamaps-1.0.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|