A Web Processing Service for climdex.pcic
Takes a climdexInput object as input and computes the annual count of days where daily temperature satisfies some condition.
climdex.su
“summer”: the annual count of days where daily maximum temperature exceeds 25 degrees Celsiusclimdex.id
“icing”: the annual count of days where daily maximum temperature was below 0 degrees Celsiusclimdex.fd
“frost”: the annual count of days where daily minimum temperature was below 0 degrees Celsiusclimdex.tr
“tropical nights”: the annual count of days where daily minimum temperature stays above 20 degrees CelsiusComputes the mean daily diurnal temperature range.
Takes a climdexInput
object as input and returns a dictionary with the names of all the indices which may be computed as values and which processes they are accessible by as keys
Computes the growing season length (GSL). Growing season length is the number of days between the start of the first spell of warm days in the first half of the year, defined as six or more days with mean temperature above 5 degrees Celsius, and the start of the first spell of cold days in the second half of the year, defined as six or more days with a mean temperature below 5 degrees Celsius.
This process wraps climdex functions:
climdex.txx
: Monthly (or annual) Maximum of Daily Maximum Temperatureclimdex.tnx
: Monthly (or annual) Maximum of Daily Minimum Temperatureclimdex.txn
: Monthly (or annual) Minimum of Daily Maximum Temperatureclimdex.tnn
: Monthly (or annual) Minimum of Daily Minimum TemperatureWraps climdex.r95ptot
, climdex.r99ptot
and climdex.prcptot
. Computes the annual sum of precipitation in days where daily precipitation exceeds the daily precipitation threshold in the base period. If threshold is not given, annual sum of precipitation in wet days (> 1mm) will be calculated.
This function implements R
’s type=8 in a more efficient manner.
Wraps climdex.r10mm
, climdex.r20mm
and climdex.rnnmm
. The annual count of days where daily precipitation is more than [threshold] mm per day.
climdex.rx1day
: monthly or annual maximum 1-day precipitationclimdex.rx5day
: monthly or annual maximum 5-day consecutive precipitation.Computes the climdex index SDII, or Simple Precipitation Intensity Index. This is defined as the sum of precipitation in wet days (days with precipitation over 1mm) during the year divided by the number of wet days in the year.
Cold or warm spell duration index and maximum consecutive dry or wet days. Wraps:
climdex.cdd
climdex.csdi
climdex.cwd
climdex.wsdi
This process wraps climdex functions
climdex.tn10p
: computes the monthly or annual percent of values below the 10th percentile of baseline daily minimum temperature.climdex.tn90p
: computes the monthly or annual percent of values above the 90th percentile of baseline daily minimum temperature.climdex.tx10p
: computes the monthly or annual percent of values below the 10th percentile of baseline daily maximum temperature.climdex.tx90
p: computes the monthly or annual percent of values above the 90th percentile of baseline daily maximum temperature.Process for creating climdexInput object from CSV files.
Process for creating climdexInput object from data already ingested into R
.