1
0
Fork 0

Fix precision issue with real and as the crow flies length.

Dieser Commit ist enthalten in:
Mikaël Capelle 2019-03-18 20:14:00 +01:00
Ursprung d8470055f1
Commit 423e36fc65

Datei anzeigen

@ -249,6 +249,9 @@ public class BinaryGraphReader extends BinaryReader implements GraphReader {
}
maxLength = Math.max(length, maxLength);
length = Math.max(length, (float) Point.distance(nodes.get(node).getPoint(),
nodes.get(destNode).getPoint()));
// Number of segments.
int nbSegments = dis.readUnsignedShort();