dimfalk / netatmo.weather

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

`get_measure()`: cumulative stacked timeseries data #68

Closed dimfalk closed 5 months ago

dimfalk commented 5 months ago
library(netatmo.weather)
#> 0.5.7

e <- get_extent(c(6.89, 51.34, 7.13, 51.53))
stations <- get_publicdata(ext = e)

p1 <- get_period()
as.POSIXct(p1)
#> "2024-03-29 19:40:00 CET"  "2024-04-02 10:00:00 CEST"

obs <- get_measure(stations[1:10, ], period = p1, par = "temperature")

plot(obs[[3]])

image

dimfalk commented 5 months ago
library(netatmo.weather)
#> 0.5.8

e <- get_extent(c(6.89, 51.34, 7.13, 51.53))
stations <- get_publicdata(ext = e)

p1 <- get_period()
as.POSIXct(p1)
#> "2024-03-29 19:40:00 CET"  "2024-04-02 10:00:00 CEST"

obs <- get_measure(stations[1:10, ], period = p1, par = "temperature")

plot(obs[[3]])

image