dimfalk / netatmo.weather

R wrapper for Netatmo Weather API
GNU General Public License v3.0
3 stars 0 forks source link

`get_public_data()`: new columns: min/mean/max precipitation per call over 20 days #6

Closed dimfalk closed 2 years ago

dimfalk commented 2 years ago

exemplified query with bbox = "Essen" and use_tiles = FALSE:

99 distinct stations with NAModule3 available out of 290 stations.

period considered: xts["2022-04-24 / 2022-04-27"]

range (min/mean/max): 0 / 1.87 / 7.22 mm zero precipitation detected --> 7 stations with NA values included --> 11 stations

dimfalk commented 2 years ago

another example with bbox = "Essen" and use_tiles = TRUE:

169 distinct stations with NAModule3 available out of 519 stations.

period considered: xts["2022-04-24 / 2022-04-27"]

range (min/mean/max): 0 / 2.03 / 7.26 mm zero precipitation detected --> 8 stations with NA values included --> 0 stations

dimfalk commented 2 years ago

plausible range for xts["2022-04-04 / 2022-04-06"]:

2022-04-04

dimfalk commented 2 years ago

purrr::map(rain_30min, sum) %>% unlist() %>% summary() :x:

Min. 1st Qu. Median Mean 3rd Qu. Max. 0.000 2.248 3.081 3.029 3.854 18.535

dimfalk commented 2 years ago

purrr::map(rain_5min, sum) %>% unlist() %>% summary() (✔️ )

Min. 1st Qu. Median Mean 3rd Qu. Max. 0.00 14.10 19.77 18.98 23.43 110.75