@@ -142,7 +142,7 @@ boundaries and country boundaries.
142
142
``` {r us-boundaries-thickness}
143
143
ggplot() +
144
144
geom_sf(data = state_boundary_US, color = "gray60") +
145
- geom_sf(data = country_boundary_US, color = "black",alpha = 0.25,size = 5)
145
+ geom_sf(data = country_boundary_US, color = "black",alpha = 0.25,size = 5) +
146
146
ggtitle("Map of Contiguous US State Boundaries") +
147
147
coord_sf()
148
148
```
@@ -155,7 +155,7 @@ First let's look at the CRS of our tower location object:
155
155
st_crs(point_HARV)$proj4string
156
156
```
157
157
158
- Our project string for ` DSM_HARV ` specifies the UTM projection as follows:
158
+ Our project string for ` point_HARV ` specifies the UTM projection as follows:
159
159
160
160
` +proj=utm +zone=18 +datum=WGS84 +units=m +no_defs `
161
161
@@ -185,8 +185,7 @@ the lat/long projection as follows:
185
185
coordinate system
186
186
- ** datum=WGS84:** the datum WGS84 (the datum refers to the 0,0 reference for
187
187
the coordinate system used in the projection)
188
- - ** ellps=WGS84:** the ellipsoid (how the earth's roundness is calculated)
189
- is WGS84
188
+ - ** no_defs:** ensures that no defaults are used, but this is now obsolete
190
189
191
190
Note that there are no specified units above. This is because this geographic
192
191
coordinate reference system is in latitude and longitude which is most often
0 commit comments