Changeset 36480 in osm
- Timestamp:
- 2026-02-09T18:37:49+01:00 (5 hours ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/wms
- Files:
-
- 4 edited
-
DownloadSVGBuilding.java (modified) (3 diffs)
-
DownloadSVGTask.java (modified) (1 diff)
-
RasterImageModifier.java (modified) (1 diff)
-
VectorImageModifier.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/wms/DownloadSVGBuilding.java
r34458 r36480 17 17 import java.util.Collection; 18 18 import java.util.LinkedList; 19 import java.util.List; 19 20 20 21 import javax.swing.JOptionPane; … … 173 174 } 174 175 175 private void createNodes(String SVGpath, ArrayList<EastNorth> eastNorth) {176 private void createNodes(String SVGpath, List<EastNorth> eastNorth) { 176 177 // looks like "M981283.38 368690.15l143.81 72.46 155.86 ..." 177 178 String[] coor = SVGpath.split("[MlZ ]"); //coor[1] is x, coor[2] is y … … 193 194 eastNorth.set(i, new EastNorth(en.east(), 2 * pivot - en.north())); 194 195 } 195 return;196 196 } 197 197 -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/wms/DownloadSVGTask.java
r34458 r36480 141 141 } 142 142 143 private double createNodes(String SVGpath, ArrayList<EastNorth> eastNorth) {143 private double createNodes(String SVGpath, List<EastNorth> eastNorth) { 144 144 // looks like "M981283.38 368690.15l143.81 72.46 155.86 ..." 145 145 String[] coor = SVGpath.split("[MlZ ]"); //coor[1] is x, coor[2] is y -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/wms/RasterImageModifier.java
r34458 r36480 86 86 setBufferedImage(bi); 87 87 } 88 return;89 88 } 90 89 -
applications/editors/josm/plugins/cadastre-fr/src/org/openstreetmap/josm/plugins/fr/cadastre/wms/VectorImageModifier.java
r34458 r36480 109 109 setBufferedImage(new BufferedImage(icm2, raster, bufferedImage.isAlphaPremultiplied(), null)); 110 110 } 111 return;112 111 } 113 112 }
Note:
See TracChangeset
for help on using the changeset viewer.
