Package org.geotools.referencing.crs

Examples of org.geotools.referencing.crs.DefaultProjectedCRS


        // get some test data
        final File testMosaic = TestData.file(this, "/crs_nztm");
        assertTrue(testMosaic.exists());

        final Parser parser = new Parser();
        final DefaultProjectedCRS crs_EN = (DefaultProjectedCRS) parser.parseObject(NZTM_WKT_EN);
        final DefaultProjectedCRS crs_NE = (DefaultProjectedCRS) parser.parseObject(NZTM_WKT_NE);

        final ImageMosaicReader reader = (ImageMosaicReader) new ImageMosaicFormat()
                .getReader(testMosaic);

        assertNotNull(reader);
View Full Code Here


      // //
      //
      // Creating anew projected CRS
      //
      // //
      return new DefaultProjectedCRS(
                                        java.util.Collections.singletonMap("name",
                                        DefaultEllipsoidalCS.getName(pcrs,
          new CitationImpl("EPSG"))), pcrs.getConversionFromBase()
          .getMethod(), (GeographicCRS) pcrs.getBaseCRS(), pcrs
          .getConversionFromBase().getMathTransform(),
View Full Code Here

TOP

Related Classes of org.geotools.referencing.crs.DefaultProjectedCRS

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.