Changeset 36020 in osm for applications/editors
- Timestamp:
- 2022-09-17T20:18:47+02:00 (2 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/download/CadastreDownloadTask.java
r35308 r36020 63 63 try { 64 64 for (String id : CadastreAPI.getSheets(downloadArea)) { 65 String url = String.join("/", CADASTRE_URL, id.substring(0,2), id.substring(0, 5), "edigeo-"+id+".tar.bz2");65 String url = String.join("/", CADASTRE_URL, id.substring(0, id.startsWith("97") ? 3 : 2), id.substring(0, 5), "edigeo-"+id+".tar.bz2"); 66 66 tasks.add(MainApplication.worker.submit(new InternalDownloadTask(settings, url, progressMonitor, zoomAfterDownload))); 67 67 } -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/edigeo/EdigeoFileGEO.java
r33659 r36020 166 166 CSG67UTM21("EPSG:3312"), 167 167 CSG67UTM22("EPSG:2971"), 168 RGFG95UTM22("EPSG:2972"), 169 RGR92UTM("EPSG:2975"), 168 170 MAYO50UTM38S("EPSG:2980"), 169 STPM50UTM21("EPSG:2987"); 171 STPM50UTM21("EPSG:2987"), 172 RGM04("EPSG:4471"); 170 173 171 174 final String epsg;
Note:
See TracChangeset
for help on using the changeset viewer.