Skip to content

Commit

Permalink
more cleanup of set up files
Browse files Browse the repository at this point in the history
  • Loading branch information
eeholmes committed May 1, 2024
1 parent 5243cca commit fa17eb2
Show file tree
Hide file tree
Showing 50 changed files with 1,961 additions and 6,631 deletions.
12 changes: 12 additions & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ website:
- overview.md
- team.md
- setup.qmd
- section: Orientation
contents:
- text: RStudio
href: content/02-rstudio.qmd
- text: Earthdata login
href: content/02-earthdata.md
- text: Local set-up
href: content/02-local-setup.qmd
- text: Git-JupyterLab
href: content/02-git-jupyter.md
- text: Git-RStudio
href: content/02-git-rstudio.md
- coc.md
- section: "Tutorials"
contents:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion content/02-git-jupyter.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ https://github.com/nmfs-opensci/Git-Lesson

3. Click "Clone a Repository"

4. Where it says "Enter the URI of the remote Git repository", paste in the URL https://github.com/nmfs-opensci/Git-Lesson
4. Where it says "Enter the URI of the remote Git repository", paste in the URL https://github.com/nmfs-opensci/EDMW-EarthData-Workshop-2024

5. The folder appears and you can enter the folder and edit and create files.

Expand Down
1 change: 1 addition & 0 deletions content/03-git-rstudio.md → content/02-git-rstudio.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ title: Basic Git/GitHub Skills Using RStudio

- Set up Git in the JupyterHub
- Learn how to use the Git GUI in RStudio
- Clone GitHub repositories to RStudio = get the repo into RStudio
- Practice 4 basic Git/GitHub skills: cloning, committing, push/pull

:::
Expand Down
97 changes: 0 additions & 97 deletions content/02-github-2.md

This file was deleted.

41 changes: 41 additions & 0 deletions content/02-local-setup.qmd
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()
```
Loading

0 comments on commit fa17eb2

Please sign in to comment.