Uses of Class
uk.ac.leeds.ccg.andyt.grids.core.GridStatisticsAbstract

Packages that use GridStatisticsAbstract
uk.ac.leeds.ccg.andyt.grids.core   
uk.ac.leeds.ccg.andyt.grids.exchange   
 

Uses of GridStatisticsAbstract in uk.ac.leeds.ccg.andyt.grids.core
 

Subclasses of GridStatisticsAbstract in uk.ac.leeds.ccg.andyt.grids.core
 class GridStatistics0
          Intended for use in grids that keep all fields (statistics) up to date as underlying data is changed.
 class GridStatistics1
          Used by Grid2DSquareCellAbstract instances to access statistics.
 

Fields in uk.ac.leeds.ccg.andyt.grids.core declared as GridStatisticsAbstract
protected  GridStatisticsAbstract Grid2DSquareCellAbstract.gridStatistics
          A reference to the grid Statistics Object.
 

Methods in uk.ac.leeds.ccg.andyt.grids.core that return GridStatisticsAbstract
 GridStatisticsAbstract Grid2DSquareCellAbstract.getGridStatistics()
          Returns this.gridStatistics TODO: For safety, this method should probably be removed and instead, this class be made to implement GridStatisticsInterface.
 

Methods in uk.ac.leeds.ccg.andyt.grids.core with parameters of type GridStatisticsAbstract
 Grid2DSquareCellDouble Grid2DSquareCellDoubleFactory.createGrid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, java.io.File gridFile, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex, double noDataValue)
          Returns a new Grid2DSquareCellDouble with values obtained from gridFile.
 Grid2DSquareCellDouble Grid2DSquareCellDoubleFactory.createGrid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellAbstract grid2DSquareCell, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex, double noDataValue)
          Returns a new Grid2DSquareCellDouble with all values taken from grid2DSquareCell.
 Grid2DSquareCellDouble Grid2DSquareCellDoubleFactory.createGrid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long nrows, long ncols, java.math.BigDecimal[] dimensions, double noDataValue)
          Returns a new Grid2DSquareCellDouble grid with all values as noDataValues.
 Grid2DSquareCellInt Grid2DSquareCellIntFactory.createGrid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, java.io.File gridFile, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex)
          Returns a new Grid2DSquareCellInt with values obtained from gridFile.
 Grid2DSquareCellInt Grid2DSquareCellIntFactory.createGrid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellAbstract grid2DSquareCell, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkAbstractFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex)
          Returns a new Grid2DSquareCellInt with values obtained from grid2DSquareCell.
 Grid2DSquareCellInt Grid2DSquareCellIntFactory.createGrid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellIntChunkAbstractFactory chunkFactory, int chunkNrows, int chunkNcols, long nrows, long ncols, java.math.BigDecimal[] dimensions)
          Returns a new Grid2DSquareCellInt grid with all values as noDataValues.
protected  void GridStatisticsAbstract.update(GridStatisticsAbstract gridStatistics)
          Updates fields from gridStatistics except this.grid2DSquareCell
 

Constructors in uk.ac.leeds.ccg.andyt.grids.core with parameters of type GridStatisticsAbstract
Grid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, java.io.File gridFile, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex, double noDataValue)
          Returns a new Grid2DSquareCellDouble with values obtained from gridFile.
Grid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellAbstract grid2DSquareCell, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex, double noDataValue)
          Creates a new Grid2DSquareCellDouble based on values in grid2DSquareCell.
Grid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols, long nrows, long ncols, java.math.BigDecimal[] dimensions, double noDataValue)
          Creates a new Grid2DSquareCellDouble with each cell value equal to noDataValue and all chunks of the same type.
Grid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, java.io.File gridFile, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex)
          Returns a new Grid2DSquareCellInt with values obtained from gridFile.
Grid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellAbstract grid2DSquareCell, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkFactory, int chunkNrows, int chunkNcols, long startRowIndex, long startColIndex, long endRowIndex, long endColIndex)
          Creates a new Grid2DSquareCellInt based on values in grid2DSquareCell.
Grid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File directory, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkFactory, int chunkNrows, int chunkNcols, long nrows, long ncols, java.math.BigDecimal[] dimensions)
          Creates a new Grid2DSquareCellInt with each cell value equal to Integer.MinValue.
 

Uses of GridStatisticsAbstract in uk.ac.leeds.ccg.andyt.grids.exchange
 

Methods in uk.ac.leeds.ccg.andyt.grids.exchange with parameters of type GridStatisticsAbstract
 Grid2DSquareCellDouble ESRIAsciiGridImporter.constructGrid2DSquareCellDouble(GridStatisticsAbstract gridStatistics, java.io.File outputDirectory, Grid2DSquareCellDoubleChunkAbstractFactory grid2DSquareCellDoubleChunkFactory, int chunkNrows, int chunkNcols)
          Returns a Grid2DSquareCellDouble loaded from this.file
 Grid2DSquareCellInt ESRIAsciiGridImporter.constructGrid2DSquareCellInt(GridStatisticsAbstract gridStatistics, java.io.File outputDirectory, Grid2DSquareCellIntChunkAbstractFactory grid2DSquareCellIntChunkFactory, int chunkNrows, int chunkNcols)
          Returns a Grid2DSquareCellInt loaded from this.file