The data comes from IMGW (Institute of Meteorology and Water Management) and was downloaded using the climate package. Two places have been chosen:

  • TRN - Tarnów ("pole of warmth")

  • SWK - Suwałki ("pole of cold")

A subset of columns has been selected and date column was added.

weather_pl

Format

station

A place where weather data were measured

date

Date

tmax_daily

Maximum daily air temperatury C

tmin_daily

Minimum daily air temperature C

tmin_soil

Minimum near surface air temperature C

rr_daily

Total daily preciptation mm

rr_type

Precipitation type S/W

rr_daytime

Total precipitation during day mm

rr_nightime

Total precipitation during night mm

press_mean_daily

Daily mean pressure at station level hPa

Examples

# Head of weather_pl
head(weather_pl)
#>       station       date tmax_daily tmin_daily tmin_soil rr_daily rr_type
#> 11068     TRN 2001-01-01        1.5       -5.2      -9.5      0.0        
#> 12175     TRN 2001-01-02        3.0       -4.1      -6.6      0.0       W
#> 23174     TRN 2001-01-03        3.3       -0.7      -3.8     10.7       S
#> 26174     TRN 2001-01-04        8.3        1.0      -1.1      0.0        
#> 27174     TRN 2001-01-05        7.0        0.7      -2.7      0.0        
#> 28174     TRN 2001-01-06        8.6        2.7       1.3      0.0       W
#>       rr_daytime rr_nightime press_mean_daily
#> 11068        0.0         0.0            991.7
#> 12175        0.0         0.0            985.0
#> 23174        5.9         4.8            984.4
#> 26174        0.0         0.0            987.5
#> 27174        0.0         0.0            985.0
#> 28174        0.0         0.0            980.1