We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9db92ea commit 3c7304eCopy full SHA for 3c7304e
osi_common.proto
@@ -634,3 +634,30 @@ message VehicleSteeringWheel
634
//
635
optional double torque = 3;
636
}
637
+
638
+//
639
+// \brief The geodetic position of an object, i.e. center of the bounding box.
640
641
+message GeodeticPosition
642
+{
643
+ // Longitude in decimal degrees regarding WGS84.
644
+ //
645
+ // Unit: Degree
646
+ // Range: [-180; 180]
647
648
+ optional double longitude = 1;
649
650
+ // Latitude in decimal degrees regarding WGS84.
651
652
653
+ // Range: [-90; 90]
654
655
+ optional double latitude = 2;
656
657
+ // Height above sea level regarding EGM96.
658
659
+ // Unit: m
660
+ // Range: [-300; 10000]
661
662
+ optional double altitude = 3;
663
+}
0 commit comments