Welcome to mirror list, hosted at ThFree Co, Russian Federation.

latlon_test.cpp « geometry_tests « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5242c8a2ba086aa03d84a59211de26defcbc1f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "testing/testing.hpp"
#include "geometry/latlon.hpp"
#include "geometry/point2d.hpp"
#include "geometry/mercator.hpp"

UNIT_TEST(LatLonPointConstructorTest)
{
  m2::PointD basePoint(39.123, 42.456);
  ms::LatLon wgsPoint = MercatorBounds::ToLatLon(basePoint);
  m2::PointD resultPoint = MercatorBounds::FromLatLon(wgsPoint);
  TEST_ALMOST_EQUAL_ULPS(basePoint.x, resultPoint.x, ());
  TEST_ALMOST_EQUAL_ULPS(basePoint.y, resultPoint.y, ());
}