Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
394f1fc
initial draft of tornadoes story notebook
acblackford Aug 12, 2025
436e6e1
update tornado colorbar and heading
kyle-lesinger Aug 13, 2025
911d479
update tornado plot utils and notebook
kyle-lesinger Aug 15, 2025
f36eefb
update quarto for tornadoes notebook
kyle-lesinger Aug 15, 2025
aff1e99
update jupyterhub link
kyle-lesinger Aug 15, 2025
a50587c
add pre and post tornado
kyle-lesinger Aug 15, 2025
cf0e546
update date
kyle-lesinger Aug 15, 2025
575151a
update notebook
kyle-lesinger Aug 15, 2025
fd38b5c
run to render images
kyle-lesinger Aug 15, 2025
534fb3d
remove importlib
kyle-lesinger Aug 15, 2025
7751ae1
tended to review comments - updates to tornadoes notebook
acblackford Aug 20, 2025
9a7da9e
add colorbar to sideByside layers
kyle-lesinger Aug 21, 2025
6b29824
also added user-guide/data-services/rstudio-s3-access.qmd to match ma…
kyle-lesinger Aug 21, 2025
7272671
test changing eval to false in rstudio-s3
kyle-lesinger Aug 21, 2025
6ff7d95
test changing eval to false in rstudio-s3
kyle-lesinger Aug 21, 2025
99e2365
test2
kyle-lesinger Aug 21, 2025
18ae302
Update rstudio-s3-access.qmd
kyle-lesinger Aug 21, 2025
4eff78a
Merge branch 'main' into notebook-tornadoes-story
kyle-lesinger Aug 21, 2025
390eee6
test3
kyle-lesinger Aug 21, 2025
dad43cc
test4
kyle-lesinger Aug 21, 2025
ef91101
fix: temp-r-skip
kyle-lesinger Aug 22, 2025
8c4f461
check with new colorbar
kyle-lesinger Aug 22, 2025
ff414a8
run tornadoes
kyle-lesinger Aug 22, 2025
9bb1875
fix title
kyle-lesinger Aug 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ website:
- section: Stories
contents:
- user-guide/notebooks/stories/derechos.ipynb
- user-guide/notebooks/stories/tornadoes_2024_notebook.ipynb
- text: "---"
- section: open-source-ecosystem/index.qmd
contents:
Expand Down
6 changes: 3 additions & 3 deletions user-guide/data-services/rstudio-s3-access.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Users of the RStudio image in the VEDA Jupyterhub cannot access VEDA AWS buckets

## Set Environment Variables

```{r}
```
Sys.setenv(AWS_ROLE_ARN="arn:aws:iam::444055461661:role/nasa-veda-prod")
Sys.setenv(AWS_WEB_IDENTITY_TOKEN_FILE="/var/run/secrets/eks.amazonaws.com/serviceaccount/token")
```
Expand All @@ -21,13 +21,13 @@ Sys.setenv(AWS_WEB_IDENTITY_TOKEN_FILE="/var/run/secrets/eks.amazonaws.com/servi

Load package(s)

```{r}
```
library(terra)
```

Open the data

```{r}
```
vsi_path <- '/vsis3/veda-data-store/landslides-nc-flood/NC_Flood_Extent_2024-09-29.tif'
nc_flood <- rast(vsi_path)
print(nc_flood)
Expand Down
Loading