klimaFR: Monthly climate in Freiburg

Description Usage Format Source Examples

Description

This data set contains various informations about the climate in Freiburg from 1950 to 2010 in a monthly rhythm.

Usage

1

Format

A data frame with 732 observations on 8 variables:

year

begin of interval (year)

month

begin of interval (month)

temp_mean

monthly mean of daily temperature means in 2m height in °C

temp_max

monthly mean of daily temperature maxima in 2m height in °C

temp_min

monthly mean of daily temperature minima in 2m height in °C

wind_speed

monthly mean of daily wind speed in Bft

sun_dur

monthly sum of sunshine duration in h

precip

monthly sum of precipitation height in mm

Source

DWD Climate Data Center (CDC): Historical monthly station observations (temperature, pressure, precipitation, sunshine duration, etc.) for Germany, version v007, 2018. (http://dwd.de)

Examples

1
2
3
4
5
6
7
8
9
## mean of the max. temperatures
mean(klimaFR$temp_max, na.rm = TRUE)
## sum of sunshine duration in 1950
sum(klimaFR$sun_dur[1:12])
## smallest an largest min. temperature
min(klimaFR$temp_min, na.rm = TRUE)
max(klimaFR$temp_min, na.rm = TRUE)
## precipitation in every december
klimaFR$precip[klimaFR$month == "12"]

buozyte/weatheranalysisFR documentation built on Nov. 4, 2019, 8:16 a.m.