1#ifndef UNITS_HPP_O254IL9W
2#define UNITS_HPP_O254IL9W
4#include <boost/units/make_scaled_unit.hpp>
5#include <boost/units/quantity.hpp>
6#include <boost/units/systems/angle/degrees.hpp>
7#include <boost/units/systems/si/length.hpp>
16typedef boost::units::quantity<boost::units::si::length, uint16_t> distance_u16t;
19typedef boost::units::quantity<boost::units::make_scaled_unit<
20 boost::units::degree::plane_angle,
21 boost::units::scale<10, boost::units::static_rational<-7>>
22 >::type, int32_t> geo_angle_i32t;
25typedef boost::units::quantity<boost::units::degree::plane_angle, uint16_t> angle_u16t;
28typedef boost::units::quantity<boost::units::make_scaled_unit<
29 boost::units::degree::plane_angle,
30 boost::units::scale<10, boost::units::static_rational<-1>>
31 >::type, uint16_t> heading_u16t;