From 76ba27c46fcb6fdb8cff0cb9aebcb01d3687f4f6 Mon Sep 17 00:00:00 2001 From: Ethan White Date: Tue, 28 Oct 2025 11:42:11 -0400 Subject: [PATCH] Update package load instructions from stars -> terra --- assignments/r-spatial-1.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/assignments/r-spatial-1.md b/assignments/r-spatial-1.md index a2076f5f..47e98029 100644 --- a/assignments/r-spatial-1.md +++ b/assignments/r-spatial-1.md @@ -11,7 +11,7 @@ points: [90, 10] > Following this assignment students should be able to: > -> - import, view properties, and plot a `raster` +> - import, view properties, and plot a `raster` > - perform simple `raster` math > - import, view properties, and plot vector data > - extract points from a `raster` using a shapefile @@ -21,7 +21,8 @@ points: [90, 10] Place this code at the start of the assignment to load all the required packages. ```r -library(stars) +library(terra) +library(tidyterra) library(sf) library(ggplot2) library(dplyr)