Public Member Functions | |
Cell (int iX, int iY, Plot oPlot) throws ModelException | |
Constructor. | |
Cell (int iX, int iY, float fXCellLength, float fYCellLength, Plot oPlot) throws ModelException | |
Constructor. | |
int | GetX () |
Gets the X cell coordinate. | |
int | GetY () |
Gets the Y cell coordinate. | |
Static Public Member Functions | |
static Cell[] | TransformOldGridCell (int iOldGridCell, float fOldXGridLength, float fOldYGridLength, int iNumOldXGrids, int iNumOldYGrids, Plot oPlot) throws ModelException |
Transforms an old grid cell number into its equivalent new grid cells. | |
Protected Attributes | |
float | m_fXCellLength |
Length of cell in X direction. | |
float | m_fYCellLength |
Length of cell in Y direction. | |
int | m_iX |
Cell X coordinate. | |
int | m_iY |
Cell Y coordinate. |
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
|
Constructor.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
Constructor.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
Gets the X cell coordinate.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
Gets the Y cell coordinate.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
Transforms an old grid cell number into its equivalent new grid cells. A strict one-to-one areal overlap cannot be guaranteed unless the old and new grid cells are the same size. The list of new cells covers completely all the area of the old cell, with overlap as needed to ensure the original area is completely covered.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |