Skip to content

Commit dfd456e

Browse files
committed
Add explanation for use of sf package
Add link to the Wikipedia entry for Simple Features, and statement about other software that implement the Simple Features Access standard, to provide context for students on why the `sf` package is used for vector data in these lessons
1 parent c99bee2 commit dfd456e

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

episodes/06-vector-open-shapefile-in-r.Rmd

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,13 @@ into a single plot.
5252

5353
## Import Vector Data
5454

55-
We will use the `sf` package to work with vector data in R. `sf` stands for simple features.
56-
We will also use the `terra` package, which has been loaded in previous episodes, so we can
57-
explore raster and vector spatial metadata using similar commands. Make sure
58-
you have the `sf` library loaded.
55+
We will use the `sf` package to work with vector data in R. `sf` stands for
56+
[simple features](https://en.wikipedia.org/wiki/Simple_Features), an international standard for
57+
representing spatial data that is used widely by databases (e.g., PostGIS) and other open source
58+
geospatial software (e.g., GDAL). We will also use the `terra` package, which has been loaded
59+
in previous episodes, so we can explore raster and vector spatial metadata using similar commands.
60+
61+
Make sure you have the `sf` library loaded.
5962

6063
```{r load-sf, results="hide", eval=FALSE, message=FALSE}
6164
library(sf)

0 commit comments

Comments
 (0)