generated from nmfs-opensci/NOAAHackDays-2024
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
1,961 additions
and
6,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
title: Setting up on your computer | ||
--- | ||
|
||
|
||
Here are instructions for installing on your own computer. | ||
|
||
Install the development version of earthdatalogin and update terra. | ||
|
||
```{r eval=FALSE} | ||
devtools::install_github("boettiger-lab/earthdatalogin") | ||
install.packages("terra") | ||
install.packages("rstac") | ||
install.packages("gdalcubes") | ||
install.packages("here") | ||
library("earthdatalogin") | ||
library("terra") | ||
library("rstac") | ||
library("gdalcubes") | ||
library("here") | ||
``` | ||
|
||
You will need GDAL installed. See these instructions if you do not have it installed: https://developers.planet.com/docs/integrations/qgis/install-qgis-gdal/ | ||
|
||
You may need to install `terra` and `sf` from source to get them to use the latest GDAL installation. | ||
|
||
```{r eval=FALSE} | ||
install.packages("terra", type = "source") | ||
install.packages("sf", type = "source") | ||
sf_extSoftVersion() | ||
``` | ||
|
||
The environment we are using today is the `py-rocket-geospatial` image. This is part of work on a [Data Science Docker Stack](https://github.com/nmfs-opensci/container-images) for NOAA Fisheries. | ||
|
||
|
||
# R Version Metadata | ||
|
||
```{r} | ||
sessionInfo() | ||
``` |
Oops, something went wrong.