15 #include <mrpt/containers/yaml.h> 
   16 #include <mrpt/core/exceptions.h> 
   29         const auto str = ss.str();
 
   38         gIn.geo_coord.lat          = 4.2;
 
   39         gIn.geo_coord.lon          = 23.0;
 
   40         gIn.geo_coord.height       = 100.0;
 
   42         gIn.T_enu_to_map.cov.setDiagonal(0.1);
 
   43         gIn.T_enu_to_map.mean = mrpt::poses::CPose3D(1.0, 2.0, 3.0, 0, 0, 0);
 
   47         const auto str = ss.str();
 
   51         ASSERT_(gRead->T_enu_to_map.mean == map.
georeferencing->T_enu_to_map.mean);
 
   52         ASSERT_(gRead->T_enu_to_map.cov == map.
georeferencing->T_enu_to_map.cov);
 
   58 int main([[maybe_unused]] 
int argc, [[maybe_unused]] 
char** argv)
 
   64     catch (std::exception& e)
 
   66         std::cerr << mrpt::exception_to_str(e) << 
"\n";