Skip to content

Commit 29bdc0f

Browse files
authored
Merge pull request #406 from albhasan/new-m2022q1_e3
fix episode 3 reversion
2 parents 8744982 + 267345c commit 29bdc0f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

episodes/03-raster-reproject-in-r.Rmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ plot the DTM on its own to make sure there are data there.
105105
```{r plot-DTM}
106106
ggplot() +
107107
geom_raster(data = DTM_HARV_df,
108-
aes(x = x, y = y,
109-
fill = HARV_dtmCrop)) +
108+
aes(x = x, y = y, fill = HARV_dtmCrop)) +
110109
scale_fill_gradientn(name = "Elevation", colors = terrain.colors(10)) +
111110
coord_quickmap()
112111
```

0 commit comments

Comments
 (0)