stadiamaps 1.0.6__py3-none-any.whl → 2.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.
Files changed (128) hide show
  1. stadiamaps/__init__.py +6 -24
  2. stadiamaps/api/geocoding_api.py +1917 -760
  3. stadiamaps/api/geospatial_api.py +483 -221
  4. stadiamaps/api/routing_api.py +1615 -723
  5. stadiamaps/api_client.py +275 -272
  6. stadiamaps/api_response.py +12 -16
  7. stadiamaps/configuration.py +13 -11
  8. stadiamaps/exceptions.py +67 -30
  9. stadiamaps/models/__init__.py +5 -23
  10. stadiamaps/models/access.py +44 -26
  11. stadiamaps/models/admin_region.py +46 -28
  12. stadiamaps/models/administrative.py +48 -30
  13. stadiamaps/models/auto_costing_options.py +69 -48
  14. stadiamaps/models/auto_costing_options_all_of.py +1 -1
  15. stadiamaps/models/base_costing_options.py +52 -33
  16. stadiamaps/models/base_trace_request.py +70 -40
  17. stadiamaps/models/bicycle_costing_options.py +61 -42
  18. stadiamaps/models/bicycle_costing_options_all_of.py +1 -1
  19. stadiamaps/models/bike_network.py +42 -24
  20. stadiamaps/models/contour.py +45 -27
  21. stadiamaps/models/coordinate.py +45 -26
  22. stadiamaps/models/costing_model.py +10 -12
  23. stadiamaps/models/costing_options.py +51 -33
  24. stadiamaps/models/directions_options.py +45 -27
  25. stadiamaps/models/distance_unit.py +8 -11
  26. stadiamaps/models/edge_sign.py +46 -28
  27. stadiamaps/models/edge_use.py +8 -11
  28. stadiamaps/models/end_node.py +48 -30
  29. stadiamaps/models/geo_attributes.py +47 -29
  30. stadiamaps/models/geo_json_geometry.py +25 -25
  31. stadiamaps/models/geo_json_geometry_base.py +45 -27
  32. stadiamaps/models/geo_json_line_string.py +47 -28
  33. stadiamaps/models/geo_json_line_string_all_of.py +2 -2
  34. stadiamaps/models/geo_json_point.py +47 -28
  35. stadiamaps/models/geo_json_point_all_of.py +2 -2
  36. stadiamaps/models/geo_json_polygon.py +47 -28
  37. stadiamaps/models/geo_json_polygon_all_of.py +2 -2
  38. stadiamaps/models/geocoding_object.py +46 -28
  39. stadiamaps/models/height_request.py +55 -34
  40. stadiamaps/models/height_response.py +49 -30
  41. stadiamaps/models/highway_classification.py +52 -34
  42. stadiamaps/models/intersecting_edge.py +45 -27
  43. stadiamaps/models/isochrone_costing_model.py +8 -11
  44. stadiamaps/models/isochrone_feature.py +45 -27
  45. stadiamaps/models/isochrone_properties.py +48 -30
  46. stadiamaps/models/isochrone_request.py +54 -35
  47. stadiamaps/models/isochrone_response.py +47 -29
  48. stadiamaps/models/locate_detailed_edge.py +73 -55
  49. stadiamaps/models/locate_edge.py +56 -39
  50. stadiamaps/models/locate_edge_info.py +47 -29
  51. stadiamaps/models/locate_node.py +50 -31
  52. stadiamaps/models/locate_node_all_of.py +1 -1
  53. stadiamaps/models/locate_object.py +49 -31
  54. stadiamaps/models/maneuver_sign.py +50 -32
  55. stadiamaps/models/maneuver_sign_element.py +45 -27
  56. stadiamaps/models/map_match_costing_model.py +8 -11
  57. stadiamaps/models/map_match_request.py +74 -44
  58. stadiamaps/models/map_match_request_all_of.py +1 -1
  59. stadiamaps/models/map_match_route_response.py +57 -29
  60. stadiamaps/models/map_match_route_response_all_of.py +1 -1
  61. stadiamaps/models/map_match_trace_options.py +47 -29
  62. stadiamaps/models/map_match_waypoint.py +49 -30
  63. stadiamaps/models/map_match_waypoint_all_of.py +1 -1
  64. stadiamaps/models/matched_point.py +52 -34
  65. stadiamaps/models/matrix_costing_model.py +9 -12
  66. stadiamaps/models/matrix_distance.py +46 -28
  67. stadiamaps/models/matrix_request.py +70 -39
  68. stadiamaps/models/matrix_response.py +60 -36
  69. stadiamaps/models/motor_scooter_costing_options.py +70 -49
  70. stadiamaps/models/motor_scooter_costing_options_all_of.py +1 -1
  71. stadiamaps/models/motorcycle_costing_options.py +69 -48
  72. stadiamaps/models/motorcycle_costing_options_all_of.py +1 -1
  73. stadiamaps/models/nearest_roads_request.py +65 -34
  74. stadiamaps/models/node_id.py +42 -24
  75. stadiamaps/models/node_type.py +8 -11
  76. stadiamaps/models/optimized_route_request.py +66 -35
  77. stadiamaps/models/pedestrian_costing_options.py +59 -40
  78. stadiamaps/models/pelias_geo_json_feature.py +50 -31
  79. stadiamaps/models/pelias_geo_json_properties.py +54 -36
  80. stadiamaps/models/pelias_geo_json_properties_addendum.py +43 -25
  81. stadiamaps/models/pelias_geo_json_properties_addendum_osm.py +42 -24
  82. stadiamaps/models/pelias_layer.py +8 -11
  83. stadiamaps/models/pelias_response.py +49 -30
  84. stadiamaps/models/pelias_response_geocoding.py +1 -1
  85. stadiamaps/models/pelias_source.py +8 -11
  86. stadiamaps/models/restrictions.py +44 -26
  87. stadiamaps/models/road_class.py +8 -11
  88. stadiamaps/models/route_leg.py +48 -29
  89. stadiamaps/models/route_maneuver.py +73 -55
  90. stadiamaps/models/route_request.py +76 -43
  91. stadiamaps/models/route_response.py +56 -28
  92. stadiamaps/models/route_response_alternates_inner.py +105 -0
  93. stadiamaps/models/route_response_trip.py +1 -1
  94. stadiamaps/models/route_summary.py +48 -30
  95. stadiamaps/models/route_trip.py +135 -0
  96. stadiamaps/models/routing_response_waypoint.py +49 -30
  97. stadiamaps/models/routing_response_waypoint_all_of.py +1 -1
  98. stadiamaps/models/routing_waypoint.py +60 -41
  99. stadiamaps/models/routing_waypoint_all_of.py +1 -1
  100. stadiamaps/models/routing_waypoint_all_of_search_filter.py +48 -30
  101. stadiamaps/models/simple_routing_waypoint.py +48 -29
  102. stadiamaps/models/simple_routing_waypoint_all_of.py +1 -1
  103. stadiamaps/models/speeds.py +49 -31
  104. stadiamaps/models/trace_attribute_filter_options.py +47 -28
  105. stadiamaps/models/trace_attribute_key.py +8 -11
  106. stadiamaps/models/trace_attributes_base_response.py +51 -32
  107. stadiamaps/models/trace_attributes_request.py +72 -42
  108. stadiamaps/models/trace_attributes_request_all_of.py +1 -1
  109. stadiamaps/models/trace_attributes_request_all_of_filters.py +2 -2
  110. stadiamaps/models/trace_attributes_response.py +54 -35
  111. stadiamaps/models/trace_attributes_response_all_of.py +1 -1
  112. stadiamaps/models/trace_edge.py +88 -70
  113. stadiamaps/models/travel_mode.py +8 -11
  114. stadiamaps/models/traversability.py +8 -11
  115. stadiamaps/models/truck_costing_options.py +72 -51
  116. stadiamaps/models/truck_costing_options_all_of.py +1 -1
  117. stadiamaps/models/tz_response.py +45 -27
  118. stadiamaps/models/valhalla_languages.py +8 -11
  119. stadiamaps/models/valhalla_long_units.py +8 -11
  120. stadiamaps/models/warning.py +42 -24
  121. stadiamaps/py.typed +0 -0
  122. stadiamaps/rest.py +127 -172
  123. {stadiamaps-1.0.6.dist-info → stadiamaps-2.0.0.dist-info}/METADATA +4 -4
  124. stadiamaps-2.0.0.dist-info/RECORD +128 -0
  125. {stadiamaps-1.0.6.dist-info → stadiamaps-2.0.0.dist-info}/WHEEL +1 -1
  126. stadiamaps-1.0.6.dist-info/RECORD +0 -125
  127. {stadiamaps-1.0.6.dist-info → stadiamaps-2.0.0.dist-info}/LICENSE.txt +0 -0
  128. {stadiamaps-1.0.6.dist-info → stadiamaps-2.0.0.dist-info}/top_level.txt +0 -0
