Skip to content

Commit f778c5a

Browse files
authored
Merge pull request #2500 from kadyb/main
fix typo in sf1.Rmd
2 parents c88e743 + 19d6afd commit f778c5a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

vignettes/sf1.Rmd

+3-3
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ functions are limited to PostGIS.
570570
Coordinate reference systems (CRS) are like measurement units
571571
for coordinates: they specify which location on Earth a particular
572572
coordinate 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
574574
CRS. This implies that all geometries in a geometry list-column
575575
have the same CRS. It may be `NA` in case the CRS is unknown, or
576576
when 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`
583583
for the WKT-2 specification; WKT-2 is a standard encoding for
584584
describing CRS that is used throughout the spatial data science
585585
industry. 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
587587
projection types and (often) defines parameter values for particular
588588
projections, and hence can cover an infinite amount of different
589589
projections. Alternatively, codes like `EPSG:3035` or `OGC:CRS84`
@@ -592,7 +592,7 @@ the PROJ database.
592592

593593
Coordinate 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}
598598
nc.web_mercator <- st_transform(nc, "EPSG:3857")

0 commit comments

Comments
 (0)