Skip to content

Commit

Permalink
Merge pull request #1061 from tibbles-and-tribbles/patch-39
Browse files Browse the repository at this point in the history
Update 07-reproj.Rmd
  • Loading branch information
Robinlovelace authored Jan 31, 2024
2 parents 31f2db8 + 25d2e9c commit e178b62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 07-reproj.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ The output is printed as multiple lines of text containing information about the
st_crs(cycle_hire_osm)
```

As we saw in Section \@ref(crs-setting), the main CRS components, `User input` and `wkt`, are printed as a single entity, the output of `st_crs()` is in fact a named list of class `crs` with two elements, single character strings named `input` and `wkt`, as shown in the output of the following code chunk:
As we saw in Section \@ref(crs-setting), the main CRS components, `User input` and `wkt`, are printed as a single entity. The output of `st_crs()` is in fact a named list of class `crs` with two elements, single character strings named `input` and `wkt`, as shown in the output of the following code chunk:

```{r 06-reproj-16}
crs_lnd = st_crs(london_geo)
Expand Down Expand Up @@ -576,7 +576,7 @@ st_crs(cycle_hire_osm_projected)
```

The resulting object has a new CRS with an EPSG code 27700.
But how to find out more details about this EPSG code, or any code?
But how do we find out more details about this EPSG code, or any code?
One option is to search for it online, another is to look at the properties of the CRS object:

```{r 06-reproj-19}
Expand Down

0 comments on commit e178b62

Please sign in to comment.