Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 13:58:55 +01:00
parent 4af19165ec
commit 68073add76
12458 changed files with 12350765 additions and 2 deletions

View file

@ -0,0 +1,30 @@
#pragma once
#include "geometry/latlon.hpp"
#include "geometry/point_with_altitude.hpp"
#include <string>
namespace routing
{
class LatLonWithAltitude
{
public:
LatLonWithAltitude() = default;
LatLonWithAltitude(ms::LatLon const & latlon, geometry::Altitude altitude) : m_latlon(latlon), m_altitude(altitude) {}
bool operator==(LatLonWithAltitude const & rhs) const;
bool operator<(LatLonWithAltitude const & rhs) const;
ms::LatLon const & GetLatLon() const { return m_latlon; }
geometry::Altitude GetAltitude() const { return m_altitude; }
geometry::PointWithAltitude ToPointWithAltitude() const;
private:
ms::LatLon m_latlon;
geometry::Altitude m_altitude = geometry::kDefaultAltitudeMeters;
};
std::string DebugPrint(LatLonWithAltitude const & latLonWithAltitude);
} // namespace routing