Skip to content

Commit

Permalink
Add lat long to estimates
Browse files Browse the repository at this point in the history
  • Loading branch information
macpie committed Oct 2, 2024
1 parent a2ba4e4 commit 68faaac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -822,9 +822,10 @@ message rle_event_v1 {

message radio_location_estimate_v1 {
Decimal radius = 1;
// TODO: lat long
Decimal confidence = 2;
repeated rle_event_v1 events = 3;
Decimal lat = 2;
Decimal long = 3;
Decimal confidence = 4;
repeated rle_event_v1 events = 5;
}

message radio_location_estimates_req_v1 {
Expand Down

0 comments on commit 68faaac

Please sign in to comment.