g <- climate %>%group_by(country, loc, n_year, lat, lon) %>%summarise(pr =sum(pr), tas =mean(tas)) %>%ggplot(aes(pr, tas, label =tolower(loc), col = country, size = n_year)) +geom_point() + ggrepel::geom_text_repel() +theme_bw() +xlab("Yearly precipitaiton [mm]") +ylab("Annual mean temperature [°C]") +theme(legend.position ="bottom") +scale_size_continuous("Number of years", range =c(1, 4)) +scale_color_discrete("")ggsave("figures/fs05.png", g, dpi =800, bg ="white", width =8)g
Fig S5. Yearly precipitation and mean temperature from punctual Meteo-France data for the period 2006-2019 with a minimum of 6 complete years in French Guiana (red) and New Caledonia (blue). Point size represents the number of complete years in the data.
Fig S6. Evaluation of downscaled projections from global (CMIP6) and regional (CORDEX) climate models. Monthly precipitation and mean temperature from climate models were downscaled against CHELSA2 data for the period 1980-2005 for French Guiana and Ivory Coast. We evaluated downscaled projected monthly precipitation monthly mean temperature against punctual Meteo-France data for the period 2006-2019 with a minimum of 6 complete years. The x-axis represents the root mean square error (RMSE) and the y-axis the correlation coefficient (CC), such that the best evaluation is located in the lower left corner with a RMSEP of 0 and a CC of 1. Each point represents the mean evaluation across months of a single climate model for scenarios 2.6 or 8.5, with intervals around representing half the standard deviation across months. Blue dots represent CMIP6 global climate models with scenario 2.6 in light blue and 8.5 in dark blue, while red dots represent CORDEX regional climate models with scenario 2.6 in light red and 8.5 in dark red. Grey lines represent matching scenarios for a single model.
Code
t <-read_tsv("outputs/eval_meteofrance.tsv") %>%mutate(area =gsub("-", " ", area)) %>%filter( variable %in%c("tas", "pr"), type =="downscaled", metric %in%c("RMSE", "CC") ) %>%mutate(variable =recode(variable,"pr"="precipitation","tas"="temperature" )) %>%mutate(base_eval ="Météo France") %>%group_by(area, origin, type, variable, base_eval, metric, model) %>%summarise(value =mean(value)) %>%# inter-monthsgroup_by(area, origin, type, variable, base_eval, metric) %>%summarise(sd =sd(value), mean =mean(value)) %>%# inter-modelmutate(value =paste0(round(mean, 3), " (", round(sd, 3), ")")) %>%select(-sd, -mean) %>%pivot_wider(names_from = origin, values_from = value) %>%ungroup() %>%mutate(Evaluation =paste(base_eval, variable)) %>%rename(Country = area, Metric = metric) %>%select(Country, Evaluation, Metric, CMIP6, CORDEX) %>%arrange(Country, Evaluation, Metric)write_tsv(t, "figures/ts02.tsv")read_tsv("figures/ts02.tsv") %>%kable(caption ="Table S2. Mean evaluation of downscaled CMIP6 and CORDEX projections between 2006 and 2019 against météo France precipitation and temperature data in French Guiana and New Caledonia. Numbers indicate root mean square error (RMSE) or correlation coefficient (CC) with mean followed by standard deviation in parentheses. CMIP6 and CORDEX assessments are averaged across months, models and scenarios.") # nolint
Table S2. Mean evaluation of downscaled CMIP6 and CORDEX projections between 2006 and 2019 against météo France precipitation and temperature data in French Guiana and New Caledonia. Numbers indicate root mean square error (RMSE) or correlation coefficient (CC) with mean followed by standard deviation in parentheses. CMIP6 and CORDEX assessments are averaged across months, models and scenarios.