osrm-backend/src/engine/polyline_compressor.cpp

121 lines
2.9 KiB
C++
Raw Normal View History

2016-01-02 11:13:44 -05:00
#include "engine/polyline_compressor.hpp"
2014-11-28 04:07:06 -05:00
#include <cstddef>
#include <cstdlib>
#include <cmath>
2014-11-28 04:07:06 -05:00
2016-01-05 10:51:13 -05:00
namespace osrm
{
namespace engine
{
namespace /*detail*/ // anonymous to keep TU local
{
std::string encode(int number_to_encode)
{
std::string output;
while (number_to_encode >= 0x20)
{
const int next_value = (0x20 | (number_to_encode & 0x1f)) + 63;
output += static_cast<char>(next_value);
number_to_encode >>= 5;
}
number_to_encode += 63;
output += static_cast<char>(number_to_encode);
return output;
}
2016-01-05 10:51:13 -05:00
std::string encode(std::vector<int> &numbers)
2014-11-28 04:07:06 -05:00
{
std::string output;
for (auto &number : numbers)
2014-11-28 04:07:06 -05:00
{
bool isNegative = number < 0;
if (isNegative)
{
const unsigned binary = std::llabs(number);
const unsigned twos = (~binary) + 1u;
number = twos;
}
number <<= 1u;
if (isNegative)
2014-11-28 04:07:06 -05:00
{
number = ~number;
2014-11-28 04:07:06 -05:00
}
}
for (const int number : numbers)
{
output += encode(number);
2014-11-28 04:07:06 -05:00
}
return output;
}
} // anonymous ns
2014-11-28 04:07:06 -05:00
std::string polylineEncode(const std::vector<SegmentInformation> &polyline)
2014-11-28 04:07:06 -05:00
{
if (polyline.empty())
{
return {};
}
std::vector<int> delta_numbers;
delta_numbers.reserve((polyline.size() - 1) * 2);
2016-01-05 10:51:13 -05:00
util::FixedPointCoordinate previous_coordinate = {0, 0};
2014-11-28 04:07:06 -05:00
for (const auto &segment : polyline)
{
if (segment.necessary)
{
const int lat_diff = segment.location.lat - previous_coordinate.lat;
const int lon_diff = segment.location.lon - previous_coordinate.lon;
delta_numbers.emplace_back(lat_diff);
delta_numbers.emplace_back(lon_diff);
previous_coordinate = segment.location;
}
}
return encode(delta_numbers);
2014-11-28 04:07:06 -05:00
}
2015-05-31 07:57:27 -04:00
std::vector<util::FixedPointCoordinate> polylineDecode(const std::string &geometry_string)
2015-05-31 07:57:27 -04:00
{
2016-01-05 10:51:13 -05:00
std::vector<util::FixedPointCoordinate> new_coordinates;
2015-05-31 07:57:27 -04:00
int index = 0, len = geometry_string.size();
int lat = 0, lng = 0;
2016-01-05 06:04:04 -05:00
while (index < len)
2015-05-31 07:57:27 -04:00
{
int b, shift = 0, result = 0;
2016-01-05 06:04:04 -05:00
do
2015-05-31 07:57:27 -04:00
{
b = geometry_string.at(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlat = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lat += dlat;
shift = 0;
result = 0;
2016-01-05 06:04:04 -05:00
do
2015-05-31 07:57:27 -04:00
{
b = geometry_string.at(index++) - 63;
result |= (b & 0x1f) << shift;
shift += 5;
} while (b >= 0x20);
int dlng = ((result & 1) != 0 ? ~(result >> 1) : (result >> 1));
lng += dlng;
2016-01-05 10:51:13 -05:00
util::FixedPointCoordinate p;
2016-01-05 06:04:04 -05:00
p.lat = COORDINATE_PRECISION * (((double)lat / 1E6));
p.lon = COORDINATE_PRECISION * (((double)lng / 1E6));
2015-05-31 07:57:27 -04:00
new_coordinates.push_back(p);
}
return new_coordinates;
}
2016-01-05 10:51:13 -05:00
}
}