Skip to content

Commit 267345c

Browse files
committed
fix episode 3 reversion
1 parent c67c61a commit 267345c

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
@@ -106,8 +106,7 @@ Let's try to plot the DTM on its own to make sure there are data there.
106106
```{r plot-DTM}
107107
ggplot() +
108108
geom_raster(data = DTM_HARV_df,
109-
aes(x = x, y = y,
110-
fill = HARV_dtmCrop)) +
109+
aes(x = x, y = y, fill = HARV_dtmCrop)) +
111110
scale_fill_gradientn(name = "Elevation", colors = terrain.colors(10)) +
112111
coord_quickmap()
113112
```

0 commit comments

Comments
 (0)