From 491d291cc518652b9f9cbe0878a139a855ba8af2 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Thu, 2 Jul 2015 14:54:39 +0300 Subject: [PATCH] New LatLon class. --- geometry/geometry.pro | 27 ++++++++++--------- geometry/geometry_tests/geometry_tests.pro | 31 +++++++++++----------- geometry/geometry_tests/latlon_test.cpp | 14 ++++++++++ geometry/latlon.hpp | 29 ++++++++++++++++++++ integration_tests/osrm_test_tools.cpp | 2 +- routing/online_cross_fetcher.cpp | 14 +++++----- routing/online_cross_fetcher.hpp | 5 ++-- 7 files changed, 83 insertions(+), 39 deletions(-) create mode 100644 geometry/geometry_tests/latlon_test.cpp create mode 100644 geometry/latlon.hpp diff --git a/geometry/geometry.pro b/geometry/geometry.pro index 3a8897250a..278139f11a 100644 --- a/geometry/geometry.pro +++ b/geometry/geometry.pro @@ -18,27 +18,28 @@ SOURCES += \ spline.cpp \ HEADERS += \ - rect2d.hpp \ - point2d.hpp \ - distance.hpp \ - distance_on_sphere.hpp \ angles.hpp \ - screenbase.hpp \ + any_rect2d.hpp \ + avg_vector.hpp \ cellid.hpp \ - rect_intersect.hpp \ covering.hpp \ covering_utils.hpp \ + distance.hpp \ + distance_on_sphere.hpp \ + latlon.hpp \ packer.hpp \ + point2d.hpp \ pointu_to_uint64.hpp \ - simplification.hpp \ - transformations.hpp \ - tree4d.hpp \ polygon.hpp \ + polyline2d.hpp \ + rect2d.hpp \ + rect_intersect.hpp \ region2d.hpp \ - robust_orientation.hpp \ - any_rect2d.hpp \ region2d/binary_operators.hpp \ region2d/boost_concept.hpp \ - avg_vector.hpp \ - polyline2d.hpp \ + robust_orientation.hpp \ + screenbase.hpp \ + simplification.hpp \ spline.hpp \ + transformations.hpp \ + tree4d.hpp \ diff --git a/geometry/geometry_tests/geometry_tests.pro b/geometry/geometry_tests/geometry_tests.pro index a27e531258..200cda12f8 100644 --- a/geometry/geometry_tests/geometry_tests.pro +++ b/geometry/geometry_tests/geometry_tests.pro @@ -19,26 +19,27 @@ HEADERS += \ SOURCES += \ ../../testing/testingmain.cpp \ - distance_test.cpp \ - distance_on_sphere_test.cpp \ angle_test.cpp \ - common_test.cpp \ - screen_test.cpp \ + anyrect_test.cpp \ cellid_test.cpp \ - intersect_test.cpp \ - point_test.cpp \ - packer_test.cpp \ - segments_intersect_test.cpp \ + common_test.cpp \ covering_test.cpp \ + distance_on_sphere_test.cpp \ + distance_test.cpp \ + intersect_test.cpp \ + latlon_test.cpp \ + packer_test.cpp \ + point_test.cpp \ pointu_to_uint64_test.cpp \ + polygon_test.cpp \ + rect_test.cpp \ + region2d_binary_op_test.cpp \ + region_test.cpp \ + robust_test.cpp \ + screen_test.cpp \ + segments_intersect_test.cpp \ simplification_test.cpp \ + spline_test.cpp \ transformations_test.cpp \ tree_test.cpp \ - polygon_test.cpp \ - region_test.cpp \ - rect_test.cpp \ - robust_test.cpp \ - anyrect_test.cpp \ - region2d_binary_op_test.cpp \ vector_test.cpp \ - spline_test.cpp \ diff --git a/geometry/geometry_tests/latlon_test.cpp b/geometry/geometry_tests/latlon_test.cpp new file mode 100644 index 0000000000..2bb306f0cc --- /dev/null +++ b/geometry/geometry_tests/latlon_test.cpp @@ -0,0 +1,14 @@ +#include "testing/testing.hpp" +#include "geometry/latlon.hpp" +#include "geometry/point2d.hpp" +#include "indexer/mercator.hpp" + +UNIT_TEST(LatLonPointConstructorTest) +{ + m2::PointD basePoint(39.123, 42.456); + ms::LatLon wgsPoint(basePoint); + m2::PointD resultPoint(MercatorBounds::LonToX(wgsPoint.lon), + MercatorBounds::LatToY(wgsPoint.lat)); + TEST_ALMOST_EQUAL_ULPS(basePoint.x, resultPoint.x, ()); + TEST_ALMOST_EQUAL_ULPS(basePoint.y, resultPoint.y, ()); +} diff --git a/geometry/latlon.hpp b/geometry/latlon.hpp new file mode 100644 index 0000000000..c2e818f2c2 --- /dev/null +++ b/geometry/latlon.hpp @@ -0,0 +1,29 @@ +#pragma once + +#include "indexer/mercator.hpp" + +#include "std/sstream.hpp" +#include "std/string.hpp" + +namespace ms +{ +/// \brief Class for representing WGS point. +class LatLon +{ +public: + LatLon(m2::PointD point) + : lat(MercatorBounds::YToLat(point.y)), lon(MercatorBounds::XToLon(point.x)) + { + } + + double lat, lon; +}; + +inline string DebugPrint(LatLon const & t) +{ + ostringstream out; + out << "LatLon [ " << t.lat << ", " << t.lon << " ]"; + return out.str(); +} + +} // namespace ms diff --git a/integration_tests/osrm_test_tools.cpp b/integration_tests/osrm_test_tools.cpp index 49ee906cca..30deb2eb21 100644 --- a/integration_tests/osrm_test_tools.cpp +++ b/integration_tests/osrm_test_tools.cpp @@ -4,8 +4,8 @@ #include "map/feature_vec_model.hpp" -#include "routing/online_cross_fetcher.hpp" #include "routing/online_absent_fetcher.hpp" +#include "routing/online_cross_fetcher.hpp" #include "routing/route.hpp" #include "search/search_engine.hpp" diff --git a/routing/online_cross_fetcher.cpp b/routing/online_cross_fetcher.cpp index dc311f015f..ec57626282 100644 --- a/routing/online_cross_fetcher.cpp +++ b/routing/online_cross_fetcher.cpp @@ -37,19 +37,17 @@ bool ParseResponse(const string & serverResponse, vector & outPoints return false; } -string GenerateOnlineRequest(string const & serverURL, m2::PointD const & startPoint, - m2::PointD const & finalPoint) +string GenerateOnlineRequest(string const & serverURL, ms::LatLon const & startPoint, + ms::LatLon const & finalPoint) { - return serverURL + "/mapsme?loc=" + strings::to_string(startPoint.y) + ',' + - strings::to_string(startPoint.x) + "&loc=" + strings::to_string(finalPoint.y) + ',' + - strings::to_string(finalPoint.x); + return serverURL + "/mapsme?loc=" + strings::to_string(startPoint.lat) + ',' + + strings::to_string(startPoint.lon) + "&loc=" + strings::to_string(finalPoint.lat) + ',' + + strings::to_string(finalPoint.lon); } OnlineCrossFetcher::OnlineCrossFetcher(string const & serverURL, m2::PointD const & startPoint, m2::PointD const & finalPoint) - : m_request(GenerateOnlineRequest( - serverURL, {MercatorBounds::XToLon(startPoint.x), MercatorBounds::YToLat(startPoint.y)}, - {MercatorBounds::XToLon(finalPoint.x), MercatorBounds::YToLat(finalPoint.y)})) + : m_request(GenerateOnlineRequest(serverURL, startPoint, finalPoint)) { LOG(LINFO, ("Check mwms by URL: ", GenerateOnlineRequest(serverURL, startPoint, finalPoint))); } diff --git a/routing/online_cross_fetcher.hpp b/routing/online_cross_fetcher.hpp index 6a713f65f7..5c492871b6 100644 --- a/routing/online_cross_fetcher.hpp +++ b/routing/online_cross_fetcher.hpp @@ -3,6 +3,7 @@ #include "3party/Alohalytics/src/http_client.h" #include "geometry/point2d.hpp" +#include "geometry/latlon.hpp" #include "base/thread.hpp" @@ -18,8 +19,8 @@ namespace routing /// \param finalPoint Coordinates of a finish point. /// \return URL for OSRM MAPS.ME server request. /// \see MapsMePlugin.hpp for REST protocol. -string GenerateOnlineRequest(string const & serverURL, m2::PointD const & startPoint, - m2::PointD const & finalPoint); +string GenerateOnlineRequest(string const & serverURL, ms::LatLon const & startPoint, + ms::LatLon const & finalPoint); /// \brief ParseResponse MAPS.ME OSRM server response parser. /// \param serverResponse Server response data.