Package org.geotools.utils.coveragetiler

Examples of org.geotools.utils.coveragetiler.CoverageTiler


    return true;
  }

  // private void tileInput(final int numTileX, final int numTileY,
  private void tileInput(File outputDir) {
    CoverageTiler tiler = new CoverageTiler();
    tiler.addProcessingEventListener(slaveToolsListener);
    tiler.setInputLocation(inputLocation);
    tiler.setOutputLocation(outputDir);
    tiler.setTileWidth(tileW);
    tiler.setTileHeight(tileH);
    tiler.setInternalTileHeight(internalTileHeight);
    tiler.setInternalTileWidth(internalTileWidth);
    tiler.setCompressionRatio(this.compressionRatio);
    tiler.setCompressionScheme(this.compressionScheme);
    tiler.run();
    tiler.removeAllProcessingEventListeners();
  }
View Full Code Here

TOP

Related Classes of org.geotools.utils.coveragetiler.CoverageTiler

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.