Public Member Functions | |
CarbonValueDataRequest (String sChartName, DetailedOutputFileManager oManager) throws ModelException | |
Constructor. | |
void | AddGridFloatData (String sGridName, int iX, int iY, int iCode, float fVal) |
This accepts float data. | |
boolean | WantAnyGridFloats () |
This wants floats. | |
void | AddGridFloatDataMemberCode (String sGridName, String sLabel, int iCode) |
Accepts a grid float data member code for future reference when passed float data members. | |
Protected Member Functions | |
void | WriteChartDataToFile (java.io.FileWriter jOut) throws java.io. IOException |
Writes the table's data to tab-delimited text. | |
Package Functions | |
ModelInternalFrame | DrawChart (Legend oLegend, String sChartTitle) throws ModelException |
Creates a table of the results that have been collected. | |
void | UpdateChart (Legend oLegend) throws ModelException |
Redraws the chart using the existing dataset. | |
void | ClearData () throws ModelException |
Clears out existing data. | |
Private Member Functions | |
int | GetSpeciesFromDataMemberLabel (String sLabel) |
Gets the species from a data member label which ends in "_x", where x is the species number. | |
JPanel | CreateTable (Legend oLegend) throws ModelException |
Creates the results table. | |
Private Attributes | |
float[] | mp_fValue |
The carbon value for this timestep for each species. | |
float[] | mp_fAmount |
The carbon amount, in metric tons, for this timestep for each species. | |
int[] | mp_iValueIndexes |
Translates a data member code to an index in the value array. | |
int[] | mp_iAmountIndexes |
Translates a data member code to an index in the value array. | |
String[] | mp_sColumnNames = {"Species", "Carbon Amt (Mg/ha)", "Carbon Value/ha"} |
Table column headers. | |
String[] | mp_sSpeciesNames |
Array of species names for display. | |
String | m_sThisGrid |
Name of the grid from which the data will be collected. | |
float | m_fPlotAreaInHectares |
Plot area, in hectares. | |
int | m_iNumSpecies |
The number of species. | |
int | m_iNumCols = 3 |
Number of columns in the table. |
This requires the detailed output file to have data saved from the "Carbon Value" grid.
Copyright: Copyright (c) Charles D. Canham 2006 Company: Institute of Ecosystem Studies
datavisualizer.CarbonValueDataRequest.CarbonValueDataRequest | ( | String | sChartName, | |
DetailedOutputFileManager | oManager | |||
) | throws ModelException |
Constructor.
sChartName | Name of the chart | |
oManager | Detailed output file manager |
ModelException | not really, but I have to declare this. |
void datavisualizer.CarbonValueDataRequest.WriteChartDataToFile | ( | java.io.FileWriter | jOut | ) | throws java.io. IOException [protected, virtual] |
Writes the table's data to tab-delimited text.
jOut | java.io.FileWriter The file to write to. |
java.io.IOException | if there's a problem writing the file. |
Implements datavisualizer.DataRequest.
void datavisualizer.CarbonValueDataRequest.AddGridFloatData | ( | String | sGridName, | |
int | iX, | |||
int | iY, | |||
int | iCode, | |||
float | fVal | |||
) |
This accepts float data.
The index vector is consulted and the values added to the appropriate array location.
sGridName | Name of the grid for this data | |
iX | X number of the cell from which this value came | |
iY | Y number of the cell from which this value came | |
iCode | Data member code of this value. | |
fVal | Value. |
Reimplemented from datavisualizer.DataRequest.
boolean datavisualizer.CarbonValueDataRequest.WantAnyGridFloats | ( | ) |
void datavisualizer.CarbonValueDataRequest.AddGridFloatDataMemberCode | ( | String | sGridName, | |
String | sLabel, | |||
int | iCode | |||
) |
Accepts a grid float data member code for future reference when passed float data members.
sGridName | Name of the grid | |
sLabel | The label of the data member. | |
iCode | The data member code. |
Reimplemented from datavisualizer.DataRequest.
int datavisualizer.CarbonValueDataRequest.GetSpeciesFromDataMemberLabel | ( | String | sLabel | ) | [private] |
Gets the species from a data member label which ends in "_x", where x is the species number.
sLabel | The data member label. |
ModelInternalFrame datavisualizer.CarbonValueDataRequest.DrawChart | ( | Legend | oLegend, | |
String | sChartTitle | |||
) | throws ModelException [package, virtual] |
Creates a table of the results that have been collected.
oLegend | The species legend. | |
sChartTitle | The chart title. |
datavisualizer.ModelException | Edit history: ------------------ March 21, 2006: Created (LEM) |
Implements datavisualizer.DataRequest.
void datavisualizer.CarbonValueDataRequest.UpdateChart | ( | Legend | oLegend | ) | throws ModelException [package, virtual] |
Redraws the chart using the existing dataset.
oLegend | The legend for this chart. |
ModelException | if anything goes wrong with the chart drawing. |
Implements datavisualizer.DataRequest.
JPanel datavisualizer.CarbonValueDataRequest.CreateTable | ( | Legend | oLegend | ) | throws ModelException [private] |
Creates the results table.
oLegend | Legend for this chart. |
ModelException | If anything goes wrong with the drawing. |
void datavisualizer.CarbonValueDataRequest.ClearData | ( | ) | throws ModelException [package, virtual] |
Clears out existing data.
ModelException | Doesn't throw an exception. |
Implements datavisualizer.DataRequest.
float [] datavisualizer.CarbonValueDataRequest.mp_fValue [private] |
The carbon value for this timestep for each species.
float [] datavisualizer.CarbonValueDataRequest.mp_fAmount [private] |
The carbon amount, in metric tons, for this timestep for each species.
int [] datavisualizer.CarbonValueDataRequest.mp_iValueIndexes [private] |
Translates a data member code to an index in the value array.
For each species, this gives the code for the value index.
int [] datavisualizer.CarbonValueDataRequest.mp_iAmountIndexes [private] |
Translates a data member code to an index in the value array.
For each species, this gives the code for the amount index.
String [] datavisualizer.CarbonValueDataRequest.mp_sColumnNames = {"Species", "Carbon Amt (Mg/ha)", "Carbon Value/ha"} [private] |
Table column headers.
Putting them here makes them consistent in all possible display methods.
String [] datavisualizer.CarbonValueDataRequest.mp_sSpeciesNames [private] |
Array of species names for display.
String datavisualizer.CarbonValueDataRequest.m_sThisGrid [private] |
Name of the grid from which the data will be collected.
float datavisualizer.CarbonValueDataRequest.m_fPlotAreaInHectares [private] |
Plot area, in hectares.
int datavisualizer.CarbonValueDataRequest.m_iNumSpecies [private] |
The number of species.
int datavisualizer.CarbonValueDataRequest.m_iNumCols = 3 [private] |
Number of columns in the table.