Changeset 24228 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-11-14T18:58:49+01:00 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/PostalCodeChecker.java
r24227 r24228 137 137 System.out.println("//postalCodePatternMap.put(\"" + countries[i] + "\", \"[0-9]{5}\");"); 138 138 } 139 */139 140 140 String x = "A9999AAA"; 141 141 … … 156 156 System.err.println(xxx[i]); 157 157 } 158 } 158 }*/ 159 159 // see http://userpage.chemie.fu-berlin.de/diverse/doc/ISO_3166.html for country codes 160 160 // … … 300 300 //postalCodePatternMap.put("LR", "[0-9]{5}"); 301 301 //postalCodePatternMap.put("LS", "[0-9]{5}"); 302 //postalCodePatternMap.put("LT", "[0-9]{5}");302 postalCodePatternMap.put("LT", "[0-9]{5}"); 303 303 postalCodePatternMap.put("LU", "[0-9]{4}"); 304 304 postalCodePatternMap.put("LV", "[0-9]{4}"); … … 324 324 //postalCodePatternMap.put("MV", "[0-9]{5}"); 325 325 //postalCodePatternMap.put("MW", "[0-9]{5}"); 326 //postalCodePatternMap.put("MX", "[0-9]{5}");326 postalCodePatternMap.put("MX", "[0-9]{5}"); // Mexico 327 327 //postalCodePatternMap.put("MY", "[0-9]{5}"); 328 328 //postalCodePatternMap.put("MZ", "[0-9]{5}"); … … 358 358 postalCodePatternMap.put("RO", "[0-9]{6}"); 359 359 //postalCodePatternMap.put("RS", "[0-9]{5}"); 360 //postalCodePatternMap.put("RU", "[0-9]{5}");360 postalCodePatternMap.put("RU", "[0-9]{6}"); 361 361 //postalCodePatternMap.put("RW", "[0-9]{5}"); 362 362 //postalCodePatternMap.put("SA", "[0-9]{5}"); … … 390 390 //postalCodePatternMap.put("TN", "[0-9]{5}"); 391 391 //postalCodePatternMap.put("TO", "[0-9]{5}"); 392 postalCodePatternMap.put("TR", "[0-9]{5}"); 392 postalCodePatternMap.put("TR", "[0-9]{5}"); // turky 393 393 //postalCodePatternMap.put("TT", "[0-9]{5}"); 394 394 //postalCodePatternMap.put("TV", "[0-9]{5}");
Note:
See TracChangeset
for help on using the changeset viewer.