Ignore:
Timestamp:
2010-11-15T00:02:20+01:00 (14 years ago)
Author:
bastiK
Message:

applied #5604 (patch by m.zdila) - support different formats of GPS coordinates in Add Node

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/coor/LatLon.java

    r3438 r3656  
    9999    }
    100100
    101     private final static String SOUTH = trc("compass", "S");
    102     private final static String NORTH = trc("compass", "N");
     101    public final static String SOUTH = trc("compass", "S");
     102    public final static String NORTH = trc("compass", "N");
    103103    public String latToString(CoordinateFormat d) {
    104104        switch(d) {
     
    115115    }
    116116
    117     private final static String WEST = trc("compass", "W");
    118     private final static String EAST = trc("compass", "E");
     117    public final static String WEST = trc("compass", "W");
     118    public final static String EAST = trc("compass", "E");
    119119    public String lonToString(CoordinateFormat d) {
    120120        switch(d) {
Note: See TracChangeset for help on using the changeset viewer.