Changeset 6064 in osm for applications


Ignore:
Timestamp:
2007-12-14T21:04:46+01:00 (17 years ago)
Author:
gabriel
Message:

osmarender plugin: Check for incomplete nodes.

Location:
applications/editors/josm/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/src/OsmarenderPlugin.java

    r5455 r6064  
    4848            DataSet fromDataSet = new DataSet();
    4949            for (Node n : Main.ds.nodes) {
     50                                if (n.deleted || n.incomplete) continue;
    5051                if (n.coor.isWithin(b)) {
    5152                                        fromDataSet.nodes.add(n);
Note: See TracChangeset for help on using the changeset viewer.