8 Geographic data I/O
E1. List and describe three types of vector, raster, and geodatabase formats.
Vector formats: Shapefile (old format supported by many programs), GeoPackage (more recent format with better support of attribute data) and GeoJSON (common format for web mapping).
Raster formats: GeoTiff, Arc ASCII, ERDAS Imagine (IMG).
Database formats: PostGIS, SQLite, FileGDB.
E2. Name at least two differences between the sf functions read_sf()
and st_read()
.
read_sf()
is simply a ‘wrapper’ around st_read()
, meaning that it calls st_read()
behind the scenes. The differences shown in the output of the read_sf
are quiet = TRUE
, stringsAsFactors = FALSE
, and as_tibble = TRUE
:
-
read_sf()
outputs arequiet
by default, meaning less information printed to the console. -
read_sf()
outputs are tibbles by default, meaning that they are data frames with some additional features. -
read_sf()
does not convert strings to factors by default.
The differences can be seen by running the following commands nc = st_read(system.file("shape/nc.shp", package="sf"))
and nc = read_sf(system.file("shape/nc.shp", package="sf"))
from the function’s help (?st_read
).
read_sf
#> function (..., quiet = TRUE, stringsAsFactors = FALSE, as_tibble = TRUE)
#> {
#> st_read(..., quiet = quiet, stringsAsFactors = stringsAsFactors,
#> as_tibble = as_tibble)
#> }
#> <bytecode: 0x55b0f9026bc8>
#> <environment: namespace:sf>
nc = st_read(system.file("shape/nc.shp", package="sf"))
#> Reading layer `nc' from data source
#> `/usr/local/lib/R/site-library/sf/shape/nc.shp' using driver `ESRI Shapefile'
#> Simple feature collection with 100 features and 14 fields
#> Geometry type: MULTIPOLYGON
#> Dimension: XY
#> Bounding box: xmin: -84.3 ymin: 33.9 xmax: -75.5 ymax: 36.6
#> Geodetic CRS: NAD27
nc = read_sf(system.file("shape/nc.shp", package="sf"))
E3. Read the cycle_hire_xy.csv
file from the spData package as a spatial object (Hint: it is located in the misc
folder).
What is a geometry type of the loaded object?
c_h = read.csv(system.file("misc/cycle_hire_xy.csv", package = "spData")) |>
st_as_sf(coords = c("X", "Y"))
c_h
#> Simple feature collection with 742 features and 5 fields
#> Geometry type: POINT
#> Dimension: XY
#> Bounding box: xmin: -0.237 ymin: 51.5 xmax: -0.00228 ymax: 51.5
#> CRS: NA
#> First 10 features:
#> id name area nbikes nempty geometry
#> 1 1 River Street Clerkenwell 4 14 POINT (-0.11 51.5)
#> 2 2 Phillimore Gardens Kensington 2 34 POINT (-0.198 51.5)
#> 3 3 Christopher Street Liverpool Street 0 32 POINT (-0.0846 51.5)
#> 4 4 St. Chad's Street King's Cross 4 19 POINT (-0.121 51.5)
#> 5 5 Sedding Street Sloane Square 15 12 POINT (-0.157 51.5)
#> 6 6 Broadcasting House Marylebone 0 18 POINT (-0.144 51.5)
#> 7 7 Charlbert Street St. John's Wood 15 0 POINT (-0.168 51.5)
#> 8 8 Lodge Road St. John's Wood 5 13 POINT (-0.17 51.5)
#> 9 9 New Globe Walk Bankside 3 16 POINT (-0.0964 51.5)
#> 10 10 Park Street Bankside 1 17 POINT (-0.0928 51.5)
E4. Download the borders of Germany using rnaturalearth, and create a new object called germany_borders
.
Write this new object to a file of the GeoPackage format.
library(rnaturalearth)
germany_borders = ne_countries(country = "Germany", returnclass = "sf")
plot(germany_borders)
#> Warning: plotting the first 10 out of 168 attributes; use max.plot = 168 to
#> plot all
st_write(germany_borders, "germany_borders.gpkg")
#> Writing layer `germany_borders' to data source
#> `germany_borders.gpkg' using driver `GPKG'
#> Writing 1 features with 168 fields and geometry type Multi Polygon.
E5. Download the global monthly minimum temperature with a spatial resolution of 5 minutes using the geodata package.
Extract the June values, and save them to a file named tmin_june.tif
file (hint: use terra::subset()
).
library(geodata)
gmmt = worldclim_global(var = "tmin", res = 5, path = tempdir())
names(gmmt)
#> [1] "wc2.1_5m_tmin_01" "wc2.1_5m_tmin_02" "wc2.1_5m_tmin_03" "wc2.1_5m_tmin_04"
#> [5] "wc2.1_5m_tmin_05" "wc2.1_5m_tmin_06" "wc2.1_5m_tmin_07" "wc2.1_5m_tmin_08"
#> [9] "wc2.1_5m_tmin_09" "wc2.1_5m_tmin_10" "wc2.1_5m_tmin_11" "wc2.1_5m_tmin_12"
plot(gmmt)
gmmt_june = terra::subset(gmmt, "wc2.1_5m_tmin_06")
plot(gmmt_june)
writeRaster(gmmt_june, "tmin_june.tif")
E6. Create a static map of Germany’s borders, and save it to a PNG file.
png(filename = "germany.png", width = 350, height = 500)
plot(st_geometry(germany_borders), axes = TRUE, graticule = TRUE)
dev.off()
#> png
#> 2
E7. Create an interactive map using data from the cycle_hire_xy.csv
file.
Export this map to a file called cycle_hire.html
.