Changeset 8598 in josm for trunk/test/unit
- Timestamp:
- 2015-07-12T23:55:18+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java
r8586 r8598 89 89 verifyBounds(wallonieBounds, testSource, 6, 1063, 1219); 90 90 verifyBounds(wallonieBounds, testSource, 11, 17724, 20324); 91 LatLon ll = new LatLon(testSource.tileXYToLatLon(1063, 1219, 6)); 92 91 } 92 93 @Test 94 public void testWALLONIENoMatrixDimension() throws MalformedURLException, IOException { 95 Main.setProjection(Projections.getProjectionByCode("EPSG:31370")); 96 WMTSTileSource testSource = new WMTSTileSource(getImagery("test/data/wmts/WMTSCapabilities-Wallonie-nomatrixdimension.xml")); 97 Bounds wallonieBounds = new Bounds( 98 new LatLon(49.485372459967245, 2.840548314430268), 99 new LatLon(50.820959517561256, 6.427849693016202) 100 ); 101 102 verifyBounds(wallonieBounds, testSource, 6, 1063, 1219); 103 verifyBounds(wallonieBounds, testSource, 11, 17724, 20324); 93 104 } 94 105
Note:
See TracChangeset
for help on using the changeset viewer.