You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _extras/guide.md
+16-14Lines changed: 16 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,8 @@ layout: page
3
3
title: "Instructor Notes"
4
4
---
5
5
6
+
{% include base_path.html %}
7
+
6
8
## Instructor notes
7
9
8
10
## Lesson motivation and learning objectives
@@ -30,7 +32,7 @@ loaded from all previous episodes in this lesson. If learners close out of their
30
32
at the end of the first day, they will need to either save the workspace or reload the data and packages.
31
33
Because of this, it is essential that learners save their code to a script throughout the lesson.
32
34
33
-
#### [Intro to Raster Data in R](../01-raster-structure/)
35
+
#### [Intro to Raster Data in R]({{ relative_root_path }}/{% link _episodes/01-raster-structure.md %})
34
36
35
37
* Be sure to introduce the datasets that will be used in this lesson. There are many data files. It may
36
38
be helpful to draw a diagram on the board showing the types of data that will be plotted and analyzed
@@ -48,28 +50,28 @@ lesson page while discussing those examples.
48
50
* Be sure to draw a distinction between the DTM and the DSM files, as these two datasets will be used
49
51
throughout the lesson.
50
52
51
-
#### [Plot Raster Data in R](../02-raster-plot/)
53
+
#### [Plot Raster Data in R]({{ relative_root_path }}/{% link _episodes/02-raster-plot.md %})
52
54
53
55
*`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.
54
56
*`dplyr` syntax should be familiar to your learners from the [Introduction to R for Geospatial Data](https://datacarpentry.org/r-intro-geospatial/) lesson.
55
57
* This may be the first time learners are exposed to hex colors, so be sure to explain that concept.
56
58
* Starting in this episode and continuing throughout the lesson, the `ggplot` calls can be very long. Be sure
57
59
to explicitly describe each step of the function call and what it is doing for the overall plot.
58
60
59
-
#### [Reproject Raster Data in R](../03-raster-reproject-in-r/)
61
+
#### [Reproject Raster Data in R]({{ relative_root_path }}/{% link _episodes/03-raster-reproject-in-r.md %})
60
62
61
63
* No notes yet. Please add your tips and comments!
62
64
63
-
#### [Raster Calculations in R](../04-raster-calculations-in-r/)
65
+
#### [Raster Calculations in R]({{ relative_root_path }}/{% link _episodes/04-raster-calculations-in-r.md %})
64
66
65
67
* The `overlay()` function syntax is fairly complex compared to other function calls the learners have seen.
66
68
Be sure to explain it in detail.
67
69
68
-
#### [Work With Multi-Band Rasters in R](../05-raster-multi-band-in-r/)
70
+
#### [Work With Multi-Band Rasters in R]({{ relative_root_path }}/{% link _episodes/05-raster-multi-band-in-r.md %})
69
71
70
72
* No notes yet. Please add your tips and comments!
71
73
72
-
#### [Open and Plot Shapefiles in R](../06-vector-open-shapefile-in-r/)
74
+
#### [Open and Plot Shapefiles in R]({{ relative_root_path }}/{% link _episodes/06-vector-open-shapefile-in-r.md %})
73
75
74
76
* Learners may have heard of the `sp` package. If it comes up, explain that `sf` is a
75
77
more modern update of `sp`.
@@ -84,41 +86,41 @@ The `ggplot` development team is working on fixing this bug.
84
86
> ~~~
85
87
> {: .error}
86
88
87
-
#### [Explore and Plot by Shapefile Attributes](../07-vector-shapefile-attributes-in-r/)
89
+
#### [Explore and Plot by Shapefile Attributes]({{ relative_root_path }}/07-vector-shapefile-attributes-in-r/)
88
90
89
91
* No notes yet. Please add your tips and comments!
90
92
91
-
#### [Plot Multiple Shapefiles in R](../08-vector-plot-shapefiles-custom-legend/)
93
+
#### [Plot Multiple Shapefiles in R]({{ relative_root_path }}/08-vector-plot-shapefiles-custom-legend/)
92
94
93
95
* No notes yet. Please add your tips and comments!
94
96
95
-
#### [Handling Spatial Projection & CRS in R](../09-vector-when-data-dont-line-up-crs/)
97
+
#### [Handling Spatial Projection & CRS in R]({{ relative_root_path }}/09-vector-when-data-dont-line-up-crs/)
96
98
97
99
* Note that, although `ggplot` automatically reprojects vector data when plotting multiple shapefiles with
98
100
different projections together, it is still important to be aware of the CRSs of your data and to keep track
99
101
of how they are being transformed.
100
102
101
103
102
-
#### [Convert from .csv to a Shapefile in R](../10-vector-csv-to-shapefile-in-r/)
104
+
#### [Convert from .csv to a Shapefile in R]({{ relative_root_path }}/10-vector-csv-to-shapefile-in-r/)
103
105
104
106
* No notes yet. Please add your tips and comments!
105
107
106
-
#### [Manipulate Raster Data in R](../11-vector-raster-integration/)
108
+
#### [Manipulate Raster Data in R]({{ relative_root_path }}/11-vector-raster-integration/)
107
109
108
110
* Learners have not yet been exposed to the `melt()` function in this workshop. They will need to have
109
111
the syntax explained.
110
112
* This is the first instance of a faceted plot in this workshop.
111
113
112
-
#### [Raster Time Series Data in R](../12-time-series-raster/)
114
+
#### [Raster Time Series Data in R]({{ relative_root_path }}/12-time-series-raster/)
113
115
114
116
* No notes yet. Please add your tips and comments!
0 commit comments