Skip to content

Commit f053cc7

Browse files
authored
Merge pull request #430 from Aariq/patch-2
Update 10-vector-csv-to-shapefile-in-r.Rmd
2 parents 02e67be + 0013211 commit f053cc7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

episodes/10-vector-csv-to-shapefile-in-r.Rmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,16 @@ contain the information that helps us determine the CRS:
143143
- `utmZone`: 18
144144

145145
In
146-
[When Vector Data Don't Line Up - Handling Spatial Projection \& CRS in R](09-vector-when-data-dont-line-up-crs/)
146+
[When Vector Data Don't Line Up - Handling Spatial Projection \& CRS in R](09-vector-when-data-dont-line-up-crs.html)
147147
we learned about the components of a `proj4` string. We have everything we need
148148
to assign a CRS to our data frame.
149149

150150
To create the `proj4` associated with UTM Zone 18 WGS84 we can look up the
151151
projection on the
152-
[Spatial Reference website](https://www.spatialreference.org/ref/epsg/wgs-84-utm-zone-18n/),
152+
[Spatial Reference website](https://spatialreference.org/ref/epsg/32618/),
153153
which contains a list of CRS formats for each projection. From here, we can
154154
extract the
155-
[proj4 string for UTM Zone 18N WGS84](https://www.spatialreference.org/ref/epsg/wgs-84-utm-zone-18n/proj4/).
155+
[proj4 string for UTM Zone 18N WGS84](https://spatialreference.org/ref/epsg/32618/proj4.txt).
156156

157157
However, if we have other data in the UTM Zone 18N projection, it's much easier
158158
to use the `st_crs()` function to extract the CRS in `proj4` format from that
@@ -212,7 +212,7 @@ ggplot() +
212212
## Plot Extent
213213

214214
In
215-
[Open and Plot Vector Layers in R](06-vector-open-shapefile-in-r/)
215+
[Open and Plot Vector Layers in R](06-vector-open-shapefile-in-r.html)
216216
we learned about spatial object extent. When we plot several spatial layers in
217217
R using `ggplot`, all of the layers of the plot are considered in setting the
218218
boundaries of the plot. To show this, let's plot our `aoi_boundary_HARV` object

0 commit comments

Comments
 (0)