mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
15 lines
574 B
C++
15 lines
574 B
C++
#include "coding/traffic.hpp"
|
|
|
|
#include "base/math.hpp"
|
|
|
|
namespace coding
|
|
{
|
|
// static
|
|
uint32_t const TrafficGPSEncoder::kLatestVersion = 1;
|
|
uint32_t const TrafficGPSEncoder::kCoordBits = 30;
|
|
double const TrafficGPSEncoder::kMinDeltaLat = ms::LatLon::kMinLat - ms::LatLon::kMaxLat;
|
|
double const TrafficGPSEncoder::kMaxDeltaLat = ms::LatLon::kMaxLat - ms::LatLon::kMinLat;
|
|
double const TrafficGPSEncoder::kMinDeltaLon = ms::LatLon::kMinLon - ms::LatLon::kMaxLon;
|
|
double const TrafficGPSEncoder::kMaxDeltaLon = ms::LatLon::kMaxLon - ms::LatLon::kMinLon;
|
|
} // namespace coding
|