Climate Indices

Indices

More than 20 climate indices are available in the package, such as the annual number of tropical nights, annual maximum and minimum, etc. You can calculate such indices simply with:

ind = annualmax(C::ClimGrid)

Which returns another ClimGrid. You can also map this ClimGrid with the mapclimgrid function and returns the climatological mean of the annual maximum (e.g. daily precipitation in the example below). A list of indices can be found in the documentation and in the functions.jl source code.

mapclimgrid(ind) # mapping the indice previously calculated

BNU-ESM

Ensemble mean

You can calculate the ensemble mean with ensemble_mean function, where the input argument is an array of ClimGrids.

Abstract example:

C_model1 = ClimGrid(...) # model #1
C_model2 = ClimGrid(...) # model #2
ens = [C_model1, C_model2] # Create an Array of ClimGrids
E = ensemble_mean(ens) # Returns the mean of all models climatologies

Climate Indices

Here's a list of climate indices currently provided by ClimateTools. This list may not be always up-to-date. See here for all exported functions.

Missing docstring.

Missing docstring for annualmax. Check Documenter's build log for details.

Missing docstring.

Missing docstring for annualmean. Check Documenter's build log for details.

Missing docstring.

Missing docstring for annualmin. Check Documenter's build log for details.

Missing docstring.

Missing docstring for annualsum. Check Documenter's build log for details.

Missing docstring.

Missing docstring for approx_surfacepressure. Check Documenter's build log for details.

Missing docstring.

Missing docstring for customthresover. Check Documenter's build log for details.

Missing docstring.

Missing docstring for customthresunder. Check Documenter's build log for details.

Missing docstring.

Missing docstring for diurnaltemperature. Check Documenter's build log for details.

Missing docstring.

Missing docstring for icingdays. Check Documenter's build log for details.

Missing docstring.

Missing docstring for frostdays. Check Documenter's build log for details.

Missing docstring.

Missing docstring for prcp1. Check Documenter's build log for details.

Missing docstring.

Missing docstring for summerdays. Check Documenter's build log for details.

Missing docstring.

Missing docstring for tropicalnights. Check Documenter's build log for details.

Missing docstring.

Missing docstring for vaporpressure. Check Documenter's build log for details.

Missing docstring.

Missing docstring for wbgt. Check Documenter's build log for details.