Last updated: 2022-12-21
Checks: 7 0
Knit directory:
RECCAP2_CESM_ETHZ_submission_v2/
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(20210113)
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 ba71c79. 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/
Unstaged changes:
Modified: code/Workflowr_project_managment.R
Modified: data/overview/overview_files.csv
Modified: data/regions/RECCAP2_region_masks_all_clean.cvs
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/regions.Rmd
) and HTML
(docs/regions.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 |
---|---|---|---|---|
html | da54768 | jens-daniel-mueller | 2022-12-20 | Build site. |
Rmd | eacb827 | jens-daniel-mueller | 2022-12-20 | rebuild all with Nov2022 data before submission |
Rmd | 8f85007 | GitHub | 2022-12-20 | Initial commit |
html | 8f85007 | GitHub | 2022-12-20 | Initial commit |
path_basin_mask <-
"/nfs/kryo/work/updata/reccap2/"
Three region mask files prepared by Luke Gregor for the analysis within RECCAP2-ocean are available:
RECCAP2_region_masks_all.nc
RECCAP2_openocean_1deg.nc
RECCAP2_coastal_MARCAT_1deg.nc
Please note that the content of 2. an 3. should be identical to the
fields open_ocean
and coastal_MARCAT
contained
in 3. Accordingly, files 2. and 3. are not required for the analysis. In
the following, I plot the content of 1.
For the submission, spatially resolved surface fluxes of CO2 should
be integrated across the entire open_ocean
region for
fco2_glob
, and across the indices 1-5 of the
open_ocean
region for fco2_reg
,
Please note that the seamask
provided within 3. is not
identical to the open_ocean
region and should not be used
for data analysis.
region_masks_all <-
read_ncdf(paste(path_basin_mask, "RECCAP2_region_masks_all_v20221025.nc", sep = "")) %>%
as_tibble()
region_masks_all <- region_masks_all %>%
mutate(seamask = as.factor(seamask))
region_masks_all %>%
ggplot(aes(lon, lat, fill = seamask)) +
geom_raster() +
coord_quickmap(expand = 0)
Below, the open ocean regions used to calculate
fgco2_reg
are displayed. Please note that the
coastal_marcats
regions is covered by the other
regions.
region_masks_all_seamask <- region_masks_all %>%
select(lat, lon, seamask)
region_masks_all <- region_masks_all %>%
select(-seamask)
region_masks_all <- region_masks_all %>%
pivot_longer(open_ocean:southern,
names_to = "region",
values_to = "value") %>%
mutate(value = as.factor(value))
region_masks_all %>%
filter(value != 0) %>%
ggplot(aes(lon, lat, fill = region)) +
geom_raster() +
scale_fill_brewer(palette = "Dark2") +
coord_quickmap(expand = 0)
Each open ocean region consists of several subregions with indices for further regionalization.
region_masks_all %>%
filter(value != 0) %>%
group_split(region) %>%
map(
~ ggplot() +
geom_raster(data = region_masks_all_seamask %>% filter(seamask == 0),
aes(lon, lat)) +
geom_raster(data = .x,
aes(lon, lat, fill = value)) +
coord_quickmap(expand = 0) +
labs(title = paste("region:", unique(.x$region)))
)
[[1]]
[[2]]
[[3]]
[[4]]
[[5]]
[[6]]
region_masks_all %>%
write_csv("data/regions/RECCAP2_region_masks_all_clean.cvs")
sessionInfo()
R version 4.2.2 (2022-10-31)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: openSUSE Leap 15.4
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] tidync_0.3.0 stars_0.6-0 sf_1.0-9 abind_1.4-5
[5] geomtextpath_0.1.1 colorspace_2.0-3 marelac_2.1.10 shape_1.4.6
[9] ggforce_0.4.1 metR_0.13.0 scico_1.3.1 patchwork_1.1.2
[13] collapse_1.8.9 forcats_0.5.2 stringr_1.4.1 dplyr_1.0.10
[17] purrr_0.3.5 readr_2.1.3 tidyr_1.2.1 tibble_3.1.8
[21] ggplot2_3.4.0 tidyverse_1.3.2 workflowr_1.7.0
loaded via a namespace (and not attached):
[1] googledrive_2.0.0 ellipsis_0.3.2 class_7.3-20
[4] rprojroot_2.0.3 fs_1.5.2 rstudioapi_0.14
[7] proxy_0.4-27 farver_2.1.1 bit64_4.0.5
[10] fansi_1.0.3 lubridate_1.9.0 xml2_1.3.3
[13] ncdf4_1.19 cachem_1.0.6 knitr_1.41
[16] polyclip_1.10-4 jsonlite_1.8.3 gsw_1.1-1
[19] broom_1.0.1 dbplyr_2.2.1 compiler_4.2.2
[22] httr_1.4.4 backports_1.4.1 assertthat_0.2.1
[25] fastmap_1.1.0 gargle_1.2.1 cli_3.4.1
[28] later_1.3.0 tweenr_2.0.2 htmltools_0.5.3
[31] tools_4.2.2 gtable_0.3.1 glue_1.6.2
[34] Rcpp_1.0.9 RNetCDF_2.6-1 cellranger_1.1.0
[37] jquerylib_0.1.4 vctrs_0.5.1 lwgeom_0.2-10
[40] xfun_0.35 ps_1.7.2 rvest_1.0.3
[43] ncmeta_0.3.5 timechange_0.1.1 lifecycle_1.0.3
[46] googlesheets4_1.0.1 oce_1.7-10 getPass_0.2-2
[49] MASS_7.3-58.1 scales_1.2.1 vroom_1.6.0
[52] hms_1.1.2 promises_1.2.0.1 parallel_4.2.2
[55] RColorBrewer_1.1-3 yaml_2.3.6 memoise_2.0.1
[58] sass_0.4.4 stringi_1.7.8 highr_0.9
[61] e1071_1.7-12 checkmate_2.1.0 rlang_1.0.6
[64] pkgconfig_2.0.3 systemfonts_1.0.4 evaluate_0.18
[67] SolveSAPHE_2.1.0 labeling_0.4.2 bit_4.0.5
[70] processx_3.8.0 tidyselect_1.2.0 seacarb_3.3.1
[73] magrittr_2.0.3 R6_2.5.1 generics_0.1.3
[76] DBI_1.1.3 pillar_1.8.1 haven_2.5.1
[79] whisker_0.4 withr_2.5.0 units_0.8-0
[82] modelr_0.1.10 crayon_1.5.2 KernSmooth_2.23-20
[85] utf8_1.2.2 tzdb_0.3.0 rmarkdown_2.18
[88] grid_4.2.2 readxl_1.4.1 data.table_1.14.6
[91] callr_3.7.3 git2r_0.30.1 reprex_2.0.2
[94] digest_0.6.30 classInt_0.4-8 httpuv_1.6.6
[97] textshaping_0.3.6 munsell_0.5.0 bslib_0.4.1