common.proto 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package maps.fleetengine.delivery.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/protobuf/timestamp.proto";
  18. import "google/protobuf/wrappers.proto";
  19. import "google/type/latlng.proto";
  20. option go_package = "google.golang.org/genproto/googleapis/maps/fleetengine/delivery/v1;delivery";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "Common";
  23. option java_package = "google.maps.fleetengine.delivery.v1";
  24. option objc_class_prefix = "CFED";
  25. // Describes a vehicle attribute as a key-value pair. The "key:value" string
  26. // length cannot exceed 256 characters.
  27. message DeliveryVehicleAttribute {
  28. // The attribute's key. Keys may not contain the colon character (:).
  29. string key = 1;
  30. // The attribute's value.
  31. string value = 2;
  32. }
  33. // The location, speed, and heading of a vehicle at a point in time.
  34. message DeliveryVehicleLocation {
  35. // The location of the vehicle.
  36. // When it is sent to Fleet Engine, the vehicle's location is a GPS location.
  37. // When you receive it in a response, the vehicle's location can be either a
  38. // GPS location, a supplemental location, or some other estimated location.
  39. // The source is specified in `location_sensor`.
  40. google.type.LatLng location = 1;
  41. // Deprecated: Use `latlng_accuracy` instead.
  42. google.protobuf.DoubleValue horizontal_accuracy = 8 [deprecated = true];
  43. // Accuracy of `location` in meters as a radius.
  44. google.protobuf.DoubleValue latlng_accuracy = 22;
  45. // Direction the vehicle is moving in degrees. 0 represents North.
  46. // The valid range is [0,360).
  47. google.protobuf.Int32Value heading = 2;
  48. // Deprecated: Use `heading_accuracy` instead.
  49. google.protobuf.DoubleValue bearing_accuracy = 10 [deprecated = true];
  50. // Accuracy of `heading` in degrees.
  51. google.protobuf.DoubleValue heading_accuracy = 23;
  52. // Altitude in meters above WGS84.
  53. google.protobuf.DoubleValue altitude = 5;
  54. // Deprecated: Use `altitude_accuracy` instead.
  55. google.protobuf.DoubleValue vertical_accuracy = 9 [deprecated = true];
  56. // Accuracy of `altitude` in meters.
  57. google.protobuf.DoubleValue altitude_accuracy = 24;
  58. // Speed of the vehicle in kilometers per hour.
  59. // Deprecated: Use `speed` instead.
  60. google.protobuf.Int32Value speed_kmph = 3 [deprecated = true];
  61. // Speed of the vehicle in meters/second
  62. google.protobuf.DoubleValue speed = 6;
  63. // Accuracy of `speed` in meters/second.
  64. google.protobuf.DoubleValue speed_accuracy = 7;
  65. // The time when `location` was reported by the sensor according to the
  66. // sensor's clock.
  67. google.protobuf.Timestamp update_time = 4;
  68. // Output only. The time when the server received the location information.
  69. google.protobuf.Timestamp server_time = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
  70. // Provider of location data (for example, `GPS`).
  71. DeliveryVehicleLocationSensor location_sensor = 11;
  72. // Whether `location` is snapped to a road.
  73. google.protobuf.BoolValue is_road_snapped = 27;
  74. // Input only. Indicates whether the GPS sensor is enabled on the mobile device.
  75. google.protobuf.BoolValue is_gps_sensor_enabled = 12 [(google.api.field_behavior) = INPUT_ONLY];
  76. // Input only. Time (in seconds) since this location was first sent to the server.
  77. // This will be zero for the first update. If the time is unknown
  78. // (for example, when the app restarts), this value resets to zero.
  79. google.protobuf.Int32Value time_since_update = 14 [(google.api.field_behavior) = INPUT_ONLY];
  80. // Input only. Number of additional attempts to send this location to the server.
  81. // If this value is zero, then it is not stale.
  82. google.protobuf.Int32Value num_stale_updates = 15 [(google.api.field_behavior) = INPUT_ONLY];
  83. // Raw vehicle location (unprocessed by road-snapper).
  84. google.type.LatLng raw_location = 16;
  85. // Input only. Timestamp associated with the raw location.
  86. google.protobuf.Timestamp raw_location_time = 17 [(google.api.field_behavior) = INPUT_ONLY];
  87. // Input only. Source of the raw location.
  88. DeliveryVehicleLocationSensor raw_location_sensor = 28 [(google.api.field_behavior) = INPUT_ONLY];
  89. // Input only. Accuracy of `raw_location` as a radius, in meters.
  90. google.protobuf.DoubleValue raw_location_accuracy = 25 [(google.api.field_behavior) = INPUT_ONLY];
  91. // Input only. Supplemental location provided by the integrating app.
  92. google.type.LatLng supplemental_location = 18 [(google.api.field_behavior) = INPUT_ONLY];
  93. // Input only. Timestamp associated with the supplemental location.
  94. google.protobuf.Timestamp supplemental_location_time = 19 [(google.api.field_behavior) = INPUT_ONLY];
  95. // Input only. Source of the supplemental location.
  96. DeliveryVehicleLocationSensor supplemental_location_sensor = 20 [(google.api.field_behavior) = INPUT_ONLY];
  97. // Input only. Accuracy of `supplemental_location` as a radius, in meters.
  98. google.protobuf.DoubleValue supplemental_location_accuracy = 21 [(google.api.field_behavior) = INPUT_ONLY];
  99. // Deprecated: Use `is_road_snapped` instead.
  100. bool road_snapped = 26 [deprecated = true];
  101. }
  102. // The sensor or methodology used to determine the location.
  103. enum DeliveryVehicleLocationSensor {
  104. // The sensor is unspecified or unknown.
  105. UNKNOWN_SENSOR = 0;
  106. // GPS or Assisted GPS.
  107. GPS = 1;
  108. // Assisted GPS, cell tower ID, or WiFi access point.
  109. NETWORK = 2;
  110. // Cell tower ID or WiFi access point.
  111. PASSIVE = 3;
  112. // A location signal snapped to the best road position.
  113. ROAD_SNAPPED_LOCATION_PROVIDER = 4;
  114. // The fused location provider in Google Play services.
  115. FUSED_LOCATION_PROVIDER = 100;
  116. // The location provider on Apple operating systems.
  117. CORE_LOCATION = 200;
  118. }
  119. // The vehicle's navigation status.
  120. enum DeliveryVehicleNavigationStatus {
  121. // Unspecified navigation status.
  122. UNKNOWN_NAVIGATION_STATUS = 0;
  123. // The Driver app's navigation is in `FREE_NAV` mode.
  124. NO_GUIDANCE = 1;
  125. // Turn-by-turn navigation is available and the Driver app navigation has
  126. // entered `GUIDED_NAV` mode.
  127. ENROUTE_TO_DESTINATION = 2;
  128. // The vehicle has gone off the suggested route.
  129. OFF_ROUTE = 3;
  130. // The vehicle is within approximately 50m of the destination.
  131. ARRIVED_AT_DESTINATION = 4;
  132. }