From a129c23e3525b6d86cb0ea962501250e2c1dd022 Mon Sep 17 00:00:00 2001 From: atottenUSGS <44782051+atottenUSGS@users.noreply.github.com> Date: Mon, 5 Nov 2018 12:39:19 -0500 Subject: [PATCH] Update 0_master_file.R The Addition of a noaakey Variable Added a variable called "noaakey". This variable will house a personal noaakey that the user has set up previous to running the code. Having a personal NOAA key for each user will help prevent hitting the daily request limit for NOAA data. --- scripts/0_master_file.R | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/0_master_file.R b/scripts/0_master_file.R index 76c5455..6fc8ba2 100644 --- a/scripts/0_master_file.R +++ b/scripts/0_master_file.R @@ -140,6 +140,7 @@ weather_file <- '' # filename (ending in .csv) of daily weather data from a near noaa_site <- '' # nearest NOAA met station site number. Can use both weather_file and noaa_site if # weather_file does not contain snow depth. +noaakey <- '' # Enter personal NOAA key here. other_weather_vars <- NA # if you have other daily weather/site characteristic data in your file (e.g., soil temp) and want to # include them as predictors in the model, include the names of the column here in quotes (e.g. "soil_temp").