Changeset 8611 in josm


Ignore:
Timestamp:
2015-07-22T21:55:54+02:00 (9 years ago)
Author:
Don-vip
Message:

Add robustness to UNITS_TO_METERS parameters - this solves the opendata plugin failing unit test

File:
1 edited

Legend:

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

    r8610 r8611  
    196196                String zoneStr = parameters.get(Param.zone.key);
    197197                Integer zone;
    198                 if (zoneStr == null) 
     198                if (zoneStr == null)
    199199                    throw new ProjectionConfigurationException(tr("UTM projection (''+proj=utm'') requires ''+zone=...'' parameter."));
    200200                try {
     
    236236            s = parameters.get(Param.units.key);
    237237            if (s != null) {
    238                 this.metersPerUnit = UNITS_TO_METERS.get(s);
     238                s = Utils.strip(s, "\"");
     239                if (UNITS_TO_METERS.containsKey(s)) {
     240                    this.metersPerUnit = UNITS_TO_METERS.get(s);
     241                } else {
     242                    Main.warn("No metersPerUnit found for: " + s);
     243                }
    239244            }
    240245            s = parameters.get(Param.to_meter.key);
     
    357362            ellps = Ellipsoid.WGS84;
    358363        }
    359        
     364
    360365        String nadgridsId = parameters.get(Param.nadgrids.key);
    361366        if (nadgridsId != null) {
Note: See TracChangeset for help on using the changeset viewer.