Changeset 26913 in osm for applications/editors/josm/plugins/epci-fr/src
- Timestamp:
- 2011-10-20T23:31:35+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/epci-fr/src/org/openstreetmap/josm/plugins/fr/epci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/epci-fr/src/org/openstreetmap/josm/plugins/fr/epci/EpciNameFormatter.java
r26281 r26913 17 17 String local_authority_FR = relation.get("local_authority:FR"); 18 18 if (local_authority_FR != null) { 19 return (defaultName != null ? defaultName : "") + "["+local_authority_FR+"]"; 19 return (defaultName != null ? defaultName : "") + 20 "["+(local_authority_FR.equals("metropole") ? "MP" : local_authority_FR)+"]"; 20 21 } else { 21 22 return null; -
applications/editors/josm/plugins/epci-fr/src/org/openstreetmap/josm/plugins/fr/epci/EpciPlugin.java
r26281 r26913 8 8 /** 9 9 * @author Don-vip 10 * @version 0.110 * @version 1.0 11 11 * History: 12 * 1.0 20-Oct-2011 Version 1.0, includes newly created EPCI type "metropole" 12 13 * 0.1 08-Jul-2011 first prototype 13 14 */
Note:
See TracChangeset
for help on using the changeset viewer.