Ignore:
Timestamp:
2009-12-11T22:52:54+01:00 (14 years ago)
Author:
mjulius
Message:

Fixes #4083 - exception when copying relation with incomplete node
Fixes #4141 - relax conflict detection for coordinates; API only returns 7 decimals

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/Projection.java

    r2511 r2612  
    1515    /**
    1616     * Minimum difference in location to not be represented as the same position.
     17     * The API returns 7 decimals.
    1718     */
    18     public static final double MAX_SERVER_PRECISION = 1e12;
     19    public static final double MAX_SERVER_PRECISION = 5e-8;
    1920
    2021    /**
Note: See TracChangeset for help on using the changeset viewer.