Skip to content

Commit 532295a

Browse files
committed
misc path
1 parent 2cd73de commit 532295a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

vignettes/articles/2.2-SpatialSubsets.Rmd.orig

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ Navigate the the [KBA Canada Map Viewer](https://kbacanada.org/explore/map-viewe
6363
We can read in our KBA polygons using the `sf` package once it is in your working directory. The downloaded files was renamed for this example so you will need to change the code to match your file name.
6464

6565
```{r, echo = FALSE, message = FALSE, warning = FALSE}
66-
ontario_kba <- st_read(here::here("misc/Data/provontario_kba/ontario_kba.shp"), quiet = TRUE)
67-
kba_attributes <- read.csv(here::here("misc/Data/provontario_kba/ontario_kba.csv"))
66+
ontario_kba <- st_read(here::here("misc/data/kba/provontario_kba/ontario_kba.shp"), quiet = TRUE)
67+
kba_attributes <- read.csv(here::here("misc/data/kba/provontario_kba/ontario_kba.csv"))
6868
```
6969

7070
```{r, eval = FALSE}
@@ -185,7 +185,7 @@ atlas_on_sf <- st_as_sf(atlas_on,
185185

186186
Now let's ensure that the conversion was successful. You'll notice a new geometry column where each observation is a point.
187187

188-
```{r echo = FALSE}
188+
```{r, message = FALSE}
189189
str(atlas_on_sf) # view the sf object
190190
```
191191

@@ -270,7 +270,7 @@ Navigate to [Priority Places - Open Government Portal](https://open.canada.ca/da
270270
First, lets create a path to our downloaded Priority Place file.
271271

272272
```{r, echo = FALSE, message = FALSE}
273-
gdb_path <- here::here("misc/Data/priority_places/priorityplaces.gdb")
273+
gdb_path <- here::here("misc/data/priority_places/priorityplaces.gdb")
274274
```
275275

276276
```{r, eval = FALSE}

0 commit comments

Comments
 (0)