Last updated: 2023-12-14
Checks: 7 0
Knit directory: bgc_argo_r_argodata/
This reproducible R Markdown analysis was created with workflowr (version 1.7.0). The Checks tab describes the reproducibility checks that were applied when the results were created. The Past versions tab lists the development history.
Great! Since the R Markdown file has been committed to the Git repository, you know the exact version of the code that produced these results.
Great job! The global environment was empty. Objects defined in the global environment can affect the analysis in your R Markdown file in unknown ways. For reproduciblity it’s best to always run the code in an empty environment.
The command set.seed(20211008)
was run prior to running
the code in the R Markdown file. Setting a seed ensures that any results
that rely on randomness, e.g. subsampling or permutations, are
reproducible.
Great job! Recording the operating system, R version, and package versions is critical for reproducibility.
Nice! There were no cached chunks for this analysis, so you can be confident that you successfully produced the results during this run.
Great job! Using relative paths to the files within your workflowr project makes it easier to run your code on other machines.
Great! You are using Git for version control. Tracking code development and connecting the code version to the results is critical for reproducibility.
The results in this page were generated with repository version 64fd104. See the Past versions tab to see a history of the changes made to the R Markdown and HTML files.
Note that you need to be careful to ensure that all relevant files for
the analysis have been committed to Git prior to generating the results
(you can use wflow_publish
or
wflow_git_commit
). workflowr only checks the R Markdown
file, but you know if there are other scripts or data files that it
depends on. Below is the status of the Git repository when the results
were generated:
Ignored files:
Ignored: .Rhistory
Ignored: .Rproj.user/
Ignored: output/
Untracked files:
Untracked: code/doxy_vertical_align.Rmd
Untracked: code/nitrate_vertical_align.Rmd
Untracked: nitrate_align_climatology.Rmd
Unstaged changes:
Modified: analysis/_site.yml
Deleted: analysis/doxy_vertical_align.Rmd
Deleted: analysis/nitrate_vertical_align.Rmd
Deleted: code/doxy_align_climatology.Rmd
Deleted: code/load_clim_doxy_woa.Rmd
Modified: code/start_background_job.R
Note that any generated files, e.g. HTML, png, CSS, etc., are not included in this status report because it is ok for generated content to have uncommitted changes.
These are the previous versions of the repository in which changes were
made to the R Markdown (analysis/argo_ph.Rmd
) and HTML
(docs/argo_ph.html
) files. If you’ve configured a remote
Git repository (see ?wflow_git_remote
), click on the
hyperlinks in the table below to view the files as they were in that
past version.
File | Version | Author | Date | Message |
---|---|---|---|---|
Rmd | 64fd104 | ds2n19 | 2023-12-14 | revised coverage analysis and SO focused cluster analysis. |
html | f110b74 | ds2n19 | 2023-12-13 | Build site. |
Rmd | fa9795c | ds2n19 | 2023-12-12 | dependencies listed are start of markdown files. |
html | e60ebd2 | ds2n19 | 2023-12-07 | Build site. |
html | cec2a2a | ds2n19 | 2023-11-24 | Build site. |
Rmd | 59f5cc4 | ds2n19 | 2023-11-23 | Moved spatiotemporal analysis to use aligned profiles. |
html | 80c16c2 | ds2n19 | 2023-11-15 | Build site. |
Rmd | 8edb9f4 | ds2n19 | 2023-10-17 | BGC load process aligned to core load. Associated changes to pH and oxygen analysis. |
Rmd | 1ae81b3 | ds2n19 | 2023-10-11 | reworked core load process to work initially by year and then finally create consolidated all years files. |
Rmd | 44f5720 | ds2n19 | 2023-10-09 | manual commit |
html | 7b3d8c5 | pasqualina-vonlanthendinenna | 2022-08-29 | Build site. |
html | bdd516d | pasqualina-vonlanthendinenna | 2022-05-23 | Build site. |
html | 4173c20 | jens-daniel-mueller | 2022-05-12 | Build site. |
html | dfe89d7 | jens-daniel-mueller | 2022-05-12 | Build site. |
html | 710edd4 | jens-daniel-mueller | 2022-05-11 | Build site. |
Rmd | 2f20a76 | jens-daniel-mueller | 2022-05-11 | rebuild all after subsetting AB profiles and code cleaning |
Explore BGC-Argo pH data through timeseries and monthly climatological maps
pH_bgc_observed.rds - bgc preprocessed folder, created by ph_align_climatology. Not this file is written BEFORE the vertical alignment stage.
path_argo <- '/nfs/kryo/work/updata/bgc_argo_r_argodata'
path_emlr_utilities <- "/nfs/kryo/work/jenmueller/emlr_cant/utilities/files/"
path_basin_mask <- "/nfs/kryo/work/updata/reccap2/"
path_argo_preprocessed <- paste0(path_argo, "/preprocessed_bgc_data")
path_argo <- '/nfs/kryo/work/datasets/ungridded/3d/ocean/floats/bgc_argo'
# /nfs/kryo/work/datasets/ungridded/3d/ocean/floats/bgc_argo/preprocessed_bgc_data
path_argo_preprocessed <- paste0(path_argo, "/preprocessed_bgc_data")
Load in delayed-mode adjusted pH data from the data files created in Loading Data
# keep only pH data and associated CTD variables
# load in pH data that has been validated but has not be vertically aligned. Only top 20 m.
ph_surface <- read_rds(file = paste0(path_argo_preprocessed, '/pH_bgc_observed.rds')) %>%
filter(between(depth, 0, 20))
nm_biomes <- read_rds(file = paste0(path_argo_preprocessed, "/nm_biomes.rds"))
The focus here is on surface pH (in the top 20 m of the watercolumn), in the region south of 30ºS
ph_surface_SO <- ph_surface %>%
filter(lat <= - 30)
# check the correct latitudes, QC flags, and depth levels have been filtered
#max(ph_surface_SO$lat)
#min(ph_surface_SO$lat)
# table(ph_surface_SO$ph_in_situ_total_adjusted_qc)
# max(ph_surface_SO$depth)
# min(ph_surface_SO$date)
# max(ph_surface_SO$date)
Plot the difference between in-situ observed pH and the profile-mean surface pH for the upper 20 m. This difference represents the variability of the surface pH values with respect to the mean surface pH of the upper 20 m.
# calculate the mean pH for each surface profile
mean_profile_ph <- ph_surface_SO %>%
group_by(file_id) %>%
mutate(mean_prof_ph = mean(ph_in_situ_total_adjusted, na.rm = TRUE),
.before = depth) %>%
ungroup() %>%
mutate(offset = ph_in_situ_total_adjusted-mean_prof_ph,
.after = mean_prof_ph) # subtract the mean profile pH from the measured in situ pH
mean_profile_ph %>%
ggplot()+
geom_point(aes(x = offset, y = depth, col = as.character(year)), size = 0.3, pch = 19) +
scale_y_reverse()+
geom_vline(xintercept = 0, col = 'red', linewidth = 0.6)+
labs(x = 'offset (pH units)',
y = 'depth (m)',
col = 'year',
title = 'in situ pH - mean profile pH')
Bin the pH data into 2m-depth intervals and calculate the offset for each pH observation in each depth interval relative to the profile-mean pH
# bin the ph values into 2m bins and calculate the offset for each 2m bin
mean_profile_ph_binned <- ph_surface_SO %>%
mutate(depth = cut(depth, seq(0, 20, 2), seq(1, 19, 2)),
depth = as.numeric(as.character(depth))) %>%
group_by(file_id) %>%
mutate(mean_prof_ph = mean(ph_in_situ_total_adjusted, na.rm = TRUE),
.before = depth) %>%
ungroup() %>%
mutate(offset = ph_in_situ_total_adjusted-mean_prof_ph,
.after = mean_prof_ph)
# plot the offset of the depth-binned values
mean_profile_ph_binned %>%
ggplot()+
geom_point(aes(x = offset, y = depth, col = as.character(year)), size = 0.3, pch = 19) +
scale_y_reverse()+
geom_vline(xintercept = 0, col = 'red', linewidth = 0.6)+
labs(x = 'offset (pH units)',
y = 'depth (m)',
col = 'year',
title = 'in situ pH - mean profile pH (2m depth bins)')
Mean offset for each 2m depth bin
# bin the ph values into 2m bins and calculate the offset for each 2m bin
profile_ph_binned_ave <- ph_surface_SO %>%
mutate(depth = cut(depth, seq(0, 20, 2), seq(1, 19, 2)),
depth = as.numeric(as.character(depth))) %>%
group_by(file_id) %>%
mutate(mean_prof_ph = mean(ph_in_situ_total_adjusted, na.rm = TRUE),
.before = depth) %>%
ungroup() %>%
mutate(offset = ph_in_situ_total_adjusted-mean_prof_ph,
.after = mean_prof_ph) %>%
group_by(depth) %>%
summarise(mean_offset = mean(offset))
# plot the offset of the depth-binned values
profile_ph_binned_ave %>%
ggplot()+
geom_point(aes(x = mean_offset, y = depth), size = 1, pch = 19) +
geom_line(aes(x = mean_offset, y = depth))+
scale_y_reverse()+
geom_vline(xintercept = 0, col = 'red', size = 1)+
labs(x = 'mean offset (pH units)',
y = 'depth (m)',
col = 'year',
title = 'in situ pH - mean profile pH (2m depth bins)')
Create a mean monthly map of surface pH, in a 2x2º longitude/latitude grid, for the region south of 30ºS (monthly pH averaged over April 2014-December 2021)
# average pH values in the top 20 m for each month in each 2 x 2º longitude/latitude grid
ph_clim_SO <- ph_surface_SO %>%
group_by(lat, lon, month) %>%
summarise(ph_clim_month = mean(ph_in_situ_total_adjusted))
# read in the map from updata
map <-
read_rds(paste(path_emlr_utilities,
"map_landmask_WOA18.rds",
sep = ""))
# map a monthly climatology of pH (April 2014 - December 2021)
map +
geom_tile(data = ph_clim_SO,
aes(lon, lat, fill = ph_clim_month)) +
lims(y = c(-85, -25)) +
scale_fill_viridis_c() +
labs(x = 'lon',
y = 'lat',
fill = 'pH',
title = 'Monthly mean BGC Argo pH') +
theme(legend.position = 'right') +
facet_wrap(~month, ncol = 2)
basemap(limits = -32, data = ph_clim_SO) + # change to polar projection
geom_spatial_tile(data = ph_clim_SO,
aes(x = lon,
y = lat,
fill = ph_clim_month),
linejoin = 'mitre',
col = 'transparent',
detail = 60)+
scale_fill_viridis_c()+
theme(legend.position = 'bottom')+
labs(x = 'lon',
y = 'lat',
fill = 'pH',
title = 'Monthly mean BGC Argo pH')+
facet_wrap(~month, ncol = 2)
Timeseries of monthly mean pH values, over the three different Southern Ocean regions (separated based on Mayot biomes):
# plot the region separations on a map
map +
geom_raster(data = nm_biomes,
aes(x = lon,
y = lat,
fill = biome_name)) +
labs(title = 'Southern Ocean Mayot biomes',
fill = 'biome')
Version | Author | Date |
---|---|---|
710edd4 | jens-daniel-mueller | 2022-05-11 |
# plot a timeseries of monthly values over the whole southern ocean south of 30ºS
ph_surface_SO <- inner_join(ph_surface_SO, nm_biomes)
ph_month_SO <- ph_surface_SO %>%
group_by(year, month, biome_name) %>%
summarise(ph_ave = mean(ph_in_situ_total_adjusted))
# timeseries of monthly pH values over 2014-2021 (separate panels for each month)
ph_month_SO %>%
ggplot(aes(x = year,
y = ph_ave,
group = biome_name,
col = biome_name)) +
facet_wrap(~month) +
geom_line() +
geom_point() +
labs(x = 'year',
y = 'pH in situ (total scale)',
title = 'monthly mean Argo pH (Southern Ocean)',
col = 'region')
#all months on one plot in different colors (not very nice plot)
# ph_month_SO %>%
# ggplot(aes(x = year, y = ph_ave, group = month, col = as.character(month))) +
# geom_line() +
# geom_point() +
# labs(x = 'year', y = 'pH in situ (total scale)', title = 'monthly mean pH (Apr 2014-Aug 2021)')
Plot the monthly average pH, per year (from Jan 2015 - Dec 2020), for each Southern Ocean RECCAP region (1, 2, 3)
# timeseries of monthly pH values for each year (separate years on the same plot)
ph_month_SO %>%
# filter(year != 2014) %>% # remove the year that is missing data
ggplot(aes(x = month,
y = ph_ave,
group = year,
col = as.character(year)))+
geom_line()+
geom_point()+
scale_x_continuous(breaks = seq(1, 12, 2))+
facet_wrap(~biome_name)+
labs(x = 'month',
y = 'pH in situ (total scale)',
title = 'monthly mean Argo pH (Southern Ocean regions)',
col = 'year')
# calculate a yearly average ph (one ph value per year, for the whole domain)
ph_year_SO <- ph_surface_SO %>%
group_by(year, biome_name) %>%
summarise(ph_ave = mean(ph_in_situ_total_adjusted))
# plot a timeseries of the yearly average pH value (one value per year)
ph_year_SO %>%
ggplot(aes(x = year, y = ph_ave, group = biome_name, col = biome_name))+
geom_line()+
geom_point()+
labs(x = 'year',
y = 'pH in situ (total scale)',
title = 'yearly mean Argo pH (south of 30ºS)',
col = 'region')
Focus on surface pH in the northeast Pacific Ocean (10ºN - 70ºN, -190ºE - -140ºE)
# select only pH databetween 10 and 70ºN, and 190 and 140ºW, for the top 20 m of the watercolumn
ph_nepacific <- ph_surface %>%
filter(between(lat, 10, 70),
between(lon, 190, 240))
# longitudes larger than -180ºE are lon-380
Create a map of mean monthly surface pH values, in the north-west Pacific ocean (10ºN - 70ºN, -190ºE, -140ºE), for
# average pH values in the top 20 m for each month in each 2 x 2º longitude/latitude grid
ph_mean_nepacific <- ph_nepacific %>%
group_by(lat, lon, month) %>%
summarise(ph_ave_month = mean(ph_in_situ_total_adjusted))
# map a monthly climatology of surface pH (Jan 2013 - August 2021)
map +
geom_tile(data = ph_mean_nepacific,
aes(lon, lat, fill = ph_ave_month)) +
lims(y = c(5, 60),
x = c(180, 250)) +
scale_fill_viridis_c() +
labs(x = 'lon',
y = 'lat',
fill = 'pH',
title = 'Monthly mean pH') +
theme(legend.position = 'right')+
facet_wrap(~month)
# using the ggOceanMaps package
basemap(limits = c(-180, -110, 7, 60), data = ph_mean_nepacific) +
geom_spatial_tile(data = ph_mean_nepacific,
aes(x = lon,
y = lat,
fill = ph_ave_month))+
scale_fill_viridis_c()+
facet_wrap(~month) +
labs(x = 'lon',
y = 'lat',
fill = 'pH',
title = 'Monthly average pH (Jan 2013-Aug 2021)')
# haven't figured out why the data isn't being plotted
Timeseries of monthly mean pH, averaged over the whole NE-Pacific region (10ºN - 70ºN, -190ºE - -140ºE), in the upper 20 m of the watercolumn.
# plot a timeseries of monthly values over the whole southern ocean south of 30ºS
ph_month_nepacific <- ph_nepacific %>%
group_by(year, month) %>%
summarise(ph_ave = mean(ph_in_situ_total_adjusted))
# timeseries of monthly pH values over 2014-2021 (separate panels for each month)
ph_month_nepacific %>%
ggplot(aes(x = year, y = ph_ave)) +
facet_wrap(~month) +
scale_x_continuous(breaks = seq(2013, 2021, 2)) +
geom_line() +
geom_point() +
labs(x = 'year',
y = 'pH in situ (total scale)',
title = 'monthly mean pH (NE Pacific)')
Monthly average pH, per year, over the NE Pacific region
# timeseries of monthly pH values for each year (separate years on the same plot)
ph_month_nepacific %>%
ggplot(aes(x = month, y = ph_ave, group = year, col = as.character(year)))+
geom_line()+
geom_point()+
scale_x_continuous(breaks = seq(1, 12, 1))+
labs(x = 'month',
y = 'pH in situ (total scale)',
title = 'monthly mean pH (NE Pacific)',
col = 'year')
sessionInfo()
R version 4.2.2 (2022-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: openSUSE Leap 15.5
Matrix products: default
BLAS: /usr/local/R-4.2.2/lib64/R/lib/libRblas.so
LAPACK: /usr/local/R-4.2.2/lib64/R/lib/libRlapack.so
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] ggOceanMaps_1.3.4 ggspatial_1.1.7 oce_1.7-10 gsw_1.1-1
[5] lubridate_1.9.0 timechange_0.1.1 forcats_0.5.2 stringr_1.5.0
[9] dplyr_1.1.3 purrr_1.0.2 readr_2.1.3 tidyr_1.3.0
[13] tibble_3.2.1 ggplot2_3.4.4 tidyverse_1.3.2
loaded via a namespace (and not attached):
[1] fs_1.5.2 sf_1.0-9 httr_1.4.4
[4] rprojroot_2.0.3 tools_4.2.2 backports_1.4.1
[7] bslib_0.4.1 utf8_1.2.2 R6_2.5.1
[10] KernSmooth_2.23-20 rgeos_0.5-9 DBI_1.1.3
[13] colorspace_2.0-3 raster_3.6-11 withr_2.5.0
[16] sp_1.5-1 tidyselect_1.2.0 compiler_4.2.2
[19] git2r_0.30.1 cli_3.6.1 rvest_1.0.3
[22] xml2_1.3.3 labeling_0.4.2 sass_0.4.4
[25] scales_1.2.1 classInt_0.4-8 proxy_0.4-27
[28] digest_0.6.30 rmarkdown_2.18 pkgconfig_2.0.3
[31] htmltools_0.5.3 highr_0.9 dbplyr_2.2.1
[34] fastmap_1.1.0 rlang_1.1.1 readxl_1.4.1
[37] rstudioapi_0.15.0 farver_2.1.1 jquerylib_0.1.4
[40] generics_0.1.3 jsonlite_1.8.3 googlesheets4_1.0.1
[43] magrittr_2.0.3 Rcpp_1.0.10 munsell_0.5.0
[46] fansi_1.0.3 lifecycle_1.0.3 terra_1.7-39
[49] stringi_1.7.8 whisker_0.4 yaml_2.3.6
[52] grid_4.2.2 parallel_4.2.2 promises_1.2.0.1
[55] crayon_1.5.2 lattice_0.20-45 haven_2.5.1
[58] hms_1.1.2 knitr_1.41 pillar_1.9.0
[61] codetools_0.2-18 reprex_2.0.2 glue_1.6.2
[64] evaluate_0.18 modelr_0.1.10 vctrs_0.6.4
[67] tzdb_0.3.0 httpuv_1.6.6 cellranger_1.1.0
[70] gtable_0.3.1 assertthat_0.2.1 cachem_1.0.6
[73] xfun_0.35 broom_1.0.5 e1071_1.7-12
[76] later_1.3.0 viridisLite_0.4.1 class_7.3-20
[79] googledrive_2.0.0 gargle_1.2.1 workflowr_1.7.0
[82] units_0.8-0 ellipsis_0.3.2