├── .gitignore ├── Google_Earth_Engine_tutorial ├── README.md └── complete_example_script.js ├── LICENSE ├── README.md ├── data └── LimnoSat_Mendota.csv ├── model_walkthrough.Rmd └── utils.R /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/.gitignore -------------------------------------------------------------------------------- /Google_Earth_Engine_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/Google_Earth_Engine_tutorial/README.md -------------------------------------------------------------------------------- /Google_Earth_Engine_tutorial/complete_example_script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/Google_Earth_Engine_tutorial/complete_example_script.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/README.md -------------------------------------------------------------------------------- /data/LimnoSat_Mendota.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/data/LimnoSat_Mendota.csv -------------------------------------------------------------------------------- /model_walkthrough.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/model_walkthrough.Rmd -------------------------------------------------------------------------------- /utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTopp/HackingLimnoWorkshop/HEAD/utils.R --------------------------------------------------------------------------------