64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
#include "geometry/point_with_altitude.hpp"
|
|
|
|
#include "geometry/mercator.hpp"
|
|
|
|
#include <boost/functional/hash.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
namespace geometry
|
|
{
|
|
PointWithAltitude::PointWithAltitude() : m_point(m2::PointD::Zero()), m_altitude(kDefaultAltitudeMeters) {}
|
|
|
|
PointWithAltitude::PointWithAltitude(m2::PointD const & point, Altitude altitude /* = kDefaultAltitudeMeters */)
|
|
: m_point(point)
|
|
, m_altitude(altitude)
|
|
{}
|
|
|
|
bool PointWithAltitude::operator==(PointWithAltitude const & r) const
|
|
{
|
|
return m_point == r.m_point && m_altitude == r.m_altitude;
|
|
}
|
|
|
|
bool PointWithAltitude::operator<(PointWithAltitude const & r) const
|
|
{
|
|
if (m_point != r.m_point)
|
|
return m_point < r.m_point;
|
|
|
|
return m_altitude < r.m_altitude;
|
|
}
|
|
|
|
ms::LatLon PointWithAltitude::ToLatLon() const
|
|
{
|
|
return ms::LatLon(mercator::YToLat(m_point.y), mercator::XToLon(m_point.x));
|
|
}
|
|
|
|
std::string DebugPrint(PointWithAltitude const & r)
|
|
{
|
|
std::ostringstream ss;
|
|
ss << "PointWithAltitude{point:" << DebugPrint(r.m_point) << ", altitude:" << r.GetAltitude() << "}";
|
|
return ss.str();
|
|
}
|
|
|
|
PointWithAltitude MakePointWithAltitudeForTesting(m2::PointD const & point)
|
|
{
|
|
return PointWithAltitude(point, kDefaultAltitudeMeters);
|
|
}
|
|
|
|
bool AlmostEqualAbs(PointWithAltitude const & lhs, PointWithAltitude const & rhs, double eps)
|
|
{
|
|
return AlmostEqualAbs(lhs.GetPoint(), rhs.GetPoint(), eps) && lhs.GetAltitude() == rhs.GetAltitude();
|
|
}
|
|
} // namespace geometry
|
|
|
|
namespace std
|
|
{
|
|
size_t hash<geometry::PointWithAltitude>::operator()(geometry::PointWithAltitude const & point) const
|
|
{
|
|
size_t seed = 0;
|
|
boost::hash_combine(seed, point.GetPoint().x);
|
|
boost::hash_combine(seed, point.GetPoint().y);
|
|
boost::hash_combine(seed, point.GetAltitude());
|
|
return seed;
|
|
}
|
|
} // namespace std
|