@@ -570,7 +570,7 @@ functions are limited to PostGIS.
570570Coordinate reference systems (CRS) are like measurement units
571571for coordinates: they specify which location on Earth a particular
572572coordinate pair refers to. We saw above that ` sfc ` objects (geometry
573- list-columns) have a an attribute of class ` crs ` that stores the
573+ list-columns) have an attribute of class ` crs ` that stores the
574574CRS. This implies that all geometries in a geometry list-column
575575have the same CRS. It may be ` NA ` in case the CRS is unknown, or
576576when we work with local coordinate systems (e.g. inside a building,
@@ -583,7 +583,7 @@ name (if existing) or the user-definition of the CRS, and `wkt`
583583for the WKT-2 specification; WKT-2 is a standard encoding for
584584describing CRS that is used throughout the spatial data science
585585industry. When defining a CRS, a PROJ string may be used that is
586- understood by the [ PROJ] ( https://proj4 .org/ ) library. It defines
586+ understood by the [ PROJ] ( https://proj .org/ ) library. It defines
587587projection types and (often) defines parameter values for particular
588588projections, and hence can cover an infinite amount of different
589589projections. Alternatively, codes like ` EPSG:3035 ` or ` OGC:CRS84 `
@@ -592,7 +592,7 @@ the PROJ database.
592592
593593Coordinate reference system transformations are carried out using
594594` st_transform() ` , e.g. converting longitudes/latitudes in NAD27 to
595- web mercator (EPSG:3857) can be done by:
595+ Web Mercator (EPSG:3857) can be done by:
596596
597597``` {r}
598598nc.web_mercator <- st_transform(nc, "EPSG:3857")
0 commit comments