Point.msg 452 B

1234567891011121314151617181920212223
  1. # This represents a point in a map.
  2. # Id of this Point object. Must be unique among all points in a map.
  3. int32 point_id
  4. # Position of a point in MGRS coordinate [m]
  5. # x = northing
  6. # y = easting
  7. # z = elevation
  8. float64 x
  9. float64 y
  10. float64 z
  11. # Codes that describe coordinate of the x,y,z values.
  12. int32 mgrs
  13. int32 epsg
  14. # PCD file name which that is relevant.
  15. string pcd
  16. # latitude and longitude in WGS84 coordinate in [deg]
  17. float64 lat
  18. float64 lng