Skip to content

Commit ee3fdf7

Browse files
authored
Merge pull request #492 from mneilson-usgs/ep_6_explain_sf
Add explanation for use of `sf` package
2 parents 039dd8a + dfd456e commit ee3fdf7

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)