You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I just wanted to report a small issue that happens only in the rarest of cases. In my case, I ran across a road that was exactly 5 km (the max edge length), and the splitter created 3 segments, with 1 segment of length zero .
In line 67:
if (data.Distance < _maxDistance)
should, I believe, be:
if (data.Distance <= _maxDistance)
The text was updated successfully, but these errors were encountered:
Just noting that I was unable to make a contracted db after making this change (on a planet sized pbf filtered for rail data), the exception I received was
Hi, I just wanted to report a small issue that happens only in the rarest of cases. In my case, I ran across a road that was exactly 5 km (the max edge length), and the splitter created 3 segments, with 1 segment of length zero .
In line 67:
if (data.Distance < _maxDistance)
should, I believe, be:
if (data.Distance <= _maxDistance)
The text was updated successfully, but these errors were encountered: