generated from SEFSC/SEFSC-Template
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding test files to lab report book
- Loading branch information
1 parent
a2f7dca
commit b7b2b4d
Showing
4 changed files
with
73 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
## Ocean acificiation indicator | ||
|
||
### Sent by F. Gomez on 02/19/2023 | ||
|
||
Notes from Fabian: | ||
|
||
derived surface omega series from the MOM-Topaz hindcast 0.10deg resolution model \*txt files have this structure: column1: year, column2=month, and column3=carbon system variable The mean magnitude of the simulated omega trends, around 9e-3 year-1, is consistent with observed trends in the Subtropical North Atlantic | ||
|
||
Question: What is causing the acceleration after 2008?\ | ||
Answer: made a Taylor decomposition to figure out what was driving that acceleration in the simulated ??Ar anomaly. Interannual ??Ar changes were mostly driven by the balance between dic and alkalinity. There was a positive trend from the 1980s until mid 2000s, which contributed to moderate the ??Ar decline. But that trend vanished in the last 15 years or so, which probably has to do with this accelerated decline in ??Ar in the last decade. | ||
|
||
```{r} | ||
rm(list = ls()) | ||
dat <- read.table("../../indicator_data/surface_omega_series.txt", skip = 0, header = F) | ||
head(dat) | ||
tail(dat) | ||
dat$dates <- paste0(month.abb[dat$V2], dat$V1) | ||
``` | ||
|
||
Format indicator object | ||
|
||
```{r} | ||
datdata <- dat$dates | ||
inddata <- data.frame(dat$V3) | ||
labs <- c("Ocean acidification", "Surface aragonite saturation", "") | ||
indnames <- data.frame(matrix(labs, nrow = 3, byrow = F)) | ||
s <- list(labels = indnames, indicators = inddata, datelist = datdata) | ||
class(s) <-"indicatordata" | ||
``` | ||
|
||
Save and plot | ||
|
||
```{r} | ||
plotIndicatorTimeSeries(s) | ||
inddata <- s | ||
save(inddata, file = "../../indicator_objects/OA.RData") | ||
``` | ||
|
||
|
||
|
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,28 @@ | ||
project: | ||
type: book | ||
|
||
book: | ||
title: "Caribbean ESR Lab Report" | ||
author: "Carissa Gervasi" | ||
date: "2/6/2024" | ||
|
||
|
||
chapters: | ||
- index.qmd | ||
- part: "Part 1: Indicators" | ||
chapters: | ||
- OA.qmd | ||
- part: "Second Part" | ||
chapters: | ||
- Products/Products.qmd | ||
- references.qmd | ||
|
||
bibliography: references.bib | ||
|
||
format: | ||
html: | ||
theme: flatly | ||
pdf: | ||
documentclass: scrreprt | ||
|
||
editor: visual |
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