-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Labels
Description
Issue
@Rejudge-F, @DennisOSRM, @SiarheiFedartsou Hi, all. We are facing an inaccurate OSM node ID format issue and I found it's related to #6531.
The case is:
original node ID: 11117421192, after format: 1.111742119e+10.
The reason I think is that PackedOSMIDs
using PackedOSMIDs = util::detail::PackedVector<OSMNodeID, 34, Ownership>; |
Steps to reproduce
Add below test case to unit_tests/util/json_render.cpp
.
output.clear();
renderer(11117421192);
BOOST_CHECK_EQUAL(output, "1.111742119e+10");
imannamdari, kinkard and yboyer