Codota Logo
TiledRaster.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.deegree.coverage.raster.TiledRaster
constructor

Best Java code snippets using org.deegree.coverage.raster.TiledRaster.<init> (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: deegree/deegree3

        raster = new TiledRaster( GriddedBlobTileContainer.create( directory, opts ), null );
        readSingleBlobTile = true;
      } catch ( IOException e ) {
      raster = new TiledRaster( container, null );
      raster.setCoordinateSystem( domain.getCoordinateSystem() );
  return buildTiledRaster( directory, recursive, options );
AbstractRaster raster = new TiledRaster( container, null );
raster.setCoordinateSystem( container.getRasterReference().getCrs() );
origin: deegree/deegree3

        raster = new TiledRaster( GriddedBlobTileContainer.create( directory, opts ), metadata );
        readSingleBlobTile = true;
      } catch ( IOException e ) {
      raster = new TiledRaster( container, metadata );
      raster.setCoordinateSystem( domain.getCoordinateSystem() );
  return buildTiledRaster( directory, recursive, options );
AbstractRaster raster = new TiledRaster( container, metadata );
raster.setCoordinateSystem( container.getRasterReference().getCrs() );
origin: deegree/deegree3

private static void transformRaster( String[] args, String srcCRS, String dstCRS, InterpolationType type,
                   OriginLocation location ) {
  try {
    MemoryTileContainer tileContainer = new MemoryTileContainer();
    for ( int i = 0; i < args.length - 1; i++ ) {
      if ( args[i] != null ) {
        File f = new File( args[i] );
        RasterIOOptions options = RasterIOOptions.forFile( f );
        options.add( RasterIOOptions.GEO_ORIGIN_LOCATION, location.name() );
        tileContainer.addTile( RasterFactory.loadRasterFromFile( f, options ) );
      }
    }
    AbstractRaster srcRaster = new TiledRaster( tileContainer, null );
    RasterTransformer transf = new RasterTransformer( dstCRS );
    srcRaster.setCoordinateSystem( CRSManager.getCRSRef( srcCRS ) );
    AbstractRaster result = transf.transform( srcRaster, type );
    RasterFactory.saveRasterToFile( result, new File( args[args.length - 1] ) );
  } catch ( Exception ex ) {
    System.err.println( "Couldn't transform raster file: " );
    ex.printStackTrace();
    System.exit( 2 );
  }
}
origin: deegree/deegree3

return new TiledRaster( mtc, null );
origin: deegree/deegree3

TiledRaster result = new TiledRaster( resultTC, metadata );
List<AbstractRaster> tiles = getTileContainer().getTiles( env );
if ( tiles == null || tiles.isEmpty() ) {
org.deegree.coverage.rasterTiledRaster<init>

Javadoc

Creates a new TiledRaster with tiles from the given TileContainer

Popular methods of TiledRaster

  • getTileContainer
    Returns the wrapper for all tiles.
  • getEnvelope
  • setCoordinateSystem
  • getRasterDataInfo
  • getRasterReference
  • getSubRaster
    Get a subraster which has it's origin location at the given location.
  • setMetadata
  • setSubRaster

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • compareTo (BigDecimal)
    Compares this BigDecimal with the specified BigDecimal. Two BigDecimal objects that are equal in val
  • Table (com.google.common.collect)
    A collection that associates an ordered pair of keys, called a row key and a column key, with a sing
  • ConnectException (java.net)
    A ConnectException is thrown if a connection cannot be established to a remote host on a specific po
  • SocketException (java.net)
    This SocketException may be thrown during socket creation or setting options, and is the superclass
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now