mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
14
libs/coding/traffic.cpp
Normal file
14
libs/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