final case classStats(map: Map[String, Variable]) extends Product with Serializable
Statistics for a given file. It provides a map from variable names to Stats.Variable which captures
the moments of that particular variable.
Statistics are obtained via Stats.get(netcdfFile).
For example, if the file has a variable "ta" with dimensions "lon", "lat" and "plev", the
overall minimum temperature will be found through stats("ta").total.min. That maximum temperature
at pressure level 0 will be found through stats("ta").slices("plev")(0).max.
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Statistics for a given file. It provides a map from variable names to
Stats.Variablewhich captures the moments of that particular variable.Statistics are obtained via
Stats.get(netcdfFile).For example, if the file has a variable
"ta"with dimensions"lon","lat"and"plev", the overall minimum temperature will be found throughstats("ta").total.min. That maximum temperature at pressure level 0 will be found throughstats("ta").slices("plev")(0).max.