mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
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
This commit is contained in:
14
coding/traffic.cpp
Normal file
14
coding/traffic.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user