Uses of Class
es.unex.sextante.rasterWrappers.GridExtent

Packages that use GridExtent
es.unex.sextante.core   
es.unex.sextante.dataObjects   
es.unex.sextante.gui.algorithm   
es.unex.sextante.gui.batch   
es.unex.sextante.gui.batch.nonFileBased   
es.unex.sextante.gui.cmd   
es.unex.sextante.rasterWrappers   
 

Uses of GridExtent in es.unex.sextante.core
 

Methods in es.unex.sextante.core that return GridExtent
 GridExtent GeoAlgorithm.getGridExtent()
          Returns the grid extent that will be used to create new raster layer
 

Methods in es.unex.sextante.core with parameters of type GridExtent
abstract  IRasterLayer OutputFactory.getNewRasterLayer(java.lang.String sName, int iDataType, GridExtent extent, int iBands, IOutputChannel channel, java.lang.Object crs)
          Use this method to create a new raster layer as output from the geo-algorithm.
 IRasterLayer OutputFactory.getNewRasterLayer(java.lang.String sName, int iDataType, IRasterLayer layer, int iBands, GridExtent outputGridExtent, IOutputChannel channel, java.lang.Object crs)
          Use this method to create a new raster layer as output from the geo-algorithm.
 void GeoAlgorithm.setGridExtent(GridExtent gridExtent)
          Sets a new grid extent that will be used to create new raster layer if the algorithm generates that kind of output
 

Uses of GridExtent in es.unex.sextante.dataObjects
 

Methods in es.unex.sextante.dataObjects that return GridExtent
 GridExtent IRasterLayer.getLayerGridExtent()
          Returns the grid extent of the layer
 GridExtent IRasterLayer.getWindowGridExtent()
          Returns the grid extent of the query window of this layer.
 GridExtent AbstractRasterLayer.getWindowGridExtent()
           
 

Methods in es.unex.sextante.dataObjects with parameters of type GridExtent
 void IRasterLayer.fitToGridExtent(GridExtent gridExtent)
          Resamples the layer so the new full extent is the same as a given gridExtent.
 void IRasterLayer.setWindowExtent(GridExtent gridExtent)
          Sets a new query window extent
 void AbstractRasterLayer.setWindowExtent(GridExtent extent)
           
 

Uses of GridExtent in es.unex.sextante.gui.algorithm
 

Methods in es.unex.sextante.gui.algorithm with parameters of type GridExtent
 void RasterExtentPanel.setExtent(GridExtent ge)
           
 

Uses of GridExtent in es.unex.sextante.gui.batch
 

Methods in es.unex.sextante.gui.batch that return GridExtent
 GridExtent RasterExtentPanel.getExtent()
           
 

Constructors in es.unex.sextante.gui.batch with parameters of type GridExtent
BatchProcessMonitorableTask(GeoAlgorithm algorithm, java.util.ArrayList parameters, java.util.ArrayList outputs, GridExtent gridExtent, javax.swing.JDialog parent)
          Creates a new task
BatchProcessSingleUnit(GeoAlgorithm alg, java.util.HashMap parameters, java.util.HashMap output, GridExtent gridExtent, ITaskMonitor monitor)
           
 

Uses of GridExtent in es.unex.sextante.gui.batch.nonFileBased
 

Constructors in es.unex.sextante.gui.batch.nonFileBased with parameters of type GridExtent
BatchProcessMonitorableTask(GeoAlgorithm algorithm, java.util.ArrayList parameters, java.util.ArrayList outputs, GridExtent gridExtent, javax.swing.JDialog parent)
          Creates a new task
BatchProcessSingleUnit(GeoAlgorithm alg, java.util.HashMap parameters, java.util.HashMap output, GridExtent gridExtent, ITaskMonitor monitor)
           
 

Uses of GridExtent in es.unex.sextante.gui.cmd
 

Methods in es.unex.sextante.gui.cmd that return GridExtent
static GridExtent CommandLineData.getGridExtent()
           
 

Methods in es.unex.sextante.gui.cmd with parameters of type GridExtent
static void CommandLineData.setGridExtent(GridExtent extent)
           
 

Uses of GridExtent in es.unex.sextante.rasterWrappers
 

Methods in es.unex.sextante.rasterWrappers that return GridExtent
 GridExtent GridWrapper.getGridExtent()
           
 

Methods in es.unex.sextante.rasterWrappers with parameters of type GridExtent
 void GridExtent.addExtent(GridExtent extent)
          Modifies this extent to incorporate another one into its boundaries
 boolean GridExtent.equals(GridExtent extent)
          Returns true if this extent has them same characteristics as a given one
 boolean GridExtent.fitsIn(GridExtent extent)
          Returns true if the given extents matches the grid defined by this grid extent (has same size and cell boundaries match)
 

Constructors in es.unex.sextante.rasterWrappers with parameters of type GridExtent
GridWrapper(IRasterLayer layer, GridExtent windowExtent)
           
GridWrapperInterpolated(IRasterLayer layer, GridExtent windowExtent)
           
GridWrapperNotInterpolated(IRasterLayer layer, GridExtent windowExtent)