Uses of Class
uk.ac.leeds.ccg.andyt.grids.core.Grid2DSquareCellAbstract.CellID

Packages that use Grid2DSquareCellAbstract.CellID
uk.ac.leeds.ccg.andyt.grids.core   
uk.ac.leeds.ccg.andyt.grids.process   
 

Uses of Grid2DSquareCellAbstract.CellID in uk.ac.leeds.ccg.andyt.grids.core
 

Methods in uk.ac.leeds.ccg.andyt.grids.core that return Grid2DSquareCellAbstract.CellID
 Grid2DSquareCellAbstract.CellID Grid2DSquareCellAbstract.getCellID(double x, double y, boolean handleOutOfMemoryError)
          Returns a CellID of the cell given by x-coordinate x, y-coordinate y even if that cell would not be in the grid.
 Grid2DSquareCellAbstract.CellID Grid2DSquareCellAbstract.getCellID(long cellRowIndex, long cellColIndex, boolean handleOutOfMemoryError)
          Returns a CellID of the cell given by cellRowIndex, cellColIndex even if that cell would not be in the grid.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellAbstract.getCellIDs(double x, double y, double distance, boolean handleOutOfMemoryError)
          Returns a CellID[] - the cell IDs for cells thats centroids are intersected by circle with centre at x-coordinate x, y-coordinate y, and radius distance.
protected  Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellAbstract.getCellIDs(double x, double y, long cellRowIndex, long cellColIndex, double distance, boolean handleOutOfMemoryError)
          Returns double[] cells - the values for cells thats centroids would be intersected by circle with centre at x-coordinate x, y-coordinate y, and radius distance.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellAbstract.getCellIDs(long cellRowIndex, long cellColIndex, double distance, boolean handleOutOfMemoryError)
          Returns a CellID[] - the cell IDs for cells thats centroids would be intersected by circle with centre at centroid of cell given by cell row index cellRowIndex, cell column index cellColIndex, and radius distance.
 Grid2DSquareCellAbstract.CellID Grid2DSquareCellAbstract.getNearestCellID(double x, double y, boolean handleOutOfMemoryError)
          Returns the the nearest cells cellRowIndex and cellColIndex as a long[] from ID to point given by x-coordinate x, y-coordinate y.
protected  Grid2DSquareCellAbstract.CellID Grid2DSquareCellAbstract.getNearestCellID(double x, double y, long cellRowIndex, long cellColIndex, boolean handleOutOfMemoryError)
          Returns the the nearest CellID to point given by x-coordinate x, y-coordinate y in position given by cellRowIndex, cellColIndex.
 Grid2DSquareCellAbstract.CellID Grid2DSquareCellAbstract.getNearestCellID(long cellRowIndex, long cellColIndex, boolean handleOutOfMemoryError)
          Returns the the nearest cells cellRowIndex and cellColIndex as a long[] from ID to point given by cell row index cellRowIndex, cell column index cellColIndex.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellDouble.getNearestValuesCellIDs(double x, double y, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values to point given by x-coordinate x, y-coordinate y.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellInt.getNearestValuesCellIDs(double x, double y, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values to point given by x-coordinate x, y-coordinate y.
protected  Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellDouble.getNearestValuesCellIDs(double x, double y, long cellRowIndex, long cellColIndex, double noDataValue, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values nearest to point with position given by: x-coordinate x, y-coordinate y; and, cell row index cellRowIndex, cell column index cellColIndex.
protected  Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellInt.getNearestValuesCellIDs(double x, double y, long cellRowIndex, long cellColIndex, int noDataValue, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values nearest to point with position given by: x-coordinate x, y-coordinate y; and, cell row index cellRowIndex, cell column index cellColIndex.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellDouble.getNearestValuesCellIDs(long cellRowIndex, long cellColIndex, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values to position given by row index rowIndex, column index colIndex.
 Grid2DSquareCellAbstract.CellID[] Grid2DSquareCellInt.getNearestValuesCellIDs(long cellRowIndex, long cellColIndex, boolean handleOutOfMemoryError)
          Returns a CellID[] - The CellIDs of the nearest cells with data values to position given by row index rowIndex, column index colIndex.
 

Methods in uk.ac.leeds.ccg.andyt.grids.core with parameters of type Grid2DSquareCellAbstract.CellID
 double Grid2DSquareCellDouble.addToCell(Grid2DSquareCellAbstract.CellID cellID, double valueToAdd, boolean handleOutOfMemoryError)
          Returns the value of the cell with cell ID cellID and adds valueToAdd to that cell.
 int Grid2DSquareCellInt.addToCell(Grid2DSquareCellAbstract.CellID cellID, int valueToAdd, boolean handleOutOfMemoryError)
          Returns the value of the cell with cell ID cellID and adds valueToAdd to that cell.
 int Grid2DSquareCellInt.getCell(Grid2DSquareCellAbstract.CellID cellID)
          For returning the value of the cell with cell ID cellID as a int.
 double Grid2DSquareCellDouble.getCell(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          For returning the value of the cell with cell ID cellID as a int.
 double Grid2DSquareCellAbstract.getCellX(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Deprecated. use getCellXDouble(CellID,boolean) Returns the x-coordinate of the centroid for cell with cell ID cellID as a double.
 java.math.BigDecimal Grid2DSquareCellAbstract.getCellXBigDecimal(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Returns the x-coordinate of the centroid for cell with cell ID cellID as a BigDecimal.
 double Grid2DSquareCellAbstract.getCellXDouble(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Returns the x-coordinate of the centroid for cell with cell ID cellID as a double
 double Grid2DSquareCellAbstract.getCellY(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Deprecated. use getCellYDouble(CellID,boolean) Returns the y-coordinate of the centroid of cell with CellID cellID as a double.
 java.math.BigDecimal Grid2DSquareCellAbstract.getCellYBigDecimal(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Returns the y-coordinate of the centroid of cell with CellID cellID as a BigDecimal.
 double Grid2DSquareCellAbstract.getCellYDouble(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Returns the y-coordinate of the centroid of cell with CellID cellID as a double.
 boolean Grid2DSquareCellAbstract.inGrid(Grid2DSquareCellAbstract.CellID cellID, boolean handleOutOfMemoryError)
          Returns true iff cell given by cellID is in the Grid.
 double Grid2DSquareCellDouble.setCell(Grid2DSquareCellAbstract.CellID cellID, double newValue, boolean handleOutOfMemoryError)
          For returning the value of the cell with cell ID cellID and setting it to newValue.
 int Grid2DSquareCellInt.setCell(Grid2DSquareCellAbstract.CellID cellID, int newValue, boolean handleOutOfMemoryError)
          For returning the value of the cell with cell ID cellID and setting it to newValue.
 

Constructors in uk.ac.leeds.ccg.andyt.grids.core with parameters of type Grid2DSquareCellAbstract.CellID
Grid2DSquareCellAbstract.CellID(Grid2DSquareCellAbstract.CellID cellID)
          Constructs a new CellID that is a clone of cellID
 

Uses of Grid2DSquareCellAbstract.CellID in uk.ac.leeds.ccg.andyt.grids.process
 

Methods in uk.ac.leeds.ccg.andyt.grids.process with parameters of type Grid2DSquareCellAbstract.CellID
 Grid2DSquareCellDouble Grid2DSquareCellProcessor.addToGrid(Grid2DSquareCellDouble grid, Grid2DSquareCellAbstract.CellID[] cellIDs, double value, boolean handleOutOfMemoryError)
          Returns grid with value added to every cell via Grid2DSquareCellDouble.addToCell(value)