Index: /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/AbstractDataSetHandler.java
===================================================================
--- /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/AbstractDataSetHandler.java	(revision 32124)
+++ /applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/datasets/AbstractDataSetHandler.java	(revision 32125)
@@ -253,8 +253,8 @@
     public final Collection<String> getOsmXapiRequests(Bounds bounds) {
         return getOsmXapiRequests(
-                LatLon.roundToOsmPrecisionStrict(bounds.getMin().lon())+","+
-                LatLon.roundToOsmPrecisionStrict(bounds.getMin().lat())+","+
-                LatLon.roundToOsmPrecisionStrict(bounds.getMax().lon())+","+
-                LatLon.roundToOsmPrecisionStrict(bounds.getMax().lat()));
+                LatLon.roundToOsmPrecision(bounds.getMin().lon())+","+
+                LatLon.roundToOsmPrecision(bounds.getMin().lat())+","+
+                LatLon.roundToOsmPrecision(bounds.getMax().lon())+","+
+                LatLon.roundToOsmPrecision(bounds.getMax().lat()));
     }
     
@@ -263,10 +263,9 @@
     public final String getOverpassApiRequest(Bounds bounds) {
         return getOverpassApiRequest(
-                "w=\""+LatLon.roundToOsmPrecisionStrict(bounds.getMin().lon())+"\" "+
-                "s=\""+LatLon.roundToOsmPrecisionStrict(bounds.getMin().lat())+"\" "+
-                "e=\""+LatLon.roundToOsmPrecisionStrict(bounds.getMax().lon())+"\" "+
-                "n=\""+LatLon.roundToOsmPrecisionStrict(bounds.getMax().lat())+"\"");
-    }
-
+                "w=\""+LatLon.roundToOsmPrecision(bounds.getMin().lon())+"\" "+
+                "s=\""+LatLon.roundToOsmPrecision(bounds.getMin().lat())+"\" "+
+                "e=\""+LatLon.roundToOsmPrecision(bounds.getMax().lon())+"\" "+
+                "n=\""+LatLon.roundToOsmPrecision(bounds.getMax().lat())+"\"");
+    }
 
     protected String getOverpassApiRequest(String bbox) {return null;}
