Changeset 17375 in osm for applications/editors/josm/plugins/lakewalker
- Timestamp:
- 2009-08-30T18:14:39+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/lakewalker
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/build.xml
r16621 r17375 26 26 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 27 27 <attribute name="Plugin-Description" value="Helps vectorizing WMS images." /> 28 <attribute name="Plugin-Mainversion" value=" 1815"/>28 <attribute name="Plugin-Mainversion" value="2012"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerAction.java
r16621 r17375 254 254 } 255 255 256 way. nodes.add(n);256 way.addNode(n); 257 257 258 258 if(nodesinway > Main.pref.getInteger(LakewalkerPreferences.PREF_MAX_SEG, 500)){ … … 268 268 way = new Way(); 269 269 270 way. nodes.add(n);270 way.addNode(n); 271 271 272 272 nodesinway = 0; … … 284 284 way.put("source", Main.pref.get(LakewalkerPreferences.PREF_SOURCE, "Landsat")); 285 285 286 way. nodes.add(fn);286 way.addNode(fn); 287 287 288 288 commands.add(new AddCommand(way)); -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerReader.java
r16621 r17375 82 82 tn = null; 83 83 } 84 way. nodes.add(n);84 way.addNode(n); 85 85 break; 86 86 case 's': … … 107 107 108 108 // Add the start node to the end of the trace to form a closed shape 109 way. nodes.add(fn);109 way.addNode(fn); 110 110 } 111 111 catch (Exception ex) { }
Note:
See TracChangeset
for help on using the changeset viewer.