Changeset 35976 in osm for applications/editors/josm/plugins/utilsplugin2
- Timestamp:
- 2022-06-14T20:11:21+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/utilsplugin2/src/org/openstreetmap/josm/plugins/utilsplugin2/replacegeometry/ReplaceGeometryUtils.java
r35681 r35976 450 450 451 451 static boolean isInArea(Node node, Area area) { 452 LatLon ll = node.getCoor(); 453 return node.isNewOrUndeleted() || area == null || ll == null || area.contains(ll.getX(), ll.getY()); 452 return node.isNewOrUndeleted() || area == null || !node.isLatLonKnown() || area.contains(node.lon(), node.lat()); 454 453 } 455 454
Note:
See TracChangeset
for help on using the changeset viewer.