| |
|
| java.lang.Object org.geotools.gce.gtopo30.GT30Stats
GT30Stats | final class GT30Stats (Code) | | This class parses the STX GTopo30 statistics file and allows to retrieve its
contents
author: aaime author: simone giannecchini author: mkraemer |
GT30Stats | public GT30Stats(URL statsURL) throws IOException(Code) | | Creates a new instance of GT30Stats
Parameters: statsURL - URL pointing to the statistics (STX) file throws: IOException - if some problem occurs trying to read the file |
getAverage | double getAverage()(Code) | | Returns the average value
the average value |
getMax | int getMax()(Code) | | Returns the maximum value
the maximum value |
getMin | int getMin()(Code) | | Returns the minimum value
the minimum value |
getStdDev | double getStdDev()(Code) | | Returns the standard deviation
the standard deviation |
setAverage | void setAverage(double avg)(Code) | | Sets the average value
Parameters: avg - the new average value |
setMax | void setMax(int max)(Code) | | Sets the maximum value
Parameters: max - the new maximum value |
setMin | void setMin(int min)(Code) | | Sets the minimum value
Parameters: min - the new minimum value |
setStdDev | void setStdDev(double sd)(Code) | | Sets the standard deviation
Parameters: sd - the new value |
writeTo | public void writeTo(OutputStream out)(Code) | | Write this object to a stats file.
Parameters: out - |
|
|
|