Skip to content

Commit 6449064

Browse files
author
Jon Jablonski
committed
adjusted timings. enhanced and updated instructor notes with episode numbers and current titles.
1 parent f1748da commit 6449064

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

episodes/08-vector-plot-shapefiles-custom-legend.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Plot Multiple Vector Layers
3-
teaching: 40
4-
exercises: 20
3+
teaching: 30
4+
exercises: 15
55
source: Rmd
66
---
77

episodes/09-vector-when-data-dont-line-up-crs.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Handling Spatial Projection & CRS
3-
teaching: 40
3+
teaching: 30
44
exercises: 20
55
source: Rmd
66
---

instructors/instructor-notes.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ from this data.
3030
at the end of the first day, they will need to either save the workspace or reload the data and packages.
3131
Because of this, it is essential that learners save their code to a script throughout the lesson.
3232

33-
#### [Intro to Raster Data in R](01-raster-structure.md)
33+
#### [1 Intro to Raster Data in R](01-raster-structure.md)
3434

3535
- Be sure to introduce the datasets that will be used in this lesson. There are many data files. It may
3636
be helpful to draw a diagram on the board showing the types of data that will be plotted and analyzed
@@ -48,28 +48,28 @@ from this data.
4848
- Be sure to draw a distinction between the DTM and the DSM files, as these two datasets will be used
4949
throughout the lesson.
5050

51-
#### [Plot Raster Data in R](02-raster-plot.md)
51+
#### [2 Plot Raster Data in R](02-raster-plot.md)
5252

5353
- `geom_bar()` is a new geom for the learners. They were introduced to `geom_col()` in the [Introduction to R for Geospatial Data](https://datacarpentry.org/r-intro-geospatial/) lesson.
5454
- `dplyr` syntax should be familiar to your learners from the [Introduction to R for Geospatial Data](https://datacarpentry.org/r-intro-geospatial/) lesson.
5555
- This may be the first time learners are exposed to hex colors, so be sure to explain that concept.
5656
- Starting in this episode and continuing throughout the lesson, the `ggplot` calls can be very long. Be sure
5757
to explicitly describe each step of the function call and what it is doing for the overall plot.
5858

59-
#### [Reproject Raster Data in R](03-raster-reproject-in-r.md)
59+
#### [3 Reproject Raster Data in R](03-raster-reproject-in-r.md)
6060

6161
- No notes yet. Please add your tips and comments!
6262

63-
#### [Raster Calculations in R](04-raster-calculations-in-r.md)
63+
#### [4 Raster Calculations in R](04-raster-calculations-in-r.md)
6464

6565
- The `overlay()` function syntax is fairly complex compared to other function calls the learners have seen.
6666
Be sure to explain it in detail.
6767

68-
#### [Work With Multi-Band Rasters in R](05-raster-multi-band-in-r.md)
68+
#### [5 Work With Multi-Band Rasters in R](05-raster-multi-band-in-r.md)
6969

7070
- No notes yet. Please add your tips and comments!
7171

72-
#### [Open and Plot Shapefiles in R](06-vector-open-shapefile-in-r.md)
72+
#### [6 Open and Plot Shapefiles in R](06-vector-open-shapefile-in-r.md)
7373

7474
- Learners may have heard of the `sp` package. If it comes up, explain that `sf` is a
7575
more modern update of `sp`.
@@ -89,40 +89,40 @@ polygon edge not found
8989
> {: .error}
9090
> ```
9191
92-
#### [Explore and Plot by Shapefile Attributes](07-vector-shapefile-attributes-in-r.md)
92+
#### [7 Explore and Plot by Shapefile Attributes](07-vector-shapefile-attributes-in-r.md)
9393
9494
- No notes yet. Please add your tips and comments!
9595
96-
#### [Plot Multiple Shapefiles in R](08-vector-plot-shapefiles-custom-legend.md)
96+
#### [8 Plot Multiple Vector Layers](08-vector-plot-shapefiles-custom-legend.md)
9797
9898
- No notes yet. Please add your tips and comments!
9999
100-
#### [Handling Spatial Projection \& CRS in R](09-vector-when-data-dont-line-up-crs.md)
100+
#### [9 Handling Spatial Projection \& CRS in R](09-vector-when-data-dont-line-up-crs.md)
101101
102102
- Note that, although `ggplot` automatically reprojects vector data when plotting multiple shapefiles with
103103
different projections together, it is still important to be aware of the CRSs of your data and to keep track
104104
of how they are being transformed.
105105
106-
#### [Convert from .csv to a Shapefile in R](10-vector-csv-to-shapefile-in-r.md)
106+
#### [10 Convert from .csv to a Vector Layer](10-vector-csv-to-shapefile-in-r.md)
107107
108108
- No notes yet. Please add your tips and comments!
109109
110-
#### [Manipulate Raster Data in R](11-vector-raster-integration.md)
110+
#### [11 Manipulate Raster Data](11-vector-raster-integration.md)
111111
112112
- Learners have not yet been exposed to the `melt()` function in this workshop. They will need to have
113113
the syntax explained.
114114
- This is the first instance of a faceted plot in this workshop.
115115
116-
#### [Raster Time Series Data in R](12-time-series-raster.md)
116+
#### [12 Raster Time Series Data](12-time-series-raster.md)
117117
118118
- No notes yet. Please add your tips and comments!
119119
120-
#### [Create Publication-quality Graphics](13-plot-time-series-rasters-in-r.md)
120+
#### [13 Create Publication-quality Graphics](13-plot-time-series-rasters-in-r.md)
121121
122122
- Be sure to show learners the before and after plots to motivate the complexity of the
123123
`ggplot` calls that will be used in this episode.
124124
125-
#### [Derive Values from Raster Time Series](14-extract-ndvi-from-rasters-in-r.md)
125+
#### [14 Derive Values from Raster Time Series](14-extract-ndvi-from-rasters-in-r.md)
126126
127127
- This is the first time in the workshop that learners will have worked with date data.
128128
@@ -157,6 +157,7 @@ polygon edge not found
157157
researchers, particularly those outside of environmental sciences), then move to raster data if there is extra time.
158158
- Skip Introduction to Geospatial Concepts. Spend at most 30 minutes reviewing things as this is currently not
159159
an interactive curriculum. Most of the concepts you can cover within the R for Raster and Vector Data curriculum.
160+
- Covering Episode 10 immediately after 3 can be helpful to solidify the concepts of projections
160161
161162
## Common problems
162163

0 commit comments

Comments
 (0)