MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/topography.h>
11 #include <Eigen/Dense>
12 #include <iostream>
13 
14 using namespace mrpt;
15 using namespace mrpt::poses;
16 using namespace mrpt::math;
17 using namespace std;
18 
19 void TestGPS_coords()
20 {
21  // ENU:
23  RAD2DEG(0.6408472493152757), // lat
24  RAD2DEG(-0.0780454933097760), // lon
25  53.200600 // height meters
26  );
27 
29  RAD2DEG(0.6408615769267271), // lat
30  RAD2DEG(-0.0780621148947297), // lon
31  56.210100 // meters
32  );
33 
34  cout << "Point 0: lat=" << p0.lat << " lon=" << p0.lon
35  << " alt=" << p0.height << endl;
36  cout << "Point 1: lat=" << p1.lat << " lon=" << p1.lon
37  << " alt=" << p1.height << endl;
38 
41  cout << "ENU XYZ coords: " << p << endl;
42 
43  // Geocentric:
44  const mrpt::topography::TGeodeticCoords pt0(32.0, -10.0, 0.0);
45  const mrpt::topography::TGeodeticCoords pt1(32.0, -10.0, 500.0);
46 
47  mrpt::math::TPoint3D geo0, geo1;
50  cout << "P0 XYZ geocentric coords: " << geo0 << endl;
51  cout << "P1 XYZ geocentric coords: " << geo1 << endl;
52 
53  // ENU_axes_from_WGS84
54  mrpt::math::TPose3D pose_ENU;
56  pt0.lon, pt0.lat, pt0.height, pose_ENU);
57  cout << "ENU system of coordinates for lat=" << pt0.lat
58  << " lon=" << pt0.lon << " alt=" << pt0.height << " is: \n"
59  << mrpt::poses::CPose3D(pose_ENU)
61  << endl;
62 
63  cout << "P0->P1: " << (geo1 - geo0) << endl;
64  cout << "(p1.h-p0.h)*ENU_Z: "
65  << (pt1.height - pt0.height) * mrpt::poses::CPose3D(pose_ENU)
67  .blockCopy<3, 1>(0, 2)
68  .transpose()
69  << endl;
70 
71  // UTM:
72  // See: http://www.mathworks.com/matlabcentral/fileexchange/10915
73  cout << endl << "UTM coordinate test:" << endl;
74 
75  double lats[] = {40.3154333, 46.283900, 37.577833,
76  28.645650, 38.855550, 25.061783};
77  double lons[] = {-3.4857166, 7.8012333, -119.95525,
78  -17.759533, -94.7990166, 121.640266};
79  int zone;
80  char band;
81  for (size_t i = 0; i < sizeof(lats) / sizeof(lats[0]); i++)
82  {
83  topography::TUTMCoords UTMCoords;
84  const double la = lats[i];
85  const double lo = lons[i];
86  // mrpt::topography::LatLonToUTM( la,lo, x,y,zone,band );
88  topography::TGeodeticCoords(la, lo, 0), UTMCoords, zone, band);
89  cout << "Lat: " << la << " Lon: " << lo << " x: " << UTMCoords.x
90  << " y: " << UTMCoords.y << " zone: " << zone << " band: " << band
91  << endl;
92  }
93 }
94 
96 {
97  const double lon0 = -3.733572031; // RAD2DEG( 0.6408472493152757L );
98  const double lat0 = 37.89250616; // RAD2DEG(-0.0780454933097760L );
99  const double h0 = 515.579; // 53.200600; // meters
100 
101  cout << endl;
102  cout << format("Point: lon=%.012f lat=%.012f h=%.04f\n", lon0, lat0, h0);
103 
106  mrpt::topography::TGeodeticCoords(lon0, lat0, h0), p);
107 
108  cout << "In geocentric coords: " << p << endl;
109 }
110 
111 // ------------------------------------------------------
112 // MAIN
113 // ------------------------------------------------------
114 int main()
115 {
116  try
117  {
118  TestGPS_coords();
120  return 0;
121  }
122  catch (exception& e)
123  {
124  cout << "MRPT exception caught: " << e.what() << endl;
125  return -1;
126  }
127  catch (...)
128  {
129  printf("Untyped exception!!");
130  return -1;
131  }
132 }
A compile-time fixed-size numeric matrix container.
Definition: CMatrixFixed.h:33
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
void TestGPS_coords()
void ENU_axes_from_WGS84(double in_longitude_reference_degrees, double in_latitude_reference_degrees, double in_height_reference_meters, mrpt::math::TPose3D &out_ENU, bool only_angles=false)
Returns the East-North-Up (ENU) coordinate system associated to the given point.
A set of geodetic coordinates: latitude, longitude and height, defined over a given geoid (typically...
Definition: data_types.h:192
STL namespace.
void geodeticToENU_WGS84(const TGeodeticCoords &in_coords, mrpt::math::TPoint3D &out_ENU_point, const TGeodeticCoords &in_coords_origin)
Coordinates transformation from longitude/latitude/height to ENU (East-North-Up) X/Y/Z coordinates Th...
This base provides a set of functions for maths stuff.
void geodeticToUTM(const TGeodeticCoords &GeodeticCoords, TUTMCoords &UTMCoords, int &UTMZone, char &UTMLatitudeBand, const TEllipsoid &ellip=TEllipsoid::Ellipsoid_WGS84())
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
void TestGeoid2Geocentric()
T x
X,Y,Z coordinates.
Definition: TPoint3D.h:29
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
constexpr double RAD2DEG(const double x)
Radians to degrees.
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
Definition: TPose3D.h:24
MATRIX44 getHomogeneousMatrixVal() const
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (t...
Definition: CPoseOrPoint.h:278
void geodeticToGeocentric_WGS84(const TGeodeticCoords &in_coords, mrpt::math::TPoint3D &out_point)
Coordinates transformation from longitude/latitude/height to geocentric X/Y/Z coordinates (with a WGS...
void getRotationMatrix(mrpt::math::CMatrixDouble33 &ROT) const
Get the 3x3 rotation matrix.
Definition: CPose3D.h:225



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020