Changeset 17549 in josm for trunk


Ignore:
Timestamp:
2021-03-01T10:48:58+01:00 (4 years ago)
Author:
Don-vip
Message:

fix #20346 - fix definition of EPSG:3346 for Lithuania (patch by nagisa)

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/nodist/data/projection/josm-epsg

    r14049 r17549  
    7575# Lambert Zone (Estonia)
    7676<3301> +proj=lcc +lat_0=57.51755393055556 +lat_1=59.333333333333336 +lat_2=58 +lon_0=24 +x_0=500000 +y_0=6375000 +ellps=GRS80 +nadgrids=null +units=m +axis=neu +bounds=21.64,56.05,28.58,61.13  <>
     77# LKS94 / Lithuania TM
     78<3346> +proj=tmerc +lat_0=0 +lon_0=24 +k=0.9998 +x_0=500000 +y_0=0 +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +units=m +axis=neu +bounds=19.03,53.89,26.84,56.46 +no_defs <>
    7779# Belgian Lambert 2008
    7880<3812> +proj=lcc +lat_0=50d47'52.134" +lat_1=49d50'0" +lat_2=51d10'0" +lon_0=4d21'33.177" +x_0=649328 +y_0=665262 +ellps=GRS80 +nadgrids=null +units=m +bounds=2.54,49.51,6.4,51.5  <>
  • trunk/test/unit/org/openstreetmap/josm/data/imagery/WMTSTileSourceTest.java

    r16916 r17549  
    6262    private final ImageryInfo testImageryGeoAdminCh = getImagery(TestUtils.getTestDataRoot() + "wmts/WMTSCapabilities-GeoAdminCh.xml");
    6363    private final ImageryInfo testImagery12168 = getImagery(TestUtils.getTestDataRoot() + "wmts/bug12168-WMTSCapabilities.xml");
     64    private final ImageryInfo testImageryORT2LT = getImagery(TestUtils.getTestDataRoot() + "wmts/WMTSCapabilities-Lithuania.xml");
    6465    private final ImageryInfo testLotsOfLayers = getImagery(TestUtils.getTestDataRoot() + "wmts/getCapabilities-lots-of-layers.xml");
    6566    private final ImageryInfo testDuplicateTags = getImagery(TestUtils.getTestDataRoot() + "wmts/bug12573-wmts-identifier.xml");
     
    249250                "http://www.ngi.be/cartoweb/1.0.0/topo/default/3857/7/1/1.png",
    250251                testSource.getTileUrl(0, 1, 1));
     252    }
     253
     254    @Test
     255    public void testProjectionWithENUAxis() throws IOException, WMTSGetCapabilitiesException {
     256        ProjectionRegistry.setProjection(Projections.getProjectionByCode("EPSG:3346"));
     257        WMTSTileSource testSource = new WMTSTileSource(testImageryORT2LT);
     258        testSource.initProjection(ProjectionRegistry.getProjection());
     259        TileXY tileXY0 = testSource.latLonToTileXY(55.31083718860799, 22.172052608196587, 0);
     260        double delta = 1e-10;
     261        assertEquals(27.09619727782481, tileXY0.getX(), delta);
     262        assertEquals(19.03524443532604, tileXY0.getY(), delta);
     263        TileXY tileXY2 = testSource.latLonToTileXY(55.31083718860799, 22.172052608196587, 2);
     264        assertEquals(81.28859183347444, tileXY2.getX(), delta);
     265        assertEquals(57.10573330597811, tileXY2.getY(), delta);
    251266    }
    252267
Note: See TracChangeset for help on using the changeset viewer.