edzer / sdsr

Spatial Data Science: With Applications in R (source files)
https://r-spatial.org/book
Other
242 stars 91 forks source link

Missing data in aq folder for 12.7.1 A population grid #82

Closed williamlai2 closed 2 years ago

williamlai2 commented 2 years ago

12.7.1 A population grid refers to:

v = vroom::vroom("aq/pop/Zensus_Bevoelkerung_100m-Gitter.csv")

And 13.1 Preparing the air quality dataset refers to:

library(tidyverse)
read.csv("aq/AirBase_v8_stations.csv", sep = "\t") %>% 
    as_tibble()  %>% 
    filter(country_iso_code == "DE", station_type_of_area == "rural", 
                 type_of_station == "Background") -> a2

But they are not in here: https://github.com/edzer/sdsr/tree/main/aq

edzer commented 2 years ago

Yes, this is a bit too large for GitHub I believe; for now available from https://uni-muenster.sciebo.de/s/8mEbeHPOX9GdAYn

williamlai2 commented 2 years ago

Thanks