Herman Teirlinck Building
01.17 - Clara Peters
sf stays for: simple features, a scary way to express "geographic features", where feature is a scary term to refer to an abstraction of real world phenomena with geometrical properties such as lat/lon (or x-y).
Because Thierry says so :-)
sp is getting old: some of its core dependencies are getting archived as obsolete.
sf is the present and the future, bro!
This sp-sf migration table will help you refactoring your code.
Install the package:
install.packages("sf")
Load the package:
library(sf)
Two types of spatial coordinates:
For the math lovers: the flat space is also referred to as R2, the sphere as S2.
No geospatial data without specifying the Coordinate Reference System (CRS) you work with!
And what is a projection? A way to visualize a surface of a sphere on a flat space.
A lot of projections exist. Each one has its own purpose. Check this projection reference page by Bill Rankin, 2006 containing "(almost) all the projections available in ArcGIS".
Example: Lambert Azimuthal Equal Area, used by European Environment Agency (EEA) to provide standard grids of Europe. Parameters: latitude of origin 52° N, longitude of origin 10° E
What your favorite map projection say about you
The Peirce quincuncial projection is the conformal map projection from the sphere to an unfolded square dihedron, developed by Charles Sanders Peirce in 1879. Each octant projects onto an isosceles right triangle, and these are arranged into a square. The name quincuncial refers to this arrangement: the north pole at the center and quarters of the south pole in the corners form a quincunx pattern. [..] Rarely used for geographic purposes. The projection has seen use in digital photography for portraying spherical panoramas.
* Source: Wikipedia contributors, "Peirce quincuncial projection," Wikipedia, The Free Encyclopedia, https://en.wikipedia.org/w/index.php?title=Peirce_quincuncial_projection&oldid=1132803635 (accessed June 22, 2023).
sf cheatsheet
See also this very nice article with some examples and the excellent book geocomputation with R.
Check the Each session setup to get started.
Check the First time setup section to setup.
Go to https://hackmd.io/WgovTpD4SxuyoFGMvDMeag?edit and start by adding your name in section "Participants".
You can download the material of today:
automatically via inborutils::setup_codingclub_session()
*
manually** from GitHub folders coding-club/data/20230627 and coding-club/src/20230627
* Note: you can use the date in "YYYYMMDD" format to download the coding club material of a specific day, e.g. run setup_codingclub_session("20220428")
to download the coding club material of April, 28 2022. If date is omitted, i.e. setup_codingclub_session()
, the date of today is used. For all options, check the tutorial online.
** Note: check the getting started instructions on how to download a single file
20230627_lepidoptera_iNaturalist_2023.csv
: observations of Lepidoptera taken in 2023 via iNaturalist. Derived from: GBIF.org (22 June 2023) GBIF Occurrence Download https://doi.org/10.15468/dl.4z38cf20230627_protected_areas.gpkg
: geopackage containing the Natura2000 protected areas located in Flanders20230627_provinces_be.rds
: R object containing the Belgian provinces20230627_challenges.R
: R script to start with.Using the cheatsheet and starting from the code provided in 20230627_challenges.R
:
lepidoptera
starting from lepidoptera_df
. Use the columns decimalLongitude
and decimalLatitude
. Note that GBIF data are stored using WGS 84 (CRS = 4326).20230627_protected_areas.gpkg
contain?ps_hbtrl
from 20230627_protected_areas.gpkg
: call it prot_areas
prot_areas
?prot_areas
and lepidoptera
have the same CRS?provinces_be
(the code is given!). What is the class of this variable? From which package does this class come from? How to transform it to a sf object?provinces_fl
. Hint: do it as you would do it in a standard data.frame. The motto of the sf package is "Spatial data, simplified" for a reason!A common way to specify the CRS is by providing the EPSG (numeric) code. EPSG stands for European Petroleum Survey Group and is an organization that maintains a geodetic parameter database with standard codes, the EPSG codes, for coordinate systems, datums, spheroids, units and such alike. There are a lot of EPSG codes! Full list: https://spatialreference.org/
prot_areas
and lepidoptera
to the European Terrestrial Reference System 1989 (EPSG: 3035), the coordinate reference system used at EU level. Call the transformed sf objects prot_areas_3035
and lepidoptera_3035
respectivelyprot_areas_and_lepidoptera_3035.gpkg
with two layers: the first called prot_areas
, containing the protected areas, the second layer, lepidoptera_obs
, containing the observations of lepidopteracoordinateUncertaintyInMeters
of
lepidoptera_3035
. Call this sf object lepidoptera_3035_circles
.Using data saved in CRS 3035:
lepidoptera_3035
(points), are contained in which protected area?st_centroids()
. However, you get an error while calculating the centroids of prot_areas
. What does it mean? How to solve the problem?I discovered Floris is the maintainer of qgisprocess, a package to provide an R interface to the popular and open source desktop geographic information system (GIS) program QGIS. Something I think most of you will find very helpful.
And it has a cheat sheet too!
Floris wrote also some slides presenting the package.
prot_areas_3035
a column called n_lepidoptera_pts
with the number of observations as points in each protected area? To have an idea about the effects of coordinate uncertainty on number of observations, add also the number of observations as circles intersecting protected areas and the ones totally contained as n_lepidoptera_intersect
and n_lepidoptera_all_in
ROpenSci organizes a community call at 28 June (= tomorrow) at 6pm about the arrow R package. arrow exposes an interface to the Arrow C++ library, which is one of the libraries implementing the Apache Arrow cross-language development platform, extremely useful for in-memory and larger-than-memory data.
Everyone is welcome. No RSVP needed. Check details on event page.
sf
cheatsheet even if it is far from being the best cheatsheet everJuly = summer = no INBO coding club
library(cowsay)cowsay::say(what = "Enjoy the summeR!", by = "egret", what_color = c("red", "orange", "green", "blue", "purple"))
Voting session for the next coding club will be launched soon. Mail will follow.
Room: Herman Teirlinck - 01.05 - Isala Van Diest
Date: 31/08/2023, van 10:00 tot 12:30
Subject: still to be voted
(registration announced via DG_useR@inbo.be)
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |