Skip to content

Commit 3c7304e

Browse files
Added geodetic position
Signed-off-by: spider <Thomas.Nader@bmw.de>
1 parent 9db92ea commit 3c7304e

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
@@ -634,3 +634,30 @@ message VehicleSteeringWheel
634634
//
635635
optional double torque = 3;
636636
}
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+
// Unit: Degree
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

Comments
 (0)