UCSD climatology
Roemmich and Gilson UCSD argo temperature climatology
Roemmich, D. and J. Gilson, 2009: The 2004-2008 mean and annual cycle
of temperature, salinity, and steric height in the global ocean from the
Argo Program. Progress in Oceanography, 82, 81-100
Read data
clim_argo_temp_year_mean <- tidync::hyper_tibble(paste0(path_argo_clim_temp, "/RG_ArgoClim_33pfit_2019_mean.nc"))
# yearly mean temperature values in each 1/6 lat/lon grid (1 value for the year)
clim_argo_temp_monthly_anomaly <- tidync::hyper_tibble(paste0(path_argo_clim_temp, "/RG_ArgoClim_33pfit_2019_annual.nc"))
# monthly temperature anomaly from the annual mean, from January (time = 0.5) to December (time = 11.5), in each 1/2 lon/lat grid
Harmonise data
# put both dataframes onto 1/1 lon/lat grid and calculate mean temperature / mean anomaly in each grid
clim_argo_temp_monthly_anomaly <- clim_argo_temp_monthly_anomaly %>%
select(-ARGO_SALINITY_ANNUAL_ANOMALY) %>%
rename(lon = LONGITUDE,
lat = LATITUDE,
pressure = PRESSURE,
temp_annual_anomaly = ARGO_TEMPERATURE_ANNUAL_ANOMALY,
time = TIME) %>%
mutate(lon = if_else(lon < 20, lon + 360, lon)) %>%
mutate(lat = cut(lat, seq(-90, 90, 1), seq(-89.5, 89.5, 1)),
lat = as.numeric(as.character(lat)),
lon = cut(lon, seq(20, 380, 1), seq(20.5, 379.5, 1)),
lon = as.numeric(as.character(lon))) %>%
mutate(depth = swDepth(pressure = pressure, latitude = lat),
.after = pressure) %>%
filter(lat < -30)
# calculate mean temperature anomaly in each 1x1 grid
clim_argo_temp_monthly_anomaly <- clim_argo_temp_monthly_anomaly %>%
group_by(lon, lat, depth, time) %>%
summarise(temp_monthly_anomaly = mean(temp_annual_anomaly, na.rm = TRUE)) %>%
ungroup()
# re-grid annual mean temperature to 1x1 grid and compute depth
clim_argo_temp_year_mean <- clim_argo_temp_year_mean %>%
select(-ARGO_SALINITY_MEAN) %>%
rename(lon = LONGITUDE,
lat = LATITUDE,
temp_annual_mean = ARGO_TEMPERATURE_MEAN,
pressure = PRESSURE) %>%
mutate(lon = if_else(lon < 20, lon + 360, lon)) %>%
mutate(lat = cut(lat, seq(-90, 90, 1), seq(-89.5, 89.5, 1)),
lat = as.numeric(as.character(lat)),
lon = cut(lon, seq(20, 380, 1), seq(20.5, 379.5, 1)),
lon = as.numeric(as.character(lon))) %>%
mutate(depth = swDepth(pressure = pressure, latitude = lat),
.after = pressure) %>%
filter(lat < -30)
# calculate mean yearly temperature in each lat/lon grid
clim_argo_temp_year_mean <- clim_argo_temp_year_mean %>%
group_by(lon, lat, depth) %>%
summarise(temp_annual_clim = mean(temp_annual_mean, na.rm = TRUE)) %>%
ungroup()
# check the compatability of the two depths in the two datasets
depth_year <- table(unique(round(clim_argo_temp_monthly_anomaly$depth, digits = 0)))
depth_month <- table(unique(round(clim_argo_temp_year_mean$depth, digits = 0)))
all.equal(depth_year, depth_month)
[1] TRUE
# same depth axis in both
rm(depth_year, depth_month)
clim_argo_temp_ucsd <- left_join(clim_argo_temp_monthly_anomaly,
clim_argo_temp_year_mean)
clim_argo_temp_ucsd <- clim_argo_temp_ucsd %>%
mutate(temp_monthly_clim = temp_annual_clim + temp_monthly_anomaly,
depth = round(depth, digits = 0),
month = time + 0.5)
rm(clim_argo_temp_monthly_anomaly, clim_argo_temp_year_mean)
Write data to file
clim_argo_temp_ucsd %>%
write_rds(file = paste0(path_argo_preprocessed, "/clim_argo_temp_ucsd.rds"))
Southern Ocean climatological SST
map+
geom_point(data = clim_argo_temp_ucsd %>%
filter(depth < 5),
aes(x = lon,
y = lat),
size = 0.2)+
facet_wrap(~time, ncol = 2)+
lims(y = c(-80, -30))+
labs(title = 'UCSD climatology obs coverage')
Past versions of map_location_of_ucsd_clim_observations-1.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
clim_sst_ucsd <- clim_argo_temp_ucsd %>%
filter(depth <= 20) %>%
group_by(lon, lat, month) %>%
summarise(clim_sst = mean(temp_monthly_clim, na.rm = TRUE)) %>%
ungroup()
clim_sst_ucsd %>%
group_split(month) %>%
map(
~map+
geom_tile(data = .x,
aes(x = lon,
y = lat,
fill = clim_sst))+
scale_fill_viridis_c()+
lims(y = c(-85, -28))+
labs(title = paste0('Roemmich & Gilson UCSD clim SST, month:', unique(.x$month)))
)
[[1]]
Past versions of clim_sst_ucsd-1.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[2]]
Past versions of clim_sst_ucsd-2.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[3]]
Past versions of clim_sst_ucsd-3.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[4]]
Past versions of clim_sst_ucsd-4.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[5]]
Past versions of clim_sst_ucsd-5.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[6]]
Past versions of clim_sst_ucsd-6.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[7]]
Past versions of clim_sst_ucsd-7.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[8]]
Past versions of clim_sst_ucsd-8.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[9]]
Past versions of clim_sst_ucsd-9.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[10]]
Past versions of clim_sst_ucsd-10.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[11]]
Past versions of clim_sst_ucsd-11.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[12]]
Past versions of clim_sst_ucsd-12.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
Southern Ocean January climatological temperature
clim_argo_temp_ucsd %>%
group_split(depth) %>%
map(
~map+
geom_tile(data = .x %>% filter(month == 1),
aes(x = lon,
y = lat,
fill = temp_monthly_clim))+
scale_fill_viridis_c()+
lims(y = c(-80, -29))+
labs(title = paste0('UCSD January climatological temperature ', unique(.x$depth), 'm'))
)
[[1]]
Past versions of january_clim_depth_levels-1.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[2]]
Past versions of january_clim_depth_levels-2.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[3]]
Past versions of january_clim_depth_levels-3.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[4]]
Past versions of january_clim_depth_levels-4.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[5]]
Past versions of january_clim_depth_levels-5.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[6]]
Past versions of january_clim_depth_levels-6.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[7]]
Past versions of january_clim_depth_levels-7.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[8]]
Past versions of january_clim_depth_levels-8.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[9]]
Past versions of january_clim_depth_levels-9.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[10]]
Past versions of january_clim_depth_levels-10.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[11]]
Past versions of january_clim_depth_levels-11.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[12]]
Past versions of january_clim_depth_levels-12.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[13]]
Past versions of january_clim_depth_levels-13.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[14]]
Past versions of january_clim_depth_levels-14.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[15]]
Past versions of january_clim_depth_levels-15.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[16]]
Past versions of january_clim_depth_levels-16.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[17]]
Past versions of january_clim_depth_levels-17.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[18]]
Past versions of january_clim_depth_levels-18.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[19]]
Past versions of january_clim_depth_levels-19.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[20]]
Past versions of january_clim_depth_levels-20.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[21]]
Past versions of january_clim_depth_levels-21.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[22]]
Past versions of january_clim_depth_levels-22.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[23]]
Past versions of january_clim_depth_levels-23.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[24]]
Past versions of january_clim_depth_levels-24.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[25]]
Past versions of january_clim_depth_levels-25.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[26]]
Past versions of january_clim_depth_levels-26.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[27]]
Past versions of january_clim_depth_levels-27.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[28]]
Past versions of january_clim_depth_levels-28.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[29]]
Past versions of january_clim_depth_levels-29.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[30]]
Past versions of january_clim_depth_levels-30.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[31]]
Past versions of january_clim_depth_levels-31.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[32]]
Past versions of january_clim_depth_levels-32.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[33]]
Past versions of january_clim_depth_levels-33.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[34]]
Past versions of january_clim_depth_levels-34.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[35]]
Past versions of january_clim_depth_levels-35.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[36]]
Past versions of january_clim_depth_levels-36.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[37]]
Past versions of january_clim_depth_levels-37.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[38]]
Past versions of january_clim_depth_levels-38.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[39]]
Past versions of january_clim_depth_levels-39.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[40]]
Past versions of january_clim_depth_levels-40.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[41]]
Past versions of january_clim_depth_levels-41.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[42]]
Past versions of january_clim_depth_levels-42.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[43]]
Past versions of january_clim_depth_levels-43.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[44]]
Past versions of january_clim_depth_levels-44.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[45]]
Past versions of january_clim_depth_levels-45.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[46]]
Past versions of january_clim_depth_levels-46.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[47]]
Past versions of january_clim_depth_levels-47.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[48]]
Past versions of january_clim_depth_levels-48.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[49]]
Past versions of january_clim_depth_levels-49.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[50]]
Past versions of january_clim_depth_levels-50.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[51]]
Past versions of january_clim_depth_levels-51.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[52]]
Past versions of january_clim_depth_levels-52.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[53]]
Past versions of january_clim_depth_levels-53.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[54]]
Past versions of january_clim_depth_levels-54.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[55]]
Past versions of january_clim_depth_levels-55.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[56]]
Past versions of january_clim_depth_levels-56.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[57]]
Past versions of january_clim_depth_levels-57.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[58]]
Past versions of january_clim_depth_levels-58.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[59]]
Past versions of january_clim_depth_levels-59.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[60]]
Past versions of january_clim_depth_levels-60.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[61]]
Past versions of january_clim_depth_levels-61.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[62]]
Past versions of january_clim_depth_levels-62.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[63]]
Past versions of january_clim_depth_levels-63.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[64]]
Past versions of january_clim_depth_levels-64.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[65]]
Past versions of january_clim_depth_levels-65.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[66]]
Past versions of january_clim_depth_levels-66.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[67]]
Past versions of january_clim_depth_levels-67.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[68]]
Past versions of january_clim_depth_levels-68.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[69]]
Past versions of january_clim_depth_levels-69.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[70]]
Past versions of january_clim_depth_levels-70.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[71]]
Past versions of january_clim_depth_levels-71.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[72]]
Past versions of january_clim_depth_levels-72.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[73]]
Past versions of january_clim_depth_levels-73.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[74]]
Past versions of january_clim_depth_levels-74.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[75]]
Past versions of january_clim_depth_levels-75.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[76]]
Past versions of january_clim_depth_levels-76.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[77]]
Past versions of january_clim_depth_levels-77.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[78]]
Past versions of january_clim_depth_levels-78.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[79]]
Past versions of january_clim_depth_levels-79.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[80]]
Past versions of january_clim_depth_levels-80.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[81]]
Past versions of january_clim_depth_levels-81.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[82]]
Past versions of january_clim_depth_levels-82.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[83]]
Past versions of january_clim_depth_levels-83.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[84]]
Past versions of january_clim_depth_levels-84.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[85]]
Past versions of january_clim_depth_levels-85.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[86]]
Past versions of january_clim_depth_levels-86.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[87]]
Past versions of january_clim_depth_levels-87.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[88]]
Past versions of january_clim_depth_levels-88.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[89]]
Past versions of january_clim_depth_levels-89.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[90]]
Past versions of january_clim_depth_levels-90.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[91]]
Past versions of january_clim_depth_levels-91.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[92]]
Past versions of january_clim_depth_levels-92.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[93]]
Past versions of january_clim_depth_levels-93.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[94]]
Past versions of january_clim_depth_levels-94.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[95]]
Past versions of january_clim_depth_levels-95.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[96]]
Past versions of january_clim_depth_levels-96.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[97]]
Past versions of january_clim_depth_levels-97.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[98]]
Past versions of january_clim_depth_levels-98.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[99]]
Past versions of january_clim_depth_levels-99.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[100]]
Past versions of january_clim_depth_levels-100.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[101]]
Past versions of january_clim_depth_levels-101.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[102]]
Past versions of january_clim_depth_levels-102.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[103]]
Past versions of january_clim_depth_levels-103.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[104]]
Past versions of january_clim_depth_levels-104.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[105]]
Past versions of january_clim_depth_levels-105.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[106]]
Past versions of january_clim_depth_levels-106.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[107]]
Past versions of january_clim_depth_levels-107.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[108]]
Past versions of january_clim_depth_levels-108.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[109]]
Past versions of january_clim_depth_levels-109.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[110]]
Past versions of january_clim_depth_levels-110.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[111]]
Past versions of january_clim_depth_levels-111.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[112]]
Past versions of january_clim_depth_levels-112.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[113]]
Past versions of january_clim_depth_levels-113.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[114]]
Past versions of january_clim_depth_levels-114.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[115]]
Past versions of january_clim_depth_levels-115.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[116]]
Past versions of january_clim_depth_levels-116.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[117]]
Past versions of january_clim_depth_levels-117.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[118]]
Past versions of january_clim_depth_levels-118.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[119]]
Past versions of january_clim_depth_levels-119.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[120]]
Past versions of january_clim_depth_levels-120.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[121]]
Past versions of january_clim_depth_levels-121.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[122]]
Past versions of january_clim_depth_levels-122.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[123]]
Past versions of january_clim_depth_levels-123.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[124]]
Past versions of january_clim_depth_levels-124.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[125]]
Past versions of january_clim_depth_levels-125.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[126]]
Past versions of january_clim_depth_levels-126.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[127]]
Past versions of january_clim_depth_levels-127.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[128]]
Past versions of january_clim_depth_levels-128.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[129]]
Past versions of january_clim_depth_levels-129.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[130]]
Past versions of january_clim_depth_levels-130.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[131]]
Past versions of january_clim_depth_levels-131.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[132]]
Past versions of january_clim_depth_levels-132.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[133]]
Past versions of january_clim_depth_levels-133.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[134]]
Past versions of january_clim_depth_levels-134.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[135]]
Past versions of january_clim_depth_levels-135.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[136]]
Past versions of january_clim_depth_levels-136.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[137]]
Past versions of january_clim_depth_levels-137.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[138]]
Past versions of january_clim_depth_levels-138.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[139]]
Past versions of january_clim_depth_levels-139.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[140]]
Past versions of january_clim_depth_levels-140.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[141]]
Past versions of january_clim_depth_levels-141.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[142]]
Past versions of january_clim_depth_levels-142.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[143]]
Past versions of january_clim_depth_levels-143.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[144]]
Past versions of january_clim_depth_levels-144.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[145]]
Past versions of january_clim_depth_levels-145.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[146]]
Past versions of january_clim_depth_levels-146.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[147]]
Past versions of january_clim_depth_levels-147.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[148]]
Past versions of january_clim_depth_levels-148.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[149]]
Past versions of january_clim_depth_levels-149.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[150]]
Past versions of january_clim_depth_levels-150.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[151]]
Past versions of january_clim_depth_levels-151.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[152]]
Past versions of january_clim_depth_levels-152.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[153]]
Past versions of january_clim_depth_levels-153.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[154]]
Past versions of january_clim_depth_levels-154.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[155]]
Past versions of january_clim_depth_levels-155.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[156]]
Past versions of january_clim_depth_levels-156.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[157]]
Past versions of january_clim_depth_levels-157.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[158]]
Past versions of january_clim_depth_levels-158.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[159]]
Past versions of january_clim_depth_levels-159.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[160]]
Past versions of january_clim_depth_levels-160.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
Southern Ocean climatological profiles
# add in Mayot biome separations
clim_argo_temp_ucsd <- inner_join(clim_argo_temp_ucsd, nm_biomes)
# add in basin separations
clim_argo_temp_ucsd <- inner_join(clim_argo_temp_ucsd, basinmask)
# plot climatological profiles per month and biome
clim_argo_temp_ucsd %>%
group_split(month) %>%
map(
~ggplot(data = .x,
aes(x = temp_monthly_clim,
y = depth))+
geom_point(size = 0.1, pch = 1, fill = NA)+
scale_y_reverse()+
facet_grid(basin_AIP~biome_name)+
labs(title = paste0('UCSD clim profiles, month:', unique(.x$month)))
)
[[1]]
Past versions of plot_climatological_profiles_ucsd-1.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[2]]
Past versions of plot_climatological_profiles_ucsd-2.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[3]]
Past versions of plot_climatological_profiles_ucsd-3.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[4]]
Past versions of plot_climatological_profiles_ucsd-4.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[5]]
Past versions of plot_climatological_profiles_ucsd-5.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[6]]
Past versions of plot_climatological_profiles_ucsd-6.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[7]]
Past versions of plot_climatological_profiles_ucsd-7.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[8]]
Past versions of plot_climatological_profiles_ucsd-8.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[9]]
Past versions of plot_climatological_profiles_ucsd-9.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[10]]
Past versions of plot_climatological_profiles_ucsd-10.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[11]]
Past versions of plot_climatological_profiles_ucsd-11.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[12]]
Past versions of plot_climatological_profiles_ucsd-12.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
CSIO-MNR vs UCSD climatology
boa_temp_clim_SO <- boa_temp_clim_SO %>%
rename(depth_boa = depth)
clim_argo_temp_ucsd <- clim_argo_temp_ucsd %>%
rename(depth_ucsd = depth)
boa_temp_clim_SO <- boa_temp_clim_SO %>%
mutate(depth = cut(depth_boa,
breaks = c(0, 10, 20, 30, 50, 70, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1500, 2000),
include.lowest = TRUE,
labels = c(5, 15, 25, 40, 60, 85, 150, 250, 350, 450, 550, 650, 750, 850, 950, 1250, 1750)),
depth = as.numeric(as.character(depth)))
clim_argo_temp_ucsd <- clim_argo_temp_ucsd %>%
mutate(depth = cut(depth_ucsd,
breaks = c(0, 10, 20, 30, 50, 70, 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1500, 2000),
include.lowest = TRUE,
labels = c(5, 15, 25, 40, 60, 85, 150, 250, 350, 450, 550, 650, 750, 850, 950, 1250, 1750)),
depth = as.numeric(as.character(depth)))
# table(unique(boa_temp_clim_SO$depth))
# table(unique(clim_argo_temp_ucsd$depth))
temperature_climatology <- full_join(boa_temp_clim_SO, clim_argo_temp_ucsd)
temperature_climatology %>%
group_split(month, depth) %>%
map(
~ggplot(data = .x,
aes(x = clim_temp,
y = temp_monthly_clim))+
geom_bin2d(data = .x,
aes(x = clim_temp,
y = temp_monthly_clim))+
geom_abline(slope = 1, intercept = 0)+
scale_fill_viridis_c()+
facet_grid(biome_name ~ basin_AIP)+
labs(title = paste0('month: ', unique(.x$month), '| depth: ', unique(.x$depth), 'm'),
x = 'UCSD climatological temp',
y = 'CSIO-MNR climatological temp')
)
[[1]]
Past versions of plot_ucsd_vs_csio_clim-1.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[2]]
Past versions of plot_ucsd_vs_csio_clim-2.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[3]]
Past versions of plot_ucsd_vs_csio_clim-3.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[4]]
Past versions of plot_ucsd_vs_csio_clim-4.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[5]]
Past versions of plot_ucsd_vs_csio_clim-5.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[6]]
Past versions of plot_ucsd_vs_csio_clim-6.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[7]]
Past versions of plot_ucsd_vs_csio_clim-7.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[8]]
Past versions of plot_ucsd_vs_csio_clim-8.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[9]]
Past versions of plot_ucsd_vs_csio_clim-9.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[10]]
Past versions of plot_ucsd_vs_csio_clim-10.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[11]]
Past versions of plot_ucsd_vs_csio_clim-11.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[12]]
Past versions of plot_ucsd_vs_csio_clim-12.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[13]]
Past versions of plot_ucsd_vs_csio_clim-13.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[14]]
Past versions of plot_ucsd_vs_csio_clim-14.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[15]]
Past versions of plot_ucsd_vs_csio_clim-15.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[16]]
Past versions of plot_ucsd_vs_csio_clim-16.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[17]]
Past versions of plot_ucsd_vs_csio_clim-17.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[18]]
Past versions of plot_ucsd_vs_csio_clim-18.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[19]]
Past versions of plot_ucsd_vs_csio_clim-19.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[20]]
Past versions of plot_ucsd_vs_csio_clim-20.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[21]]
Past versions of plot_ucsd_vs_csio_clim-21.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[22]]
Past versions of plot_ucsd_vs_csio_clim-22.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[23]]
Past versions of plot_ucsd_vs_csio_clim-23.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[24]]
Past versions of plot_ucsd_vs_csio_clim-24.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[25]]
Past versions of plot_ucsd_vs_csio_clim-25.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[26]]
Past versions of plot_ucsd_vs_csio_clim-26.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[27]]
Past versions of plot_ucsd_vs_csio_clim-27.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[28]]
Past versions of plot_ucsd_vs_csio_clim-28.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[29]]
Past versions of plot_ucsd_vs_csio_clim-29.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[30]]
Past versions of plot_ucsd_vs_csio_clim-30.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[31]]
Past versions of plot_ucsd_vs_csio_clim-31.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[32]]
Past versions of plot_ucsd_vs_csio_clim-32.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[33]]
Past versions of plot_ucsd_vs_csio_clim-33.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[34]]
Past versions of plot_ucsd_vs_csio_clim-34.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[35]]
Past versions of plot_ucsd_vs_csio_clim-35.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[36]]
Past versions of plot_ucsd_vs_csio_clim-36.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[37]]
Past versions of plot_ucsd_vs_csio_clim-37.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[38]]
Past versions of plot_ucsd_vs_csio_clim-38.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[39]]
Past versions of plot_ucsd_vs_csio_clim-39.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[40]]
Past versions of plot_ucsd_vs_csio_clim-40.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[41]]
Past versions of plot_ucsd_vs_csio_clim-41.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[42]]
Past versions of plot_ucsd_vs_csio_clim-42.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[43]]
Past versions of plot_ucsd_vs_csio_clim-43.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[44]]
Past versions of plot_ucsd_vs_csio_clim-44.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[45]]
Past versions of plot_ucsd_vs_csio_clim-45.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[46]]
Past versions of plot_ucsd_vs_csio_clim-46.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[47]]
Past versions of plot_ucsd_vs_csio_clim-47.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[48]]
Past versions of plot_ucsd_vs_csio_clim-48.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[49]]
Past versions of plot_ucsd_vs_csio_clim-49.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[50]]
Past versions of plot_ucsd_vs_csio_clim-50.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[51]]
Past versions of plot_ucsd_vs_csio_clim-51.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[52]]
Past versions of plot_ucsd_vs_csio_clim-52.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[53]]
Past versions of plot_ucsd_vs_csio_clim-53.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[54]]
Past versions of plot_ucsd_vs_csio_clim-54.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[55]]
Past versions of plot_ucsd_vs_csio_clim-55.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[56]]
Past versions of plot_ucsd_vs_csio_clim-56.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[57]]
Past versions of plot_ucsd_vs_csio_clim-57.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[58]]
Past versions of plot_ucsd_vs_csio_clim-58.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[59]]
Past versions of plot_ucsd_vs_csio_clim-59.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[60]]
Past versions of plot_ucsd_vs_csio_clim-60.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[61]]
Past versions of plot_ucsd_vs_csio_clim-61.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[62]]
Past versions of plot_ucsd_vs_csio_clim-62.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[63]]
Past versions of plot_ucsd_vs_csio_clim-63.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[64]]
Past versions of plot_ucsd_vs_csio_clim-64.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[65]]
Past versions of plot_ucsd_vs_csio_clim-65.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[66]]
Past versions of plot_ucsd_vs_csio_clim-66.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[67]]
Past versions of plot_ucsd_vs_csio_clim-67.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[68]]
Past versions of plot_ucsd_vs_csio_clim-68.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[69]]
Past versions of plot_ucsd_vs_csio_clim-69.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[70]]
Past versions of plot_ucsd_vs_csio_clim-70.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[71]]
Past versions of plot_ucsd_vs_csio_clim-71.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[72]]
Past versions of plot_ucsd_vs_csio_clim-72.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[73]]
Past versions of plot_ucsd_vs_csio_clim-73.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[74]]
Past versions of plot_ucsd_vs_csio_clim-74.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[75]]
Past versions of plot_ucsd_vs_csio_clim-75.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[76]]
Past versions of plot_ucsd_vs_csio_clim-76.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[77]]
Past versions of plot_ucsd_vs_csio_clim-77.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[78]]
Past versions of plot_ucsd_vs_csio_clim-78.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[79]]
Past versions of plot_ucsd_vs_csio_clim-79.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[80]]
Past versions of plot_ucsd_vs_csio_clim-80.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[81]]
Past versions of plot_ucsd_vs_csio_clim-81.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[82]]
Past versions of plot_ucsd_vs_csio_clim-82.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[83]]
Past versions of plot_ucsd_vs_csio_clim-83.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[84]]
Past versions of plot_ucsd_vs_csio_clim-84.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[85]]
Past versions of plot_ucsd_vs_csio_clim-85.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[86]]
Past versions of plot_ucsd_vs_csio_clim-86.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[87]]
Past versions of plot_ucsd_vs_csio_clim-87.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[88]]
Past versions of plot_ucsd_vs_csio_clim-88.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[89]]
Past versions of plot_ucsd_vs_csio_clim-89.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[90]]
Past versions of plot_ucsd_vs_csio_clim-90.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[91]]
Past versions of plot_ucsd_vs_csio_clim-91.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[92]]
Past versions of plot_ucsd_vs_csio_clim-92.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[93]]
Past versions of plot_ucsd_vs_csio_clim-93.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[94]]
Past versions of plot_ucsd_vs_csio_clim-94.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[95]]
Past versions of plot_ucsd_vs_csio_clim-95.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[96]]
Past versions of plot_ucsd_vs_csio_clim-96.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[97]]
Past versions of plot_ucsd_vs_csio_clim-97.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[98]]
Past versions of plot_ucsd_vs_csio_clim-98.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[99]]
Past versions of plot_ucsd_vs_csio_clim-99.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[100]]
Past versions of plot_ucsd_vs_csio_clim-100.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[101]]
Past versions of plot_ucsd_vs_csio_clim-101.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[102]]
Past versions of plot_ucsd_vs_csio_clim-102.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[103]]
Past versions of plot_ucsd_vs_csio_clim-103.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[104]]
Past versions of plot_ucsd_vs_csio_clim-104.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[105]]
Past versions of plot_ucsd_vs_csio_clim-105.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[106]]
Past versions of plot_ucsd_vs_csio_clim-106.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[107]]
Past versions of plot_ucsd_vs_csio_clim-107.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[108]]
Past versions of plot_ucsd_vs_csio_clim-108.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[109]]
Past versions of plot_ucsd_vs_csio_clim-109.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[110]]
Past versions of plot_ucsd_vs_csio_clim-110.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[111]]
Past versions of plot_ucsd_vs_csio_clim-111.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[112]]
Past versions of plot_ucsd_vs_csio_clim-112.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[113]]
Past versions of plot_ucsd_vs_csio_clim-113.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[114]]
Past versions of plot_ucsd_vs_csio_clim-114.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[115]]
Past versions of plot_ucsd_vs_csio_clim-115.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[116]]
Past versions of plot_ucsd_vs_csio_clim-116.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[117]]
Past versions of plot_ucsd_vs_csio_clim-117.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[118]]
Past versions of plot_ucsd_vs_csio_clim-118.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[119]]
Past versions of plot_ucsd_vs_csio_clim-119.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[120]]
Past versions of plot_ucsd_vs_csio_clim-120.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[121]]
Past versions of plot_ucsd_vs_csio_clim-121.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[122]]
Past versions of plot_ucsd_vs_csio_clim-122.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[123]]
Past versions of plot_ucsd_vs_csio_clim-123.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[124]]
Past versions of plot_ucsd_vs_csio_clim-124.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[125]]
Past versions of plot_ucsd_vs_csio_clim-125.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[126]]
Past versions of plot_ucsd_vs_csio_clim-126.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[127]]
Past versions of plot_ucsd_vs_csio_clim-127.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[128]]
Past versions of plot_ucsd_vs_csio_clim-128.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[129]]
Past versions of plot_ucsd_vs_csio_clim-129.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[130]]
Past versions of plot_ucsd_vs_csio_clim-130.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[131]]
Past versions of plot_ucsd_vs_csio_clim-131.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[132]]
Past versions of plot_ucsd_vs_csio_clim-132.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[133]]
Past versions of plot_ucsd_vs_csio_clim-133.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[134]]
Past versions of plot_ucsd_vs_csio_clim-134.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[135]]
Past versions of plot_ucsd_vs_csio_clim-135.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[136]]
Past versions of plot_ucsd_vs_csio_clim-136.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[137]]
Past versions of plot_ucsd_vs_csio_clim-137.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[138]]
Past versions of plot_ucsd_vs_csio_clim-138.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[139]]
Past versions of plot_ucsd_vs_csio_clim-139.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[140]]
Past versions of plot_ucsd_vs_csio_clim-140.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[141]]
Past versions of plot_ucsd_vs_csio_clim-141.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[142]]
Past versions of plot_ucsd_vs_csio_clim-142.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[143]]
Past versions of plot_ucsd_vs_csio_clim-143.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[144]]
Past versions of plot_ucsd_vs_csio_clim-144.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[145]]
Past versions of plot_ucsd_vs_csio_clim-145.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[146]]
Past versions of plot_ucsd_vs_csio_clim-146.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[147]]
Past versions of plot_ucsd_vs_csio_clim-147.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[148]]
Past versions of plot_ucsd_vs_csio_clim-148.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[149]]
Past versions of plot_ucsd_vs_csio_clim-149.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[150]]
Past versions of plot_ucsd_vs_csio_clim-150.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[151]]
Past versions of plot_ucsd_vs_csio_clim-151.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[152]]
Past versions of plot_ucsd_vs_csio_clim-152.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[153]]
Past versions of plot_ucsd_vs_csio_clim-153.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[154]]
Past versions of plot_ucsd_vs_csio_clim-154.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[155]]
Past versions of plot_ucsd_vs_csio_clim-155.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[156]]
Past versions of plot_ucsd_vs_csio_clim-156.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[157]]
Past versions of plot_ucsd_vs_csio_clim-157.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[158]]
Past versions of plot_ucsd_vs_csio_clim-158.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[159]]
Past versions of plot_ucsd_vs_csio_clim-159.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[160]]
Past versions of plot_ucsd_vs_csio_clim-160.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[161]]
Past versions of plot_ucsd_vs_csio_clim-161.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[162]]
Past versions of plot_ucsd_vs_csio_clim-162.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[163]]
Past versions of plot_ucsd_vs_csio_clim-163.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[164]]
Past versions of plot_ucsd_vs_csio_clim-164.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[165]]
Past versions of plot_ucsd_vs_csio_clim-165.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[166]]
Past versions of plot_ucsd_vs_csio_clim-166.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[167]]
Past versions of plot_ucsd_vs_csio_clim-167.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[168]]
Past versions of plot_ucsd_vs_csio_clim-168.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[169]]
Past versions of plot_ucsd_vs_csio_clim-169.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[170]]
Past versions of plot_ucsd_vs_csio_clim-170.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[171]]
Past versions of plot_ucsd_vs_csio_clim-171.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[172]]
Past versions of plot_ucsd_vs_csio_clim-172.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[173]]
Past versions of plot_ucsd_vs_csio_clim-173.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[174]]
Past versions of plot_ucsd_vs_csio_clim-174.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[175]]
Past versions of plot_ucsd_vs_csio_clim-175.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[176]]
Past versions of plot_ucsd_vs_csio_clim-176.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[177]]
Past versions of plot_ucsd_vs_csio_clim-177.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[178]]
Past versions of plot_ucsd_vs_csio_clim-178.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[179]]
Past versions of plot_ucsd_vs_csio_clim-179.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[180]]
Past versions of plot_ucsd_vs_csio_clim-180.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[181]]
Past versions of plot_ucsd_vs_csio_clim-181.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[182]]
Past versions of plot_ucsd_vs_csio_clim-182.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[183]]
Past versions of plot_ucsd_vs_csio_clim-183.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[184]]
Past versions of plot_ucsd_vs_csio_clim-184.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[185]]
Past versions of plot_ucsd_vs_csio_clim-185.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[186]]
Past versions of plot_ucsd_vs_csio_clim-186.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[187]]
Past versions of plot_ucsd_vs_csio_clim-187.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[188]]
Past versions of plot_ucsd_vs_csio_clim-188.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[189]]
Past versions of plot_ucsd_vs_csio_clim-189.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[190]]
Past versions of plot_ucsd_vs_csio_clim-190.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[191]]
Past versions of plot_ucsd_vs_csio_clim-191.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[192]]
Past versions of plot_ucsd_vs_csio_clim-192.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[193]]
Past versions of plot_ucsd_vs_csio_clim-193.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[194]]
Past versions of plot_ucsd_vs_csio_clim-194.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[195]]
Past versions of plot_ucsd_vs_csio_clim-195.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[196]]
Past versions of plot_ucsd_vs_csio_clim-196.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[197]]
Past versions of plot_ucsd_vs_csio_clim-197.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[198]]
Past versions of plot_ucsd_vs_csio_clim-198.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[199]]
Past versions of plot_ucsd_vs_csio_clim-199.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[200]]
Past versions of plot_ucsd_vs_csio_clim-200.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[201]]
Past versions of plot_ucsd_vs_csio_clim-201.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[202]]
Past versions of plot_ucsd_vs_csio_clim-202.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[203]]
Past versions of plot_ucsd_vs_csio_clim-203.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
[[204]]
Past versions of plot_ucsd_vs_csio_clim-204.png
Version
Author
Date
c076fba
mlarriere
2024-04-12
710edd4
jens-daniel-mueller
2022-05-11
Session information
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] oce_1.7-10 gsw_1.1-1 forcats_0.5.2 stringr_1.5.0
[5] dplyr_1.1.3 purrr_1.0.2 readr_2.1.3 tidyr_1.3.0
[9] tibble_3.2.1 ggplot2_3.4.4 tidyverse_1.3.2
loaded via a namespace (and not attached):
[1] httr_1.4.4 sass_0.4.4 viridisLite_0.4.1
[4] bit64_4.0.5 vroom_1.6.0 jsonlite_1.8.3
[7] modelr_0.1.10 bslib_0.4.1 assertthat_0.2.1
[10] highr_0.9 googlesheets4_1.0.1 cellranger_1.1.0
[13] yaml_2.3.6 pillar_1.9.0 backports_1.4.1
[16] glue_1.6.2 digest_0.6.30 promises_1.2.0.1
[19] rvest_1.0.3 colorspace_2.0-3 htmltools_0.5.8.1
[22] httpuv_1.6.6 pkgconfig_2.0.3 broom_1.0.5
[25] haven_2.5.1 scales_1.2.1 whisker_0.4
[28] later_1.3.0 tzdb_0.3.0 timechange_0.1.1
[31] git2r_0.30.1 googledrive_2.0.0 farver_2.1.1
[34] generics_0.1.3 ellipsis_0.3.2 cachem_1.0.6
[37] withr_2.5.0 cli_3.6.1 magrittr_2.0.3
[40] crayon_1.5.2 readxl_1.4.1 evaluate_0.18
[43] fs_1.5.2 ncdf4_1.19 fansi_1.0.3
[46] xml2_1.3.3 tidync_0.3.0 tools_4.2.2
[49] hms_1.1.2 gargle_1.2.1 lifecycle_1.0.3
[52] munsell_0.5.0 reprex_2.0.2 compiler_4.2.2
[55] jquerylib_0.1.4 RNetCDF_2.6-1 rlang_1.1.1
[58] grid_4.2.2 rstudioapi_0.15.0 labeling_0.4.2
[61] rmarkdown_2.18 gtable_0.3.1 DBI_1.2.2
[64] R6_2.5.1 ncmeta_0.3.5 lubridate_1.9.0
[67] knitr_1.41 fastmap_1.1.0 bit_4.0.5
[70] utf8_1.2.2 workflowr_1.7.0 rprojroot_2.0.3
[73] stringi_1.7.8 parallel_4.2.2 Rcpp_1.0.10
[76] vctrs_0.6.4 dbplyr_2.2.1 tidyselect_1.2.0
[79] xfun_0.35