Workshop
Access and Work with NEON Data – ESA 2019
Ecological Society of America Annual Meeting
NEON provides open ecological data from over 80 locations across the United States. NEON data cover a wide range of subject areas within ecology, including organismal observations, biogeochemistry, remote sensing, and micrometeorology. Some datasets already span several years of data collection.
This workshop will provide an introduction to discovering, accessing and preparing a variety of NEON data for your research, primarily using R. The workshop will be divided into two sections of roughly equal length.
- The workshop will begin will be a code-along guide to NEON data, including
a. discovering and accessing NEON data, via the data portal and the Application Programming Interface (API),
b. understanding the contents and quality of various data packages, and
c. performing common data merges, summarizations, and transformations.
Instruction will include guidance in using R packages, including some that have been developed by NEON. - In the final portion, participants will work with NEON data of their choice, while instructors circulate to answer questions about data and coding. Participants may break into groups based on the data or analyses they wish to explore. For participants who attend the workshop without a specific dataset or analysis of interest, a guided project will be available, analyzing data accessed in the first half of the workshop.
Required Prior Knowledge
The workshop will assume that participants have a basic level of familiarity with working with data in R, including installing and loading packages, and data import.
This 5-hr workshop will be taught at the 2019 meeting of the Ecological Society of America (ESA) in Louisville, KY. You must be a registered attendee of the conference and register for this workshop with your conference registration to participate in this workshop. For more information, visit the Joint ESA/USSEE 201 annual meeting website.
Workshop Schedule
Location: Kentucky International Convention Center - L012 Please double check the conference schedule as rooms can change!
Please note that the schedule listed below may change depending upon the pace of the workshop!
Time | Topic |
---|---|
11:45 | Please come early if you have any setup or installation issues. |
12:00 | Accessing NEON Data |
13:30 | --------- BREAK 1 --------- |
13:45 | Working with NEON Data |
15:00 | --------- BREAK 2 --------- |
15:15 | Working with NEON Data of Interest |
16:30 | Final Questions & Evaluation |
Workshop Instructors & Helpers
- Claire Lunch; @dr_lunch, Research Scientist, Data Science; NEON program, Battelle
- Megan A. Jones; @meganahjones, Research Scientist, Science Education; NEON program, Battelle
- Christine Laney; Research Scientist, Data Science/Ecoinformatics; NEON program, Battelle
- Natalie Robinson; Research Scientist, Data Science/Ecology/GIS; NEON program, Battelle
- Cody Flagg; Research Scientist; NEON program, Battelle
Please get in touch with the instructors prior to the workshop with any questions.
Twitter?
Please tweet using the hashtag #NEONData & @NEON_Sci during this workshop!
Before the Workshop
To participant in this workshop, you will need a laptop with the most current version of R, and preferably RStudio, loaded on your computer.
Prior to the workshop you should have R and, preferably, RStudio installed on your computer.
[[nid:6408]]
Install R Packages
Please have these packages installed and updated prior to the start of the workshop. The last two are optional if you want to do the Compare Canopy Height exercise or the NEON API tutorial.
-
raster:
install.packages("raster")
; to work with raster files in R. -
rhdf5:
install.packages("BiocManager")
,BiocManager::install("rhdf5")
; to work with HDF5 files in R -
neonUtilities:
install.packages("neonUtilities")
; neonUtiltities only works with R version 3.4 or higher. For further directions, see the start of the Use the neonUtilities Package to Access NEON Data tutorial. -
devtools:
install.packages("devtools")
; required to install using theinstall_github()
function. -
geoNEON:
install_github("NEONScience/NEON-geolocation/geoNEON”)
; to get specific location data for NEON data and samples. Optional for workshop.
If you want to install all of them, you can use the following code.
install.packages("BiocManager")
BiocManager::install("rhdf5")
install.packages("raster")
install.packages("neonUtilities")
#optional, if wanting to do Compare Canopy Height exercise or NEON API tutorial
install.packages("devtools")
library(devtools)
install_github("NEONScience/NEON-geolocation/geoNEON")
Update R Packages
In RStudio, you can go to Tools --> Check for package updates
to update
previously installed packages on your computer.
Or you can use update.packages()
to update all packages that are
installed in R automatically.
Please note that the schedule listed below may change depending upon the pace of the workshop!
Time | Topic |
---|---|
11:45 | Please come early if you have any setup or installation issues. |
12:00 | Accessing NEON Data |
The NEON Data Portal | |
13:30 | --------- BREAK 1 --------- |
13:45 | Working with NEON Data |
Use the neonUtilities Package to Access NEON Data | |
(Optional) Using the NEON Data API in R | |
15:00 | --------- BREAK 2 --------- |
15:15 | Working with NEON Data of Interest |
Compare tree height measured from the ground to a Lidar-based Canopy Height Model | |
Work with NEON OS & IS Data - Plant Phenology & Temperature | |
Introduction to working with NEON eddy flux data | |
16:30 | Final Questions & Evaluation |