Skip to content

Commit

Permalink
Part 1 -> Part I
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinlovelace committed Sep 28, 2024
1 parent 888e3f3 commit fa55282
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 02-spatial-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Mac and Linux operating systems (OSs) have additional systems requirements, whic
See also OS-specific instructions such as that provided by the website [rtask.thinkr.fr](https://rtask.thinkr.fr/installation-of-r-4-2-on-ubuntu-22-04-lts-and-tips-for-spatial-packages/), which covers installing R on the open source OS Ubuntu.
```

After you have got a good setup, it's time to run some code!
After you have got a good set-up, it's time to run some code!
Unless you already have these packages installed, the first thing to do is to install foundational R packages used in this chapter, with the following commands:^[
**spDataLarge** is not on CRAN\index{CRAN}, meaning it must be installed via *r-universe* or with the following command: `remotes::install_github("Nowosad/spDataLarge")`.
]
Expand All @@ -44,7 +44,7 @@ install.packages("spDataLarge", repos = "https://nowosad.r-universe.dev")
remotes::install_github("r-tmap/tmap")
```

The packages needed to reproduce Part 1 of this book can be installed with the following command: `remotes::install_github("geocompx/geocompkg")`.
The packages needed to reproduce Part I of this book can be installed with the following command: `remotes::install_github("geocompx/geocompkg")`.
This command uses the function `install_packages()` from the **remotes** package to install source code hosted on the GitHub code hosting, version and collaboration platform.
The following command will install **all** dependencies required to reproduce the entire book (warning: this may take several minutes): `remotes::install_github("geocompx/geocompkg", dependencies = TRUE)`.

Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ install.packages("remotes")
install.packages('geocompkg', repos = c('https://geocompr.r-universe.dev', 'https://cloud.r-project.org'), dependencies = TRUE, force = TRUE)
```

Installing `geocompkg` will also install core packages required for reproducing **Part 1 of the book** (chapters 1 to 8).
Installing `geocompkg` will also install core packages required for reproducing **Part I of the book** (chapters 1 to 8).
Note: you may also need to install [system dependencies](https://github.com/r-spatial/sf#installing) if you're running Linux (recommended) or Mac operating systems.
You also need to have the [**remotes**](https://github.com/r-lib/remotes/) package installed:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ install.packages('geocompkg', repos = c('https://geocompr.r-universe.dev', 'http
```

Installing `geocompkg` will also install core packages required for
reproducing **Part 1 of the book** (chapters 1 to 8). Note: you may also
reproducing **Part I of the book** (chapters 1 to 8). Note: you may also
need to install [system
dependencies](https://github.com/r-spatial/sf#installing) if you’re
running Linux (recommended) or Mac operating systems. You also need to
Expand Down

0 comments on commit fa55282

Please sign in to comment.