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 20ce0ab commit 3be9e61Copy full SHA for 3be9e61
osi_common.proto
@@ -858,3 +858,30 @@ message VehicleSteeringWheel
858
//
859
optional double torque = 3;
860
}
861
+
862
+//
863
+// \brief The geodetic position of an object, i.e. center of the bounding box.
864
865
+message GeodeticPosition
866
+{
867
+ // Longitude in decimal degrees regarding WGS84.
868
+ //
869
+ // Unit: Degree
870
+ // Range: [-180; 180]
871
872
+ optional double longitude = 1;
873
874
+ // Latitude in decimal degrees regarding WGS84.
875
876
877
+ // Range: [-90; 90]
878
879
+ optional double latitude = 2;
880
881
+ // Height above sea level regarding EGM96.
882
883
+ // Unit: m
884
+ // Range: [-300; 10000]
885
886
+ optional double altitude = 3;
887
+}
0 commit comments