Modify

#7740 closed enhancement (fixed)

[PATCH] Fix roundToOsmPrecision() accuracy

Reported by: mrwojo Owned by: team
Priority: normal Component: Core
Version: Keywords: precision rounding
Cc:

Description

Currently, LatLon.roundToOsmPrecision(double) fails to pass checks in LatLonTest.roundingTest() due to rounding issues noted in roundToOsmPrecision(). This patch should address the accuracy issues by simply inverting the operations (multiply by 1e7 instead of divide by 1e-7 etc.). Errors creep in when dividing and multiplying by 1e-7 because that value cannot be represented accurately in standard floating point.

This should make roundToOsmPrecision(double) pass all the tests in LatLonTest.roundingTest() without affecting performance. It even passes tests with small input values, like:

        assertEquals(LatLon.roundToOsmPrecision(0.02345678),  0.0234568, 0);

(roundToOsmPrecisionStrict(double) leaves more than 7 digits of precision in near-zero values.)

Since it passes the rounding tests (and more), it could make roundToOsmPrecisionStrict(double) redundant.

Attachments (1)

roundToOsmPrecision.patch (2.1 KB) - added by mrwojo 12 months ago.
also made roundToOsmPrecisionStrict() call roundToOsmPrecision()

Download all attachments as: .zip

Change History (3)

comment:1 Changed 12 months ago by simon04

Nice. Will be considered after end of stabilization phase (DevelopersGuide/Schedule).

What about implementing roundToOsmPrecisionStrict in terms of roundToOsmPrecision and changing the documentation accordingly?

Changed 12 months ago by mrwojo

also made roundToOsmPrecisionStrict() call roundToOsmPrecision()

comment:2 Changed 12 months ago by simon04

  • Resolution set to fixed
  • Status changed from new to closed

In 5268/josm:

fix #7740 - Fix roundToOsmPrecision() accuracy (patch by mrwojo)

Add Comment

Modify Ticket

Change Properties
<Author field>
Action
as closed .
as The resolution will be set. Next status will be 'closed'.
The resolution will be deleted. Next status will be 'reopened'.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.