Changeset 24130 in osm
- Timestamp:
- 2010-11-07T19:29:35+01:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OSMAddress.java
r24129 r24130 24 24 public class OSMAddress extends OSMEntityBase { 25 25 public static final String MISSING_TAG = "?"; 26 public static final String INTERPOLATION_TAG = " ...";26 public static final String INTERPOLATION_TAG = "x..y"; 27 27 28 28 private boolean isPartOfInterpolation; -
applications/editors/josm/plugins/FixAddresses/src/org/openstreetmap/josm/plugins/fixAddresses/OsmUtils.java
r24129 r24130 134 134 Way w = (Way) osm; 135 135 if (TagUtils.hasAddrInterpolationTag(w)) { 136 System.out.println("Found interpolation for " + address);137 136 applyDerivedValue(address, w, TagUtils.ADDR_POSTCODE_TAG); 138 137 applyDerivedValue(address, w, TagUtils.ADDR_CITY_TAG);
Note:
See TracChangeset
for help on using the changeset viewer.