Skip to content

Commit

Permalink
live raster chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellmanware committed Jan 21, 2025
1 parent 2df6c8b commit a1ce3a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions chapters/01-02-spatial-point-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Point Data Access, Preparation, and Exploratory Analysis in R {-}

**Date Modified:** August 16, 2024
**Date Modified:** January 21, 2025

**Authors:** Mitchell Manware [![author-mm](images/orcid.png){width=10}](https://orcid.org/0009-0003-6440-6106), Kyle P. Messier [![author-kpm](images/orcid.png){width=10}](https://orcid.org/0000-0001-9508-9623)

Expand Down Expand Up @@ -80,7 +80,7 @@ Inspecting the file with `utils::unzip(list = TRUE)` returned the size of the fi
Multiple chunks of code in this tutorial will contain `./dataset/`, a fixed directory path to run the tutorial code. To run the code on your machine, substitute `./dataset/` with the file path where you would like to store the tutorial data.
:::

```{r, eval = FALSE}
```{r}
list.files("./dataset/epa")
```

Expand Down
6 changes: 3 additions & 3 deletions chapters/01-04-spatial-raster-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

### Raster Data Access, Preparation, and Exploratory Analysis in R {-}

**Date Modified:** August 16, 2024
**Date Modified:** January 21, 2025

**Authors:** Mitchell Manware [![author-mm](images/orcid.png){width=10}](https://orcid.org/0009-0003-6440-6106), Kyle P. Messier [![author-kpm](images/orcid.png){width=10}](https://orcid.org/0000-0001-9508-9623)

Expand Down Expand Up @@ -143,7 +143,7 @@ terra::crs(

`narr` has a native coordinate reference system, but it is unnamed and was not identifiable by `terra::rast()`. The area of interest for these exploratory analyses is the conterminous United States, so we can project `narr` to the Albers Equal Area projected coordinate system (EPSG code: 5070).

```{r, eval = FALSE}
```{r, message = FALSE, warning = FALSE, results = FALSE}
narr_p <- terra::project(
narr,
"EPSG:5070"
Expand All @@ -156,7 +156,7 @@ We want to create plots with and analyze the air temperature data as it relates
See the [Polygon Data](#chapter-polygon-data) Chapter Section [Plot (Multiple)](#chapter-polygon-plot-multiple-sf) for the steps for obtaining the `states_t` data set.
:::

```{r, eval = FALSE}
```{r}
remove <- c(
"Alaska",
"Hawaii",
Expand Down

0 comments on commit a1ce3a2

Please sign in to comment.