Skip to content

Commit 3be9e61

Browse files
ThomasNaderBMWpmai
authored andcommitted
Added geodetic position
Signed-off-by: spider <Thomas.Nader@bmw.de> Signed-off-by: Thomas Nader <Thomas.Nader@bmw.de>
1 parent 20ce0ab commit 3be9e61

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

osi_common.proto

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -858,3 +858,30 @@ message VehicleSteeringWheel
858858
//
859859
optional double torque = 3;
860860
}
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+
// Unit: Degree
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

Comments
 (0)