Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _04-ex.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ plot(distance_to_coast_km, main = "Distance to the coast (km)")
```

E9. Try to modify the approach used in the above exercise by weighting the distance raster with the elevation raster; every 100 altitudinal meters should increase the distance to the coast by 10 km.
Next, compute and visualize the difference between the raster created using the Euclidean distance (E7) and the raster weighted by elevation.
Next, compute and visualize the difference between the raster created using the Euclidean distance (E8) and the raster weighted by elevation.

```{r 04-ex-e9}
# now let's weight each 100 altitudinal meters by an additional distance of 10 km
Expand Down
Loading