@@ -1,125 +0,0 @@
1
- stadiamaps/__init__.py,sha256=lycu3aCcpsFUX2UTXkTUHG-oRs2kmGfpHE474Yy5v8A,8524
2
- stadiamaps/api_client.py,sha256=lf896rdvGTsAaQt1-Uu-e8Bv9rp67gxoLZ7NDmt6bKQ,30062
3
- stadiamaps/api_response.py,sha256=PVUEilYSo_CCiR5NaxyzzyJAlKL1xkNoWvtkfk7r528,844
4
- stadiamaps/configuration.py,sha256=SOAuhyw-jF94xnP6wBTpEy6AR0G2CKo1aOut_MJKkdw,15506
5
- stadiamaps/exceptions.py,sha256=_EUUYwVF1zkgWItNjR8Q2QXxO5kE3hmZ-hlhWyzm0ow,5207
6
- stadiamaps/rest.py,sha256=38YnwuHE8dvfnxzM0V8BZAjz-V0VV2PJS6pQ0YlNLRQ,12849
7
- stadiamaps/api/__init__.py,sha256=NRdfWLDRL2TYgITiS6K4OX8lmmVVmf9-_yyMe2_6hTs,208
8
- stadiamaps/api/geocoding_api.py,sha256=Lfb9PM54x7NI_uVNWoeQXMh08bjDZlnNUlEZnE2p_54,97488
9
- stadiamaps/api/geospatial_api.py,sha256=WJR9ToiRAi35-Leawtng0nR2SImFBJoj9ndlFxYAKEY,18619
10
- stadiamaps/api/routing_api.py,sha256=wa6Br6GlTLwW8I0Tzvp-fP52Mt5b-hAM505l2fFJj6k,50673
11
- stadiamaps/models/__init__.py,sha256=5sEcneWG3Ai9WaGDoY2ogPscU9qb1yOw1USmdNLIfrQ,7856
12
- stadiamaps/models/access.py,sha256=xi0p6U3NsHyTn1-lNdwrCKkFw38hjrZbSXn-NUrl6Z0,3475
13
- stadiamaps/models/admin_region.py,sha256=zQdPI8iaVNOCR5nAeIbtgxvhqkeR2s6NAe7Hkbe5MwU,3085
14
- stadiamaps/models/administrative.py,sha256=op2jonBIhs_HHKlYijwXHWNjfn5RojPo7vLFTj8lXaA,3146
15
- stadiamaps/models/auto_costing_options.py,sha256=B1sZ32Q8N-8sZIos0EvfyEB9wO-iMvz-yA1ymreZBs0,10457
16
- stadiamaps/models/auto_costing_options_all_of.py,sha256=v0LBbl4R7JtFPrw6n6aaBQymplFUCYwm1rW9JQq-Iig,7083
17
- stadiamaps/models/base_costing_options.py,sha256=by3mfZIi_i4P6l-m-byx5ThiZN6LuQbmwjRMzO9YFjc,5886
18
- stadiamaps/models/base_trace_request.py,sha256=UMMM2D_lpQrh5tr6ruT2bSIKm6NSrA8fjE9Ta1byKJ4,5850
19
- stadiamaps/models/bicycle_costing_options.py,sha256=WCHzABFBrPnJ246HzTNxeCaUddHQt_vD_5GNFm9qW-0,9291
20
- stadiamaps/models/bicycle_costing_options_all_of.py,sha256=6EmM6td9PQB20wTSmFfqNcEgdfFCHSx8OVPGyetnbB8,5904
21
- stadiamaps/models/bike_network.py,sha256=J46i83nXqKWMM8lX3uOPVQdJgH7R_2IZ3kKGOYVetTA,2756
22
- stadiamaps/models/contour.py,sha256=5fp1rG2cwCB7k86-WG5wiGdctx1esEf-P9z5jL2pmeI,3028
23
- stadiamaps/models/coordinate.py,sha256=IgdEi94MNSkmqgRYZr_TG97xKQM1HnYJBVYEa_8uqmg,2675
24
- stadiamaps/models/costing_model.py,sha256=C3_H7Rncx2-VvZw3MhTWAaJdxTTCxZxlEcBet100RZw,1328
25
- stadiamaps/models/costing_options.py,sha256=x4gDbJKN6G5LOc815h2ZecPhA4CzdT0CxouL6JeIHuc,5637
26
- stadiamaps/models/directions_options.py,sha256=PbVvQpJLl8ZjS2O4iPovKXfed0-1Uga5Wfn1bE8Vokk,3494
27
- stadiamaps/models/distance_unit.py,sha256=lJJIq72fWhxKaslb6lhlYbIilzmIq7XOPXc647fCI48,777
28
- stadiamaps/models/edge_sign.py,sha256=414tm3LE-ny4lEUJiq4m0yNIr4BgC3mnD0YM3q-YO8g,2830
29
- stadiamaps/models/edge_use.py,sha256=nutvfF_Av2_7z03P3LfTHjgXqZt-hHLYtcER49PKzrY,1650
30
- stadiamaps/models/end_node.py,sha256=dudesNjNH8k9hu24kD0l2Q9FKfMbHHzszuxC_JWQtH8,4008
31
- stadiamaps/models/geo_attributes.py,sha256=bVcPTHJTcTPb_-TfHg6N8QeYp9blW7XRCs_Wbc9L_QQ,3505
32
- stadiamaps/models/geo_json_geometry.py,sha256=FGtlY2JCIo5xiEv1gKOyAEj1pELLUh3vt-_uiz0hntY,5934
33
- stadiamaps/models/geo_json_geometry_base.py,sha256=0ZFyUMYDsyZW01cgj9Aa1gNJuSJZpisFZjtTmZ-ocbw,2874
34
- stadiamaps/models/geo_json_line_string.py,sha256=CvdkRDRNCU3RP4Po1zD_6uLo26ClZhN7QN6PDgXHYdA,3091
35
- stadiamaps/models/geo_json_line_string_all_of.py,sha256=TtQPGWtGsYOIsgtz9dNkTtytVQheqtwwXzNp5K-LoDI,2661
36
- stadiamaps/models/geo_json_point.py,sha256=ltm2WQ4DN1o4G92wOXs17wYY64bwSAVMBdMPXajn-3Q,3042
37
- stadiamaps/models/geo_json_point_all_of.py,sha256=md569Z0RuNsSkEnWfZUM0QPY8yhO5pyqpzaMLXt84I0,2612
38
- stadiamaps/models/geo_json_polygon.py,sha256=ob6AmEKgMMsgqSspP_fiZABmrUvxtFgx0xEY6S-wVwo,3076
39
- stadiamaps/models/geo_json_polygon_all_of.py,sha256=v2jky9yXl7LaKf35GOIwLQCzlMsT0G9khYissyxaUDQ,2646
40
- stadiamaps/models/geocoding_object.py,sha256=2lz-pPNnTDESo_8MDfkgS-qXX0uCjXd3-2yl72m8KqY,3557
41
- stadiamaps/models/height_request.py,sha256=sYOljIgwipug5fgwHH2E98ESHcSHEWtqmu05gytPfMQ,4844
42
- stadiamaps/models/height_response.py,sha256=-e0FFY34YfbFX7KKfYxA-_4H7rcERJz2gH5TNud5qGU,4281
43
- stadiamaps/models/highway_classification.py,sha256=TLtKjSzIfKaFKYSM3ptWXRG2PPsKlG7TXzsGGzDHgHI,5512
44
- stadiamaps/models/intersecting_edge.py,sha256=SZvb3qHYJE4yyZrbyNiLvDSu0CetulvcinvKAa5zLvg,3928
45
- stadiamaps/models/isochrone_costing_model.py,sha256=vvMf-JGWnUnhCBOt2k_pDZzCFgG0j0YjtIYUOpkHShQ,866
46
- stadiamaps/models/isochrone_feature.py,sha256=6y79dT-Dka5RH3_luIzYB_GY9eiPVhl1gBpnKACYSKE,3338
47
- stadiamaps/models/isochrone_properties.py,sha256=6y1G0KPipPD543xEKDteVsmKKt68LCw2L2OUr2Fg9Qk,3560
48
- stadiamaps/models/isochrone_request.py,sha256=7hktiUzkN2cgUatfgMHTd5bdyNGl6hTq2uJr1Kj-Pzw,6005
49
- stadiamaps/models/isochrone_response.py,sha256=zckiCT0cT9dSddCzKqHWVYeH3bhlcd5372VNBQJuC7Q,3428
50
- stadiamaps/models/locate_detailed_edge.py,sha256=NAM7Vpl-brIXCsNPE_Qtmbgsx-jFKDQ5M0bd6rrLVNA,10047
51
- stadiamaps/models/locate_edge.py,sha256=N7rlmTzhN17It5huahAeLdn0HgFgD56DhAd5nHWAuwk,5783
52
- stadiamaps/models/locate_edge_info.py,sha256=9U65DhEhUcGwFe5X1lANAGzY9l23wEtyek41u6R_Gdo,3660
53
- stadiamaps/models/locate_node.py,sha256=GZB3lDdSJPzvGXoKzxVSNgANFbKCP17sUVy0B3rq8qU,5082
54
- stadiamaps/models/locate_node_all_of.py,sha256=I33eKQDliPy-bypyVJ3If-3Sx9gHGL_e4BVJd0FmjtY,4800
55
- stadiamaps/models/locate_object.py,sha256=o4d3tPk1xWiuQoawGlPhdLevamLL0X6NzeN73l8z1D4,4004
56
- stadiamaps/models/maneuver_sign.py,sha256=igfv1_R0gYpqqXsJHu1k6IoK4Tpr077vKcWMZPasAS4,5481
57
- stadiamaps/models/maneuver_sign_element.py,sha256=kpOkFBC45MfVf_kc3ManKJI0GD7wTEdDz-qWUg1zgvc,3056
58
- stadiamaps/models/map_match_costing_model.py,sha256=NUfqsKntXyyLIR2xr7Odh07j5LA2EEgwFFwPBd5UL9Y,877
59
- stadiamaps/models/map_match_request.py,sha256=yWT9gYLT68ybvHBt52dQwItfjY4Z45OnEHlngItzNfM,7694
60
- stadiamaps/models/map_match_request_all_of.py,sha256=J3Alkx4ELbFPWy_txfB177oW35M4RRfnBQ3MVsiJCo8,4291
61
- stadiamaps/models/map_match_route_response.py,sha256=Ywv-80wvqQnbM4fx4006jFwnIq7dATuC-y_-VNz3ynY,3152
62
- stadiamaps/models/map_match_route_response_all_of.py,sha256=qROm_DQ6eAJyRr8bxEGYtByo57pEujMBOEesKH5AHpk,2649
63
- stadiamaps/models/map_match_trace_options.py,sha256=o2hPGoxWMdPWKPm72-HFhfXjSH0seBNQampC5szyboc,3929
64
- stadiamaps/models/map_match_waypoint.py,sha256=ACbLzY7nY_NOEghkxO6qEVDnIRqsEZPWcXOQ2qV5sQE,3966
65
- stadiamaps/models/map_match_waypoint_all_of.py,sha256=ssiuOlA-4OQ2YB0yczowzIBQTu5QGF0OzJ7P1Mzjyww,2793
66
- stadiamaps/models/matched_point.py,sha256=jEO-D-zxxlYpE8WOV6_RvqqHtlnDJfiQvKx15G0erMM,4711
67
- stadiamaps/models/matrix_costing_model.py,sha256=At07IsiV4x6g0ckraHFcNJ1941jjldYGCzS5L7Re938,1015
68
- stadiamaps/models/matrix_distance.py,sha256=spIq9QyRBzGk-hZsBadw7aGKqR2yRHfyudpnWLcxQMg,3215
69
- stadiamaps/models/matrix_request.py,sha256=w-r0ZhL1bq68ysfPZy_c-dY9Gn5Lz_tOw27jPe_YqqE,5338
70
- stadiamaps/models/matrix_response.py,sha256=KaE9TeFWhHSifzhoLdatcNF-5SUWuE8dazjkim0cFTE,5542
71
- stadiamaps/models/motor_scooter_costing_options.py,sha256=uFwRgA9NZJGyn9Uh1CsKy9pGgNRl3Q5UzbxjztPrEy8,11494
72
- stadiamaps/models/motor_scooter_costing_options_all_of.py,sha256=DPNyTEkEJ82-7AcMCDnbrNkDFXgWeA-_2rV2gbEUt3s,3525
73
- stadiamaps/models/motorcycle_costing_options.py,sha256=PddUxKVqWjCpHWUOUjNScUTMB5qmp1t10AmY9loEQOU,10980
74
- stadiamaps/models/motorcycle_costing_options_all_of.py,sha256=wIdSXM3NxODy3wtXtoGwQpmsENwasJrrVHbUJcUuYuQ,3479
75
- stadiamaps/models/nearest_roads_request.py,sha256=wS4GatuLn5zTm-rXvsnNH3qK4WHmAIVepFQQqXC3Hok,4301
76
- stadiamaps/models/node_id.py,sha256=lCFAFAM_iErw2rkdKTtnXrpeK5geQB0tGEQO_0Bbpcg,2671
77
- stadiamaps/models/node_type.py,sha256=kc4kemr_MxXlzcefFX_9gY9RkLIiI79N-QAkLWqcb1o,1041
78
- stadiamaps/models/optimized_route_request.py,sha256=MSD4qYVA9WDUzlq-J5HAv8tVxJX3dNPMDbyIZcFapHY,4530
79
- stadiamaps/models/pedestrian_costing_options.py,sha256=KsPiEHDnP6se0A-r0i6SVMT40uRS51T9Zb9FFjVhNdM,8256
80
- stadiamaps/models/pelias_geo_json_feature.py,sha256=iVncFkOSe31lA4gtm9mLTjwU0m30gYQnAVWvDhuZ4WE,3996
81
- stadiamaps/models/pelias_geo_json_properties.py,sha256=cjSteO8g_u33RVmks4wgacwsmA25kkAU7HsJY6p7AyA,7800
82
- stadiamaps/models/pelias_geo_json_properties_addendum.py,sha256=80CgTojSLV03Ve1XO-RWOGtbdnisEpOYuSm3pqN_6JQ,3122
83
- stadiamaps/models/pelias_geo_json_properties_addendum_osm.py,sha256=Tzxh8jHHlHK2cMGfonC_8OmImJ7jCqQJCDaTYzcXE8I,2935
84
- stadiamaps/models/pelias_layer.py,sha256=zV1-o2yoDLloQ4C4SN5VYkfPR3inujRwS0PKszE2Ijk,2517
85
- stadiamaps/models/pelias_response.py,sha256=vB2476P2nyBeIqJy73Aj7CXXhyxv9A5nNBhQhIFrzP0,3737
86
- stadiamaps/models/pelias_response_geocoding.py,sha256=6qqhEaeRU-VNkIQptLVjDwyYTrCEiHZrEu_66Q1yMnE,3621
87
- stadiamaps/models/pelias_source.py,sha256=bfeNZN3adCNAn1OHLEMxZkwW4M8xad9SlMZvvFu5Az4,1020
88
- stadiamaps/models/restrictions.py,sha256=xnjNLFBjJnAMJTQLYRFSbW962a2waDPbzq1fGOvUCjM,3523
89
- stadiamaps/models/road_class.py,sha256=b0MwIVGn2zOy-zJjA4yo0d4HfCHwwj8Ed5XwCy1G0io,993
90
- stadiamaps/models/route_leg.py,sha256=A0lNlQVDj4iM8HYTKZalqLqlMjxpOib4gOWmlBuQZhY,3562
91
- stadiamaps/models/route_maneuver.py,sha256=A00hyxJMHuWsIeIMtG-mbiDF2MdMMoTHsXM3o6AzBg4,11172
92
- stadiamaps/models/route_request.py,sha256=FlfmOoZNv0zmT35_Qp-aYyJkpEuKl3SmBa76fV_7Q9I,5266
93
- stadiamaps/models/route_response.py,sha256=AmpOCq9tE8jGq6Au94Z7DZDtvWkjt5zx7IuR3MHxiH0,2930
94
- stadiamaps/models/route_response_trip.py,sha256=8ms7N4xzpfe88mhRKK9j2vI6_-AASM_QW9zqXKAqLFk,4565
95
- stadiamaps/models/route_summary.py,sha256=UZvblQE5fVgjY1EL5p3vK3idH2oHOMFVyqJ2VPYDn9Y,3475
96
- stadiamaps/models/routing_response_waypoint.py,sha256=7XJuKuwJavWiZgf9wdovSJSdBDev82EICe7bWKGvg6g,3940
97
- stadiamaps/models/routing_response_waypoint_all_of.py,sha256=TvkvJr29LxfEPWTTRZ8qiohzOgcKlXGRfjA5ggXx3yw,2756
98
- stadiamaps/models/routing_waypoint.py,sha256=aX2MWDPuXFW11EUmqLizMoA_rFRWJXCm-jB62Du9CUU,8482
99
- stadiamaps/models/routing_waypoint_all_of.py,sha256=cLK5kRbDltg3Rax2mA1Xv0VgHw2YgVMVgmbB4cTxlBs,7320
100
- stadiamaps/models/routing_waypoint_all_of_search_filter.py,sha256=AVmgHjqQtnFjIuA5CEGLz9mqy9C18mU7YPLDpOiRUOw,3761
101
- stadiamaps/models/simple_routing_waypoint.py,sha256=fl5JoIXS_6CD2w4VmaGgZxYUDZF9s0DHpQG38LhkVU4,3671
102
- stadiamaps/models/simple_routing_waypoint_all_of.py,sha256=kfTXBZvHH_L15KyXYw4rVBNRVyLzbCXmqht_RkCRmPY,3385
103
- stadiamaps/models/speeds.py,sha256=gX19M_7hc-niZ3TD7zkoxjKq4uFNtdBYRuRRqxOiCDc,3797
104
- stadiamaps/models/trace_attribute_filter_options.py,sha256=Noyr_vAYYqbLACsED0-1D-uND7vLV-d4TIDYgFoPy9s,3161
105
- stadiamaps/models/trace_attribute_key.py,sha256=Zg8IkJolOqegd0jeZCYRSszOLVXUXXTgNpCDG6D6PVw,4330
106
- stadiamaps/models/trace_attributes_base_response.py,sha256=ekPoHi2Q9weCe_C63a8MeXaz0InMqBdoh83q1tX-2Tk,5255
107
- stadiamaps/models/trace_attributes_request.py,sha256=YBJuMZWuOCND1EIWxTjfh-KabBxoWOBQ5XgkuRLG2mM,6377
108
- stadiamaps/models/trace_attributes_request_all_of.py,sha256=RYJniE7csSETpesC50zNqGdIxUI4FUg8y-aG-UfucGw,2967
109
- stadiamaps/models/trace_attributes_request_all_of_filters.py,sha256=qijbpHkhw5H5IUoAmbzMyyfo4vWKkKiM0dXgvy7i078,3373
110
- stadiamaps/models/trace_attributes_response.py,sha256=R9BqL2cxZ0-0TAAeQoVqbDzcOMIoJvwE_OAUn1EQ060,6326
111
- stadiamaps/models/trace_attributes_response_all_of.py,sha256=-hD0VSF0WOTjrKm9t5wyE4IFZFSruMaL3XKPdGrOPzI,3632
112
- stadiamaps/models/trace_edge.py,sha256=ZhS-x44J0WFTbN56PFLQim6MhvocW0VUEIMDCo4ZvPQ,13690
113
- stadiamaps/models/travel_mode.py,sha256=Ky0lxFpnQExL1Q2qfLcN8hN2wKHQkXFPSerjdcuxMO4,837
114
- stadiamaps/models/traversability.py,sha256=ifchw1PZOC70FMjuZbAi6IERhL80-1EVB7H9jtOo9_U,861
115
- stadiamaps/models/truck_costing_options.py,sha256=iuCbi4WZuY3aSlV9SjfdorSUhYvu6Wp2mzZq3tazNkE,11331
116
- stadiamaps/models/truck_costing_options_all_of.py,sha256=0BwELWQ4K4E7u6yCHh1bqc5AqTB89URkGkQCvRchbCk,3804
117
- stadiamaps/models/tz_response.py,sha256=RMXqgj49iB3_v_GSi_MrcmH6odfxdF5-SXwENmzwjH8,3287
118
- stadiamaps/models/valhalla_languages.py,sha256=mB_CVUyx-f1wB8GKOXBiMJl-cjTE8_RT8aLBuXtsyeI,1558
119
- stadiamaps/models/valhalla_long_units.py,sha256=83M_0Xuwu2QBxxw-DepFPfqi3U3_kvkbabYminjaMLg,824
120
- stadiamaps/models/warning.py,sha256=bABrRA-lrNTbQC6l_O3h3rAbgjs7FVaBOz89hB6GkLA,2514
121
- stadiamaps-1.0.6.dist-info/LICENSE.txt,sha256=vs0H95Mi3Rf1pSskD7rv4KbXLYCSYZ6cqZcFmek0hOg,1518
122
- stadiamaps-1.0.6.dist-info/METADATA,sha256=lSrsQbjrrcnHPFqSvbD0SFuuJsYihBm8U7rGDDLEatM,2440
123
- stadiamaps-1.0.6.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
124
- stadiamaps-1.0.6.dist-info/top_level.txt,sha256=dFHpcPo1v2Ajmc74F29BleqU5u8MLB0fgTnNYJIatx0,11
125
- stadiamaps-1.0.6.dist-info/RECORD,,