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: vignettes/04-synthesis-data.Rmd
+18-71Lines changed: 18 additions & 71 deletions
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,6 @@ The objective of this vignette is to walk through how to combine our several typ
5
5
For the first analysis, we want to figure out how the number of sufficiently warm days affects the amount of canopy cover at our site. We do this by combining the canopy cover data with the meteorological data on growing degree days, then modeling and plotting their relationship. We are specifically interested in figuring out when the increase in canopy cover starts to slow down in response to warm temperature days.
6
6
7
7
The second analysis compares greenness from image data with canopy cover.
8
-
The second analysis uses the gdal_translate tool from the [GDAL](https://www.gdal.org/) package.
9
-
You can use one of the prepared downloads availble on the GDAL web site to install the needed software tool.
10
-
Alternatively, it's possible to download and build the tools on your system.
11
-
For example, on the Mac, the command is `brew install gdal`.
In this examnple we will extract our plot data from a series of images taken in May of Season 6, measure its "greeness" annd plot that against the plant heights from above in this vignette.
132
+
134
133
The chosen statistic here is the normalised green-red difference index, NGRDI=(R-G)/(R+G) (Rasmussen et al., 2016), which uses the red and green bands from the image raster.
135
134
136
135
Below we retrieve all the available plots for a particular date, then find and convert the plot boundary JSON into tuples.
137
136
We will use these tuples to extract the data for our plot.
138
137
139
138
```{r get_plot_boundary}
140
-
library(traits)
141
-
library(stringr)
142
-
143
-
# Function for breaking apart a corner into its Lat, Lon components
0 commit comments