Skip to content

Commit 0ff7230

Browse files
authored
Update 01-meteorological-data.Rmd
1 parent 52a0928 commit 0ff7230

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

sensors/01-meteorological-data.Rmd

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,11 @@ library(ggplot2)
114114
library(jsonlite)
115115
116116
url = ""
117-
mac_weather.list <- jsonlite::fromJSON('https://terraref.ncsa.illinois.edu/clowder/api/geostreams/datapoints?key=Pb3AUSqnUw&stream_id=300', flatten = FALSE)
117+
mac_weather.list <- jsonlite::fromJSON('https://terraref.ncsa.illinois.edu/clowder/api/geostreams/datapoints?key=Pb3AUSqnUw&stream_id=3208&since=2017-01-02&until=2017-12-31', flatten = FALSE)
118118
119119
# change time to human-readable
120120
mac_weather <- mac_weather.list$properties %>%
121121
mutate(time = lubridate::ymd_hms(mac_weather.list$end_time))
122-
123-
124122
```
125123

126124
### Using

0 commit comments

Comments
 (0)