Replace DistanceOnEarth fn call with more convenient one.

This commit is contained in:
vng 2014-12-26 11:36:33 +03:00 committed by Alex Zolotarev
parent 825fcd4f55
commit a4718a235e
5 changed files with 5 additions and 24 deletions

View file

@ -17,7 +17,6 @@
#include "../indexer/mercator.hpp"
#include "../geometry/distance_on_sphere.hpp"
#include "../geometry/transformations.hpp"
#include "../base/string_utils.hpp"
@ -569,9 +568,7 @@ void Ruler::update()
m2::PointD pt1 = screen.PtoG(pivot());
m2::PointD pt0 = screen.PtoG(pivot() - m2::PointD(minPxWidth, 0));
double const distanceInMetres = ms::DistanceOnEarth(
MercatorBounds::YToLat(pt0.y), MercatorBounds::XToLon(pt0.x),
MercatorBounds::YToLat(pt1.y), MercatorBounds::XToLon(pt1.x));
double const distanceInMetres = MercatorBounds::DistanceOnEarth(pt0, pt1);
// convert metres to units for calculating m_metresDiff
double metersDiff = CalcMetresDiff(distanceInMetres);

View file

@ -4,7 +4,6 @@
#include "../platform/location.hpp"
#include "../geometry/distance_on_sphere.hpp"
#include "../geometry/angles.hpp"
#include "../geometry/point2d.hpp"
@ -279,10 +278,7 @@ void Route::Update()
m2::PointD const & p1 = m_poly.GetPoint(i);
m2::PointD const & p2 = m_poly.GetPoint(i + 1);
dist += ms::DistanceOnEarth(MercatorBounds::YToLat(p1.y),
MercatorBounds::XToLon(p1.x),
MercatorBounds::YToLat(p2.y),
MercatorBounds::XToLon(p2.x));
dist += MercatorBounds::DistanceOnEarth(p1, p2);
m_segDistance[i] = dist;
m_segProj[i].SetBounds(p1, p2);

View file

@ -2,16 +2,13 @@
#include "../indexer/mercator.hpp"
#include "../geometry/distance_on_sphere.hpp"
namespace search
{
double PointDistance(m2::PointD const & a, m2::PointD const & b)
{
return ms::DistanceOnEarth(MercatorBounds::YToLat(a.y), MercatorBounds::XToLon(a.x),
MercatorBounds::YToLat(b.y), MercatorBounds::XToLon(b.x));
return MercatorBounds::DistanceOnEarth(a, b);
}
uint8_t ViewportDistance(m2::RectD const & viewport, m2::PointD const & p)

View file

@ -6,7 +6,6 @@
#include "../indexer/classificator.hpp"
#include "../geometry/distance.hpp"
#include "../geometry/distance_on_sphere.hpp"
#include "../geometry/angles.hpp"
#include "../base/logging.hpp"
@ -267,8 +266,7 @@ bool LessStreetDistance(HouseProjection const & p1, HouseProjection const & p2)
double GetDistanceMeters(m2::PointD const & p1, m2::PointD const & p2)
{
return ms::DistanceOnEarth(MercatorBounds::YToLat(p1.y), MercatorBounds::XToLon(p1.x),
MercatorBounds::YToLat(p2.y), MercatorBounds::XToLon(p2.x));
return MercatorBounds::DistanceOnEarth(p1, p2);
}
pair<double, double> GetConnectionAngleAndDistance(bool & isBeg, Street const * s1, Street const * s2)

View file

@ -3,8 +3,6 @@
#include "../indexer/ftypes_matcher.hpp"
#include "../indexer/features_vector.hpp"
#include "../geometry/distance_on_sphere.hpp"
namespace search
{
@ -77,12 +75,7 @@ public:
void operator() (LocalityItem const & item)
{
m2::PointD const c = item.m_rect.Center();
double const d = ms::DistanceOnEarth(MercatorBounds::YToLat(c.y),
MercatorBounds::XToLon(c.x),
MercatorBounds::YToLat(m_point.y),
MercatorBounds::XToLon(m_point.x));
double const d = MercatorBounds::DistanceOnEarth(item.m_rect.Center(), m_point);
double const value = ftypes::GetPopulationByRadius(d) / static_cast<double>(item.m_population);
if (value < m_bestValue)
{