From a94fc78aa524f8453ea14c736733073ed42a3334 Mon Sep 17 00:00:00 2001 From: enlochner Date: Wed, 26 Apr 2023 10:44:54 -0500 Subject: [PATCH 01/14] Fix emission control bugs --- .../R/zchunk_L253.emission_controls.R | 50 ++++++++++++------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/input/gcamdata/R/zchunk_L253.emission_controls.R b/input/gcamdata/R/zchunk_L253.emission_controls.R index a90bd8ed73..3cae93e4e2 100644 --- a/input/gcamdata/R/zchunk_L253.emission_controls.R +++ b/input/gcamdata/R/zchunk_L253.emission_controls.R @@ -37,6 +37,7 @@ module_emissions_L253.emission_controls <- function(command, ...) { user_em_control_files, # All files in user_emission_controls folder "L102.pcgdp_thous90USD_Scen_R_Y", "L201.nonghg_steepness", + "L277.nonghg_steepness_USA", "L223.StubTechEff_elec", "L223.GlobalTechEff_elec", "L224.Supplysector_heat")) @@ -73,6 +74,7 @@ module_emissions_L253.emission_controls <- function(command, ...) { states_subregions <- get_data(all_data, "gcam-usa/states_subregions") pcGDP_MER <- get_data(all_data, "L102.pcgdp_thous90USD_Scen_R_Y", strip_attributes = TRUE) L201.nonghg_steepness <- get_data(all_data, "L201.nonghg_steepness", strip_attributes = TRUE) + L277.nonghg_steepness_USA <- get_data(all_data, "L277.nonghg_steepness_USA", strip_attributes = TRUE) base_year_eff <- get_data(all_data, "L223.StubTechEff_elec", strip_attributes = TRUE) future_year_eff <- get_data(all_data, "L223.GlobalTechEff_elec", strip_attributes = TRUE) %>% filter(year %in% MODEL_FUTURE_YEARS) @@ -134,6 +136,24 @@ module_emissions_L253.emission_controls <- function(command, ...) { bind_rows(so2_reg_names_global, so2_reg_names_states) -> so2_reg_names + # Get all technologies that have a default generic GDP control, which will be removed if there are new controls in place + L201.nonghg_steepness %>% + select(region, supplysector, subsector, stub.technology) %>% + bind_rows(select(L277.nonghg_steepness_USA, region, supplysector, subsector, stub.technology)) -> GDP_controlled_techs + + # Define a utility function that returns the next model year. + # Because we vectorize the function, the argument can be a vector (or column) of years + # If year passed in is last model year, return last model year + get_next_model_year <- Vectorize(function(year) { + if(!year %in% MODEL_YEARS) { + stop("Year is not a GCAM model year") + } + else if(year != tail(MODEL_YEARS, n = 1)){ + MODEL_YEARS[which(MODEL_YEARS == year)+1] + } + else {return(year)} + }) + # Function that processes emission control data process_em_control_data <- function(em_control_data) { @@ -157,8 +177,6 @@ module_emissions_L253.emission_controls <- function(command, ...) { filter(GCAM_region %in% dist_heat_regions$region | !supplysector %in% dist_heat_regions$supplysector) %>% mutate(region = if_else(is.na(GCAM_region), region, GCAM_region)) %>% - semi_join(L201.nonghg_steepness, - by = c("region", "supplysector", "subsector", "stub.technology")) %>% select(-GCAM_region) -> em_control_data # Stop if regions aren't valid regions @@ -178,15 +196,24 @@ module_emissions_L253.emission_controls <- function(command, ...) { # Note NSPS can be applied to all model future years which is already defined retrofit_years <- c(tail(MODEL_BASE_YEARS, n=1), MODEL_FUTURE_YEARS) + # Check to make sure users didn't specify GDP start level for US States + em_control_data %>% + filter(region %in% unique(states_subregions$state), + !is.na(pcGDP_start_NSPS) | !is.na(pcGDP_start_retrofit)) -> check_US_starts + if(nrow(check_US_starts) != 0){ + stop("GDP per capita start option not supported for US states") + } + # RETROFITS # Extract only the data we need for retrofits from emission control data. Use row number to keep track of order. # Join in regional GDP data and filter for retrofit years. If there is no user-inputted retrofit start year, # we calculate it by finding all years where GDP is at least the inputted start GDP value, and keep the first # occurrence, which is the year at which each region reaches pcGDP of the "pcGDP_start_retrofit" value + # Using left_join to avoid errors with US states, since we don't use state-level GDP data em_control_data %>% mutate(id = row_number()) %>% select(-c(pcGDP_start_NSPS, NSPS_start_year, NSPS_em_coeff, 'Notes and sources')) %>% - left_join_error_no_match(pcGDP_MER, by = "region") %>% + left_join(pcGDP_MER, by = "region") %>% tidyr::gather(year, GDP, as.character(MODEL_YEARS)) %>% arrange(id) %>% filter(year %in% retrofit_years) %>% @@ -213,7 +240,7 @@ module_emissions_L253.emission_controls <- function(command, ...) { em_control_data %>% mutate(id = row_number()) %>% select(-c(pcGDP_start_retrofit, retrofit_start_year, retrofit_time, retrofit_vintage, retrofit_em_coeff, 'Notes and sources')) %>% - left_join_error_no_match(pcGDP_MER, by = "region")%>% + left_join(pcGDP_MER, by = "region")%>% tidyr::gather(year, GDP, as.character(MODEL_YEARS)) %>% arrange(id) %>% filter(year %in% MODEL_FUTURE_YEARS) %>% @@ -232,6 +259,8 @@ module_emissions_L253.emission_controls <- function(command, ...) { # Remove the default generic control since more specific control is in place em_control_data %>% + semi_join(GDP_controlled_techs, + by = c("region", "supplysector", "subsector", "stub.technology")) %>% select(region, supplysector, subsector, stub.technology, linear.control, Non.CO2) %>% mutate(period = head(MODEL_YEARS, n=1), gdp.control = "GDP_control") -> L253.delete_gdp_control @@ -249,19 +278,6 @@ module_emissions_L253.emission_controls <- function(command, ...) { linear.control, period, .keep_all = TRUE) %>% arrange(desc(row_number())) -> L253.EF_NSPS_new_vintage - # Define a utility function that returns the next model year. - # Because we vectorize the function, the argument can be a vector (or column) of years - # If year passed in is last model year, return last model year - get_next_model_year <- Vectorize(function(year) { - if(!year %in% MODEL_YEARS) { - stop("Year is not a GCAM model year") - } - else if(year != tail(MODEL_YEARS, n = 1)){ - MODEL_YEARS[which(MODEL_YEARS == year)+1] - } - else {return(year)} - }) - # Turn off retrofits after end year of the last retrofit for that emission/technology/region L253.EF_retrofit %>% arrange(desc(retrofit_vintage)) %>% From 80ce4d6705bf56b9c1cd629d051eee44cf222516 Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Wed, 17 May 2023 00:28:14 -0400 Subject: [PATCH 02/14] Ensure emissions unit tag is always copied forward for consistent reporting --- cvs/objects/emissions/source/nonco2_emissions.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cvs/objects/emissions/source/nonco2_emissions.cpp b/cvs/objects/emissions/source/nonco2_emissions.cpp index b1e53a6b33..e3d26684f1 100644 --- a/cvs/objects/emissions/source/nonco2_emissions.cpp +++ b/cvs/objects/emissions/source/nonco2_emissions.cpp @@ -122,6 +122,8 @@ void NonCO2Emissions::copyGHGParameters( const AGHG* aPrevGHG ){ abort(); } + mEmissionsUnit = prevComplexGHG->mEmissionsUnit; + if( !mEmissionsDriver ) { mEmissionsDriver = prevComplexGHG->mEmissionsDriver->clone(); } From fe31e075cfb248a12a916e7d28d910765b4aabc9 Mon Sep 17 00:00:00 2001 From: Sheng Date: Tue, 16 May 2023 11:50:46 -0400 Subject: [PATCH 03/14] revise LB162 to make sure no negative AgProdChange --- input/gcamdata/R/zchunk_LB162.ag_prodchange_R_C_Y_GLU_irr.R | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/input/gcamdata/R/zchunk_LB162.ag_prodchange_R_C_Y_GLU_irr.R b/input/gcamdata/R/zchunk_LB162.ag_prodchange_R_C_Y_GLU_irr.R index 72c479e20c..aa233e6b0e 100644 --- a/input/gcamdata/R/zchunk_LB162.ag_prodchange_R_C_Y_GLU_irr.R +++ b/input/gcamdata/R/zchunk_LB162.ag_prodchange_R_C_Y_GLU_irr.R @@ -112,6 +112,11 @@ module_aglu_LB162.ag_prodchange_R_C_Y_GLU_irr <- function(command, ...) { mutate(Irr_Rfd = "RFD") %>% rename(yield_kgHa = Yield_kgHa_rainfed) %>% bind_rows(L162.ag_irrYield_kgHa_Rcrs_Ccrs_Y) %>% + group_by(CROSIT_ctry, CROSIT_crop, Irr_Rfd) %>% + mutate(tag1 = ifelse(yield_kgHa[year == 2030] < yield_kgHa[year == 2005], 1, 0), # if 2030 < 2005, then AgProdChange1 = 0 + yield_kgHa = ifelse(tag1 == 1 & year == 2030, yield_kgHa[year == 2005], yield_kgHa), + tag2 = ifelse(yield_kgHa[year == 2050] < yield_kgHa[year == 2030], 1, 0), # if 2050 < 2030, then AgProdChange2 = AgProdChange1 + yield_kgHa = ifelse(tag2 == 1 & year == 2050, yield_kgHa[year == 2030] + 4*(yield_kgHa[year == 2030] - yield_kgHa[year == 2005])/5, yield_kgHa)) %>% # add the missing aglu.SPEC_AG_PROD_YEARS and interpolate the yields complete(year = c(year, aglu.SPEC_AG_PROD_YEARS) , CROSIT_ctry, CROSIT_crop, Irr_Rfd) %>% From 4c6de73047c823bd0562cd25264a46f8d7c8b1b2 Mon Sep 17 00:00:00 2001 From: Matthew Binsted Date: Fri, 2 Jun 2023 10:38:32 -0400 Subject: [PATCH 04/14] small cleanup: - fix units in rsrc_unconv_oil_prod_bbld.csv (million barrels of oil per day, not billions) - forcing_target_ files: fix comment related to hotelling rate (updated to 3% in GCAM v6.0, but the comment says ) --- .../gcamdata/inst/extdata/energy/rsrc_unconv_oil_prod_bbld.csv | 2 +- input/policy/forcing_target_2p6_overshoot.xml | 2 +- input/policy/forcing_target_3p7.xml | 2 +- input/policy/forcing_target_4p5.xml | 2 +- input/policy/forcing_target_6p0.xml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/input/gcamdata/inst/extdata/energy/rsrc_unconv_oil_prod_bbld.csv b/input/gcamdata/inst/extdata/energy/rsrc_unconv_oil_prod_bbld.csv index 2e4469c92b..da6a17036f 100644 --- a/input/gcamdata/inst/extdata/energy/rsrc_unconv_oil_prod_bbld.csv +++ b/input/gcamdata/inst/extdata/energy/rsrc_unconv_oil_prod_bbld.csv @@ -1,6 +1,6 @@ # File: rsrc_unconv_oil_prod_bbld.csv # Title: Historical unconventional oil production by country where applicable -# Units: billion barrels of oil per day +# Units: million barrels of oil per day # Source: For Canada, http://earlywarn.blogspot.com/2010/01/tar-sands-production-graph.html; for Venezuala, IEA World Energy Outlook 2010, http://www.worldenergyoutlook.org/media/weo2010.pdf # Column types: ciiinnnnnn # ---------- diff --git a/input/policy/forcing_target_2p6_overshoot.xml b/input/policy/forcing_target_2p6_overshoot.xml index bcd0fb3532..ab5d927b5d 100644 --- a/input/policy/forcing_target_2p6_overshoot.xml +++ b/input/policy/forcing_target_2p6_overshoot.xml @@ -8,7 +8,7 @@ 2.6 0.05 - + 0.03 0.05 - + 0.03 0.05 - + 0.03 0.05 - + 0.03 ../input/gcamdata/xml/EFW_WWtrt_coefs_SSP4.xml + ../input/gcamdata/xml/prune_empty_ag.xml @@ -174,6 +175,7 @@ ../input/gcamdata/xml/EFW_WWtrt_coefs_SSP5.xml + ../input/gcamdata/xml/prune_empty_ag.xml @@ -229,6 +231,7 @@ ../input/gcamdata/xml/EFW_WWtrt_coefs_SSP1.xml + ../input/gcamdata/xml/prune_empty_ag.xml @@ -264,6 +267,7 @@ ../input/gcamdata/xml/EFW_WWtrt_coefs_SSP2.xml + ../input/gcamdata/xml/prune_empty_ag.xml @@ -321,6 +325,7 @@ ../input/gcamdata/xml/EFW_WWtrt_coefs_SSP3.xml + ../input/gcamdata/xml/prune_empty_ag.xml diff --git a/exe/batch_SSP_SPA1.xml b/exe/batch_SSP_SPA1.xml index c443257237..2dd8a85688 100644 --- a/exe/batch_SSP_SPA1.xml +++ b/exe/batch_SSP_SPA1.xml @@ -145,6 +145,7 @@ ../input/policy/global_uct_spa1.xml ../input/gcamdata/xml/negative_emissions_budget.xml ../input/gcamdata/xml/bio_externality.xml + ../input/gcamdata/xml/prune_empty_ag.xml diff --git a/exe/batch_SSP_SPA23.xml b/exe/batch_SSP_SPA23.xml index 735519aeae..aad56f650f 100644 --- a/exe/batch_SSP_SPA23.xml +++ b/exe/batch_SSP_SPA23.xml @@ -125,7 +125,7 @@ ../input/policy/global_uct_spa2.xml ../input/gcamdata/xml/negative_emissions_budget.xml ../input/gcamdata/xml/bio_externality.xml - + ../input/gcamdata/xml/prune_empty_ag.xml @@ -189,6 +189,7 @@ ../input/policy/2040_target_finder_phasein.xml ../input/gcamdata/xml/negative_emissions_budget_SSP3.xml ../input/gcamdata/xml/bio_externality.xml + ../input/gcamdata/xml/prune_empty_ag.xml diff --git a/exe/batch_SSP_SPA4.xml b/exe/batch_SSP_SPA4.xml index 8c63545398..5fafc88ba7 100644 --- a/exe/batch_SSP_SPA4.xml +++ b/exe/batch_SSP_SPA4.xml @@ -147,6 +147,7 @@ ../input/gcamdata/xml/ssp4_ag_bio_trade.xml ../input/gcamdata/xml/negative_emissions_budget.xml ../input/gcamdata/xml/bio_externality.xml + ../input/gcamdata/xml/prune_empty_ag.xml diff --git a/exe/batch_SSP_SPA5.xml b/exe/batch_SSP_SPA5.xml index bf7d0a108b..88e99f5d5f 100644 --- a/exe/batch_SSP_SPA5.xml +++ b/exe/batch_SSP_SPA5.xml @@ -127,6 +127,7 @@ ../input/policy/global_uct_spa5.xml ../input/gcamdata/xml/negative_emissions_budget.xml ../input/gcamdata/xml/bio_externality.xml + ../input/gcamdata/xml/prune_empty_ag.xml diff --git a/exe/configuration_policy.xml b/exe/configuration_policy.xml index 69919d49a2..ad5437b6a9 100644 --- a/exe/configuration_policy.xml +++ b/exe/configuration_policy.xml @@ -105,6 +105,8 @@ ../input/gcamdata/xml/socioeconomics_macro.xml + ../input/gcamdata/xml/prune_empty_ag.xml + ../input/policy/carbon_tax_0.xml ../input/policy/spa14_tax.xml diff --git a/exe/configuration_ref.xml b/exe/configuration_ref.xml index d96372036f..45a3b0127d 100644 --- a/exe/configuration_ref.xml +++ b/exe/configuration_ref.xml @@ -102,6 +102,8 @@ ../input/gcamdata/xml/bio_externality.xml ../input/gcamdata/xml/gas_trade.xml + ../input/gcamdata/xml/prune_empty_ag.xml + ../input/solution/cal_broyden_config.xml diff --git a/exe/configuration_usa.xml b/exe/configuration_usa.xml index 3ecd88aea3..545c9b7431 100644 --- a/exe/configuration_usa.xml +++ b/exe/configuration_usa.xml @@ -103,6 +103,8 @@ ../input/gcamdata/xml/onshore_wind.xml ../input/gcamdata/xml/gas_trade.xml + ../input/gcamdata/xml/prune_empty_ag.xml + ../input/gcamdata/xml/socioeconomics_USA.xml ../input/gcamdata/xml/resources_USA.xml ../input/gcamdata/xml/Cstorage_USA.xml From 659eda946d8d2603ab406c59ba01ee072a06398c Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Sun, 4 Jun 2023 22:13:47 -0400 Subject: [PATCH 08/14] A set of solution tweaks --- cvs/objects/marketplace/source/demand_market.cpp | 2 +- cvs/objects/marketplace/source/price_market.cpp | 2 +- .../solution/solvers/source/logbroyden.cpp | 10 +++++----- .../solution/solvers/source/preconditioner.cpp | 15 +++++++++++++-- 4 files changed, 20 insertions(+), 9 deletions(-) diff --git a/cvs/objects/marketplace/source/demand_market.cpp b/cvs/objects/marketplace/source/demand_market.cpp index 52c6bb7d03..39d4e45918 100644 --- a/cvs/objects/marketplace/source/demand_market.cpp +++ b/cvs/objects/marketplace/source/demand_market.cpp @@ -123,5 +123,5 @@ bool DemandMarket::shouldSolveNR() const { // A demand market is solving an equality constraint, so it should // be solved even if it has negative values in it (edfun.cpp makes // special allowances for price, demand, and trial value markets) - return shouldSolve(); + return shouldSolve() && fabs(mPrice) > util::getSmallNumber() && fabs(mDemand) > util::getSmallNumber(); } diff --git a/cvs/objects/marketplace/source/price_market.cpp b/cvs/objects/marketplace/source/price_market.cpp index 5346f34afe..163cc1a60a 100644 --- a/cvs/objects/marketplace/source/price_market.cpp +++ b/cvs/objects/marketplace/source/price_market.cpp @@ -141,5 +141,5 @@ bool PriceMarket::shouldSolveNR() const { // A price market is solving an equality constraint, so we should // try to solve it even when price, supply, and demand are all // negative. - return shouldSolve(); + return shouldSolve() && fabs(mPrice) > util::getSmallNumber() && fabs(mDemand) > util::getSmallNumber(); } diff --git a/cvs/objects/solution/solvers/source/logbroyden.cpp b/cvs/objects/solution/solvers/source/logbroyden.cpp index ad22f5c095..1b82e2d171 100644 --- a/cvs/objects/solution/solvers/source/logbroyden.cpp +++ b/cvs/objects/solution/solvers/source/logbroyden.cpp @@ -401,7 +401,7 @@ int LogBroyden::bsolve(VecFVec &F, UBVECTOR &x, UBVECTOR &fx, const int TRACK_NUM_PAST_F_VALUES = 4; std::queue past_f_values; past_f_values.push(f0); - const double LARGE_DIAG_THRESHOLD = 100.0; + const double LARGE_DIAG_THRESHOLD = 1000000.0; if(f0 < FTINY) { // Guard against F=0 since it can cause a NaN in our solver. This // is a more stringent test than our regular convergence test @@ -497,7 +497,7 @@ int LogBroyden::bsolve(VecFVec &F, UBVECTOR &x, UBVECTOR &fx, // start with partial pivot LU decomposition as it is so fast to execute and // see if we need to fall back to an alternative if it doesn't "perform" well Eigen::PartialPivLU luPartialPiv(B); - dx = luPartialPiv.solve(-1.0 * fx); + dx = luPartialPiv.solve(-fx); double dxmag = sqrt(dx.dot(dx)); if(luPartialPiv.determinant() == 0 || !util::isValidNumber(dxmag)) { // singular or badly messed up Jacobian, going to have to use SVD @@ -512,7 +512,7 @@ int LogBroyden::bsolve(VecFVec &F, UBVECTOR &x, UBVECTOR &fx, // without that we should set this to zero (i.e. only suppress truly singular cols) const double small_threshold = 0; svdSolver.setThreshold(small_threshold); - dx = svdSolver.solve(-1.0 * fx); + dx = svdSolver.solve(-fx); dxmag = sqrt(dx.dot(dx)); solverLog << " new dxmag: " << dxmag << std::endl; } @@ -558,7 +558,7 @@ int LogBroyden::bsolve(VecFVec &F, UBVECTOR &x, UBVECTOR &fx, // 1) B is not a descent direction. If this is the first // failure starting from this x value, try a finite difference // jacobian - if(!lsfail) { + /*if(!lsfail) { // linesearch will have left off on some other price vector thus we // could have bad state data from which we calculate derivatives or // check if we we can return due to a relaxed convergence test @@ -590,7 +590,7 @@ int LogBroyden::bsolve(VecFVec &F, UBVECTOR &x, UBVECTOR &fx, past_f_values.push(f0); // start the next iteration *without* updating x continue; - } + }*/ // 2) The descent only continues for a very short distance // (roughly TOL*x0). Maybe we're really close to a solution and diff --git a/cvs/objects/solution/solvers/source/preconditioner.cpp b/cvs/objects/solution/solvers/source/preconditioner.cpp index 563040c62a..cb025446bf 100644 --- a/cvs/objects/solution/solvers/source/preconditioner.cpp +++ b/cvs/objects/solution/solvers/source/preconditioner.cpp @@ -287,7 +287,7 @@ SolverComponent::ReturnCode Preconditioner::solve( SolutionInfoSet& aSolutionSet chg = true; ++nchg; } - else if (oldprice > ub && + /*else if (oldprice > ub && oldsply > olddmnd) { // price is above the top of the supply curve, // and there little demand. This is not @@ -317,7 +317,7 @@ SolverComponent::ReturnCode Preconditioner::solve( SolutionInfoSet& aSolutionSet solvable[i].setPrice(newprice); chg = true; ++nchg; - } + }*/ else if(fd < mFTOL && oldsply >= mFTOL && olddmnd >= mFTOL) { // reset a small demand scale when it looked like a market was "off" // but the supplies and demands are now in a normal range @@ -354,6 +354,17 @@ SolverComponent::ReturnCode Preconditioner::solve( SolutionInfoSet& aSolutionSet chg = true; ++nchg; } + else if(abs(fp) != abs(fd)) { + // not sure why the price and quantity scales divereged but they should + // be the same so reset them to be + double newScale = abs(fp) > util::getSmallNumber() ? fp : fd; + fp = newScale; + fd = newScale; + solvable[i].setForecastPrice(newScale); + solvable[i].setForecastDemand(newScale); + chg = true; + ++nchg; + } break; case IMarketType::PRICE: // price markets are solving a consistency From 1f4db5bcbcea139ed2f4481e6a105dbc07069329 Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 01:40:09 -0400 Subject: [PATCH 09/14] Pull in Hector Xcode project fix --- cvs/objects/climate/source/hector | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvs/objects/climate/source/hector b/cvs/objects/climate/source/hector index 3b83b46756..7a06cea4c1 160000 --- a/cvs/objects/climate/source/hector +++ b/cvs/objects/climate/source/hector @@ -1 +1 @@ -Subproject commit 3b83b467564e80231aaa070d0dcb3b7f891d3397 +Subproject commit 7a06cea4c18ca1c07a455b992159d3839558f7d6 From 8bfa8fc5aed2fd74d8c3d2f98868a2bace3edfed Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 02:01:28 -0400 Subject: [PATCH 10/14] Avoid warnings about CO2_LUC not related to an Activity --- cvs/objects/containers/source/market_dependency_finder.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cvs/objects/containers/source/market_dependency_finder.cpp b/cvs/objects/containers/source/market_dependency_finder.cpp index 1de5641dd6..071a476fed 100644 --- a/cvs/objects/containers/source/market_dependency_finder.cpp +++ b/cvs/objects/containers/source/market_dependency_finder.cpp @@ -537,7 +537,9 @@ void MarketDependencyFinder::createOrdering() { // activities in the model as it may be an indication of misconfiguration. ILogger& depLog = ILogger::getLogger( "dependency_finder_log" ); for( CItemIterator it = mDependencyItems.begin(); it != mDependencyItems.end(); ++it ) { - if( !(*it)->mHasIncomingDependency && (*it)->mDependentList.empty() ) { + // less than ideal but our heuristics do not properly deal with link CO2 markets + // so explicitly avoid warning about CO2_LUC (potentially others here) + if( !(*it)->mHasIncomingDependency && (*it)->mDependentList.empty() && (*it)->mName != "CO2_LUC" ) { depLog.setLevel( ILogger::SEVERE ); depLog << (*it)->mName << " in " << (*it)->mLocatedInRegion << " is not related to any other activities." << endl; } From 0f38f762c744be4f34e5b51086db7e759286fbd1 Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 02:15:54 -0400 Subject: [PATCH 11/14] Fix missing metadata warning on negative emissions tibble --- input/gcamdata/R/zenergy_L270.limits.R | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/input/gcamdata/R/zenergy_L270.limits.R b/input/gcamdata/R/zenergy_L270.limits.R index 0cc321ea01..3d8b3e4ae9 100644 --- a/input/gcamdata/R/zenergy_L270.limits.R +++ b/input/gcamdata/R/zenergy_L270.limits.R @@ -340,6 +340,14 @@ module_energy_L270.limits <- function(command, ...) { add_precursors("common/GCAM_region_names") -> L270.NegEmissBudgetDefaultPrice + L270.NegEmissBudget %>% + add_title("Sets up the negative emissions budget RES market") %>% + add_units("NA") %>% + add_comments("Sets up the RES constraint market including boiler plate such") %>% + add_comments("as the policy name and market as well as unit strings") %>% + add_precursors("common/GCAM_region_names") -> + L270.NegEmissBudget + L270.NegEmissBudgetFraction %>% add_title("Sets the negative emissions budget fraction.") %>% add_units("%") %>% From de20fc56359dd4780d17418b72a32ecb8639fa10 Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 12:31:58 -0400 Subject: [PATCH 12/14] Up max iteration count to adjust for derivative calc inflation --- input/solution/cal_broyden_config.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input/solution/cal_broyden_config.xml b/input/solution/cal_broyden_config.xml index facd777d75..e81859507f 100644 --- a/input/solution/cal_broyden_config.xml +++ b/input/solution/cal_broyden_config.xml @@ -75,7 +75,7 @@ 0.001 0.0001 0.01 - 2500 + 3000 solvable From 164901aa99ee43392612d81f44db4d8749a737e8 Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 16:12:25 -0400 Subject: [PATCH 13/14] Rebuild package documentation one last time --- .../FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION.Rd | 28 +++++++ ..._AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL.Rd | 23 ++++++ input/gcamdata/man/Moving_average.Rd | 19 +++++ input/gcamdata/man/XML_NODE_EQUIV.Rd | 2 +- input/gcamdata/man/gdp_deflator.Rd | 2 +- input/gcamdata/man/get_data_list.Rd | 26 +++++++ ...ule_aglu_L100.FAO_SUA_PrimaryEquivalent.Rd | 76 +++++++++++++++++++ .../module_aglu_L100.FAO_SUA_connection.Rd | 26 +++++++ .../module_aglu_L100.FAO_downscale_ctry.Rd | 30 -------- ...e_aglu_L100.FAO_preprocessing_OtherData.Rd | 29 +++++++ .../module_aglu_L100.GTAP_downscale_ctry.Rd | 7 +- ...odule_aglu_L100.IMAGE_downscale_ctry_yr.Rd | 2 +- ...le_aglu_L100.regional_ag_an_for_prices.Rd} | 14 ++-- .../man/module_aglu_L101.ag_FAO_R_C_Y.Rd | 5 +- .../man/module_aglu_L105.an_FAO_R_C_Y.Rd | 29 ------- ...module_aglu_L106.ag_an_NetExp_FAO_R_C_Y.Rd | 29 ------- .../module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y.Rd | 2 +- .../man/module_aglu_L108.ag_Feed_R_C_Y.Rd | 5 +- .../man/module_aglu_L109.ag_an_ALL_R_C_Y.Rd | 2 +- .../man/module_aglu_L1091.ag_GrossTrade.Rd | 28 ------- .../man/module_aglu_L111.ag_resbio_R_C.Rd | 2 +- .../module_aglu_L122.LC_R_Cropland_Yh_GLU.Rd | 2 +- ...e_aglu_L132.ag_an_For_Prices_USA_C_2005.Rd | 29 ------- .../module_aglu_L142.ag_Fert_IO_R_C_Y_GLU.Rd | 2 +- .../module_aglu_L203.ag_an_demand_input.Rd | 2 +- .../man/module_aglu_L221.land_input_1.Rd | 2 +- ...Rd => module_aglu_ag_Fert_IRR_MGMT_xml.Rd} | 10 +-- ...aglu_ag_For_Past_bio_base_IRR_MGMT_xml.Rd} | 10 +-- ... => module_aglu_ag_an_demand_input_xml.Rd} | 10 +-- ...Rd => module_aglu_ag_cost_IRR_MGMT_xml.Rd} | 10 +-- ...le_aglu_ag_prodchange_ref_IRR_MGMT_xml.Rd} | 10 +-- ...e_aglu_ag_prodchange_ssp1_IRR_MGMT_xml.Rd} | 10 +-- ...e_aglu_ag_prodchange_ssp2_IRR_MGMT_xml.Rd} | 10 +-- ...e_aglu_ag_prodchange_ssp3_IRR_MGMT_xml.Rd} | 10 +-- ...e_aglu_ag_prodchange_ssp4_IRR_MGMT_xml.Rd} | 10 +-- ...e_aglu_ag_prodchange_ssp5_IRR_MGMT_xml.Rd} | 10 +-- ...ade_xml.Rd => module_aglu_ag_trade_xml.Rd} | 10 +-- ...odule_aglu_ag_water_input_IRR_MGMT_xml.Rd} | 10 +-- ...put_xml.Rd => module_aglu_an_input_xml.Rd} | 10 +-- ...de_xml.Rd => module_aglu_bio_trade_xml.Rd} | 10 +-- .../module_aglu_data_FAO_BilateralTrade.Rd | 27 ------- ...P1_xml.Rd => module_aglu_food_SSP1_xml.Rd} | 10 +-- ...xml.Rd => module_aglu_land_input_1_xml.Rd} | 10 +-- ...xml.Rd => module_aglu_land_input_2_xml.Rd} | 10 +-- ...Rd => module_aglu_land_input_3_IRR_xml.Rd} | 10 +-- ... module_aglu_land_input_4_IRR_MGMT_xml.Rd} | 10 +-- ... module_aglu_land_input_5_IRR_MGMT_xml.Rd} | 10 +-- ...ml.Rd => module_aglu_pasture_ssp34_xml.Rd} | 10 +-- ...module_aglu_protected_land_input_2_xml.Rd} | 10 +-- ...module_aglu_protected_land_input_3_xml.Rd} | 10 +-- .../man/module_aglu_prune_empty_ag_xml.Rd | 31 ++++++++ ... module_aglu_resbio_input_IRR_MGMT_xml.Rd} | 10 +-- ...l.Rd => module_aglu_ssp3_bio_trade_xml.Rd} | 10 +-- ...d => module_aglu_ssp4_ag_bio_trade_xml.Rd} | 10 +-- ...=> module_climate_no_climate_model_xml.Rd} | 10 +-- ...ml.Rd => module_climate_xml_hector_xml.Rd} | 10 +-- ...ml.Rd => module_climate_xml_magicc_xml.Rd} | 10 +-- ...odule_emissions_L169.nonghg_NEI_scaling.Rd | 2 +- ...dule_emissions_L170.nonghg_ceds_scaling.Rd | 2 +- ...odule_emissions_L270.nonghg_nei_to_gcam.Rd | 2 +- ...Rd => module_emissions_MACC_TC_SSP_xml.Rd} | 10 +-- ...ssions_all_aglu_emissions_IRR_MGMT_xml.Rd} | 11 ++- ...ule_emissions_all_energy_emissions_xml.Rd} | 10 +-- ...odule_emissions_all_fgas_emissions_xml.Rd} | 10 +-- ...ions_all_protected_unmgd_emissions_xml.Rd} | 11 ++- ...dule_emissions_all_unmgd_emissions_xml.Rd} | 10 +-- ...odule_emissions_delete_gdp_control_xml.Rd} | 10 +-- ...module_emissions_emission_controls_xml.Rd} | 10 +-- ...issions_ind_urb_processing_sectors_xml.Rd} | 10 +-- ..._emissions_ssp15_emissions_factors_xml.Rd} | 10 +-- ...e_emissions_ssp2_emissions_factors_xml.Rd} | 10 +-- ..._emissions_ssp34_emissions_factors_xml.Rd} | 10 +-- ...coef_xml.Rd => module_energy_Ccoef_xml.Rd} | 10 +-- ...e_xml.Rd => module_energy_Cstorage_xml.Rd} | 10 +-- ...CDD_xml.Rd => module_energy_HDDCDD_xml.Rd} | 10 +-- ...dule_energy_L1092.iron_steel_GrossTrade.Rd | 27 +++++++ .../man/module_energy_L1323.iron_steel.Rd | 6 +- .../man/module_energy_L226.en_distribution.Rd | 2 +- .../man/module_energy_L2323.iron_steel.Rd | 4 +- .../module_energy_L238.iron_steel_trade.Rd | 27 +++++++ .../module_energy_L2391.gas_trade_flows.Rd | 2 +- .../man/module_energy_L2392.gas_trade.Rd | 2 +- ...module_energy_Off_road_incelas_SSP_xml.Rd} | 10 +-- ...d_xml.Rd => module_energy_Off_road_xml.Rd} | 10 +-- ...module_energy_aluminum_incelas_SSP_xml.Rd} | 10 +-- ...m_xml.Rd => module_energy_aluminum_xml.Rd} | 10 +-- ...d => module_energy_bio_externality_xml.Rd} | 10 +-- ...l.Rd => module_energy_building_SSP_xml.Rd} | 10 +-- ...l.Rd => module_energy_building_agg_xml.Rd} | 10 +-- ...l.Rd => module_energy_building_det_xml.Rd} | 10 +-- ...d => module_energy_ccs_supply_high_xml.Rd} | 10 +-- ...Rd => module_energy_ccs_supply_low_xml.Rd} | 10 +-- ...=> module_energy_ccs_supply_lowest_xml.Rd} | 10 +-- ...> module_energy_cement_incelas_SSP_xml.Rd} | 10 +-- ...ent_xml.Rd => module_energy_cement_xml.Rd} | 10 +-- ...module_energy_chemical_incelas_SSP_xml.Rd} | 10 +-- ...l_xml.Rd => module_energy_chemical_xml.Rd} | 10 +-- ...ch_dac_xml.Rd => module_energy_dac_xml.Rd} | 10 +-- ...l.Rd => module_energy_elec_bio_low_xml.Rd} | 10 +-- ...ml.Rd => module_energy_electricity_xml.Rd} | 10 +-- ...rt_xml.Rd => module_energy_en_Fert_xml.Rd} | 10 +-- ...d => module_energy_en_distribution_xml.Rd} | 10 +-- ..._xml.Rd => module_energy_en_supply_xml.Rd} | 10 +-- ...odule_energy_en_transformation_low_xml.Rd} | 10 +-- ...=> module_energy_en_transformation_xml.Rd} | 10 +-- ..._xml.Rd => module_energy_gas_trade_xml.Rd} | 10 +-- ...dv_xml.Rd => module_energy_geo_adv_xml.Rd} | 10 +-- ...ow_xml.Rd => module_energy_geo_low_xml.Rd} | 10 +-- ...l.Rd => module_energy_geo_tech_adv_xml.Rd} | 10 +-- ..._heat_xml.Rd => module_energy_heat_xml.Rd} | 10 +-- ....Rd => module_energy_high_cost_ccs_xml.Rd} | 10 +-- ...n_xml.Rd => module_energy_hydrogen_xml.Rd} | 10 +-- ...dule_energy_iron_steel_incelas_SSP_xml.Rd} | 10 +-- .../man/module_energy_iron_steel_trade_xml.Rd | 21 +++++ ...xml.Rd => module_energy_iron_steel_xml.Rd} | 10 +-- ...Rd => module_energy_liquids_limits_xml.Rd} | 10 +-- ...e_energy_negative_emissions_budget_xml.Rd} | 10 +-- ...d => module_energy_no_offshore_ccs_xml.Rd} | 10 +-- ...ml.Rd => module_energy_nuclear_adv_xml.Rd} | 10 +-- ...ml.Rd => module_energy_nuclear_low_xml.Rd} | 10 +-- ...l.Rd => module_energy_onshore_wind_xml.Rd} | 10 +-- ..._energy_other_industry_incelas_SSP_xml.Rd} | 10 +-- ...Rd => module_energy_other_industry_xml.Rd} | 10 +-- ....Rd => module_energy_resources_SSP_xml.Rd} | 10 +-- ..._xml.Rd => module_energy_resources_xml.Rd} | 10 +-- ..._xml.Rd => module_energy_solar_adv_xml.Rd} | 10 +-- ..._xml.Rd => module_energy_solar_low_xml.Rd} | 10 +-- ...ule_energy_transportation_UCD_CORE_xml.Rd} | 10 +-- .../man/module_energy_turn_off_ccs_xml.Rd | 24 ++++++ ...v_xml.Rd => module_energy_wind_adv_xml.Rd} | 10 +-- ...w_xml.Rd => module_energy_wind_low_xml.Rd} | 10 +-- ..._xml.Rd => module_gcamusa_Cstorage_xml.Rd} | 10 +-- ..._USA_xml.Rd => module_gcamusa_Fert_xml.Rd} | 10 +-- ...d => module_gcamusa_HDDCDD_A2_GFDL_xml.Rd} | 10 +-- ... => module_gcamusa_HDDCDD_AEO_2015_xml.Rd} | 10 +-- ... => module_gcamusa_HDDCDD_constdds_xml.Rd} | 10 +-- ...=> module_gcamusa_L101.nonghg_en_S_T_Y.Rd} | 10 +-- ...Rd => module_gcamusa_L102.ghg_en_S_T_Y.Rd} | 10 +-- ...Rd => module_gcamusa_L103.ghg_an_S_T_Y.Rd} | 10 +-- ...d => module_gcamusa_L103.water_mapping.Rd} | 10 +-- ...d => module_gcamusa_L104.bcoc_en_S_T_Y.Rd} | 10 +-- ...Rd => module_gcamusa_L105.nh3_an_S_T_Y.Rd} | 10 +-- .../gcamdata/man/module_gcamusa_L114.wind.Rd | 2 +- .../man/module_gcamusa_L115.rooftopPV.Rd | 2 +- .../gcamdata/man/module_gcamusa_L119.solar.Rd | 2 +- ...odule_gcamusa_L120.offshore_wind_reeds.Rd} | 10 +-- ....Rd => module_gcamusa_L1233.elec_water.Rd} | 10 +-- ... module_gcamusa_L1234.elec_gridregions.Rd} | 10 +-- ...odule_gcamusa_L1235.elec_load_segments.Rd} | 10 +-- ...camusa_L1236.elec_load_segments_solver.Rd} | 10 +-- ...ule_gcamusa_L1239.elec_state_fractions.Rd} | 10 +-- ...Rd => module_gcamusa_L131.enduse_noEFW.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L132.industry.Rd} | 10 +-- ...dule_gcamusa_L132.water_demand_industry.Rd | 2 +- .../man/module_gcamusa_L1321.cement.Rd | 2 +- ...=> module_gcamusa_L133.ag_Costs_C_2005.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L142.Building.Rd} | 10 +-- .../man/module_gcamusa_L143.HDDCDD.Rd | 2 +- ...ule_gcamusa_L145.water_demand_municipal.Rd | 2 +- .../man/module_gcamusa_L161.Cstorage.Rd | 2 +- ...odule_gcamusa_L164.ag_Costs_C_2005_irr.Rd} | 10 +-- ...A.Rd => module_gcamusa_L171.nonghg_trn.Rd} | 10 +-- ... => module_gcamusa_L201.socioeconomics.Rd} | 12 +-- ...USA.Rd => module_gcamusa_L203.water_td.Rd} | 10 +-- ...SA.Rd => module_gcamusa_L210.resources.Rd} | 10 +-- ... module_gcamusa_L222.en_transformation.Rd} | 10 +-- ....Rd => module_gcamusa_L223.electricity.Rd} | 10 +-- ...A.Rd => module_gcamusa_L2231.nonewcoal.Rd} | 10 +-- ... module_gcamusa_L2232.electricity_FERC.Rd} | 10 +-- ...dule_gcamusa_L2233.elec_segments_water.Rd} | 10 +-- ... => module_gcamusa_L2234.elec_segments.Rd} | 10 +-- ...odule_gcamusa_L2235.elec_segments_FERC.Rd} | 10 +-- ...dule_gcamusa_L2236.elecS_ghg_emissions.Rd} | 10 +-- ....Rd => module_gcamusa_L2237.wind_reeds.Rd} | 10 +-- ...SA.Rd => module_gcamusa_L2238.PV_reeds.Rd} | 10 +-- ...A.Rd => module_gcamusa_L2239.CSP_reeds.Rd} | 10 +-- ...Rd => module_gcamusa_L2241.coal_retire.Rd} | 10 +-- ....Rd => module_gcamusa_L2242.elec_hydro.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L2244.nuclear.Rd} | 10 +-- ... module_gcamusa_L2245.geothermal_fixed.Rd} | 10 +-- ... module_gcamusa_L2247.elecS_tech_costs.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L225.hydrogen.Rd} | 10 +-- ...=> module_gcamusa_L226.en_distribution.Rd} | 10 +-- ... module_gcamusa_L2261.regional_biomass.Rd} | 10 +-- ....Rd => module_gcamusa_L231.proc_sector.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L232.industry.Rd} | 16 ++-- ...dule_gcamusa_L232.water_demand_industry.Rd | 2 +- ..._USA.Rd => module_gcamusa_L2321.cement.Rd} | 10 +-- ...rt_USA.Rd => module_gcamusa_L2322.Fert.Rd} | 10 +-- ... module_gcamusa_L2322.industry_vintage.Rd} | 10 +-- ...USA.Rd => module_gcamusa_L244.building.Rd} | 10 +-- ...ule_gcamusa_L245.water_demand_municipal.Rd | 2 +- ... => module_gcamusa_L254.transportation.Rd} | 10 +-- ... => module_gcamusa_L261.carbon_storage.Rd} | 10 +-- ....dac_USA.Rd => module_gcamusa_L262.dac.Rd} | 10 +-- ...s_USA.Rd => module_gcamusa_L270.limits.Rd} | 10 +-- ..._USA.Rd => module_gcamusa_L271.ghg_trn.Rd} | 10 +-- ...A.Rd => module_gcamusa_L271.nonghg_trn.Rd} | 10 +-- ...A.Rd => module_gcamusa_L272.elc_nonghg.Rd} | 10 +-- ...camusa_L2722.nonghg_elc_linear_control.Rd} | 10 +-- ...> module_gcamusa_L273.en_ghg_emissions.Rd} | 10 +-- ...=> module_gcamusa_L273.nonghg_refinery.Rd} | 10 +-- ...A.Rd => module_gcamusa_L274.nonghg_bld.Rd} | 10 +-- ...> module_gcamusa_L275.indenergy_nonghg.Rd} | 10 +-- ...=> module_gcamusa_L276.nonghg_othertrn.Rd} | 10 +-- ..._USA.Rd => module_gcamusa_L277.ghg_prc.Rd} | 12 +-- ...A.Rd => module_gcamusa_L277.nonghg_prc.Rd} | 10 +-- ...Rd => module_gcamusa_bld_emissions_xml.Rd} | 10 +-- ..._xml.Rd => module_gcamusa_building_xml.Rd} | 10 +-- ...SA_xml.Rd => module_gcamusa_cement_xml.Rd} | 10 +-- ...ml.Rd => module_gcamusa_coal_delay_xml.Rd} | 10 +-- ...l.Rd => module_gcamusa_coal_retire_xml.Rd} | 10 +-- ...c_USA_xml.Rd => module_gcamusa_dac_xml.Rd} | 10 +-- ...Rd => module_gcamusa_elc_emissions_xml.Rd} | 10 +-- ... => module_gcamusa_elecS_costs_itc_xml.Rd} | 10 +-- ... => module_gcamusa_elecS_costs_ptc_xml.Rd} | 10 +-- ..._gcamusa_elecS_ghg_emissions_water_xml.Rd} | 11 ++- ...ml.Rd => module_gcamusa_elec_hydro_xml.Rd} | 10 +-- ...module_gcamusa_elec_segments_water_xml.Rd} | 10 +-- ...Rd => module_gcamusa_elec_segments_xml.Rd} | 10 +-- ...SA_xml.Rd => module_gcamusa_electd_xml.Rd} | 10 +-- ...l.Rd => module_gcamusa_electricity_xml.Rd} | 10 +-- ...xml.Rd => module_gcamusa_en_prices_xml.Rd} | 10 +-- ...> module_gcamusa_en_transformation_xml.Rd} | 10 +-- ...=> module_gcamusa_geothermal_fixed_xml.Rd} | 10 +-- ...Rd => module_gcamusa_ghg_emissions_xml.Rd} | 10 +-- ..._xml.Rd => module_gcamusa_hydrogen_xml.Rd} | 10 +-- ...ule_gcamusa_ind_urb_proc_emissions_xml.Rd} | 12 +-- ...gcamusa_ind_urb_processing_sectors_xml.Rd} | 11 ++- ...module_gcamusa_indenergy_emissions_xml.Rd} | 10 +-- ...=> module_gcamusa_industry_vintage_xml.Rd} | 10 +-- ..._xml.Rd => module_gcamusa_industry_xml.Rd} | 10 +-- ... module_gcamusa_liquids_limits_usa_xml.Rd} | 10 +-- ...musa_negative_emissions_budget_usa_xml.Rd} | 11 ++- ...xml.Rd => module_gcamusa_nonewcoal_xml.Rd} | 10 +-- ...A_xml.Rd => module_gcamusa_nuclear_xml.Rd} | 10 +-- ... module_gcamusa_othertrn_emissions_xml.Rd} | 10 +-- ..._gcamusa_refinery_nonghg_emissions_xml.Rd} | 11 ++- ...=> module_gcamusa_regional_biomass_xml.Rd} | 10 +-- ...xml.Rd => module_gcamusa_resources_xml.Rd} | 10 +-- ...d => module_gcamusa_socioeconomics_xml.Rd} | 10 +-- ...l.Rd => module_gcamusa_solar_reeds_xml.Rd} | 10 +-- ...module_gcamusa_transport_emissions_xml.Rd} | 10 +-- ...d => module_gcamusa_transportation_xml.Rd} | 10 +-- ...> module_gcamusa_trn_ghg_emissions_xml.Rd} | 10 +-- ...dule_gcamusa_water_demand_industry_xml.Rd} | 10 +-- ...ule_gcamusa_water_demand_municipal_xml.Rd} | 10 +-- ..._xml.Rd => module_gcamusa_water_td_xml.Rd} | 10 +-- ...ml.Rd => module_gcamusa_wind_reeds_xml.Rd} | 10 +-- ...l.Rd => module_modeltime_modeltime_xml.Rd} | 10 +-- .../man/module_socio_L180.GDP_macro.Rd | 28 +++++++ .../module_socio_L201.Pop_GDP_scenarios.Rd | 2 +- .../man/module_socio_L280.GDP_macro.Rd | 28 +++++++ ...odule_socio_L281.macro_account_tracking.Rd | 32 ++++++++ ...tch_SSP_xml.Rd => module_socio_SSP_xml.Rd} | 10 +-- ...agg_xml.Rd => module_socio_bld_agg_xml.Rd} | 10 +-- .../man/module_socioeconomics_macro_xml.Rd | 22 ++++++ ...> module_water_EFW_WWtrt_coefs_SSP_xml.Rd} | 10 +-- ...Rd => module_water_EFW_input_coefs_xml.Rd} | 10 +-- ....Rd => module_water_EFW_irrigation_xml.Rd} | 10 +-- ... => module_water_EFW_manufacturing_xml.Rd} | 10 +-- ...l.Rd => module_water_EFW_municipal_xml.Rd} | 10 +-- ...ml.Rd => module_water_desalination_xml.Rd} | 10 +-- ...dule_water_electricity_water_coefs_xml.Rd} | 10 +-- ... => module_water_electricity_water_xml.Rd} | 10 +-- ...odule_water_unlimited_water_supply_xml.Rd} | 10 +-- ...module_water_water_demand_industry_xml.Rd} | 10 +-- ...odule_water_water_demand_livestock_xml.Rd} | 10 +-- ...odule_water_water_demand_municipal_xml.Rd} | 10 +-- ... module_water_water_demand_primary_xml.Rd} | 10 +-- ...le_water_water_elec_liquids_limits_xml.Rd} | 10 +-- ...ule_water_water_supply_constrained_xml.Rd} | 10 +-- ...le_water_water_supply_uncalibrated_xml.Rd} | 10 +-- ...td_xml.Rd => module_water_water_td_xml.Rd} | 10 +-- input/gcamdata/man/rename_gcamdata_chunks.Rd | 18 +++++ input/gcamdata/man/return_data.Rd | 2 +- 276 files changed, 1635 insertions(+), 1327 deletions(-) create mode 100644 input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION.Rd create mode 100644 input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL.Rd create mode 100644 input/gcamdata/man/Moving_average.Rd create mode 100644 input/gcamdata/man/get_data_list.Rd create mode 100644 input/gcamdata/man/module_aglu_L100.FAO_SUA_PrimaryEquivalent.Rd create mode 100644 input/gcamdata/man/module_aglu_L100.FAO_SUA_connection.Rd delete mode 100644 input/gcamdata/man/module_aglu_L100.FAO_downscale_ctry.Rd create mode 100644 input/gcamdata/man/module_aglu_L100.FAO_preprocessing_OtherData.Rd rename input/gcamdata/man/{module_aglu_L1321.regional_ag_prices.Rd => module_aglu_L100.regional_ag_an_for_prices.Rd} (60%) delete mode 100644 input/gcamdata/man/module_aglu_L105.an_FAO_R_C_Y.Rd delete mode 100644 input/gcamdata/man/module_aglu_L106.ag_an_NetExp_FAO_R_C_Y.Rd delete mode 100644 input/gcamdata/man/module_aglu_L1091.ag_GrossTrade.Rd delete mode 100644 input/gcamdata/man/module_aglu_L132.ag_an_For_Prices_USA_C_2005.Rd rename input/gcamdata/man/{module_aglu_batch_ag_Fert_IRR_MGMT_xml.Rd => module_aglu_ag_Fert_IRR_MGMT_xml.Rd} (67%) rename input/gcamdata/man/{module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml.Rd => module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml.Rd} (63%) rename input/gcamdata/man/{module_aglu_batch_ag_an_demand_input_xml.Rd => module_aglu_ag_an_demand_input_xml.Rd} (66%) rename input/gcamdata/man/{module_aglu_batch_ag_cost_IRR_MGMT_xml.Rd => module_aglu_ag_cost_IRR_MGMT_xml.Rd} (67%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ref_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml.Rd => module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_aglu_batch_ag_trade_xml.Rd => module_aglu_ag_trade_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_ag_water_input_IRR_MGMT_xml.Rd => module_aglu_ag_water_input_IRR_MGMT_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_an_input_xml.Rd => module_aglu_an_input_xml.Rd} (69%) rename input/gcamdata/man/{module_aglu_batch_bio_trade_xml.Rd => module_aglu_bio_trade_xml.Rd} (69%) delete mode 100644 input/gcamdata/man/module_aglu_data_FAO_BilateralTrade.Rd rename input/gcamdata/man/{module_aglu_batch_food_SSP1_xml.Rd => module_aglu_food_SSP1_xml.Rd} (69%) rename input/gcamdata/man/{module_aglu_batch_land_input_1_xml.Rd => module_aglu_land_input_1_xml.Rd} (68%) rename input/gcamdata/man/{module_aglu_batch_land_input_2_xml.Rd => module_aglu_land_input_2_xml.Rd} (68%) rename input/gcamdata/man/{module_aglu_batch_land_input_3_IRR_xml.Rd => module_aglu_land_input_3_IRR_xml.Rd} (67%) rename input/gcamdata/man/{module_aglu_batch_land_input_4_IRR_MGMT_xml.Rd => module_aglu_land_input_4_IRR_MGMT_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_land_input_5_IRR_MGMT_xml.Rd => module_aglu_land_input_5_IRR_MGMT_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_pasture_ssp34_xml.Rd => module_aglu_pasture_ssp34_xml.Rd} (68%) rename input/gcamdata/man/{module_aglu_batch_protected_land_input_2_xml.Rd => module_aglu_protected_land_input_2_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_protected_land_input_3_xml.Rd => module_aglu_protected_land_input_3_xml.Rd} (65%) create mode 100644 input/gcamdata/man/module_aglu_prune_empty_ag_xml.Rd rename input/gcamdata/man/{module_aglu_batch_resbio_input_IRR_MGMT_xml.Rd => module_aglu_resbio_input_IRR_MGMT_xml.Rd} (65%) rename input/gcamdata/man/{module_aglu_batch_ssp3_bio_trade_xml.Rd => module_aglu_ssp3_bio_trade_xml.Rd} (67%) rename input/gcamdata/man/{module_aglu_batch_ssp4_ag_bio_trade_xml.Rd => module_aglu_ssp4_ag_bio_trade_xml.Rd} (67%) rename input/gcamdata/man/{module_climate_batch_no_climate_model_xml.Rd => module_climate_no_climate_model_xml.Rd} (62%) rename input/gcamdata/man/{module_climate_xml_batch_hector_xml.Rd => module_climate_xml_hector_xml.Rd} (68%) rename input/gcamdata/man/{module_climate_xml_batch_magicc_xml.Rd => module_climate_xml_magicc_xml.Rd} (68%) rename input/gcamdata/man/{module_emissions_batch_MACC_TC_SSP_xml.Rd => module_emissions_MACC_TC_SSP_xml.Rd} (65%) rename input/gcamdata/man/{module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml.Rd => module_emissions_all_aglu_emissions_IRR_MGMT_xml.Rd} (64%) rename input/gcamdata/man/{module_emissions_batch_all_energy_emissions_xml.Rd => module_emissions_all_energy_emissions_xml.Rd} (65%) rename input/gcamdata/man/{module_emissions_batch_all_fgas_emissions_xml.Rd => module_emissions_all_fgas_emissions_xml.Rd} (66%) rename input/gcamdata/man/{module_emissions_batch_all_protected_unmgd_emissions_xml.Rd => module_emissions_all_protected_unmgd_emissions_xml.Rd} (62%) rename input/gcamdata/man/{module_emissions_batch_all_unmgd_emissions_xml.Rd => module_emissions_all_unmgd_emissions_xml.Rd} (64%) rename input/gcamdata/man/{module_emissions_batch_delete_gdp_control_xml.Rd => module_emissions_delete_gdp_control_xml.Rd} (64%) rename input/gcamdata/man/{module_emissions_batch_emission_controls_xml.Rd => module_emissions_emission_controls_xml.Rd} (64%) rename input/gcamdata/man/{module_emissions_batch_ind_urb_processing_sectors_xml.Rd => module_emissions_ind_urb_processing_sectors_xml.Rd} (64%) rename input/gcamdata/man/{module_emissions_batch_ssp15_emissions_factors_xml.Rd => module_emissions_ssp15_emissions_factors_xml.Rd} (63%) rename input/gcamdata/man/{module_emissions_batch_ssp2_emissions_factors_xml.Rd => module_emissions_ssp2_emissions_factors_xml.Rd} (63%) rename input/gcamdata/man/{module_emissions_batch_ssp34_emissions_factors_xml.Rd => module_emissions_ssp34_emissions_factors_xml.Rd} (63%) rename input/gcamdata/man/{module_energy_batch_Ccoef_xml.Rd => module_energy_Ccoef_xml.Rd} (70%) rename input/gcamdata/man/{module_energy_batch_Cstorage_xml.Rd => module_energy_Cstorage_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_HDDCDD_xml.Rd => module_energy_HDDCDD_xml.Rd} (71%) create mode 100644 input/gcamdata/man/module_energy_L1092.iron_steel_GrossTrade.Rd create mode 100644 input/gcamdata/man/module_energy_L238.iron_steel_trade.Rd rename input/gcamdata/man/{module_energy_batch_Off_road_incelas_SSP_xml.Rd => module_energy_Off_road_incelas_SSP_xml.Rd} (74%) rename input/gcamdata/man/{module_energy_batch_Off_road_xml.Rd => module_energy_Off_road_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_aluminum_incelas_SSP_xml.Rd => module_energy_aluminum_incelas_SSP_xml.Rd} (74%) rename input/gcamdata/man/{module_energy_batch_aluminum_xml.Rd => module_energy_aluminum_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_bio_externality_xml.Rd => module_energy_bio_externality_xml.Rd} (65%) rename input/gcamdata/man/{module_energy_batch_building_SSP_xml.Rd => module_energy_building_SSP_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_building_agg_xml.Rd => module_energy_building_agg_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_building_det_xml.Rd => module_energy_building_det_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_ccs_supply_high_xml.Rd => module_energy_ccs_supply_high_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_ccs_supply_low_xml.Rd => module_energy_ccs_supply_low_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_ccs_supply_lowest_xml.Rd => module_energy_ccs_supply_lowest_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_cement_incelas_SSP_xml.Rd => module_energy_cement_incelas_SSP_xml.Rd} (74%) rename input/gcamdata/man/{module_energy_batch_cement_xml.Rd => module_energy_cement_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_chemical_incelas_SSP_xml.Rd => module_energy_chemical_incelas_SSP_xml.Rd} (74%) rename input/gcamdata/man/{module_energy_batch_chemical_xml.Rd => module_energy_chemical_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_dac_xml.Rd => module_energy_dac_xml.Rd} (71%) rename input/gcamdata/man/{module_energy_batch_elec_bio_low_xml.Rd => module_energy_elec_bio_low_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_electricity_xml.Rd => module_energy_electricity_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_en_Fert_xml.Rd => module_energy_en_Fert_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_en_distribution_xml.Rd => module_energy_en_distribution_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_en_supply_xml.Rd => module_energy_en_supply_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_en_transformation_low_xml.Rd => module_energy_en_transformation_low_xml.Rd} (65%) rename input/gcamdata/man/{module_energy_batch_en_transformation_xml.Rd => module_energy_en_transformation_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_gas_trade_xml.Rd => module_energy_gas_trade_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_geo_adv_xml.Rd => module_energy_geo_adv_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_geo_low_xml.Rd => module_energy_geo_low_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_geo_tech_adv_xml.Rd => module_energy_geo_tech_adv_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_heat_xml.Rd => module_energy_heat_xml.Rd} (70%) rename input/gcamdata/man/{module_energy_batch_high_cost_ccs_xml.Rd => module_energy_high_cost_ccs_xml.Rd} (67%) rename input/gcamdata/man/{module_energy_batch_hydrogen_xml.Rd => module_energy_hydrogen_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_iron_steel_incelas_SSP_xml.Rd => module_energy_iron_steel_incelas_SSP_xml.Rd} (73%) create mode 100644 input/gcamdata/man/module_energy_iron_steel_trade_xml.Rd rename input/gcamdata/man/{module_energy_batch_iron_steel_xml.Rd => module_energy_iron_steel_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_liquids_limits_xml.Rd => module_energy_liquids_limits_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_negative_emissions_budget_xml.Rd => module_energy_negative_emissions_budget_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_no_offshore_ccs_xml.Rd => module_energy_no_offshore_ccs_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_nuclear_adv_xml.Rd => module_energy_nuclear_adv_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_nuclear_low_xml.Rd => module_energy_nuclear_low_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_onshore_wind_xml.Rd => module_energy_onshore_wind_xml.Rd} (62%) rename input/gcamdata/man/{module_energy_batch_other_industry_incelas_SSP_xml.Rd => module_energy_other_industry_incelas_SSP_xml.Rd} (73%) rename input/gcamdata/man/{module_energy_batch_other_industry_xml.Rd => module_energy_other_industry_xml.Rd} (66%) rename input/gcamdata/man/{module_energy_batch_resources_SSP_xml.Rd => module_energy_resources_SSP_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_resources_xml.Rd => module_energy_resources_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_solar_adv_xml.Rd => module_energy_solar_adv_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_solar_low_xml.Rd => module_energy_solar_low_xml.Rd} (68%) rename input/gcamdata/man/{module_energy_batch_transportation_UCD_CORE_xml.Rd => module_energy_transportation_UCD_CORE_xml.Rd} (64%) create mode 100644 input/gcamdata/man/module_energy_turn_off_ccs_xml.Rd rename input/gcamdata/man/{module_energy_batch_wind_adv_xml.Rd => module_energy_wind_adv_xml.Rd} (69%) rename input/gcamdata/man/{module_energy_batch_wind_low_xml.Rd => module_energy_wind_low_xml.Rd} (69%) rename input/gcamdata/man/{module_gcamusa_batch_Cstorage_USA_xml.Rd => module_gcamusa_Cstorage_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_Fert_USA_xml.Rd => module_gcamusa_Fert_xml.Rd} (68%) rename input/gcamdata/man/{module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml.Rd => module_gcamusa_HDDCDD_A2_GFDL_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml.Rd => module_gcamusa_HDDCDD_AEO_2015_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_HDDCDD_constdds_USA_xml.Rd => module_gcamusa_HDDCDD_constdds_xml.Rd} (60%) rename input/gcamdata/man/{module_emissions_L101.nonghg_en_USA_S_T_Y.Rd => module_gcamusa_L101.nonghg_en_S_T_Y.Rd} (83%) rename input/gcamdata/man/{module_emissions_L102.ghg_en_USA_S_T_Y.Rd => module_gcamusa_L102.ghg_en_S_T_Y.Rd} (75%) rename input/gcamdata/man/{module_emissions_L103.ghg_an_USA_S_T_Y.Rd => module_gcamusa_L103.ghg_an_S_T_Y.Rd} (76%) rename input/gcamdata/man/{module_gcamusa_L103.water_mapping_USA.Rd => module_gcamusa_L103.water_mapping.Rd} (74%) rename input/gcamdata/man/{module_emissions_L104.bcoc_en_USA_S_T_Y.Rd => module_gcamusa_L104.bcoc_en_S_T_Y.Rd} (72%) rename input/gcamdata/man/{module_emissions_L105.nh3_an_USA_S_T_Y.Rd => module_gcamusa_L105.nh3_an_S_T_Y.Rd} (78%) rename input/gcamdata/man/{module_gcamusa_L120.offshore_wind_reeds_USA.Rd => module_gcamusa_L120.offshore_wind_reeds.Rd} (82%) rename input/gcamdata/man/{module_gcamusa_L1233.elec_water_USA.Rd => module_gcamusa_L1233.elec_water.Rd} (75%) rename input/gcamdata/man/{module_gcamusa_L1234.elec_gridregions_USA.Rd => module_gcamusa_L1234.elec_gridregions.Rd} (78%) rename input/gcamdata/man/{module_gcamusa_L1235.elec_load_segments_USA.Rd => module_gcamusa_L1235.elec_load_segments.Rd} (81%) rename input/gcamdata/man/{module_gcamusa_L1236.elec_load_segments_solver_USA.Rd => module_gcamusa_L1236.elec_load_segments_solver.Rd} (78%) rename input/gcamdata/man/{module_gcamusa_L1239.elec_state_fractions_USA.Rd => module_gcamusa_L1239.elec_state_fractions.Rd} (79%) rename input/gcamdata/man/{module_gcamusa_L131.enduse_noEFW_USA.Rd => module_gcamusa_L131.enduse_noEFW.Rd} (76%) rename input/gcamdata/man/{module_gcamusa_L132.industry_USA.Rd => module_gcamusa_L132.industry.Rd} (79%) rename input/gcamdata/man/{module_aglu_L133.ag_Costs_USA_C_2005.Rd => module_gcamusa_L133.ag_Costs_C_2005.Rd} (83%) rename input/gcamdata/man/{module_gcamusa_L142.Building_USA.Rd => module_gcamusa_L142.Building.Rd} (76%) rename input/gcamdata/man/{module_aglu_L164.ag_Costs_USA_C_2005_irr.Rd => module_gcamusa_L164.ag_Costs_C_2005_irr.Rd} (83%) rename input/gcamdata/man/{module_gcamusa_L171.nonghg_trn_USA.Rd => module_gcamusa_L171.nonghg_trn.Rd} (85%) rename input/gcamdata/man/{module_gcamusa_L201.socioeconomics_USA.Rd => module_gcamusa_L201.socioeconomics.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_L203.water_td_USA.Rd => module_gcamusa_L203.water_td.Rd} (80%) rename input/gcamdata/man/{module_gcamusa_L210.resources_USA.Rd => module_gcamusa_L210.resources.Rd} (84%) rename input/gcamdata/man/{module_gcamusa_L222.en_transformation_USA.Rd => module_gcamusa_L222.en_transformation.Rd} (89%) rename input/gcamdata/man/{module_gcamusa_L223.electricity_USA.Rd => module_gcamusa_L223.electricity.Rd} (90%) rename input/gcamdata/man/{module_gcamusa_L2231.nonewcoal_USA.Rd => module_gcamusa_L2231.nonewcoal.Rd} (79%) rename input/gcamdata/man/{module_gcamusa_L2232.electricity_FERC_USA.Rd => module_gcamusa_L2232.electricity_FERC.Rd} (87%) rename input/gcamdata/man/{module_gcamusa_L2233.elec_segments_water_USA.Rd => module_gcamusa_L2233.elec_segments_water.Rd} (93%) rename input/gcamdata/man/{module_gcamusa_L2234.elec_segments_USA.Rd => module_gcamusa_L2234.elec_segments.Rd} (90%) rename input/gcamdata/man/{module_gcamusa_L2235.elec_segments_FERC_USA.Rd => module_gcamusa_L2235.elec_segments_FERC.Rd} (90%) rename input/gcamdata/man/{module_gcamusa_L2236.elecS_ghg_emissions_USA.Rd => module_gcamusa_L2236.elecS_ghg_emissions.Rd} (80%) rename input/gcamdata/man/{module_gcamusa_L2237.wind_reeds_USA.Rd => module_gcamusa_L2237.wind_reeds.Rd} (77%) rename input/gcamdata/man/{module_gcamusa_L2238.PV_reeds_USA.Rd => module_gcamusa_L2238.PV_reeds.Rd} (82%) rename input/gcamdata/man/{module_gcamusa_L2239.CSP_reeds_USA.Rd => module_gcamusa_L2239.CSP_reeds.Rd} (81%) rename input/gcamdata/man/{module_gcamusa_L2241.coal_retire_USA.Rd => module_gcamusa_L2241.coal_retire.Rd} (88%) rename input/gcamdata/man/{module_gcamusa_L2242.elec_hydro_USA.Rd => module_gcamusa_L2242.elec_hydro.Rd} (73%) rename input/gcamdata/man/{module_gcamusa_L2244.nuclear_USA.Rd => module_gcamusa_L2244.nuclear.Rd} (83%) rename input/gcamdata/man/{module_gcamusa_L2245.geothermal_fixed_USA.Rd => module_gcamusa_L2245.geothermal_fixed.Rd} (80%) rename input/gcamdata/man/{module_gcamusa_L2247.elecS_tech_costs_USA.Rd => module_gcamusa_L2247.elecS_tech_costs.Rd} (89%) rename input/gcamdata/man/{module_gcamusa_L225.hydrogen_USA.Rd => module_gcamusa_L225.hydrogen.Rd} (75%) rename input/gcamdata/man/{module_gcamusa_L226.en_distribution_USA.Rd => module_gcamusa_L226.en_distribution.Rd} (90%) rename input/gcamdata/man/{module_gcamusa_L2261.regional_biomass_USA.Rd => module_gcamusa_L2261.regional_biomass.Rd} (88%) rename input/gcamdata/man/{module_gcamusa_L231.proc_sector_USA.Rd => module_gcamusa_L231.proc_sector.Rd} (86%) rename input/gcamdata/man/{module_gcamusa_L232.industry_USA.Rd => module_gcamusa_L232.industry.Rd} (72%) rename input/gcamdata/man/{module_gcamusa_L2321.cement_USA.Rd => module_gcamusa_L2321.cement.Rd} (84%) rename input/gcamdata/man/{module_gcamusa_L2322.Fert_USA.Rd => module_gcamusa_L2322.Fert.Rd} (85%) rename input/gcamdata/man/{module_gcamusa_L2322.industry_vintage_USA.Rd => module_gcamusa_L2322.industry_vintage.Rd} (80%) rename input/gcamdata/man/{module_gcamusa_L244.building_USA.Rd => module_gcamusa_L244.building.Rd} (89%) rename input/gcamdata/man/{module_gcamusa_L254.transportation_USA.Rd => module_gcamusa_L254.transportation.Rd} (91%) rename input/gcamdata/man/{module_gcamusa_L261.carbon_storage_USA.Rd => module_gcamusa_L261.carbon_storage.Rd} (81%) rename input/gcamdata/man/{module_gcamusa_L262.dac_USA.Rd => module_gcamusa_L262.dac.Rd} (88%) rename input/gcamdata/man/{module_gcamusa_L270.limits_USA.Rd => module_gcamusa_L270.limits.Rd} (83%) rename input/gcamdata/man/{module_gcamusa_L271.ghg_trn_USA.Rd => module_gcamusa_L271.ghg_trn.Rd} (75%) rename input/gcamdata/man/{module_gcamusa_L271.nonghg_trn_USA.Rd => module_gcamusa_L271.nonghg_trn.Rd} (74%) rename input/gcamdata/man/{module_gcamusa_L272.elc_nonghg_USA.Rd => module_gcamusa_L272.elc_nonghg.Rd} (76%) rename input/gcamdata/man/{module_gcamusa_L2722.nonghg_elc_linear_control_USA.Rd => module_gcamusa_L2722.nonghg_elc_linear_control.Rd} (75%) rename input/gcamdata/man/{module_gcamusa_L273.en_ghg_emissions_USA.Rd => module_gcamusa_L273.en_ghg_emissions.Rd} (75%) rename input/gcamdata/man/{module_gcamusa_L273.nonghg_refinery_USA.Rd => module_gcamusa_L273.nonghg_refinery.Rd} (68%) rename input/gcamdata/man/{module_gcamusa_L274.nonghg_bld_USA.Rd => module_gcamusa_L274.nonghg_bld.Rd} (73%) rename input/gcamdata/man/{module_gcamusa_L275.indenergy_nonghg_USA.Rd => module_gcamusa_L275.indenergy_nonghg.Rd} (72%) rename input/gcamdata/man/{module_gcamusa_L276.nonghg_othertrn_USA.Rd => module_gcamusa_L276.nonghg_othertrn.Rd} (73%) rename input/gcamdata/man/{module_gcamusa_L277.ghg_prc_USA.Rd => module_gcamusa_L277.ghg_prc.Rd} (76%) rename input/gcamdata/man/{module_gcamusa_L277.nonghg_prc_USA.Rd => module_gcamusa_L277.nonghg_prc.Rd} (79%) rename input/gcamdata/man/{module_gcamusa_batch_bld_emissions_USA_xml.Rd => module_gcamusa_bld_emissions_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_building_USA_xml.Rd => module_gcamusa_building_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_cement_USA_xml.Rd => module_gcamusa_cement_xml.Rd} (68%) rename input/gcamdata/man/{module_gcamusa_batch_coal_delay_USA_xml.Rd => module_gcamusa_coal_delay_xml.Rd} (61%) rename input/gcamdata/man/{module_gcamusa_batch_coal_retire_USA_xml.Rd => module_gcamusa_coal_retire_xml.Rd} (62%) rename input/gcamdata/man/{module_gcamusa_batch_dac_USA_xml.Rd => module_gcamusa_dac_xml.Rd} (70%) rename input/gcamdata/man/{module_gcamusa_batch_elc_emissions_USA_xml.Rd => module_gcamusa_elc_emissions_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_elecS_costs_USA_itc_xml.Rd => module_gcamusa_elecS_costs_itc_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_elecS_costs_USA_ptc_xml.Rd => module_gcamusa_elecS_costs_ptc_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml.Rd => module_gcamusa_elecS_ghg_emissions_water_xml.Rd} (62%) rename input/gcamdata/man/{module_gcamusa_batch_elec_hydro_USA_xml.Rd => module_gcamusa_elec_hydro_xml.Rd} (66%) rename input/gcamdata/man/{module_gcamusa_batch_elec_segments_water_USA_xml.Rd => module_gcamusa_elec_segments_water_xml.Rd} (63%) rename input/gcamdata/man/{module_gcamusa_batch_elec_segments_USA_xml.Rd => module_gcamusa_elec_segments_xml.Rd} (66%) rename input/gcamdata/man/{module_gcamusa_batch_electd_USA_xml.Rd => module_gcamusa_electd_xml.Rd} (68%) rename input/gcamdata/man/{module_gcamusa_batch_electricity_USA_xml.Rd => module_gcamusa_electricity_xml.Rd} (66%) rename input/gcamdata/man/{module_gcamusa_batch_en_prices_USA_xml.Rd => module_gcamusa_en_prices_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_en_transformation_USA_xml.Rd => module_gcamusa_en_transformation_xml.Rd} (64%) rename input/gcamdata/man/{module_gcamusa_batch_geothermal_fixed_USA_xml.Rd => module_gcamusa_geothermal_fixed_xml.Rd} (59%) rename input/gcamdata/man/{module_gcamusa_batch_ghg_emissions_USA_xml.Rd => module_gcamusa_ghg_emissions_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_hydrogen_USA_xml.Rd => module_gcamusa_hydrogen_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_ind_urb_proc_emissions_USA_xml.Rd => module_gcamusa_ind_urb_proc_emissions_xml.Rd} (50%) rename input/gcamdata/man/{module_gcamusa_batch_ind_urb_processing_sectors_USA_xml.Rd => module_gcamusa_ind_urb_processing_sectors_xml.Rd} (62%) rename input/gcamdata/man/{module_gcamusa_batch_indenergy_emissions_USA_xml.Rd => module_gcamusa_indenergy_emissions_xml.Rd} (64%) rename input/gcamdata/man/{module_gcamusa_batch_industry_vintage_USA_xml.Rd => module_gcamusa_industry_vintage_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_industry_USA_xml.Rd => module_gcamusa_industry_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_liquids_limits_usa_xml.Rd => module_gcamusa_liquids_limits_usa_xml.Rd} (60%) rename input/gcamdata/man/{module_gcamusa_batch_negative_emissions_budget_usa_xml.Rd => module_gcamusa_negative_emissions_budget_usa_xml.Rd} (63%) rename input/gcamdata/man/{module_gcamusa_batch_nonewcoal_USA_xml.Rd => module_gcamusa_nonewcoal_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_nuclear_USA_xml.Rd => module_gcamusa_nuclear_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_othertrn_emissions_USA_xml.Rd => module_gcamusa_othertrn_emissions_xml.Rd} (64%) rename input/gcamdata/man/{module_gcamusa_batch_refinery_nonghg_emissions_USA_xml.Rd => module_gcamusa_refinery_nonghg_emissions_xml.Rd} (61%) rename input/gcamdata/man/{module_gcamusa_batch_regional_biomass_USA_xml.Rd => module_gcamusa_regional_biomass_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_resources_USA_xml.Rd => module_gcamusa_resources_xml.Rd} (67%) rename input/gcamdata/man/{module_gcamusa_batch_socioeconomics_USA_xml.Rd => module_gcamusa_socioeconomics_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_solar_reeds_USA_xml.Rd => module_gcamusa_solar_reeds_xml.Rd} (66%) rename input/gcamdata/man/{module_gcamusa_batch_transport_emissions_USA_xml.Rd => module_gcamusa_transport_emissions_xml.Rd} (64%) rename input/gcamdata/man/{module_gcamusa_batch_transportation_USA_xml.Rd => module_gcamusa_transportation_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_trn_ghg_emissions_USA_xml.Rd => module_gcamusa_trn_ghg_emissions_xml.Rd} (65%) rename input/gcamdata/man/{module_gcamusa_batch_water_demand_industry_USA_xml.Rd => module_gcamusa_water_demand_industry_xml.Rd} (58%) rename input/gcamdata/man/{module_gcamusa_batch_water_demand_municipal_xml.Rd => module_gcamusa_water_demand_municipal_xml.Rd} (59%) rename input/gcamdata/man/{module_gcamusa_batch_water_td_USA_xml.Rd => module_gcamusa_water_td_xml.Rd} (62%) rename input/gcamdata/man/{module_gcamusa_batch_wind_reeds_USA_xml.Rd => module_gcamusa_wind_reeds_xml.Rd} (66%) rename input/gcamdata/man/{module_modeltime_batch_modeltime_xml.Rd => module_modeltime_modeltime_xml.Rd} (67%) create mode 100644 input/gcamdata/man/module_socio_L180.GDP_macro.Rd create mode 100644 input/gcamdata/man/module_socio_L280.GDP_macro.Rd create mode 100644 input/gcamdata/man/module_socio_L281.macro_account_tracking.Rd rename input/gcamdata/man/{module_socio_batch_SSP_xml.Rd => module_socio_SSP_xml.Rd} (77%) rename input/gcamdata/man/{module_socio_batch_bld_agg_xml.Rd => module_socio_bld_agg_xml.Rd} (71%) create mode 100644 input/gcamdata/man/module_socioeconomics_macro_xml.Rd rename input/gcamdata/man/{module_water_batch_EFW_WWtrt_coefs_SSP_xml.Rd => module_water_EFW_WWtrt_coefs_SSP_xml.Rd} (68%) rename input/gcamdata/man/{module_water_batch_EFW_input_coefs_xml.Rd => module_water_EFW_input_coefs_xml.Rd} (62%) rename input/gcamdata/man/{module_water_batch_EFW_irrigation_xml.Rd => module_water_EFW_irrigation_xml.Rd} (62%) rename input/gcamdata/man/{module_water_batch_EFW_manufacturing_xml.Rd => module_water_EFW_manufacturing_xml.Rd} (61%) rename input/gcamdata/man/{module_water_batch_EFW_municipal_xml.Rd => module_water_EFW_municipal_xml.Rd} (63%) rename input/gcamdata/man/{module_water_batch_desalination_xml.Rd => module_water_desalination_xml.Rd} (63%) rename input/gcamdata/man/{module_water_batch_electricity_water_coefs_xml.Rd => module_water_electricity_water_coefs_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_electricity_water_xml.Rd => module_water_electricity_water_xml.Rd} (66%) rename input/gcamdata/man/{module_water_batch_unlimited_water_supply_xml.Rd => module_water_unlimited_water_supply_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_water_demand_industry_xml.Rd => module_water_water_demand_industry_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_water_demand_livestock_xml.Rd => module_water_water_demand_livestock_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_water_demand_municipal_xml.Rd => module_water_water_demand_municipal_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_water_demand_primary_xml.Rd => module_water_water_demand_primary_xml.Rd} (65%) rename input/gcamdata/man/{module_water_batch_water_elec_liquids_limits_xml.Rd => module_water_water_elec_liquids_limits_xml.Rd} (64%) rename input/gcamdata/man/{module_water_batch_water_supply_constrained_xml.Rd => module_water_water_supply_constrained_xml.Rd} (64%) rename input/gcamdata/man/{module_water_batch_water_supply_uncalibrated_xml.Rd => module_water_water_supply_uncalibrated_xml.Rd} (64%) rename input/gcamdata/man/{module_water_batch_water_td_xml.Rd => module_water_water_td_xml.Rd} (69%) create mode 100644 input/gcamdata/man/rename_gcamdata_chunks.Rd diff --git a/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION.Rd b/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION.Rd new file mode 100644 index 0000000000..28bfbb8071 --- /dev/null +++ b/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/module-helpers.R +\name{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION} +\alias{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION} +\title{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION} +\usage{ +FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION( + .DF, + AFFECTED_AREA_CODE, + YEAR_DISSOLVE_DONE, + YEAR_AFTER_DISSOLVE_ACCOUNT = 3 +) +} +\arguments{ +\item{.DF}{dataframe to disaggregate} + +\item{AFFECTED_AREA_CODE}{FAO area codes for regions affected; first one should be pre-dissolved region (e.g., USSR) followed by post-dissolved regions.} + +\item{YEAR_DISSOLVE_DONE}{First year after dissolution} + +\item{YEAR_AFTER_DISSOLVE_ACCOUNT}{Number of years of data after dissolution used for sharing historical data} +} +\value{ +Disaggregated data for the historical period for of the dissolved region +} +\description{ +FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION +} diff --git a/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL.Rd b/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL.Rd new file mode 100644 index 0000000000..2ff59a2d7f --- /dev/null +++ b/input/gcamdata/man/FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL.Rd @@ -0,0 +1,23 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/module-helpers.R +\name{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL} +\alias{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL} +\title{FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL} +\usage{ +FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL( + .DF, + SUDAN2012_BREAK = F, + SUDAN2012_MERGE = T +) +} +\arguments{ +\item{SUDAN2012_BREAK}{If T break Sudan before 2012 based on 2013- 2016 data} + +\item{SUDAN2012_MERGE}{If T merge South Sudan into Sudan} +} +\value{ +data with historical periods of dissolved region disaggregated to small pieces. +} +\description{ +FAO_AREA_DISAGGREGATE_HIST_DISSOLUTION_ALL +} diff --git a/input/gcamdata/man/Moving_average.Rd b/input/gcamdata/man/Moving_average.Rd new file mode 100644 index 0000000000..2d4ba8043e --- /dev/null +++ b/input/gcamdata/man/Moving_average.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/module-helpers.R +\name{Moving_average} +\alias{Moving_average} +\title{Moving average} +\usage{ +Moving_average(x, periods = 5) +} +\arguments{ +\item{x}{A data frame contain the variable for calculation} + +\item{periods}{An odd number of the periods in MA. The default is 5, i.e., 2 lags and 2 leads} +} +\value{ +A data frame +} +\description{ +function to calculate moving average +} diff --git a/input/gcamdata/man/XML_NODE_EQUIV.Rd b/input/gcamdata/man/XML_NODE_EQUIV.Rd index d2bc971211..70a796103f 100644 --- a/input/gcamdata/man/XML_NODE_EQUIV.Rd +++ b/input/gcamdata/man/XML_NODE_EQUIV.Rd @@ -8,7 +8,7 @@ data to XML can treat tags in the same class as the same when enabled, thus not requiring multiple headers for instance to read in a share-weight into a technology intermittent-technology or tranTechnology.} \format{ -An object of class \code{list} of length 8. +An object of class \code{list} of length 9. } \usage{ XML_NODE_EQUIV diff --git a/input/gcamdata/man/gdp_deflator.Rd b/input/gcamdata/man/gdp_deflator.Rd index b52338d9ca..0a2e7c1185 100644 --- a/input/gcamdata/man/gdp_deflator.Rd +++ b/input/gcamdata/man/gdp_deflator.Rd @@ -18,7 +18,7 @@ gdp_deflator(year, base_year) \item{base_year}{Year to convert FROM.} } \value{ -GDP Deflator. Multiply to convert FROM \code{base_year} dollars TO +US GDP Deflator. Multiply to convert FROM \code{base_year} dollars TO \code{year} dollars. } \description{ diff --git a/input/gcamdata/man/get_data_list.Rd b/input/gcamdata/man/get_data_list.Rd new file mode 100644 index 0000000000..b1b3aaace3 --- /dev/null +++ b/input/gcamdata/man/get_data_list.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/utils-data.R +\name{get_data_list} +\alias{get_data_list} +\title{get_data_list} +\usage{ +get_data_list(all_data, data_list, strip_attributes = FALSE, environ = NULL) +} +\arguments{ +\item{all_data}{Data structure} + +\item{data_list}{A character vector of data to load into the given environment} + +\item{strip_attributes}{A logical vector which will be passed on to \code{get_data}. The length +must be 1 (use the save logical for all values of data_list) or match the length of +\code{data_list} (one logical value for each data_list item).} + +\item{environ}{The environment into which the data should be loaded. If NULL (the default) +the caller's environment will be used.} +} +\description{ +This function calls \code{get_data} for each data name in \code{data_list} and assigns +the resulting data into the given \code{environ} with the data name being used as the +variable name. Note: for values in data_list "named" FILE the "basename" of the string +will be used as the variable name. +} diff --git a/input/gcamdata/man/module_aglu_L100.FAO_SUA_PrimaryEquivalent.Rd b/input/gcamdata/man/module_aglu_L100.FAO_SUA_PrimaryEquivalent.Rd new file mode 100644 index 0000000000..1c74249ae6 --- /dev/null +++ b/input/gcamdata/man/module_aglu_L100.FAO_SUA_PrimaryEquivalent.Rd @@ -0,0 +1,76 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zaglu_L100.FAO_SUA_PrimaryEquivalent.R +\name{module_aglu_L100.FAO_SUA_PrimaryEquivalent} +\alias{module_aglu_L100.FAO_SUA_PrimaryEquivalent} +\title{module_aglu_L100.FAO_SUA_PrimaryEquivalent} +\usage{ +module_aglu_L100.FAO_SUA_PrimaryEquivalent(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} + +\item{DF_CURR_NEST}{Input supply-utilization accounting data frame with one tier of processing} + +\item{DF_CURR_NEST_TradeAdj}{Output from Get_ARMINGTON_BALANCE. Input supply-utilization accounting data frame with one tier of processing and} + +\item{.SINK_ITEM}{Sink items or processed items in the processing} + +\item{DF_ALL}{Input supply-utilization accounting data frame with all levels of data nested which need to be primarized} + +\item{.DF}{An input dataframe with an element col including Import and Export} + +\item{.MIN_TRADE_PROD_RATIO}{Trade will be removed if world total export or import over production is smaller than .MIN_TRADE_PROD_RATIO (1% default value)} + +\item{.Reg_VAR}{Region variable name; default is ("area_code")} + +\item{.GROUP_VAR}{Group variable; default is ("item_code", "year")} +} +\value{ +Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if + \code{command} is "MAKE") all the generated outputs: \code{GCAM_AgLU_SUA_APE_1973_2019}, + \code{FAO_AgProd_Kt_All},\code{FAO_AgArea_Kha_All},\code{FAO_Food_Macronutrient_All_2010_2019}, + \code{FAO_Food_MacronutrientRate_2010_2019_MaxValue} + +A data frame including regional, traded, and world extraction rates of a processing +Separate the SUA balance into domestic and imported balanced for sink_item + +SUA DF +Separate the domestic SUA balance into current and lagged balanced for sink_item + +SUA DF +Primary equivalent aggregation + +A supply-utilization accounting data frame with all levels processed and aggregated to GCAM_commodity +# In some cases, prescale sink item SUA using output_specific_extraction_rate can improve the processing. +# e.g., when coproduction shares are not fixed. +Balance gross trade + +The same dataframe with balanced world export and import. +} +\description{ +Gross extraction rate is calculated for domestic, traded, and lagged values. +By gross, it means sink items are aggregated. +The function is used in Proc_primarize. + +The function is used in Proc_primarize + +The function is used in Proc_primarize + +Scale gross export and import in all regions to make them equal at the world level. +} +\details{ +Generate supply utilization balance in primary equivalent + +This chunk compiles balanced supply utilization data in primary equivalent in GCAM region and commodities. +A method to generate primary equivalent is created for the new FAOSTAT supply utilization data (2010 to 2019). +New SUA balance is connected to the old one (before 2010). Production and harvested area data with FAO region and item +for primary production are provided. For FAO food items, macronutrient values are calculated at SUA item level. +Data processing was consistent across scales. Note that GCAM regions and commodities in aggregation mapping can +be changed in corresponding mappings. The output data is not averaged over time. +} +\author{ +XZ 2022 +Get extraction rate +} diff --git a/input/gcamdata/man/module_aglu_L100.FAO_SUA_connection.Rd b/input/gcamdata/man/module_aglu_L100.FAO_SUA_connection.Rd new file mode 100644 index 0000000000..652499b4c5 --- /dev/null +++ b/input/gcamdata/man/module_aglu_L100.FAO_SUA_connection.Rd @@ -0,0 +1,26 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zaglu_L100.FAO_SUA_connection.R +\name{module_aglu_L100.FAO_SUA_connection} +\alias{module_aglu_L100.FAO_SUA_connection} +\title{module_aglu_L100.FAO_SUA_connection} +\usage{ +module_aglu_L100.FAO_SUA_connection(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if + \code{command} is "MAKE") all the generated outputs: \code{FAO_SUA_APE_balance} +} +\description{ +Pull and further process SUA data needed +} +\details{ +Pull and further process SUA data needed. Calculate moving average if needed. +} +\author{ +XZ 2022 +} diff --git a/input/gcamdata/man/module_aglu_L100.FAO_downscale_ctry.Rd b/input/gcamdata/man/module_aglu_L100.FAO_downscale_ctry.Rd deleted file mode 100644 index bb840a6fb0..0000000000 --- a/input/gcamdata/man/module_aglu_L100.FAO_downscale_ctry.Rd +++ /dev/null @@ -1,30 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L100.FAO_downscale_ctry.R -\name{module_aglu_L100.FAO_downscale_ctry} -\alias{module_aglu_L100.FAO_downscale_ctry} -\title{module_aglu_L100.FAO_downscale_ctry} -\usage{ -module_aglu_L100.FAO_downscale_ctry(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L100.FAO_ag_HA_ha}, \code{L100.FAO_ag_Prod_t}, \code{L100.FAO_ag_Exp_t}, \code{L100.FAO_ag_Feed_t}, \code{L100.FAO_ag_Food_t}, \code{L100.FAO_ag_Imp_t}, \code{L100.FAO_an_Exp_t}, \code{L100.FAO_an_Food_t}, \code{L100.FAO_an_Imp_t}, \code{L100.FAO_an_Prod_t}, \code{L100.FAO_CL_kha}, \code{L100.FAO_fallowland_kha}, \code{L100.FAO_harv_CL_kha}, \code{L100.FAO_Fert_Cons_tN}, \code{L100.FAO_Fert_Prod_tN}, \code{L100.FAO_For_Exp_m3}, \code{L100.FAO_For_Imp_m3}, \code{L100.FAO_For_Prod_m3}. The corresponding file in the -original data system was \code{LA100.FAO_downscale_ctry.R} (aglu level1). -} -\description{ -Downscale FAO production and consumption agricultural data to AGLU countries. -} -\details{ -Extrapolate each FAO dataset to 2011; match with country names; extrapolate to countries that -split or combined at some point (e.g. Czechoslovakia needs to be split into Czech Republic and -Slovakia); and calculate rolling five-year averages. -} -\author{ -BBL -} diff --git a/input/gcamdata/man/module_aglu_L100.FAO_preprocessing_OtherData.Rd b/input/gcamdata/man/module_aglu_L100.FAO_preprocessing_OtherData.Rd new file mode 100644 index 0000000000..9114424636 --- /dev/null +++ b/input/gcamdata/man/module_aglu_L100.FAO_preprocessing_OtherData.Rd @@ -0,0 +1,29 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zaglu_L100.FAO_preprocessing_OtherData.R +\name{module_aglu_L100.FAO_preprocessing_OtherData} +\alias{module_aglu_L100.FAO_preprocessing_OtherData} +\title{module_aglu_L100.FAO_preprocessing_OtherData} +\usage{ +module_aglu_L100.FAO_preprocessing_OtherData(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{L100.FAO_CL_kha}, \code{L100.FAO_fallowland_kha}, \code{L100.FAO_harv_CL_kha}, +\code{L100.FAO_Fert_Cons_tN}, \code{L100.FAO_Fert_Prod_tN}, \code{L100.FAO_For_Exp_m3}, \code{L100.FAO_For_Imp_m3}, \code{L100.FAO_For_Prod_m3}. +} +\description{ +Get FAO data ready for forestry, fertilizer, animal stock, and land cover +} +\details{ +Get FAO data ready for forestry, fertilizer, animal stock, and land cover. +Calculate rolling five-year averages. +} +\author{ +BBL XZ 2022 +} diff --git a/input/gcamdata/man/module_aglu_L100.GTAP_downscale_ctry.Rd b/input/gcamdata/man/module_aglu_L100.GTAP_downscale_ctry.Rd index 32436647d4..98045f01c0 100644 --- a/input/gcamdata/man/module_aglu_L100.GTAP_downscale_ctry.Rd +++ b/input/gcamdata/man/module_aglu_L100.GTAP_downscale_ctry.Rd @@ -14,16 +14,17 @@ module_aglu_L100.GTAP_downscale_ctry(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L100.GTAP_LV_milUSD}. The corresponding file in the +the generated outputs: \code{L100.GTAP_LV_milUSD}, \code{L100.GTAP_capital_stock}, +\code{L100.GTAPCostShare_ResourceRefine_GCAMReg_share}. The corresponding file in the original data system was \code{LA100.GTAP_downscale_ctry.R} (aglu level1). } \description{ -Downscale GTAP region-level land value data to all countries. +Downscale GTAP region-level land value data to all countries and get GTAP VFA data. } \details{ This chunk downscales the GTAP region-level land value to all countries based on production share by GLU and GTAP commodity class. } \author{ -RC April 2017 +RC April 2017 XZ 2023 March } diff --git a/input/gcamdata/man/module_aglu_L100.IMAGE_downscale_ctry_yr.Rd b/input/gcamdata/man/module_aglu_L100.IMAGE_downscale_ctry_yr.Rd index e74585f8db..0f2dcad4e6 100644 --- a/input/gcamdata/man/module_aglu_L100.IMAGE_downscale_ctry_yr.Rd +++ b/input/gcamdata/man/module_aglu_L100.IMAGE_downscale_ctry_yr.Rd @@ -24,5 +24,5 @@ Extrapolate IMAGE data to all AGLU historical years and countries. Each IMAGE table is extrapolated to all AGLU historical years and then downscaled from IMAGE region to all AGLU countries. } \author{ -BBL June 2017 +BBL June 2017 XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L1321.regional_ag_prices.Rd b/input/gcamdata/man/module_aglu_L100.regional_ag_an_for_prices.Rd similarity index 60% rename from input/gcamdata/man/module_aglu_L1321.regional_ag_prices.Rd rename to input/gcamdata/man/module_aglu_L100.regional_ag_an_for_prices.Rd index 3018da3bd7..80f220403d 100644 --- a/input/gcamdata/man/module_aglu_L1321.regional_ag_prices.Rd +++ b/input/gcamdata/man/module_aglu_L100.regional_ag_an_for_prices.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L1321.regional_ag_prices.R -\name{module_aglu_L1321.regional_ag_prices} -\alias{module_aglu_L1321.regional_ag_prices} -\title{module_aglu_L1321.regional_ag_prices} +% Please edit documentation in R/zaglu_L100.regional_ag_an_for_prices.R +\name{module_aglu_L100.regional_ag_an_for_prices} +\alias{module_aglu_L100.regional_ag_an_for_prices} +\title{module_aglu_L100.regional_ag_an_for_prices} \usage{ -module_aglu_L1321.regional_ag_prices(command, ...) +module_aglu_L100.regional_ag_an_for_prices(command, ...) } \arguments{ \item{command}{API command to execute} @@ -21,8 +21,8 @@ Calculate the calibration prices for all GCAM AGLU commodities. } \details{ This chunk calculates average prices over calibration years by GCAM commodity and region. Averages across - years are unweighted; averages over FAO item are weighted by production. + years, when applicable, are unweighted; averages over FAO item are weighted by production. } \author{ -GPK/RC/STW February 2019 +GPK/RC/STW February 2019; XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L101.ag_FAO_R_C_Y.Rd b/input/gcamdata/man/module_aglu_L101.ag_FAO_R_C_Y.Rd index 5da94f8aaa..382cc7b619 100644 --- a/input/gcamdata/man/module_aglu_L101.ag_FAO_R_C_Y.Rd +++ b/input/gcamdata/man/module_aglu_L101.ag_FAO_R_C_Y.Rd @@ -14,7 +14,7 @@ module_aglu_L101.ag_FAO_R_C_Y(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L101.ag_Food_Mt_R_C_Y}, \code{L101.ag_Food_Pcal_R_C_Y}, \code{L101.ag_kcalg_R_C_Y}, \code{L101.ag_HA_bm2_R_C_Y}, \code{L101.ag_Prod_Mt_R_C_Y}. The corresponding file in the +the generated outputs: \code{L101.ag_HA_bm2_R_C_Y}, \code{L101.ag_Prod_Mt_R_C_Y}. The corresponding file in the original data system was \code{LA101.ag_FAO_R_C_Y.R} (aglu level1). } \description{ @@ -29,7 +29,8 @@ FAO's alfalfa production in the USA is divided by 4 "for consistency with USDA". Note (August 2018 GPK revision) - The FAO production and harvested area are disaggregated to basin PRIOR to aggregation by GCAM region. This reduces the bias from using a single year (around 2000) to disaggregate to basin, in multi-country regions. +XZ 03-2022 Food related processing was moved so this chunk only downscales prod and area to GLU level ---- } \author{ -KVC March 2017 (revised August 2018 by GPK) +KVC March 2017 (revised August 2018 by GPK); XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L105.an_FAO_R_C_Y.Rd b/input/gcamdata/man/module_aglu_L105.an_FAO_R_C_Y.Rd deleted file mode 100644 index 28f94e20e5..0000000000 --- a/input/gcamdata/man/module_aglu_L105.an_FAO_R_C_Y.Rd +++ /dev/null @@ -1,29 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L105.an_FAO_R_C_Y.R -\name{module_aglu_L105.an_FAO_R_C_Y} -\alias{module_aglu_L105.an_FAO_R_C_Y} -\title{module_aglu_L105.an_FAO_R_C_Y} -\usage{ -module_aglu_L105.an_FAO_R_C_Y(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L105.an_Food_Mt_R_C_Y}, \code{L105.an_Food_Pcal_R_C_Y}, \code{L105.an_kcalg_R_C_Y}, \code{L105.an_Prod_Mt_R_C_Y}, \code{L105.an_Prod_Mt_ctry_C_Y}. The corresponding file in the -original data system was \code{LA105.an_FAO_R_C_Y.R} (aglu level1). -} -\description{ -Aggregates FAO animal products consumption and production data to GCAM region / commodity. -} -\details{ -This chunk aggregates FAO animal products food consumption and production data up to GCAM commodities and GCAM regions, -and calculates the average animal products caloric content by GCAM region / commodity / year. -} -\author{ -RC June 2017 -} diff --git a/input/gcamdata/man/module_aglu_L106.ag_an_NetExp_FAO_R_C_Y.Rd b/input/gcamdata/man/module_aglu_L106.ag_an_NetExp_FAO_R_C_Y.Rd deleted file mode 100644 index 4d31088f6f..0000000000 --- a/input/gcamdata/man/module_aglu_L106.ag_an_NetExp_FAO_R_C_Y.Rd +++ /dev/null @@ -1,29 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L106.ag_an_NetExp_FAO_R_C_Y.R -\name{module_aglu_L106.ag_an_NetExp_FAO_R_C_Y} -\alias{module_aglu_L106.ag_an_NetExp_FAO_R_C_Y} -\title{module_aglu_L106.ag_an_NetExp_FAO_R_C_Y} -\usage{ -module_aglu_L106.ag_an_NetExp_FAO_R_C_Y(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L106.ag_NetExp_Mt_R_C_Y}, \code{L106.an_NetExp_Mt_R_C_Y}. The corresponding file in the -original data system was \code{LA106.ag_an_NetExp_FAO_R_C_Y.R} (aglu level1). -} -\description{ -Calculate the net exports of primary agricultural goods and animal products by GCAM region / commodity / year. -} -\details{ -This chunk calculate the net exports of primary agricultural goods and animal products by GCAM region / commodity / year. -Regional gross exports are adjusted so that global net exports are zero of each commodity / year. -} -\author{ -RC June 2017 -} diff --git a/input/gcamdata/man/module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y.Rd b/input/gcamdata/man/module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y.Rd index f87a4bc026..ebb21ed0d2 100644 --- a/input/gcamdata/man/module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y.Rd +++ b/input/gcamdata/man/module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y.Rd @@ -14,7 +14,7 @@ module_aglu_L107.an_IMAGE_R_C_Sys_Fd_Y(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L107.an_Prod_Mt_R_C_Sys_Fd_Y}, \code{L107.an_Feed_Mt_R_C_Sys_Fd_Y}, \code{L107.an_FeedIO_R_C_Sys_Fd_Y}. The corresponding file in the +the generated outputs: \code{L107.an_Prod_Mt_R_C_Sys_Fd_Y}, \code{L107.an_Feed_Mt_R_C_Sys_Fd_Y}. The corresponding file in the original data system was \code{LA107.an_IMAGE_R_C_Sys_Fd_Y.R} (aglu level1). } \description{ diff --git a/input/gcamdata/man/module_aglu_L108.ag_Feed_R_C_Y.Rd b/input/gcamdata/man/module_aglu_L108.ag_Feed_R_C_Y.Rd index 8d8a496450..0a8ce85007 100644 --- a/input/gcamdata/man/module_aglu_L108.ag_Feed_R_C_Y.Rd +++ b/input/gcamdata/man/module_aglu_L108.ag_Feed_R_C_Y.Rd @@ -14,8 +14,7 @@ module_aglu_L108.ag_Feed_R_C_Y(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L108.ag_Feed_Mt_R_C_Y}, \code{L108.ag_NetExp_Mt_R_FodderHerb_Y}. The corresponding file in the -original data system was \code{LA108.ag_Feed_R_C_Y.R} (aglu level1). +the generated outputs: \code{L108.ag_Feed_Mt_R_C_Y}, \code{L108.ag_NetExp_Mt_R_FodderHerb_Y}, \code{L107.an_Feed_Mt_R_C_Sys_Fd_Y_adj} } \description{ Compute (1) feed by GCAM commodity, region, and year, and (2) net exports of FodderHerb. @@ -28,5 +27,5 @@ Excess supply is mapped to OtherUses. Excess demand is mapped to other sources ( This information is used to calculate net exports of FodderHerb too. } \author{ -KVC April 2017 +KVC April 2017 XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L109.ag_an_ALL_R_C_Y.Rd b/input/gcamdata/man/module_aglu_L109.ag_an_ALL_R_C_Y.Rd index 111ccbc3b7..997a98add0 100644 --- a/input/gcamdata/man/module_aglu_L109.ag_an_ALL_R_C_Y.Rd +++ b/input/gcamdata/man/module_aglu_L109.ag_an_ALL_R_C_Y.Rd @@ -25,5 +25,5 @@ This chunk combines all flow tables of GCAM agricultural commodities, calculates GCAM region, commodity and year, and adjusts global and regional net exports to remove negative other uses. } \author{ -RC April 2017 +RC April 2017 XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L1091.ag_GrossTrade.Rd b/input/gcamdata/man/module_aglu_L1091.ag_GrossTrade.Rd deleted file mode 100644 index 239fb946da..0000000000 --- a/input/gcamdata/man/module_aglu_L1091.ag_GrossTrade.Rd +++ /dev/null @@ -1,28 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L1091.ag_GrossTrade.R -\name{module_aglu_L1091.ag_GrossTrade} -\alias{module_aglu_L1091.ag_GrossTrade} -\title{module_aglu_L1091.ag_GrossTrade} -\usage{ -module_aglu_L1091.ag_GrossTrade(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L1091.GrossTrade_Mt_R_C_Y} (aglu level1). -} -\description{ -Calculate primary agricultural good and animal product mass balances, by region / commodity / year. -} -\details{ -This chunk processes the bi-lateral trade flow data matrix from FAOSTAT, in order to differentiate trade of - agricultural commodities between GCAM regions. -} -\author{ -GPK/RC/STW February 2019 -} diff --git a/input/gcamdata/man/module_aglu_L111.ag_resbio_R_C.Rd b/input/gcamdata/man/module_aglu_L111.ag_resbio_R_C.Rd index 3ca4a95c7d..70b5ddb493 100644 --- a/input/gcamdata/man/module_aglu_L111.ag_resbio_R_C.Rd +++ b/input/gcamdata/man/module_aglu_L111.ag_resbio_R_C.Rd @@ -25,5 +25,5 @@ This chunk calculates the production-weighted average residue biomass parameters by GCAM region and commodity. } \author{ -RC March 2017 +RC March 2017 XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L122.LC_R_Cropland_Yh_GLU.Rd b/input/gcamdata/man/module_aglu_L122.LC_R_Cropland_Yh_GLU.Rd index 8828f41485..b025414ae2 100644 --- a/input/gcamdata/man/module_aglu_L122.LC_R_Cropland_Yh_GLU.Rd +++ b/input/gcamdata/man/module_aglu_L122.LC_R_Cropland_Yh_GLU.Rd @@ -14,7 +14,7 @@ module_aglu_L122.LC_R_Cropland_Yh_GLU(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L122.ag_HA_to_CropLand_R_Y_GLU}, \code{L122.ag_EcYield_kgm2_R_C_Y_GLU}, +the generated outputs: \code{L122.ag_HA_bm2_R_Y_GLU_AnnualCHF}, \code{L122.ag_EcYield_kgm2_R_C_Y_GLU}, \code{L122.LC_bm2_R_OtherArableLand_Yh_GLU}, \code{L122.LC_bm2_R_ExtraCropLand_Yh_GLU}, \code{L122.LC_bm2_R_HarvCropLand_C_Yh_GLU}, \code{L122.LC_bm2_R_HarvCropLand_Yh_GLU}. The corresponding file in the original data system was \code{LB122.LC_R_Cropland_Yh_GLU.R} (aglu level1). diff --git a/input/gcamdata/man/module_aglu_L132.ag_an_For_Prices_USA_C_2005.Rd b/input/gcamdata/man/module_aglu_L132.ag_an_For_Prices_USA_C_2005.Rd deleted file mode 100644 index 7e95183895..0000000000 --- a/input/gcamdata/man/module_aglu_L132.ag_an_For_Prices_USA_C_2005.Rd +++ /dev/null @@ -1,29 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L132.ag_an_For_Prices_USA_C_2005.R -\name{module_aglu_L132.ag_an_For_Prices_USA_C_2005} -\alias{module_aglu_L132.ag_an_For_Prices_USA_C_2005} -\title{module_aglu_L132.ag_an_For_Prices_USA_C_2005} -\usage{ -module_aglu_L132.ag_an_For_Prices_USA_C_2005(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L132.ag_an_For_Prices}. The corresponding file in the -original data system was \code{LB132.ag_an_For_Prices_USA_C_2005.R} (aglu level1). -} -\description{ -Calculate the calibration prices for all GCAM AGLU commodities. -} -\details{ -This chunk calculates average prices over calibration years by GCAM commodity. -Averages across years are unweighted; averages over FAO item are weighted by production. -} -\author{ -RC April 2017 -} diff --git a/input/gcamdata/man/module_aglu_L142.ag_Fert_IO_R_C_Y_GLU.Rd b/input/gcamdata/man/module_aglu_L142.ag_Fert_IO_R_C_Y_GLU.Rd index a2e0996342..1a59f1b83d 100644 --- a/input/gcamdata/man/module_aglu_L142.ag_Fert_IO_R_C_Y_GLU.Rd +++ b/input/gcamdata/man/module_aglu_L142.ag_Fert_IO_R_C_Y_GLU.Rd @@ -22,7 +22,7 @@ Calculate the adjusted fertilizer production by country / year, fertilizer net e and fertilizer input-output coefficients by GCAM region / commodity / year / GLU. } \details{ -This chunk calculates fertilizer prodcution by country / year (adjusted to global total consumption), +This chunk calculates fertilizer production by country / year (adjusted to global total consumption), fertilizer net exports by GCAM region / year as production minus consumption, and fertilizer input-output coefficients by GCAM region / commodity / year / GLU. } diff --git a/input/gcamdata/man/module_aglu_L203.ag_an_demand_input.Rd b/input/gcamdata/man/module_aglu_L203.ag_an_demand_input.Rd index 947ab1ef5b..c230b5e28c 100644 --- a/input/gcamdata/man/module_aglu_L203.ag_an_demand_input.Rd +++ b/input/gcamdata/man/module_aglu_L203.ag_an_demand_input.Rd @@ -33,5 +33,5 @@ food and non-food demand in calibration years, forest product demand, net export income elasticities for future years in core and SSP scenarios, as well as price elasticities. } \author{ -RC July 2017 +RC July 2017 XZ 2022 } diff --git a/input/gcamdata/man/module_aglu_L221.land_input_1.Rd b/input/gcamdata/man/module_aglu_L221.land_input_1.Rd index c6290a6d5f..7b40b0894d 100644 --- a/input/gcamdata/man/module_aglu_L221.land_input_1.Rd +++ b/input/gcamdata/man/module_aglu_L221.land_input_1.Rd @@ -42,5 +42,5 @@ from L125 land cover data, L121 carbon content data, and GCAMLandLeaf_CdensityLT } } \author{ -ACS August 2017 +ACS August 2017 XZ (2022) } diff --git a/input/gcamdata/man/module_aglu_batch_ag_Fert_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_Fert_IRR_MGMT_xml.Rd similarity index 67% rename from input/gcamdata/man/module_aglu_batch_ag_Fert_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_Fert_IRR_MGMT_xml.Rd index dc4487a8c6..1df1e9dae9 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_Fert_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_Fert_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_Fert_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_Fert_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_Fert_IRR_MGMT_xml} -\title{module_aglu_batch_ag_Fert_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_Fert_IRR_MGMT.R +\name{module_aglu_ag_Fert_IRR_MGMT_xml} +\alias{module_aglu_ag_Fert_IRR_MGMT_xml} +\title{module_aglu_ag_Fert_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_Fert_IRR_MGMT_xml(command, ...) +module_aglu_ag_Fert_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml.Rd similarity index 63% rename from input/gcamdata/man/module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml.Rd index 8428d172d5..db7bfe0e37 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml} -\title{module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_For_Past_bio_base_IRR_MGMT.R +\name{module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml} +\alias{module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml} +\title{module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_For_Past_bio_base_IRR_MGMT_xml(command, ...) +module_aglu_ag_For_Past_bio_base_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_an_demand_input_xml.Rd b/input/gcamdata/man/module_aglu_ag_an_demand_input_xml.Rd similarity index 66% rename from input/gcamdata/man/module_aglu_batch_ag_an_demand_input_xml.Rd rename to input/gcamdata/man/module_aglu_ag_an_demand_input_xml.Rd index 48064c0d52..8391d90ea8 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_an_demand_input_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_an_demand_input_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_an_demand_input_xml.R -\name{module_aglu_batch_ag_an_demand_input_xml} -\alias{module_aglu_batch_ag_an_demand_input_xml} -\title{module_aglu_batch_ag_an_demand_input_xml} +% Please edit documentation in R/zaglu_xml_ag_an_demand_input.R +\name{module_aglu_ag_an_demand_input_xml} +\alias{module_aglu_ag_an_demand_input_xml} +\title{module_aglu_ag_an_demand_input_xml} \usage{ -module_aglu_batch_ag_an_demand_input_xml(command, ...) +module_aglu_ag_an_demand_input_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_cost_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_cost_IRR_MGMT_xml.Rd similarity index 67% rename from input/gcamdata/man/module_aglu_batch_ag_cost_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_cost_IRR_MGMT_xml.Rd index 7a6dd884cd..c50269be28 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_cost_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_cost_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_cost_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_cost_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_cost_IRR_MGMT_xml} -\title{module_aglu_batch_ag_cost_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_cost_IRR_MGMT.R +\name{module_aglu_ag_cost_IRR_MGMT_xml} +\alias{module_aglu_ag_cost_IRR_MGMT_xml} +\title{module_aglu_ag_cost_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_cost_IRR_MGMT_xml(command, ...) +module_aglu_ag_cost_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ref_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ref_IRR_MGMT_xml.Rd index 2420058ae9..b0bd010eb1 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ref_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ref_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ref_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ref_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ref_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ref_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ref_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ref_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml.Rd index 180647ef5d..79ffb1ad72 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ssp1_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ssp1_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ssp1_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml.Rd index 87a7e8324a..26518af150 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ssp2_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ssp2_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ssp2_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml.Rd index 88bc802b8c..09f46f1edc 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ssp3_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ssp3_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ssp3_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml.Rd index 8d72f62aa0..6537a7b7e5 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ssp4_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ssp4_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ssp4_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml.Rd index b032aca0d2..840c058dfe 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml} -\title{module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_prodchange_ssp5_IRR_MGMT.R +\name{module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml} +\alias{module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml} +\title{module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_prodchange_ssp5_IRR_MGMT_xml(command, ...) +module_aglu_ag_prodchange_ssp5_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_trade_xml.Rd b/input/gcamdata/man/module_aglu_ag_trade_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_ag_trade_xml.Rd rename to input/gcamdata/man/module_aglu_ag_trade_xml.Rd index 67406a4fa5..7ddb9fe029 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_trade_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_trade_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_trade_xml.R -\name{module_aglu_batch_ag_trade_xml} -\alias{module_aglu_batch_ag_trade_xml} -\title{module_aglu_batch_ag_trade_xml} +% Please edit documentation in R/zaglu_xml_ag_trade.R +\name{module_aglu_ag_trade_xml} +\alias{module_aglu_ag_trade_xml} +\title{module_aglu_ag_trade_xml} \usage{ -module_aglu_batch_ag_trade_xml(command, ...) +module_aglu_ag_trade_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ag_water_input_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_ag_water_input_IRR_MGMT_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_ag_water_input_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_ag_water_input_IRR_MGMT_xml.Rd index 7101ffaee0..93cfe99b79 100644 --- a/input/gcamdata/man/module_aglu_batch_ag_water_input_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_ag_water_input_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ag_water_input_IRR_MGMT_xml.R -\name{module_aglu_batch_ag_water_input_IRR_MGMT_xml} -\alias{module_aglu_batch_ag_water_input_IRR_MGMT_xml} -\title{module_aglu_batch_ag_water_input_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_ag_water_input_IRR_MGMT.R +\name{module_aglu_ag_water_input_IRR_MGMT_xml} +\alias{module_aglu_ag_water_input_IRR_MGMT_xml} +\title{module_aglu_ag_water_input_IRR_MGMT_xml} \usage{ -module_aglu_batch_ag_water_input_IRR_MGMT_xml(command, ...) +module_aglu_ag_water_input_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_an_input_xml.Rd b/input/gcamdata/man/module_aglu_an_input_xml.Rd similarity index 69% rename from input/gcamdata/man/module_aglu_batch_an_input_xml.Rd rename to input/gcamdata/man/module_aglu_an_input_xml.Rd index 25998f3b32..70c4c057ff 100644 --- a/input/gcamdata/man/module_aglu_batch_an_input_xml.Rd +++ b/input/gcamdata/man/module_aglu_an_input_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_an_input_xml.R -\name{module_aglu_batch_an_input_xml} -\alias{module_aglu_batch_an_input_xml} -\title{module_aglu_batch_an_input_xml} +% Please edit documentation in R/zaglu_xml_an_input.R +\name{module_aglu_an_input_xml} +\alias{module_aglu_an_input_xml} +\title{module_aglu_an_input_xml} \usage{ -module_aglu_batch_an_input_xml(command, ...) +module_aglu_an_input_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_bio_trade_xml.Rd b/input/gcamdata/man/module_aglu_bio_trade_xml.Rd similarity index 69% rename from input/gcamdata/man/module_aglu_batch_bio_trade_xml.Rd rename to input/gcamdata/man/module_aglu_bio_trade_xml.Rd index 208820feaf..3e9043b8ab 100644 --- a/input/gcamdata/man/module_aglu_batch_bio_trade_xml.Rd +++ b/input/gcamdata/man/module_aglu_bio_trade_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_bio_trade_xml.R -\name{module_aglu_batch_bio_trade_xml} -\alias{module_aglu_batch_bio_trade_xml} -\title{module_aglu_batch_bio_trade_xml} +% Please edit documentation in R/zaglu_xml_bio_trade.R +\name{module_aglu_bio_trade_xml} +\alias{module_aglu_bio_trade_xml} +\title{module_aglu_bio_trade_xml} \usage{ -module_aglu_batch_bio_trade_xml(command, ...) +module_aglu_bio_trade_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_data_FAO_BilateralTrade.Rd b/input/gcamdata/man/module_aglu_data_FAO_BilateralTrade.Rd deleted file mode 100644 index 45d4bf1de5..0000000000 --- a/input/gcamdata/man/module_aglu_data_FAO_BilateralTrade.Rd +++ /dev/null @@ -1,27 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L1091.ag_GrossTrade.R -\name{module_aglu_data_FAO_BilateralTrade} -\alias{module_aglu_data_FAO_BilateralTrade} -\title{module_aglu_data_FAO_BilateralTrade} -\usage{ -module_aglu_data_FAO_BilateralTrade(command, ...) -} -\arguments{ -\item{command}{API command to execute} - -\item{...}{other optional parameters, depending on command} -} -\value{ -Depends on \code{command}: either a vector of required inputs, -a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{FAO_BilateralTrade}. -} -\description{ -Read the FAO_BilateralTrade trade from file and reduce / summarize as soon as possible to -keep its memory footprint small. NOTE: we do not market the FAO_BilateralTrade as -INPUT in order to have more control of when it gets loaded and minimize the amount of -time it is loaded in memory. -} -\author{ -PLP -} diff --git a/input/gcamdata/man/module_aglu_batch_food_SSP1_xml.Rd b/input/gcamdata/man/module_aglu_food_SSP1_xml.Rd similarity index 69% rename from input/gcamdata/man/module_aglu_batch_food_SSP1_xml.Rd rename to input/gcamdata/man/module_aglu_food_SSP1_xml.Rd index 1665acc697..ce231e5a28 100644 --- a/input/gcamdata/man/module_aglu_batch_food_SSP1_xml.Rd +++ b/input/gcamdata/man/module_aglu_food_SSP1_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_food_SSP1_xml.R -\name{module_aglu_batch_food_SSP1_xml} -\alias{module_aglu_batch_food_SSP1_xml} -\title{module_aglu_batch_food_SSP1_xml} +% Please edit documentation in R/zaglu_xml_food_SSP1.R +\name{module_aglu_food_SSP1_xml} +\alias{module_aglu_food_SSP1_xml} +\title{module_aglu_food_SSP1_xml} \usage{ -module_aglu_batch_food_SSP1_xml(command, ...) +module_aglu_food_SSP1_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_land_input_1_xml.Rd b/input/gcamdata/man/module_aglu_land_input_1_xml.Rd similarity index 68% rename from input/gcamdata/man/module_aglu_batch_land_input_1_xml.Rd rename to input/gcamdata/man/module_aglu_land_input_1_xml.Rd index 1c42723a35..724d8e26d1 100644 --- a/input/gcamdata/man/module_aglu_batch_land_input_1_xml.Rd +++ b/input/gcamdata/man/module_aglu_land_input_1_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_land_input_1_xml.R -\name{module_aglu_batch_land_input_1_xml} -\alias{module_aglu_batch_land_input_1_xml} -\title{module_aglu_batch_land_input_1_xml} +% Please edit documentation in R/zaglu_xml_land_input_1.R +\name{module_aglu_land_input_1_xml} +\alias{module_aglu_land_input_1_xml} +\title{module_aglu_land_input_1_xml} \usage{ -module_aglu_batch_land_input_1_xml(command, ...) +module_aglu_land_input_1_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_land_input_2_xml.Rd b/input/gcamdata/man/module_aglu_land_input_2_xml.Rd similarity index 68% rename from input/gcamdata/man/module_aglu_batch_land_input_2_xml.Rd rename to input/gcamdata/man/module_aglu_land_input_2_xml.Rd index 3f74ca5395..8d1e4ec831 100644 --- a/input/gcamdata/man/module_aglu_batch_land_input_2_xml.Rd +++ b/input/gcamdata/man/module_aglu_land_input_2_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_land_input_2_xml.R -\name{module_aglu_batch_land_input_2_xml} -\alias{module_aglu_batch_land_input_2_xml} -\title{module_aglu_batch_land_input_2_xml} +% Please edit documentation in R/zaglu_xml_land_input_2.R +\name{module_aglu_land_input_2_xml} +\alias{module_aglu_land_input_2_xml} +\title{module_aglu_land_input_2_xml} \usage{ -module_aglu_batch_land_input_2_xml(command, ...) +module_aglu_land_input_2_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_land_input_3_IRR_xml.Rd b/input/gcamdata/man/module_aglu_land_input_3_IRR_xml.Rd similarity index 67% rename from input/gcamdata/man/module_aglu_batch_land_input_3_IRR_xml.Rd rename to input/gcamdata/man/module_aglu_land_input_3_IRR_xml.Rd index 0259c9b6a5..7c6eeebf61 100644 --- a/input/gcamdata/man/module_aglu_batch_land_input_3_IRR_xml.Rd +++ b/input/gcamdata/man/module_aglu_land_input_3_IRR_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_land_input_3_IRR_xml.R -\name{module_aglu_batch_land_input_3_IRR_xml} -\alias{module_aglu_batch_land_input_3_IRR_xml} -\title{module_aglu_batch_land_input_3_IRR_xml} +% Please edit documentation in R/zaglu_xml_land_input_3_IRR.R +\name{module_aglu_land_input_3_IRR_xml} +\alias{module_aglu_land_input_3_IRR_xml} +\title{module_aglu_land_input_3_IRR_xml} \usage{ -module_aglu_batch_land_input_3_IRR_xml(command, ...) +module_aglu_land_input_3_IRR_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_land_input_4_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_land_input_4_IRR_MGMT_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_land_input_4_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_land_input_4_IRR_MGMT_xml.Rd index 4c40dfbf98..075d462403 100644 --- a/input/gcamdata/man/module_aglu_batch_land_input_4_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_land_input_4_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_land_input_4_IRR_MGMT_xml.R -\name{module_aglu_batch_land_input_4_IRR_MGMT_xml} -\alias{module_aglu_batch_land_input_4_IRR_MGMT_xml} -\title{module_aglu_batch_land_input_4_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_land_input_4_IRR_MGMT.R +\name{module_aglu_land_input_4_IRR_MGMT_xml} +\alias{module_aglu_land_input_4_IRR_MGMT_xml} +\title{module_aglu_land_input_4_IRR_MGMT_xml} \usage{ -module_aglu_batch_land_input_4_IRR_MGMT_xml(command, ...) +module_aglu_land_input_4_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_land_input_5_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_land_input_5_IRR_MGMT_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_land_input_5_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_land_input_5_IRR_MGMT_xml.Rd index fbe4d57a21..af902649a9 100644 --- a/input/gcamdata/man/module_aglu_batch_land_input_5_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_land_input_5_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_land_input_5_IRR_MGMT_xml.R -\name{module_aglu_batch_land_input_5_IRR_MGMT_xml} -\alias{module_aglu_batch_land_input_5_IRR_MGMT_xml} -\title{module_aglu_batch_land_input_5_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_land_input_5_IRR_MGMT.R +\name{module_aglu_land_input_5_IRR_MGMT_xml} +\alias{module_aglu_land_input_5_IRR_MGMT_xml} +\title{module_aglu_land_input_5_IRR_MGMT_xml} \usage{ -module_aglu_batch_land_input_5_IRR_MGMT_xml(command, ...) +module_aglu_land_input_5_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_pasture_ssp34_xml.Rd b/input/gcamdata/man/module_aglu_pasture_ssp34_xml.Rd similarity index 68% rename from input/gcamdata/man/module_aglu_batch_pasture_ssp34_xml.Rd rename to input/gcamdata/man/module_aglu_pasture_ssp34_xml.Rd index bd2b098c76..09ea7cf718 100644 --- a/input/gcamdata/man/module_aglu_batch_pasture_ssp34_xml.Rd +++ b/input/gcamdata/man/module_aglu_pasture_ssp34_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_pasture_ssp34_xml.R -\name{module_aglu_batch_pasture_ssp34_xml} -\alias{module_aglu_batch_pasture_ssp34_xml} -\title{module_aglu_batch_pasture_ssp34_xml} +% Please edit documentation in R/zaglu_xml_pasture_ssp34.R +\name{module_aglu_pasture_ssp34_xml} +\alias{module_aglu_pasture_ssp34_xml} +\title{module_aglu_pasture_ssp34_xml} \usage{ -module_aglu_batch_pasture_ssp34_xml(command, ...) +module_aglu_pasture_ssp34_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_protected_land_input_2_xml.Rd b/input/gcamdata/man/module_aglu_protected_land_input_2_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_protected_land_input_2_xml.Rd rename to input/gcamdata/man/module_aglu_protected_land_input_2_xml.Rd index 688e16ff49..0cf419f7af 100644 --- a/input/gcamdata/man/module_aglu_batch_protected_land_input_2_xml.Rd +++ b/input/gcamdata/man/module_aglu_protected_land_input_2_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_protected_land_input_2_xml.R -\name{module_aglu_batch_protected_land_input_2_xml} -\alias{module_aglu_batch_protected_land_input_2_xml} -\title{module_aglu_batch_protected_land_input_2_xml} +% Please edit documentation in R/zaglu_xml_protected_land_input_2.R +\name{module_aglu_protected_land_input_2_xml} +\alias{module_aglu_protected_land_input_2_xml} +\title{module_aglu_protected_land_input_2_xml} \usage{ -module_aglu_batch_protected_land_input_2_xml(command, ...) +module_aglu_protected_land_input_2_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_protected_land_input_3_xml.Rd b/input/gcamdata/man/module_aglu_protected_land_input_3_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_protected_land_input_3_xml.Rd rename to input/gcamdata/man/module_aglu_protected_land_input_3_xml.Rd index 512cccd22f..586339cfe8 100644 --- a/input/gcamdata/man/module_aglu_batch_protected_land_input_3_xml.Rd +++ b/input/gcamdata/man/module_aglu_protected_land_input_3_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_protected_land_input_3_xml.R -\name{module_aglu_batch_protected_land_input_3_xml} -\alias{module_aglu_batch_protected_land_input_3_xml} -\title{module_aglu_batch_protected_land_input_3_xml} +% Please edit documentation in R/zaglu_xml_protected_land_input_3.R +\name{module_aglu_protected_land_input_3_xml} +\alias{module_aglu_protected_land_input_3_xml} +\title{module_aglu_protected_land_input_3_xml} \usage{ -module_aglu_batch_protected_land_input_3_xml(command, ...) +module_aglu_protected_land_input_3_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_prune_empty_ag_xml.Rd b/input/gcamdata/man/module_aglu_prune_empty_ag_xml.Rd new file mode 100644 index 0000000000..455cff3bf1 --- /dev/null +++ b/input/gcamdata/man/module_aglu_prune_empty_ag_xml.Rd @@ -0,0 +1,31 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zaglu_xml_prune_empty_ag.R +\name{module_aglu_prune_empty_ag_xml} +\alias{module_aglu_prune_empty_ag_xml} +\title{module_aglu_prune_empty_ag_xml} +\usage{ +module_aglu_prune_empty_ag_xml(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{prune_empty_ag.xml}. (aglu XML). +} +\description{ +Construct XML data structure for \code{prune_empty_ag.xml}. Through the +process of processing the myriad of AgLu data we end up with many combinations +of crop/tech and land node/leaf which have zero production / land allocation +in any historical year. Given, with the exception of biomass, having no historical +values means zero future potential these combinations are just wasted space. Ideally, +this would be filtered out in the data processing saving time and reducing XML size. +However, doing so would be fairly intrusive as it will touch hundreds of objects and +in some cases we will prune pretty far up the tree making it less than straightforward. +Thus this minimally intrusive approach: Instruct GCAM to delete=1 the "empty" crop/tech +land node/leaf in the last scenario component parsed (note: it is safe to parse this XML +multiple times, useful in large batch runs where custom inputs may need pruning too) +} diff --git a/input/gcamdata/man/module_aglu_batch_resbio_input_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_aglu_resbio_input_IRR_MGMT_xml.Rd similarity index 65% rename from input/gcamdata/man/module_aglu_batch_resbio_input_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_aglu_resbio_input_IRR_MGMT_xml.Rd index cc3eddf2a4..814f68aae9 100644 --- a/input/gcamdata/man/module_aglu_batch_resbio_input_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_aglu_resbio_input_IRR_MGMT_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_resbio_input_IRR_MGMT_xml.R -\name{module_aglu_batch_resbio_input_IRR_MGMT_xml} -\alias{module_aglu_batch_resbio_input_IRR_MGMT_xml} -\title{module_aglu_batch_resbio_input_IRR_MGMT_xml} +% Please edit documentation in R/zaglu_xml_resbio_input_IRR_MGMT.R +\name{module_aglu_resbio_input_IRR_MGMT_xml} +\alias{module_aglu_resbio_input_IRR_MGMT_xml} +\title{module_aglu_resbio_input_IRR_MGMT_xml} \usage{ -module_aglu_batch_resbio_input_IRR_MGMT_xml(command, ...) +module_aglu_resbio_input_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ssp3_bio_trade_xml.Rd b/input/gcamdata/man/module_aglu_ssp3_bio_trade_xml.Rd similarity index 67% rename from input/gcamdata/man/module_aglu_batch_ssp3_bio_trade_xml.Rd rename to input/gcamdata/man/module_aglu_ssp3_bio_trade_xml.Rd index 669d5ae391..da1a7d1d4f 100644 --- a/input/gcamdata/man/module_aglu_batch_ssp3_bio_trade_xml.Rd +++ b/input/gcamdata/man/module_aglu_ssp3_bio_trade_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ssp3_bio_trade_xml.R -\name{module_aglu_batch_ssp3_bio_trade_xml} -\alias{module_aglu_batch_ssp3_bio_trade_xml} -\title{module_aglu_batch_ssp3_bio_trade_xml} +% Please edit documentation in R/zaglu_xml_ssp3_bio_trade.R +\name{module_aglu_ssp3_bio_trade_xml} +\alias{module_aglu_ssp3_bio_trade_xml} +\title{module_aglu_ssp3_bio_trade_xml} \usage{ -module_aglu_batch_ssp3_bio_trade_xml(command, ...) +module_aglu_ssp3_bio_trade_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_aglu_batch_ssp4_ag_bio_trade_xml.Rd b/input/gcamdata/man/module_aglu_ssp4_ag_bio_trade_xml.Rd similarity index 67% rename from input/gcamdata/man/module_aglu_batch_ssp4_ag_bio_trade_xml.Rd rename to input/gcamdata/man/module_aglu_ssp4_ag_bio_trade_xml.Rd index 6b0da6fe17..436e6d8669 100644 --- a/input/gcamdata/man/module_aglu_batch_ssp4_ag_bio_trade_xml.Rd +++ b/input/gcamdata/man/module_aglu_ssp4_ag_bio_trade_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_batch_ssp4_ag_bio_trade_xml.R -\name{module_aglu_batch_ssp4_ag_bio_trade_xml} -\alias{module_aglu_batch_ssp4_ag_bio_trade_xml} -\title{module_aglu_batch_ssp4_bio_trade_xml} +% Please edit documentation in R/zaglu_xml_ssp4_ag_bio_trade.R +\name{module_aglu_ssp4_ag_bio_trade_xml} +\alias{module_aglu_ssp4_ag_bio_trade_xml} +\title{module_aglu_ssp4_bio_trade_xml} \usage{ -module_aglu_batch_ssp4_ag_bio_trade_xml(command, ...) +module_aglu_ssp4_ag_bio_trade_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_climate_batch_no_climate_model_xml.Rd b/input/gcamdata/man/module_climate_no_climate_model_xml.Rd similarity index 62% rename from input/gcamdata/man/module_climate_batch_no_climate_model_xml.Rd rename to input/gcamdata/man/module_climate_no_climate_model_xml.Rd index 8435b1ba52..afe2940f62 100644 --- a/input/gcamdata/man/module_climate_batch_no_climate_model_xml.Rd +++ b/input/gcamdata/man/module_climate_no_climate_model_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zclimate_batch_no_climate_model_xml.R -\name{module_climate_batch_no_climate_model_xml} -\alias{module_climate_batch_no_climate_model_xml} -\title{module_climate_batch_no_climate_model_xml} +% Please edit documentation in R/zclimate_xml_no_climate_model.R +\name{module_climate_no_climate_model_xml} +\alias{module_climate_no_climate_model_xml} +\title{module_climate_no_climate_model_xml} \usage{ -module_climate_batch_no_climate_model_xml(command, ...) +module_climate_no_climate_model_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_climate_xml_batch_hector_xml.Rd b/input/gcamdata/man/module_climate_xml_hector_xml.Rd similarity index 68% rename from input/gcamdata/man/module_climate_xml_batch_hector_xml.Rd rename to input/gcamdata/man/module_climate_xml_hector_xml.Rd index cf7b55a6a2..b96604ca41 100644 --- a/input/gcamdata/man/module_climate_xml_batch_hector_xml.Rd +++ b/input/gcamdata/man/module_climate_xml_hector_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zclimate_batch_hector_xml.R -\name{module_climate_xml_batch_hector_xml} -\alias{module_climate_xml_batch_hector_xml} -\title{module_climate_xml_batch_hector_xml} +% Please edit documentation in R/zclimate_xml_hector.R +\name{module_climate_xml_hector_xml} +\alias{module_climate_xml_hector_xml} +\title{module_climate_xml_hector_xml} \usage{ -module_climate_xml_batch_hector_xml(command, ...) +module_climate_xml_hector_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_climate_xml_batch_magicc_xml.Rd b/input/gcamdata/man/module_climate_xml_magicc_xml.Rd similarity index 68% rename from input/gcamdata/man/module_climate_xml_batch_magicc_xml.Rd rename to input/gcamdata/man/module_climate_xml_magicc_xml.Rd index 71a34dd147..403ed3a308 100644 --- a/input/gcamdata/man/module_climate_xml_batch_magicc_xml.Rd +++ b/input/gcamdata/man/module_climate_xml_magicc_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zclimate_batch_magicc_xml.R -\name{module_climate_xml_batch_magicc_xml} -\alias{module_climate_xml_batch_magicc_xml} -\title{module_climate_xml_batch_magicc_xml} +% Please edit documentation in R/zclimate_xml_magicc.R +\name{module_climate_xml_magicc_xml} +\alias{module_climate_xml_magicc_xml} +\title{module_climate_xml_magicc_xml} \usage{ -module_climate_xml_batch_magicc_xml(command, ...) +module_climate_xml_magicc_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L169.nonghg_NEI_scaling.Rd b/input/gcamdata/man/module_emissions_L169.nonghg_NEI_scaling.Rd index 99b19f18d1..02aaf78fae 100644 --- a/input/gcamdata/man/module_emissions_L169.nonghg_NEI_scaling.Rd +++ b/input/gcamdata/man/module_emissions_L169.nonghg_NEI_scaling.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L169.nonghg_NEI_scaling.R +% Please edit documentation in R/zemissions_L169.nonghg_NEI_scaling.R \name{module_emissions_L169.nonghg_NEI_scaling} \alias{module_emissions_L169.nonghg_NEI_scaling} \title{module_emissions_L169.nonghg_NEI_scaling} diff --git a/input/gcamdata/man/module_emissions_L170.nonghg_ceds_scaling.Rd b/input/gcamdata/man/module_emissions_L170.nonghg_ceds_scaling.Rd index c985bcec09..3f7bd1b556 100644 --- a/input/gcamdata/man/module_emissions_L170.nonghg_ceds_scaling.Rd +++ b/input/gcamdata/man/module_emissions_L170.nonghg_ceds_scaling.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L170.nonghg_ceds_scaling.R +% Please edit documentation in R/zemissions_L170.nonghg_ceds_scaling.R \name{module_emissions_L170.nonghg_ceds_scaling} \alias{module_emissions_L170.nonghg_ceds_scaling} \title{module_emissions_L170.nonghg_ceds_scaling} diff --git a/input/gcamdata/man/module_emissions_L270.nonghg_nei_to_gcam.Rd b/input/gcamdata/man/module_emissions_L270.nonghg_nei_to_gcam.Rd index f5c4c73bca..81d3e1f0b2 100644 --- a/input/gcamdata/man/module_emissions_L270.nonghg_nei_to_gcam.Rd +++ b/input/gcamdata/man/module_emissions_L270.nonghg_nei_to_gcam.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L270.nonghg_NEI_to_GCAM.R +% Please edit documentation in R/zemissions_L270.nonghg_NEI_to_GCAM.R \name{module_emissions_L270.nonghg_nei_to_gcam} \alias{module_emissions_L270.nonghg_nei_to_gcam} \title{module_emissions_L270.nonghg_nei_to_gcam} diff --git a/input/gcamdata/man/module_emissions_batch_MACC_TC_SSP_xml.Rd b/input/gcamdata/man/module_emissions_MACC_TC_SSP_xml.Rd similarity index 65% rename from input/gcamdata/man/module_emissions_batch_MACC_TC_SSP_xml.Rd rename to input/gcamdata/man/module_emissions_MACC_TC_SSP_xml.Rd index a01e14fabe..b9c539d87a 100644 --- a/input/gcamdata/man/module_emissions_batch_MACC_TC_SSP_xml.Rd +++ b/input/gcamdata/man/module_emissions_MACC_TC_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_MACC_TC_SSP_xml.R -\name{module_emissions_batch_MACC_TC_SSP_xml} -\alias{module_emissions_batch_MACC_TC_SSP_xml} -\title{module_emissions_batch_MACC_TC_SSP_xml} +% Please edit documentation in R/zemissions_xml_MACC_TC_SSP.R +\name{module_emissions_MACC_TC_SSP_xml} +\alias{module_emissions_MACC_TC_SSP_xml} +\title{module_emissions_MACC_TC_SSP_xml} \usage{ -module_emissions_batch_MACC_TC_SSP_xml(command, ...) +module_emissions_MACC_TC_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml.Rd b/input/gcamdata/man/module_emissions_all_aglu_emissions_IRR_MGMT_xml.Rd similarity index 64% rename from input/gcamdata/man/module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml.Rd rename to input/gcamdata/man/module_emissions_all_aglu_emissions_IRR_MGMT_xml.Rd index aef677f73f..eda8f0484a 100644 --- a/input/gcamdata/man/module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml.Rd +++ b/input/gcamdata/man/module_emissions_all_aglu_emissions_IRR_MGMT_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zemissions_batch_all_aglu_emissions_IRR_MGMT_xml.R -\name{module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml} -\alias{module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml} -\title{module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml} +% Please edit documentation in R/zemissions_xml_all_aglu_emissions_IRR_MGMT.R +\name{module_emissions_all_aglu_emissions_IRR_MGMT_xml} +\alias{module_emissions_all_aglu_emissions_IRR_MGMT_xml} +\title{module_emissions_all_aglu_emissions_IRR_MGMT_xml} \usage{ -module_emissions_batch_all_aglu_emissions_IRR_MGMT_xml(command, ...) +module_emissions_all_aglu_emissions_IRR_MGMT_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_all_energy_emissions_xml.Rd b/input/gcamdata/man/module_emissions_all_energy_emissions_xml.Rd similarity index 65% rename from input/gcamdata/man/module_emissions_batch_all_energy_emissions_xml.Rd rename to input/gcamdata/man/module_emissions_all_energy_emissions_xml.Rd index 090c5595b1..66340b6142 100644 --- a/input/gcamdata/man/module_emissions_batch_all_energy_emissions_xml.Rd +++ b/input/gcamdata/man/module_emissions_all_energy_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_all_energy_emissions_xml.R -\name{module_emissions_batch_all_energy_emissions_xml} -\alias{module_emissions_batch_all_energy_emissions_xml} -\title{module_emissions_batch_all_energy_emissions_xml} +% Please edit documentation in R/zemissions_xml_all_energy_emissions.R +\name{module_emissions_all_energy_emissions_xml} +\alias{module_emissions_all_energy_emissions_xml} +\title{module_emissions_all_energy_emissions_xml} \usage{ -module_emissions_batch_all_energy_emissions_xml(command, ...) +module_emissions_all_energy_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_all_fgas_emissions_xml.Rd b/input/gcamdata/man/module_emissions_all_fgas_emissions_xml.Rd similarity index 66% rename from input/gcamdata/man/module_emissions_batch_all_fgas_emissions_xml.Rd rename to input/gcamdata/man/module_emissions_all_fgas_emissions_xml.Rd index 8597d045e4..c70dcd2e71 100644 --- a/input/gcamdata/man/module_emissions_batch_all_fgas_emissions_xml.Rd +++ b/input/gcamdata/man/module_emissions_all_fgas_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_all_fgas_emissions_xml.R -\name{module_emissions_batch_all_fgas_emissions_xml} -\alias{module_emissions_batch_all_fgas_emissions_xml} -\title{module_emissions_batch_all_fgas_emissions_xml} +% Please edit documentation in R/zemissions_xml_all_fgas_emissions.R +\name{module_emissions_all_fgas_emissions_xml} +\alias{module_emissions_all_fgas_emissions_xml} +\title{module_emissions_all_fgas_emissions_xml} \usage{ -module_emissions_batch_all_fgas_emissions_xml(command, ...) +module_emissions_all_fgas_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_all_protected_unmgd_emissions_xml.Rd b/input/gcamdata/man/module_emissions_all_protected_unmgd_emissions_xml.Rd similarity index 62% rename from input/gcamdata/man/module_emissions_batch_all_protected_unmgd_emissions_xml.Rd rename to input/gcamdata/man/module_emissions_all_protected_unmgd_emissions_xml.Rd index c0784ea01d..cac5904643 100644 --- a/input/gcamdata/man/module_emissions_batch_all_protected_unmgd_emissions_xml.Rd +++ b/input/gcamdata/man/module_emissions_all_protected_unmgd_emissions_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zemissions_batch_all_protected_unmgd_emissions_xml.R -\name{module_emissions_batch_all_protected_unmgd_emissions_xml} -\alias{module_emissions_batch_all_protected_unmgd_emissions_xml} -\title{module_emissions_batch_all_protected_unmgd_emissions_xml} +% Please edit documentation in R/zemissions_xml_all_protected_unmgd_emissions.R +\name{module_emissions_all_protected_unmgd_emissions_xml} +\alias{module_emissions_all_protected_unmgd_emissions_xml} +\title{module_emissions_all_protected_unmgd_emissions_xml} \usage{ -module_emissions_batch_all_protected_unmgd_emissions_xml(command, ...) +module_emissions_all_protected_unmgd_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_all_unmgd_emissions_xml.Rd b/input/gcamdata/man/module_emissions_all_unmgd_emissions_xml.Rd similarity index 64% rename from input/gcamdata/man/module_emissions_batch_all_unmgd_emissions_xml.Rd rename to input/gcamdata/man/module_emissions_all_unmgd_emissions_xml.Rd index e8de8d44b7..331488a7b6 100644 --- a/input/gcamdata/man/module_emissions_batch_all_unmgd_emissions_xml.Rd +++ b/input/gcamdata/man/module_emissions_all_unmgd_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_all_unmgd_emissions_xml.R -\name{module_emissions_batch_all_unmgd_emissions_xml} -\alias{module_emissions_batch_all_unmgd_emissions_xml} -\title{module_emissions_batch_all_unmgd_emissions_xml} +% Please edit documentation in R/zemissions_xml_all_unmgd_emissions.R +\name{module_emissions_all_unmgd_emissions_xml} +\alias{module_emissions_all_unmgd_emissions_xml} +\title{module_emissions_all_unmgd_emissions_xml} \usage{ -module_emissions_batch_all_unmgd_emissions_xml(command, ...) +module_emissions_all_unmgd_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_delete_gdp_control_xml.Rd b/input/gcamdata/man/module_emissions_delete_gdp_control_xml.Rd similarity index 64% rename from input/gcamdata/man/module_emissions_batch_delete_gdp_control_xml.Rd rename to input/gcamdata/man/module_emissions_delete_gdp_control_xml.Rd index 91b860b2ce..36c279feb2 100644 --- a/input/gcamdata/man/module_emissions_batch_delete_gdp_control_xml.Rd +++ b/input/gcamdata/man/module_emissions_delete_gdp_control_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_delete_gdp_control_xml.R -\name{module_emissions_batch_delete_gdp_control_xml} -\alias{module_emissions_batch_delete_gdp_control_xml} -\title{module_emissions_batch_delete_gdp_control_xml} +% Please edit documentation in R/zemissions_xml_delete_gdp_control.R +\name{module_emissions_delete_gdp_control_xml} +\alias{module_emissions_delete_gdp_control_xml} +\title{module_emissions_delete_gdp_control_xml} \usage{ -module_emissions_batch_delete_gdp_control_xml(command, ...) +module_emissions_delete_gdp_control_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_emission_controls_xml.Rd b/input/gcamdata/man/module_emissions_emission_controls_xml.Rd similarity index 64% rename from input/gcamdata/man/module_emissions_batch_emission_controls_xml.Rd rename to input/gcamdata/man/module_emissions_emission_controls_xml.Rd index d8f1411ca0..cf20195b5f 100644 --- a/input/gcamdata/man/module_emissions_batch_emission_controls_xml.Rd +++ b/input/gcamdata/man/module_emissions_emission_controls_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_emission_controls_xml.R -\name{module_emissions_batch_emission_controls_xml} -\alias{module_emissions_batch_emission_controls_xml} -\title{module_emissions_batch_emission_controls_xml} +% Please edit documentation in R/zemissions_xml_emission_controls.R +\name{module_emissions_emission_controls_xml} +\alias{module_emissions_emission_controls_xml} +\title{module_emissions_emission_controls_xml} \usage{ -module_emissions_batch_emission_controls_xml(command, ...) +module_emissions_emission_controls_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_ind_urb_processing_sectors_xml.Rd b/input/gcamdata/man/module_emissions_ind_urb_processing_sectors_xml.Rd similarity index 64% rename from input/gcamdata/man/module_emissions_batch_ind_urb_processing_sectors_xml.Rd rename to input/gcamdata/man/module_emissions_ind_urb_processing_sectors_xml.Rd index 630dd8a067..950e31315d 100644 --- a/input/gcamdata/man/module_emissions_batch_ind_urb_processing_sectors_xml.Rd +++ b/input/gcamdata/man/module_emissions_ind_urb_processing_sectors_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_ind_urb_processing_sectors.R -\name{module_emissions_batch_ind_urb_processing_sectors_xml} -\alias{module_emissions_batch_ind_urb_processing_sectors_xml} -\title{module_emissions_batch_ind_urb_processing_sectors_xml} +% Please edit documentation in R/zemissions_xml_ind_urb_processing_sectors.R +\name{module_emissions_ind_urb_processing_sectors_xml} +\alias{module_emissions_ind_urb_processing_sectors_xml} +\title{module_emissions_ind_urb_processing_sectors_xml} \usage{ -module_emissions_batch_ind_urb_processing_sectors_xml(command, ...) +module_emissions_ind_urb_processing_sectors_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_ssp15_emissions_factors_xml.Rd b/input/gcamdata/man/module_emissions_ssp15_emissions_factors_xml.Rd similarity index 63% rename from input/gcamdata/man/module_emissions_batch_ssp15_emissions_factors_xml.Rd rename to input/gcamdata/man/module_emissions_ssp15_emissions_factors_xml.Rd index 4eb9fc4707..f100cabd96 100644 --- a/input/gcamdata/man/module_emissions_batch_ssp15_emissions_factors_xml.Rd +++ b/input/gcamdata/man/module_emissions_ssp15_emissions_factors_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_ssp15_emissions_factors_xml.R -\name{module_emissions_batch_ssp15_emissions_factors_xml} -\alias{module_emissions_batch_ssp15_emissions_factors_xml} -\title{module_emissions_batch_ssp15_emissions_factors_xml} +% Please edit documentation in R/zemissions_xml_ssp15_emissions_factors.R +\name{module_emissions_ssp15_emissions_factors_xml} +\alias{module_emissions_ssp15_emissions_factors_xml} +\title{module_emissions_ssp15_emissions_factors_xml} \usage{ -module_emissions_batch_ssp15_emissions_factors_xml(command, ...) +module_emissions_ssp15_emissions_factors_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_ssp2_emissions_factors_xml.Rd b/input/gcamdata/man/module_emissions_ssp2_emissions_factors_xml.Rd similarity index 63% rename from input/gcamdata/man/module_emissions_batch_ssp2_emissions_factors_xml.Rd rename to input/gcamdata/man/module_emissions_ssp2_emissions_factors_xml.Rd index 758ed5c352..effb441603 100644 --- a/input/gcamdata/man/module_emissions_batch_ssp2_emissions_factors_xml.Rd +++ b/input/gcamdata/man/module_emissions_ssp2_emissions_factors_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_ssp2_emissions_factors_xml.R -\name{module_emissions_batch_ssp2_emissions_factors_xml} -\alias{module_emissions_batch_ssp2_emissions_factors_xml} -\title{module_emissions_batch_ssp2_emissions_factors_xml} +% Please edit documentation in R/zemissions_xml_ssp2_emissions_factors.R +\name{module_emissions_ssp2_emissions_factors_xml} +\alias{module_emissions_ssp2_emissions_factors_xml} +\title{module_emissions_ssp2_emissions_factors_xml} \usage{ -module_emissions_batch_ssp2_emissions_factors_xml(command, ...) +module_emissions_ssp2_emissions_factors_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_batch_ssp34_emissions_factors_xml.Rd b/input/gcamdata/man/module_emissions_ssp34_emissions_factors_xml.Rd similarity index 63% rename from input/gcamdata/man/module_emissions_batch_ssp34_emissions_factors_xml.Rd rename to input/gcamdata/man/module_emissions_ssp34_emissions_factors_xml.Rd index dd8676983b..6a91af39f2 100644 --- a/input/gcamdata/man/module_emissions_batch_ssp34_emissions_factors_xml.Rd +++ b/input/gcamdata/man/module_emissions_ssp34_emissions_factors_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_batch_ssp34_emissions_factors_xml.R -\name{module_emissions_batch_ssp34_emissions_factors_xml} -\alias{module_emissions_batch_ssp34_emissions_factors_xml} -\title{module_emissions_batch_ssp34_emissions_factors_xml} +% Please edit documentation in R/zemissions_xml_ssp34_emissions_factors.R +\name{module_emissions_ssp34_emissions_factors_xml} +\alias{module_emissions_ssp34_emissions_factors_xml} +\title{module_emissions_ssp34_emissions_factors_xml} \usage{ -module_emissions_batch_ssp34_emissions_factors_xml(command, ...) +module_emissions_ssp34_emissions_factors_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_Ccoef_xml.Rd b/input/gcamdata/man/module_energy_Ccoef_xml.Rd similarity index 70% rename from input/gcamdata/man/module_energy_batch_Ccoef_xml.Rd rename to input/gcamdata/man/module_energy_Ccoef_xml.Rd index 117c7b04cf..8991de0827 100644 --- a/input/gcamdata/man/module_energy_batch_Ccoef_xml.Rd +++ b/input/gcamdata/man/module_energy_Ccoef_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_Ccoef_xml.R -\name{module_energy_batch_Ccoef_xml} -\alias{module_energy_batch_Ccoef_xml} -\title{module_energy_batch_Ccoef_xml} +% Please edit documentation in R/zenergy_xml_Ccoef.R +\name{module_energy_Ccoef_xml} +\alias{module_energy_Ccoef_xml} +\title{module_energy_Ccoef_xml} \usage{ -module_energy_batch_Ccoef_xml(command, ...) +module_energy_Ccoef_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_Cstorage_xml.Rd b/input/gcamdata/man/module_energy_Cstorage_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_Cstorage_xml.Rd rename to input/gcamdata/man/module_energy_Cstorage_xml.Rd index 272a5ad595..1258304fbb 100644 --- a/input/gcamdata/man/module_energy_batch_Cstorage_xml.Rd +++ b/input/gcamdata/man/module_energy_Cstorage_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_Cstorage_xml.R -\name{module_energy_batch_Cstorage_xml} -\alias{module_energy_batch_Cstorage_xml} -\title{module_energy_batch_Cstorage.xml} +% Please edit documentation in R/zenergy_xml_Cstorage.R +\name{module_energy_Cstorage_xml} +\alias{module_energy_Cstorage_xml} +\title{module_energy_Cstorage.xml} \usage{ -module_energy_batch_Cstorage_xml(command, ...) +module_energy_Cstorage_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_HDDCDD_xml.Rd b/input/gcamdata/man/module_energy_HDDCDD_xml.Rd similarity index 71% rename from input/gcamdata/man/module_energy_batch_HDDCDD_xml.Rd rename to input/gcamdata/man/module_energy_HDDCDD_xml.Rd index ac1c509c25..6a7b442023 100644 --- a/input/gcamdata/man/module_energy_batch_HDDCDD_xml.Rd +++ b/input/gcamdata/man/module_energy_HDDCDD_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_HDDCDD_xml.R -\name{module_energy_batch_HDDCDD_xml} -\alias{module_energy_batch_HDDCDD_xml} -\title{module_energy_batch_HDDCDD_xml} +% Please edit documentation in R/zenergy_xml_HDDCDD.R +\name{module_energy_HDDCDD_xml} +\alias{module_energy_HDDCDD_xml} +\title{module_energy_HDDCDD_xml} \usage{ -module_energy_batch_HDDCDD_xml(command, ...) +module_energy_HDDCDD_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_L1092.iron_steel_GrossTrade.Rd b/input/gcamdata/man/module_energy_L1092.iron_steel_GrossTrade.Rd new file mode 100644 index 0000000000..e1f44963eb --- /dev/null +++ b/input/gcamdata/man/module_energy_L1092.iron_steel_GrossTrade.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zenergy_L1092.iron_steel_GrossTrade.R +\name{module_energy_L1092.iron_steel_GrossTrade} +\alias{module_energy_L1092.iron_steel_GrossTrade} +\title{module_energy_L1092.iron_steel_GrossTrade} +\usage{ +module_energy_L1092.iron_steel_GrossTrade(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{LB1092.Tradebalance_iron_steel_Mt_R_Y}. +} +\description{ +Reads country-level steel production, consumption, imports and exports data from World Steel Association data set. +Adjusts regional steel exports and imports by a scaling factor to fit the trade balance equation (consumption = production - exports + imports). +Aggregates trade data by GCAM region, Calculates and removes intra-regional trade using bilateral trade data from resource trade database. +Scales the regional trade data to ensure global imports minus exports and global production minus consumption is equal to zero. +} +\author{ +Siddarth Durga July 2022 +} diff --git a/input/gcamdata/man/module_energy_L1323.iron_steel.Rd b/input/gcamdata/man/module_energy_L1323.iron_steel.Rd index 37fdce58c9..fa677213b3 100644 --- a/input/gcamdata/man/module_energy_L1323.iron_steel.Rd +++ b/input/gcamdata/man/module_energy_L1323.iron_steel.Rd @@ -14,18 +14,18 @@ module_energy_L1323.iron_steel(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L1323.out_Mt_R_iron_steel_Yh}, \code{L1323.IO_GJkg_R_iron_steel_F_Yh}, \code{L1323.in_EJ_R_iron_steel_F_Y}, \code{L1323.in_EJ_R_indenergy_F_Yh}. The corresponding file in the +the generated outputs: \code{L1323.out_Mt_R_iron_steel_Yh}, \code{L1323.IO_GJkg_R_iron_steel_F_Yh}, \code{L1323.in_EJ_R_iron_steel_F_Y}, \code{L1323.in_EJ_R_indenergy_F_Yh}, \code{L1323.SubsectorInterp_iron_steel}. The corresponding file in the original data system was \code{LA1323.iron_steel.R} (energy level1). } \description{ Sets up input, output, and IO coefficients for iron and steel and subtracts input energy from industry energy use } \details{ -This chunk generates input, output, and IO coefficients for the iron and steel sector. It begins by downscaling Worrell regional data from 1994 +This chunk generates input, output, IO coefficients, and subsector shareweights for the iron and steel sector. It begins by downscaling Worrell regional data from 1994 to set up process emissions factors that are multiplied by country emissions from CDIAC to determine production. Limestone consumption is calculated from the same downscaling. IEA fuelshares and heat and electricity are used to determine energy use by fuel. Energy inputs are then subtracted from industrial energy use and any resulting negative values are dealt with by moving their accounting to the iron and steel sector. } \author{ -Yang Liu Sep 2019 +Yang Liu Sep 2019, Siddarth Durga April 2023 } diff --git a/input/gcamdata/man/module_energy_L226.en_distribution.Rd b/input/gcamdata/man/module_energy_L226.en_distribution.Rd index a707f6391f..71b83c1acd 100644 --- a/input/gcamdata/man/module_energy_L226.en_distribution.Rd +++ b/input/gcamdata/man/module_energy_L226.en_distribution.Rd @@ -14,7 +14,7 @@ module_energy_L226.en_distribution(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L226.SectorLogitTables[[ curr_table ]]$data}, \code{L226.Supplysector_en}, \code{L226.SubsectorLogitTables[[ curr_table ]]$data}, \code{L226.SubsectorLogit_en}, \code{L226.SubsectorShrwt_en}, \code{L226.SubsectorShrwtFllt_en}, \code{L226.SubsectorInterp_en}, \code{L226.SubsectorInterpTo_en}, \code{L226.StubTech_en}, \code{L226.GlobalTechEff_en}, \code{L226.GlobalTechCost_en}, \code{L226.GlobalTechShrwt_en}, \code{L226.StubTechCoef_elecownuse}, \code{L226.StubTechCoef_electd}, \code{L226.StubTechCoef_gaspipe}. The corresponding file in the +the generated outputs: \code{L226.SectorLogitTables[[ curr_table ]]$data}, \code{L226.Supplysector_en}, \code{L226.SubsectorLogitTables[[ curr_table ]]$data}, \code{L226.SubsectorLogit_en}, \code{L226.SubsectorShrwt_en}, \code{L226.SubsectorShrwtFllt_en}, \code{L226.SubsectorInterp_en}, \code{L226.SubsectorInterpTo_en}, \code{L226.StubTech_en}, \code{L226.GlobalTechEff_en}, \code{L226.GlobalTechCost_en}, \code{L226.GlobalTechTrackCapital_en}, \code{L226.GlobalTechShrwt_en}, \code{L226.StubTechCoef_elecownuse}, \code{L226.StubTechCoef_electd}, \code{L226.StubTechCoef_gaspipe}. The corresponding file in the original data system was \code{L226.en_distribution.R} (energy level2). } \description{ diff --git a/input/gcamdata/man/module_energy_L2323.iron_steel.Rd b/input/gcamdata/man/module_energy_L2323.iron_steel.Rd index 5793e851d7..5061bdb0e7 100644 --- a/input/gcamdata/man/module_energy_L2323.iron_steel.Rd +++ b/input/gcamdata/man/module_energy_L2323.iron_steel.Rd @@ -18,7 +18,7 @@ the generated outputs: \code{L2323.SectorLogitTables[[ curr_table ]]$data}, \cod \code{L2323.SubsectorLogitTables[[ curr_table ]]$data}, \code{L2323.SubsectorLogit_iron_steel}, \code{L2323.SubsectorShrwtFllt_iron_steel}, \code{L2323.SubsectorInterp_iron_steel}, \code{L2323.StubTech_iron_steel}, \code{L2323.GlobalTechShrwt_iron_steel}, \code{L2323.GlobalTechCoef_iron_steel}, \code{L2323.GlobalTechCost_iron_steel}, \code{L2323.GlobalTechCapture_iron_steel}, \code{L2323.StubTechProd_iron_steel}, \code{L2323.StubTechCalInput_iron_steel}, -\code{L2323.StubTechCoef_iron_steel}, \code{L2323.PerCapitaBased_iron_steel}, \code{L2323.BaseService_iron_steel}, \code{L2323.PriceElasticity_iron_steel}, +\code{L2323.StubTechCoef_iron_steel}, \code{L2323.StubTechCost_iron_steel}, \code{L2323.PerCapitaBased_iron_steel}, \code{L2323.BaseService_iron_steel}, \code{L2323.PriceElasticity_iron_steel}, \code{object}. The corresponding file in the original data system was \code{L2323.iron_steel.R} (energy level2). } @@ -29,5 +29,5 @@ Compute a variety of final energy keyword, sector, share weight, and technology The chunk provides final energy keyword, supplysector/subsector information, supplysector/subsector interpolation information, global technology share weight, global technology efficiency, global technology coefficients, global technology cost, price elasticity, stub technology information, stub technology interpolation information, stub technology calibrated inputs, and etc for iron and steel sector. } \author{ -Yang Liu Sep 2019 +Yang Liu Sep 2019, Siddarth Durga April 2023 } diff --git a/input/gcamdata/man/module_energy_L238.iron_steel_trade.Rd b/input/gcamdata/man/module_energy_L238.iron_steel_trade.Rd new file mode 100644 index 0000000000..a0d747949a --- /dev/null +++ b/input/gcamdata/man/module_energy_L238.iron_steel_trade.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zenergy_L238.iron_steel_trade.R +\name{module_energy_L238.iron_steel_trade} +\alias{module_energy_L238.iron_steel_trade} +\title{module_energy_L238.iron_steel_trade} +\usage{ +module_energy_L238.iron_steel_trade(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if + \code{command} is "MAKE") all the generated outputs: \code{L238.Supplysector_tra}, + \code{L238.SectorUseTrialMarket_tra}, \code{L238.SubsectorAll_tra}, \code{L238.TechShrwt_tra}, + \code{L238.TechCost_tra}, \code{L238.TechCoef_tra}, \code{L238.Production_tra}, \code{L238.Supplysector_reg}, + \code{L238.SubsectorAll_reg}, \code{L238.TechShrwt_reg}, \code{L238.TechCoef_reg}, \code{L238.Production_reg_imp}, + \code{L238.Production_reg_dom}. +} +\description{ +Model input for regional and (globally) traded iron and steel +} +\author{ +Siddarth Durga July 2022 +} diff --git a/input/gcamdata/man/module_energy_L2391.gas_trade_flows.Rd b/input/gcamdata/man/module_energy_L2391.gas_trade_flows.Rd index 6023ae23ed..eef47a0389 100644 --- a/input/gcamdata/man/module_energy_L2391.gas_trade_flows.Rd +++ b/input/gcamdata/man/module_energy_L2391.gas_trade_flows.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L2391.gas_trade_flows.R +% Please edit documentation in R/zenergy_L2391.gas_trade_flows.R \name{module_energy_L2391.gas_trade_flows} \alias{module_energy_L2391.gas_trade_flows} \title{module_energy_L2391.gas_trade_flows} diff --git a/input/gcamdata/man/module_energy_L2392.gas_trade.Rd b/input/gcamdata/man/module_energy_L2392.gas_trade.Rd index 0cfe2cf032..2bb3294b6c 100644 --- a/input/gcamdata/man/module_energy_L2392.gas_trade.Rd +++ b/input/gcamdata/man/module_energy_L2392.gas_trade.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L2392.gas_trade.R +% Please edit documentation in R/zenergy_L2392.gas_trade.R \name{module_energy_L2392.gas_trade} \alias{module_energy_L2392.gas_trade} \title{module_energy_L2392.gas_trade} diff --git a/input/gcamdata/man/module_energy_batch_Off_road_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_Off_road_incelas_SSP_xml.Rd similarity index 74% rename from input/gcamdata/man/module_energy_batch_Off_road_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_Off_road_incelas_SSP_xml.Rd index b0db5ec924..cbaa6ad89f 100644 --- a/input/gcamdata/man/module_energy_batch_Off_road_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_Off_road_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_Off_road_SSP_xml.R -\name{module_energy_batch_Off_road_incelas_SSP_xml} -\alias{module_energy_batch_Off_road_incelas_SSP_xml} -\title{module_energy_batch_Off_road_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_Off_road_SSP.R +\name{module_energy_Off_road_incelas_SSP_xml} +\alias{module_energy_Off_road_incelas_SSP_xml} +\title{module_energy_Off_road_incelas_SSP_xml} \usage{ -module_energy_batch_Off_road_incelas_SSP_xml(command, ...) +module_energy_Off_road_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_Off_road_xml.Rd b/input/gcamdata/man/module_energy_Off_road_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_Off_road_xml.Rd rename to input/gcamdata/man/module_energy_Off_road_xml.Rd index 1a42a0d3ae..00e455157c 100644 --- a/input/gcamdata/man/module_energy_batch_Off_road_xml.Rd +++ b/input/gcamdata/man/module_energy_Off_road_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_Off_road_xml.R -\name{module_energy_batch_Off_road_xml} -\alias{module_energy_batch_Off_road_xml} -\title{module_energy_batch_Off_road_xml} +% Please edit documentation in R/zenergy_xml_Off_road.R +\name{module_energy_Off_road_xml} +\alias{module_energy_Off_road_xml} +\title{module_energy_Off_road_xml} \usage{ -module_energy_batch_Off_road_xml(command, ...) +module_energy_Off_road_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_aluminum_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_aluminum_incelas_SSP_xml.Rd similarity index 74% rename from input/gcamdata/man/module_energy_batch_aluminum_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_aluminum_incelas_SSP_xml.Rd index 1ffbcd978a..9d569063f1 100644 --- a/input/gcamdata/man/module_energy_batch_aluminum_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_aluminum_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_aluminum_SSP_xml.R -\name{module_energy_batch_aluminum_incelas_SSP_xml} -\alias{module_energy_batch_aluminum_incelas_SSP_xml} -\title{module_energy_batch_aluminum_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_aluminum_SSP.R +\name{module_energy_aluminum_incelas_SSP_xml} +\alias{module_energy_aluminum_incelas_SSP_xml} +\title{module_energy_aluminum_incelas_SSP_xml} \usage{ -module_energy_batch_aluminum_incelas_SSP_xml(command, ...) +module_energy_aluminum_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_aluminum_xml.Rd b/input/gcamdata/man/module_energy_aluminum_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_aluminum_xml.Rd rename to input/gcamdata/man/module_energy_aluminum_xml.Rd index bdd6236c81..a9670129a9 100644 --- a/input/gcamdata/man/module_energy_batch_aluminum_xml.Rd +++ b/input/gcamdata/man/module_energy_aluminum_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_aluminum_xml.R -\name{module_energy_batch_aluminum_xml} -\alias{module_energy_batch_aluminum_xml} -\title{module_energy_batch_aluminum_xml} +% Please edit documentation in R/zenergy_xml_aluminum.R +\name{module_energy_aluminum_xml} +\alias{module_energy_aluminum_xml} +\title{module_energy_aluminum_xml} \usage{ -module_energy_batch_aluminum_xml(command, ...) +module_energy_aluminum_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_bio_externality_xml.Rd b/input/gcamdata/man/module_energy_bio_externality_xml.Rd similarity index 65% rename from input/gcamdata/man/module_energy_batch_bio_externality_xml.Rd rename to input/gcamdata/man/module_energy_bio_externality_xml.Rd index c078f632cb..94cff6c472 100644 --- a/input/gcamdata/man/module_energy_batch_bio_externality_xml.Rd +++ b/input/gcamdata/man/module_energy_bio_externality_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_bio_externality_cost_xml.R -\name{module_energy_batch_bio_externality_xml} -\alias{module_energy_batch_bio_externality_xml} -\title{module_energy_batch_bio_externality_xml} +% Please edit documentation in R/zenergy_xml_bio_externality_cost.R +\name{module_energy_bio_externality_xml} +\alias{module_energy_bio_externality_xml} +\title{module_energy_bio_externality_xml} \usage{ -module_energy_batch_bio_externality_xml(command, ...) +module_energy_bio_externality_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_building_SSP_xml.Rd b/input/gcamdata/man/module_energy_building_SSP_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_building_SSP_xml.Rd rename to input/gcamdata/man/module_energy_building_SSP_xml.Rd index 5618df3bf5..77bdd6c6b5 100644 --- a/input/gcamdata/man/module_energy_batch_building_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_building_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_building_SSP_xml.R -\name{module_energy_batch_building_SSP_xml} -\alias{module_energy_batch_building_SSP_xml} -\title{module_energy_batch_building_SSP_xml} +% Please edit documentation in R/zenergy_xml_building_SSP.R +\name{module_energy_building_SSP_xml} +\alias{module_energy_building_SSP_xml} +\title{module_energy_building_SSP_xml} \usage{ -module_energy_batch_building_SSP_xml(command, ...) +module_energy_building_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_building_agg_xml.Rd b/input/gcamdata/man/module_energy_building_agg_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_building_agg_xml.Rd rename to input/gcamdata/man/module_energy_building_agg_xml.Rd index 2afbf84ac9..cb7001965f 100644 --- a/input/gcamdata/man/module_energy_batch_building_agg_xml.Rd +++ b/input/gcamdata/man/module_energy_building_agg_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_building_agg_xml.R -\name{module_energy_batch_building_agg_xml} -\alias{module_energy_batch_building_agg_xml} -\title{module_energy_batch_building_agg_xml} +% Please edit documentation in R/zenergy_xml_building_agg.R +\name{module_energy_building_agg_xml} +\alias{module_energy_building_agg_xml} +\title{module_energy_building_agg_xml} \usage{ -module_energy_batch_building_agg_xml(command, ...) +module_energy_building_agg_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_building_det_xml.Rd b/input/gcamdata/man/module_energy_building_det_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_building_det_xml.Rd rename to input/gcamdata/man/module_energy_building_det_xml.Rd index 8310fe1b99..85c7145d9a 100644 --- a/input/gcamdata/man/module_energy_batch_building_det_xml.Rd +++ b/input/gcamdata/man/module_energy_building_det_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_building_det_xml.R -\name{module_energy_batch_building_det_xml} -\alias{module_energy_batch_building_det_xml} -\title{module_energy_batch_building_det_xml} +% Please edit documentation in R/zenergy_xml_building_det.R +\name{module_energy_building_det_xml} +\alias{module_energy_building_det_xml} +\title{module_energy_building_det_xml} \usage{ -module_energy_batch_building_det_xml(command, ...) +module_energy_building_det_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_ccs_supply_high_xml.Rd b/input/gcamdata/man/module_energy_ccs_supply_high_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_ccs_supply_high_xml.Rd rename to input/gcamdata/man/module_energy_ccs_supply_high_xml.Rd index fb42fdd0a7..d439c0598e 100644 --- a/input/gcamdata/man/module_energy_batch_ccs_supply_high_xml.Rd +++ b/input/gcamdata/man/module_energy_ccs_supply_high_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_ccs_supply_high_xml.R -\name{module_energy_batch_ccs_supply_high_xml} -\alias{module_energy_batch_ccs_supply_high_xml} -\title{module_energy_batch_ccs_supply_high_xml} +% Please edit documentation in R/zenergy_xml_ccs_supply_high.R +\name{module_energy_ccs_supply_high_xml} +\alias{module_energy_ccs_supply_high_xml} +\title{module_energy_ccs_supply_high_xml} \usage{ -module_energy_batch_ccs_supply_high_xml(command, ...) +module_energy_ccs_supply_high_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_ccs_supply_low_xml.Rd b/input/gcamdata/man/module_energy_ccs_supply_low_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_ccs_supply_low_xml.Rd rename to input/gcamdata/man/module_energy_ccs_supply_low_xml.Rd index 84c60c4bf7..cd81ca379e 100644 --- a/input/gcamdata/man/module_energy_batch_ccs_supply_low_xml.Rd +++ b/input/gcamdata/man/module_energy_ccs_supply_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_ccs_supply_low_xml.R -\name{module_energy_batch_ccs_supply_low_xml} -\alias{module_energy_batch_ccs_supply_low_xml} -\title{module_energy_batch_ccs_supply_low_xml} +% Please edit documentation in R/zenergy_xml_ccs_supply_low.R +\name{module_energy_ccs_supply_low_xml} +\alias{module_energy_ccs_supply_low_xml} +\title{module_energy_ccs_supply_low_xml} \usage{ -module_energy_batch_ccs_supply_low_xml(command, ...) +module_energy_ccs_supply_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_ccs_supply_lowest_xml.Rd b/input/gcamdata/man/module_energy_ccs_supply_lowest_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_ccs_supply_lowest_xml.Rd rename to input/gcamdata/man/module_energy_ccs_supply_lowest_xml.Rd index 5d06cf58ff..6c3697f838 100644 --- a/input/gcamdata/man/module_energy_batch_ccs_supply_lowest_xml.Rd +++ b/input/gcamdata/man/module_energy_ccs_supply_lowest_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_ccs_supply_lowest_xml.R -\name{module_energy_batch_ccs_supply_lowest_xml} -\alias{module_energy_batch_ccs_supply_lowest_xml} -\title{module_energy_batch_ccs_supply_lowest_xml} +% Please edit documentation in R/zenergy_xml_ccs_supply_lowest.R +\name{module_energy_ccs_supply_lowest_xml} +\alias{module_energy_ccs_supply_lowest_xml} +\title{module_energy_ccs_supply_lowest_xml} \usage{ -module_energy_batch_ccs_supply_lowest_xml(command, ...) +module_energy_ccs_supply_lowest_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_cement_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_cement_incelas_SSP_xml.Rd similarity index 74% rename from input/gcamdata/man/module_energy_batch_cement_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_cement_incelas_SSP_xml.Rd index 0c65ab5d26..119f84e8f8 100644 --- a/input/gcamdata/man/module_energy_batch_cement_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_cement_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_cement_SSP_xml.R -\name{module_energy_batch_cement_incelas_SSP_xml} -\alias{module_energy_batch_cement_incelas_SSP_xml} -\title{module_energy_batch_cement_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_cement_SSP.R +\name{module_energy_cement_incelas_SSP_xml} +\alias{module_energy_cement_incelas_SSP_xml} +\title{module_energy_cement_incelas_SSP_xml} \usage{ -module_energy_batch_cement_incelas_SSP_xml(command, ...) +module_energy_cement_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_cement_xml.Rd b/input/gcamdata/man/module_energy_cement_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_cement_xml.Rd rename to input/gcamdata/man/module_energy_cement_xml.Rd index 88436d4e9f..a4a021385f 100644 --- a/input/gcamdata/man/module_energy_batch_cement_xml.Rd +++ b/input/gcamdata/man/module_energy_cement_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_cement_xml.R -\name{module_energy_batch_cement_xml} -\alias{module_energy_batch_cement_xml} -\title{module_energy_batch_cement_xml} +% Please edit documentation in R/zenergy_xml_cement.R +\name{module_energy_cement_xml} +\alias{module_energy_cement_xml} +\title{module_energy_cement_xml} \usage{ -module_energy_batch_cement_xml(command, ...) +module_energy_cement_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_chemical_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_chemical_incelas_SSP_xml.Rd similarity index 74% rename from input/gcamdata/man/module_energy_batch_chemical_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_chemical_incelas_SSP_xml.Rd index 37cde2559f..ed1b916ae5 100644 --- a/input/gcamdata/man/module_energy_batch_chemical_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_chemical_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_chemical_SSP_xml.R -\name{module_energy_batch_chemical_incelas_SSP_xml} -\alias{module_energy_batch_chemical_incelas_SSP_xml} -\title{module_energy_batch_chemical_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_chemical_SSP.R +\name{module_energy_chemical_incelas_SSP_xml} +\alias{module_energy_chemical_incelas_SSP_xml} +\title{module_energy_chemical_incelas_SSP_xml} \usage{ -module_energy_batch_chemical_incelas_SSP_xml(command, ...) +module_energy_chemical_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_chemical_xml.Rd b/input/gcamdata/man/module_energy_chemical_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_chemical_xml.Rd rename to input/gcamdata/man/module_energy_chemical_xml.Rd index 666c6715a0..d451252e45 100644 --- a/input/gcamdata/man/module_energy_batch_chemical_xml.Rd +++ b/input/gcamdata/man/module_energy_chemical_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_chemical_xml.R -\name{module_energy_batch_chemical_xml} -\alias{module_energy_batch_chemical_xml} -\title{module_energy_batch_chemical_xml} +% Please edit documentation in R/zenergy_xml_chemical.R +\name{module_energy_chemical_xml} +\alias{module_energy_chemical_xml} +\title{module_energy_chemical_xml} \usage{ -module_energy_batch_chemical_xml(command, ...) +module_energy_chemical_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_dac_xml.Rd b/input/gcamdata/man/module_energy_dac_xml.Rd similarity index 71% rename from input/gcamdata/man/module_energy_batch_dac_xml.Rd rename to input/gcamdata/man/module_energy_dac_xml.Rd index 3dd294e382..a7b02a9504 100644 --- a/input/gcamdata/man/module_energy_batch_dac_xml.Rd +++ b/input/gcamdata/man/module_energy_dac_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_dac_xml.R -\name{module_energy_batch_dac_xml} -\alias{module_energy_batch_dac_xml} -\title{module_energy_batch_dac_xml} +% Please edit documentation in R/zenergy_xml_dac.R +\name{module_energy_dac_xml} +\alias{module_energy_dac_xml} +\title{module_energy_dac_xml} \usage{ -module_energy_batch_dac_xml(command, ...) +module_energy_dac_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_elec_bio_low_xml.Rd b/input/gcamdata/man/module_energy_elec_bio_low_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_elec_bio_low_xml.Rd rename to input/gcamdata/man/module_energy_elec_bio_low_xml.Rd index c99682bfdb..dbc11e5364 100644 --- a/input/gcamdata/man/module_energy_batch_elec_bio_low_xml.Rd +++ b/input/gcamdata/man/module_energy_elec_bio_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_elec_bio_low_xml.R -\name{module_energy_batch_elec_bio_low_xml} -\alias{module_energy_batch_elec_bio_low_xml} -\title{module_energy_batch_elec_bio_low_xml} +% Please edit documentation in R/zenergy_xml_elec_bio_low.R +\name{module_energy_elec_bio_low_xml} +\alias{module_energy_elec_bio_low_xml} +\title{module_energy_elec_bio_low_xml} \usage{ -module_energy_batch_elec_bio_low_xml(command, ...) +module_energy_elec_bio_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_electricity_xml.Rd b/input/gcamdata/man/module_energy_electricity_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_electricity_xml.Rd rename to input/gcamdata/man/module_energy_electricity_xml.Rd index 3516cb8df8..f36ec9e0d4 100644 --- a/input/gcamdata/man/module_energy_batch_electricity_xml.Rd +++ b/input/gcamdata/man/module_energy_electricity_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_electricity_xml.R -\name{module_energy_batch_electricity_xml} -\alias{module_energy_batch_electricity_xml} -\title{module_energy_batch_electricity_xml} +% Please edit documentation in R/zenergy_xml_electricity.R +\name{module_energy_electricity_xml} +\alias{module_energy_electricity_xml} +\title{module_energy_electricity_xml} \usage{ -module_energy_batch_electricity_xml(command, ...) +module_energy_electricity_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_en_Fert_xml.Rd b/input/gcamdata/man/module_energy_en_Fert_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_en_Fert_xml.Rd rename to input/gcamdata/man/module_energy_en_Fert_xml.Rd index 6fd7bb1f01..dcdf6425ac 100644 --- a/input/gcamdata/man/module_energy_batch_en_Fert_xml.Rd +++ b/input/gcamdata/man/module_energy_en_Fert_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_en_Fert_xml.R -\name{module_energy_batch_en_Fert_xml} -\alias{module_energy_batch_en_Fert_xml} -\title{module_energy_batch_en_Fert_xml} +% Please edit documentation in R/zenergy_xml_en_Fert.R +\name{module_energy_en_Fert_xml} +\alias{module_energy_en_Fert_xml} +\title{module_energy_en_Fert_xml} \usage{ -module_energy_batch_en_Fert_xml(command, ...) +module_energy_en_Fert_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_en_distribution_xml.Rd b/input/gcamdata/man/module_energy_en_distribution_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_en_distribution_xml.Rd rename to input/gcamdata/man/module_energy_en_distribution_xml.Rd index 97f6671dae..e0147806db 100644 --- a/input/gcamdata/man/module_energy_batch_en_distribution_xml.Rd +++ b/input/gcamdata/man/module_energy_en_distribution_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_en_distribution_xml.R -\name{module_energy_batch_en_distribution_xml} -\alias{module_energy_batch_en_distribution_xml} -\title{module_energy_batch_en_distribution_xml} +% Please edit documentation in R/zenergy_xml_en_distribution.R +\name{module_energy_en_distribution_xml} +\alias{module_energy_en_distribution_xml} +\title{module_energy_en_distribution_xml} \usage{ -module_energy_batch_en_distribution_xml(command, ...) +module_energy_en_distribution_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_en_supply_xml.Rd b/input/gcamdata/man/module_energy_en_supply_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_en_supply_xml.Rd rename to input/gcamdata/man/module_energy_en_supply_xml.Rd index ccde9f5e21..c574e22d72 100644 --- a/input/gcamdata/man/module_energy_batch_en_supply_xml.Rd +++ b/input/gcamdata/man/module_energy_en_supply_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_en_supply_xml.R -\name{module_energy_batch_en_supply_xml} -\alias{module_energy_batch_en_supply_xml} -\title{module_energy_batch_en_supply_xml} +% Please edit documentation in R/zenergy_xml_en_supply.R +\name{module_energy_en_supply_xml} +\alias{module_energy_en_supply_xml} +\title{module_energy_en_supply_xml} \usage{ -module_energy_batch_en_supply_xml(command, ...) +module_energy_en_supply_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_en_transformation_low_xml.Rd b/input/gcamdata/man/module_energy_en_transformation_low_xml.Rd similarity index 65% rename from input/gcamdata/man/module_energy_batch_en_transformation_low_xml.Rd rename to input/gcamdata/man/module_energy_en_transformation_low_xml.Rd index 7f1a806a66..f7879b27bc 100644 --- a/input/gcamdata/man/module_energy_batch_en_transformation_low_xml.Rd +++ b/input/gcamdata/man/module_energy_en_transformation_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_en_transformation_low_xml.R -\name{module_energy_batch_en_transformation_low_xml} -\alias{module_energy_batch_en_transformation_low_xml} -\title{module_energy_batch_en_transformation_low_xml} +% Please edit documentation in R/zenergy_xml_en_transformation_low.R +\name{module_energy_en_transformation_low_xml} +\alias{module_energy_en_transformation_low_xml} +\title{module_energy_en_transformation_low_xml} \usage{ -module_energy_batch_en_transformation_low_xml(command, ...) +module_energy_en_transformation_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_en_transformation_xml.Rd b/input/gcamdata/man/module_energy_en_transformation_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_en_transformation_xml.Rd rename to input/gcamdata/man/module_energy_en_transformation_xml.Rd index 5e02b33ed6..4dce99f337 100644 --- a/input/gcamdata/man/module_energy_batch_en_transformation_xml.Rd +++ b/input/gcamdata/man/module_energy_en_transformation_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_en_transformation_xml.R -\name{module_energy_batch_en_transformation_xml} -\alias{module_energy_batch_en_transformation_xml} -\title{module_energy_batch_en_transformation_xml} +% Please edit documentation in R/zenergy_xml_en_transformation.R +\name{module_energy_en_transformation_xml} +\alias{module_energy_en_transformation_xml} +\title{module_energy_en_transformation_xml} \usage{ -module_energy_batch_en_transformation_xml(command, ...) +module_energy_en_transformation_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_gas_trade_xml.Rd b/input/gcamdata/man/module_energy_gas_trade_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_gas_trade_xml.Rd rename to input/gcamdata/man/module_energy_gas_trade_xml.Rd index a686ccb239..e58a54ec05 100644 --- a/input/gcamdata/man/module_energy_batch_gas_trade_xml.Rd +++ b/input/gcamdata/man/module_energy_gas_trade_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_batch_gas_trade_xml.R -\name{module_energy_batch_gas_trade_xml} -\alias{module_energy_batch_gas_trade_xml} -\title{module_energy_batch_gas_trade_xml} +% Please edit documentation in R/zenergy_xml_gas_trade.R +\name{module_energy_gas_trade_xml} +\alias{module_energy_gas_trade_xml} +\title{module_energy_gas_trade_xml} \usage{ -module_energy_batch_gas_trade_xml(command, ...) +module_energy_gas_trade_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_geo_adv_xml.Rd b/input/gcamdata/man/module_energy_geo_adv_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_geo_adv_xml.Rd rename to input/gcamdata/man/module_energy_geo_adv_xml.Rd index 64d5871879..923607ff11 100644 --- a/input/gcamdata/man/module_energy_batch_geo_adv_xml.Rd +++ b/input/gcamdata/man/module_energy_geo_adv_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_geo_adv_xml.R -\name{module_energy_batch_geo_adv_xml} -\alias{module_energy_batch_geo_adv_xml} -\title{module_energy_batch_geo_adv_xml} +% Please edit documentation in R/zenergy_xml_geo_adv.R +\name{module_energy_geo_adv_xml} +\alias{module_energy_geo_adv_xml} +\title{module_energy_geo_adv_xml} \usage{ -module_energy_batch_geo_adv_xml(command, ...) +module_energy_geo_adv_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_geo_low_xml.Rd b/input/gcamdata/man/module_energy_geo_low_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_geo_low_xml.Rd rename to input/gcamdata/man/module_energy_geo_low_xml.Rd index 4ae66efc7d..a15468a839 100644 --- a/input/gcamdata/man/module_energy_batch_geo_low_xml.Rd +++ b/input/gcamdata/man/module_energy_geo_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_geo_low_xml.R -\name{module_energy_batch_geo_low_xml} -\alias{module_energy_batch_geo_low_xml} -\title{module_energy_batch_geo_low_xml} +% Please edit documentation in R/zenergy_xml_geo_low.R +\name{module_energy_geo_low_xml} +\alias{module_energy_geo_low_xml} +\title{module_energy_geo_low_xml} \usage{ -module_energy_batch_geo_low_xml(command, ...) +module_energy_geo_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_geo_tech_adv_xml.Rd b/input/gcamdata/man/module_energy_geo_tech_adv_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_geo_tech_adv_xml.Rd rename to input/gcamdata/man/module_energy_geo_tech_adv_xml.Rd index c4b4a42148..f43ea69ed6 100644 --- a/input/gcamdata/man/module_energy_batch_geo_tech_adv_xml.Rd +++ b/input/gcamdata/man/module_energy_geo_tech_adv_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_geo_tech_adv_xml.R -\name{module_energy_batch_geo_tech_adv_xml} -\alias{module_energy_batch_geo_tech_adv_xml} -\title{module_energy_batch_geo_tech_adv_xml} +% Please edit documentation in R/zenergy_xml_geo_tech_adv.R +\name{module_energy_geo_tech_adv_xml} +\alias{module_energy_geo_tech_adv_xml} +\title{module_energy_geo_tech_adv_xml} \usage{ -module_energy_batch_geo_tech_adv_xml(command, ...) +module_energy_geo_tech_adv_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_heat_xml.Rd b/input/gcamdata/man/module_energy_heat_xml.Rd similarity index 70% rename from input/gcamdata/man/module_energy_batch_heat_xml.Rd rename to input/gcamdata/man/module_energy_heat_xml.Rd index b6808acd03..7c61e03a16 100644 --- a/input/gcamdata/man/module_energy_batch_heat_xml.Rd +++ b/input/gcamdata/man/module_energy_heat_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_heat_xml.R -\name{module_energy_batch_heat_xml} -\alias{module_energy_batch_heat_xml} -\title{module_energy_batch_heat_xml} +% Please edit documentation in R/zenergy_xml_heat.R +\name{module_energy_heat_xml} +\alias{module_energy_heat_xml} +\title{module_energy_heat_xml} \usage{ -module_energy_batch_heat_xml(command, ...) +module_energy_heat_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_high_cost_ccs_xml.Rd b/input/gcamdata/man/module_energy_high_cost_ccs_xml.Rd similarity index 67% rename from input/gcamdata/man/module_energy_batch_high_cost_ccs_xml.Rd rename to input/gcamdata/man/module_energy_high_cost_ccs_xml.Rd index 3c0c6f0935..7b6b30513d 100644 --- a/input/gcamdata/man/module_energy_batch_high_cost_ccs_xml.Rd +++ b/input/gcamdata/man/module_energy_high_cost_ccs_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_high_cost_ccs_xml.R -\name{module_energy_batch_high_cost_ccs_xml} -\alias{module_energy_batch_high_cost_ccs_xml} -\title{module_energy_batch_high_cost_ccs_xml} +% Please edit documentation in R/zenergy_xml_high_cost_ccs.R +\name{module_energy_high_cost_ccs_xml} +\alias{module_energy_high_cost_ccs_xml} +\title{module_energy_high_cost_ccs_xml} \usage{ -module_energy_batch_high_cost_ccs_xml(command, ...) +module_energy_high_cost_ccs_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_hydrogen_xml.Rd b/input/gcamdata/man/module_energy_hydrogen_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_hydrogen_xml.Rd rename to input/gcamdata/man/module_energy_hydrogen_xml.Rd index 97623f5dd8..22503e72db 100644 --- a/input/gcamdata/man/module_energy_batch_hydrogen_xml.Rd +++ b/input/gcamdata/man/module_energy_hydrogen_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_hydrogen_xml.R -\name{module_energy_batch_hydrogen_xml} -\alias{module_energy_batch_hydrogen_xml} -\title{module_energy_batch_hydrogen_xml} +% Please edit documentation in R/zenergy_xml_hydrogen.R +\name{module_energy_hydrogen_xml} +\alias{module_energy_hydrogen_xml} +\title{module_energy_hydrogen_xml} \usage{ -module_energy_batch_hydrogen_xml(command, ...) +module_energy_hydrogen_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_iron_steel_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_iron_steel_incelas_SSP_xml.Rd similarity index 73% rename from input/gcamdata/man/module_energy_batch_iron_steel_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_iron_steel_incelas_SSP_xml.Rd index d8c000ca84..22e7a69837 100644 --- a/input/gcamdata/man/module_energy_batch_iron_steel_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_iron_steel_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_iron_steel_SSP_xml.R -\name{module_energy_batch_iron_steel_incelas_SSP_xml} -\alias{module_energy_batch_iron_steel_incelas_SSP_xml} -\title{module_energy_batch_iron_steel_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_iron_steel_SSP.R +\name{module_energy_iron_steel_incelas_SSP_xml} +\alias{module_energy_iron_steel_incelas_SSP_xml} +\title{module_energy_iron_steel_incelas_SSP_xml} \usage{ -module_energy_batch_iron_steel_incelas_SSP_xml(command, ...) +module_energy_iron_steel_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_iron_steel_trade_xml.Rd b/input/gcamdata/man/module_energy_iron_steel_trade_xml.Rd new file mode 100644 index 0000000000..cc81c0e46f --- /dev/null +++ b/input/gcamdata/man/module_energy_iron_steel_trade_xml.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zenergy_xml_iron_steel_trade.R +\name{module_energy_iron_steel_trade_xml} +\alias{module_energy_iron_steel_trade_xml} +\title{module_energy_iron_steel_trade_xml} +\usage{ +module_energy_iron_steel_trade_xml(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{iron_steel_trade.xml}. +} +\description{ +Construct XML data structure for \code{iron_steel_trade.xml}. +} diff --git a/input/gcamdata/man/module_energy_batch_iron_steel_xml.Rd b/input/gcamdata/man/module_energy_iron_steel_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_iron_steel_xml.Rd rename to input/gcamdata/man/module_energy_iron_steel_xml.Rd index f413affc31..6af2132179 100644 --- a/input/gcamdata/man/module_energy_batch_iron_steel_xml.Rd +++ b/input/gcamdata/man/module_energy_iron_steel_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_iron_steel_xml.R -\name{module_energy_batch_iron_steel_xml} -\alias{module_energy_batch_iron_steel_xml} -\title{module_energy_batch_iron_steel_xml} +% Please edit documentation in R/zenergy_xml_iron_steel.R +\name{module_energy_iron_steel_xml} +\alias{module_energy_iron_steel_xml} +\title{module_energy_iron_steel_xml} \usage{ -module_energy_batch_iron_steel_xml(command, ...) +module_energy_iron_steel_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_liquids_limits_xml.Rd b/input/gcamdata/man/module_energy_liquids_limits_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_liquids_limits_xml.Rd rename to input/gcamdata/man/module_energy_liquids_limits_xml.Rd index 5b06fb1ffc..a4524c8e19 100644 --- a/input/gcamdata/man/module_energy_batch_liquids_limits_xml.Rd +++ b/input/gcamdata/man/module_energy_liquids_limits_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_liquids_limits_xml.R -\name{module_energy_batch_liquids_limits_xml} -\alias{module_energy_batch_liquids_limits_xml} -\title{module_energy_batch_liquids_limits_xml} +% Please edit documentation in R/zenergy_xml_liquids_limits.R +\name{module_energy_liquids_limits_xml} +\alias{module_energy_liquids_limits_xml} +\title{module_energy_liquids_limits_xml} \usage{ -module_energy_batch_liquids_limits_xml(command, ...) +module_energy_liquids_limits_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_negative_emissions_budget_xml.Rd b/input/gcamdata/man/module_energy_negative_emissions_budget_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_negative_emissions_budget_xml.Rd rename to input/gcamdata/man/module_energy_negative_emissions_budget_xml.Rd index b20794b709..77570130a5 100644 --- a/input/gcamdata/man/module_energy_batch_negative_emissions_budget_xml.Rd +++ b/input/gcamdata/man/module_energy_negative_emissions_budget_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_negative_emissions_budget_xml.R -\name{module_energy_batch_negative_emissions_budget_xml} -\alias{module_energy_batch_negative_emissions_budget_xml} -\title{module_energy_batch_negative_emissions_budget_xml} +% Please edit documentation in R/zenergy_xml_negative_emissions_budget.R +\name{module_energy_negative_emissions_budget_xml} +\alias{module_energy_negative_emissions_budget_xml} +\title{module_energy_negative_emissions_budget_xml} \usage{ -module_energy_batch_negative_emissions_budget_xml(command, ...) +module_energy_negative_emissions_budget_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_no_offshore_ccs_xml.Rd b/input/gcamdata/man/module_energy_no_offshore_ccs_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_no_offshore_ccs_xml.Rd rename to input/gcamdata/man/module_energy_no_offshore_ccs_xml.Rd index df6e185bc5..2211238315 100644 --- a/input/gcamdata/man/module_energy_batch_no_offshore_ccs_xml.Rd +++ b/input/gcamdata/man/module_energy_no_offshore_ccs_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_no_offshore_ccs_xml.R -\name{module_energy_batch_no_offshore_ccs_xml} -\alias{module_energy_batch_no_offshore_ccs_xml} -\title{module_energy_batch_no_offshore_ccs_xml} +% Please edit documentation in R/zenergy_xml_no_offshore_ccs.R +\name{module_energy_no_offshore_ccs_xml} +\alias{module_energy_no_offshore_ccs_xml} +\title{module_energy_no_offshore_ccs_xml} \usage{ -module_energy_batch_no_offshore_ccs_xml(command, ...) +module_energy_no_offshore_ccs_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_nuclear_adv_xml.Rd b/input/gcamdata/man/module_energy_nuclear_adv_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_nuclear_adv_xml.Rd rename to input/gcamdata/man/module_energy_nuclear_adv_xml.Rd index b148cb7db5..280f4f4d2d 100644 --- a/input/gcamdata/man/module_energy_batch_nuclear_adv_xml.Rd +++ b/input/gcamdata/man/module_energy_nuclear_adv_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_nuclear_adv_xml.R -\name{module_energy_batch_nuclear_adv_xml} -\alias{module_energy_batch_nuclear_adv_xml} -\title{module_energy_batch_nuclear_adv_xml} +% Please edit documentation in R/zenergy_xml_nuclear_adv.R +\name{module_energy_nuclear_adv_xml} +\alias{module_energy_nuclear_adv_xml} +\title{module_energy_nuclear_adv_xml} \usage{ -module_energy_batch_nuclear_adv_xml(command, ...) +module_energy_nuclear_adv_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_nuclear_low_xml.Rd b/input/gcamdata/man/module_energy_nuclear_low_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_nuclear_low_xml.Rd rename to input/gcamdata/man/module_energy_nuclear_low_xml.Rd index 06123b8c93..4f05824c56 100644 --- a/input/gcamdata/man/module_energy_batch_nuclear_low_xml.Rd +++ b/input/gcamdata/man/module_energy_nuclear_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_nuclear_low_xml.R -\name{module_energy_batch_nuclear_low_xml} -\alias{module_energy_batch_nuclear_low_xml} -\title{module_energy_batch_nuclear_low_xml} +% Please edit documentation in R/zenergy_xml_nuclear_low.R +\name{module_energy_nuclear_low_xml} +\alias{module_energy_nuclear_low_xml} +\title{module_energy_nuclear_low_xml} \usage{ -module_energy_batch_nuclear_low_xml(command, ...) +module_energy_nuclear_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_onshore_wind_xml.Rd b/input/gcamdata/man/module_energy_onshore_wind_xml.Rd similarity index 62% rename from input/gcamdata/man/module_energy_batch_onshore_wind_xml.Rd rename to input/gcamdata/man/module_energy_onshore_wind_xml.Rd index 4f1a1b65a7..7b57063dc7 100644 --- a/input/gcamdata/man/module_energy_batch_onshore_wind_xml.Rd +++ b/input/gcamdata/man/module_energy_onshore_wind_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_onshore_wind_xml.R -\name{module_energy_batch_onshore_wind_xml} -\alias{module_energy_batch_onshore_wind_xml} -\title{module_energy_batch_onshore_wind_xml} +% Please edit documentation in R/zenergy_xml_onshore_wind.R +\name{module_energy_onshore_wind_xml} +\alias{module_energy_onshore_wind_xml} +\title{module_energy_onshore_wind_xml} \usage{ -module_energy_batch_onshore_wind_xml(command, ...) +module_energy_onshore_wind_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_other_industry_incelas_SSP_xml.Rd b/input/gcamdata/man/module_energy_other_industry_incelas_SSP_xml.Rd similarity index 73% rename from input/gcamdata/man/module_energy_batch_other_industry_incelas_SSP_xml.Rd rename to input/gcamdata/man/module_energy_other_industry_incelas_SSP_xml.Rd index 5faafa43ba..2b114393cf 100644 --- a/input/gcamdata/man/module_energy_batch_other_industry_incelas_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_other_industry_incelas_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_other_industry_SSP_xml.R -\name{module_energy_batch_other_industry_incelas_SSP_xml} -\alias{module_energy_batch_other_industry_incelas_SSP_xml} -\title{module_energy_batch_other_industry_incelas_SSP_xml} +% Please edit documentation in R/zenergy_xml_other_industry_SSP.R +\name{module_energy_other_industry_incelas_SSP_xml} +\alias{module_energy_other_industry_incelas_SSP_xml} +\title{module_energy_other_industry_incelas_SSP_xml} \usage{ -module_energy_batch_other_industry_incelas_SSP_xml(command, ...) +module_energy_other_industry_incelas_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_other_industry_xml.Rd b/input/gcamdata/man/module_energy_other_industry_xml.Rd similarity index 66% rename from input/gcamdata/man/module_energy_batch_other_industry_xml.Rd rename to input/gcamdata/man/module_energy_other_industry_xml.Rd index f406f86e58..21a14eaf02 100644 --- a/input/gcamdata/man/module_energy_batch_other_industry_xml.Rd +++ b/input/gcamdata/man/module_energy_other_industry_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_other_industry_xml.R -\name{module_energy_batch_other_industry_xml} -\alias{module_energy_batch_other_industry_xml} -\title{module_energy_batch_other_industry_xml} +% Please edit documentation in R/zenergy_xml_other_industry.R +\name{module_energy_other_industry_xml} +\alias{module_energy_other_industry_xml} +\title{module_energy_other_industry_xml} \usage{ -module_energy_batch_other_industry_xml(command, ...) +module_energy_other_industry_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_resources_SSP_xml.Rd b/input/gcamdata/man/module_energy_resources_SSP_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_resources_SSP_xml.Rd rename to input/gcamdata/man/module_energy_resources_SSP_xml.Rd index 5c026a0cfd..5aa8d03708 100644 --- a/input/gcamdata/man/module_energy_batch_resources_SSP_xml.Rd +++ b/input/gcamdata/man/module_energy_resources_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_resources_SSP_xml.R -\name{module_energy_batch_resources_SSP_xml} -\alias{module_energy_batch_resources_SSP_xml} -\title{module_energy_batch_resources_SSP_xml} +% Please edit documentation in R/zenergy_xml_resources_SSP.R +\name{module_energy_resources_SSP_xml} +\alias{module_energy_resources_SSP_xml} +\title{module_energy_resources_SSP_xml} \usage{ -module_energy_batch_resources_SSP_xml(command, ...) +module_energy_resources_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_resources_xml.Rd b/input/gcamdata/man/module_energy_resources_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_resources_xml.Rd rename to input/gcamdata/man/module_energy_resources_xml.Rd index 52379f5000..fc3b1e8bba 100644 --- a/input/gcamdata/man/module_energy_batch_resources_xml.Rd +++ b/input/gcamdata/man/module_energy_resources_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_resources_xml.R -\name{module_energy_batch_resources_xml} -\alias{module_energy_batch_resources_xml} -\title{module_energy_batch_resources_xml} +% Please edit documentation in R/zenergy_xml_resources.R +\name{module_energy_resources_xml} +\alias{module_energy_resources_xml} +\title{module_energy_resources_xml} \usage{ -module_energy_batch_resources_xml(command, ...) +module_energy_resources_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_solar_adv_xml.Rd b/input/gcamdata/man/module_energy_solar_adv_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_solar_adv_xml.Rd rename to input/gcamdata/man/module_energy_solar_adv_xml.Rd index 5201a0d431..477dd32984 100644 --- a/input/gcamdata/man/module_energy_batch_solar_adv_xml.Rd +++ b/input/gcamdata/man/module_energy_solar_adv_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_solar_adv_xml.R -\name{module_energy_batch_solar_adv_xml} -\alias{module_energy_batch_solar_adv_xml} -\title{module_energy_batch_solar_adv_xml} +% Please edit documentation in R/zenergy_xml_solar_adv.R +\name{module_energy_solar_adv_xml} +\alias{module_energy_solar_adv_xml} +\title{module_energy_solar_adv_xml} \usage{ -module_energy_batch_solar_adv_xml(command, ...) +module_energy_solar_adv_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_solar_low_xml.Rd b/input/gcamdata/man/module_energy_solar_low_xml.Rd similarity index 68% rename from input/gcamdata/man/module_energy_batch_solar_low_xml.Rd rename to input/gcamdata/man/module_energy_solar_low_xml.Rd index 47aa9381f2..8e6da4ee39 100644 --- a/input/gcamdata/man/module_energy_batch_solar_low_xml.Rd +++ b/input/gcamdata/man/module_energy_solar_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_solar_low_xml.R -\name{module_energy_batch_solar_low_xml} -\alias{module_energy_batch_solar_low_xml} -\title{module_energy_batch_solar_low_xml} +% Please edit documentation in R/zenergy_xml_solar_low.R +\name{module_energy_solar_low_xml} +\alias{module_energy_solar_low_xml} +\title{module_energy_solar_low_xml} \usage{ -module_energy_batch_solar_low_xml(command, ...) +module_energy_solar_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_transportation_UCD_CORE_xml.Rd b/input/gcamdata/man/module_energy_transportation_UCD_CORE_xml.Rd similarity index 64% rename from input/gcamdata/man/module_energy_batch_transportation_UCD_CORE_xml.Rd rename to input/gcamdata/man/module_energy_transportation_UCD_CORE_xml.Rd index 2cd12585f7..df21830e66 100644 --- a/input/gcamdata/man/module_energy_batch_transportation_UCD_CORE_xml.Rd +++ b/input/gcamdata/man/module_energy_transportation_UCD_CORE_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_transportation_UCD_CORE_xml.R -\name{module_energy_batch_transportation_UCD_CORE_xml} -\alias{module_energy_batch_transportation_UCD_CORE_xml} -\title{module_energy_batch_transportation_UCD_CORE_xml} +% Please edit documentation in R/zenergy_xml_transportation_UCD_CORE.R +\name{module_energy_transportation_UCD_CORE_xml} +\alias{module_energy_transportation_UCD_CORE_xml} +\title{module_energy_transportation_UCD_CORE_xml} \usage{ -module_energy_batch_transportation_UCD_CORE_xml(command, ...) +module_energy_transportation_UCD_CORE_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_turn_off_ccs_xml.Rd b/input/gcamdata/man/module_energy_turn_off_ccs_xml.Rd new file mode 100644 index 0000000000..914da0a8f8 --- /dev/null +++ b/input/gcamdata/man/module_energy_turn_off_ccs_xml.Rd @@ -0,0 +1,24 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zenergy_xml_turn_off_ccs.R +\name{module_energy_turn_off_ccs_xml} +\alias{module_energy_turn_off_ccs_xml} +\title{module_energy_turn_off_ccs_xml} +\usage{ +module_energy_turn_off_ccs_xml(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{turn_off_ccs.xml}. +} +\description{ +Construct XML data structure for \code{turn_off_ccs.xml}. +} +\author{ +EL 2022 +} diff --git a/input/gcamdata/man/module_energy_batch_wind_adv_xml.Rd b/input/gcamdata/man/module_energy_wind_adv_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_wind_adv_xml.Rd rename to input/gcamdata/man/module_energy_wind_adv_xml.Rd index a270451a10..640582b9de 100644 --- a/input/gcamdata/man/module_energy_batch_wind_adv_xml.Rd +++ b/input/gcamdata/man/module_energy_wind_adv_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_wind_adv_xml.R -\name{module_energy_batch_wind_adv_xml} -\alias{module_energy_batch_wind_adv_xml} -\title{module_energy_batch_wind_adv_xml} +% Please edit documentation in R/zenergy_xml_wind_adv.R +\name{module_energy_wind_adv_xml} +\alias{module_energy_wind_adv_xml} +\title{module_energy_wind_adv_xml} \usage{ -module_energy_batch_wind_adv_xml(command, ...) +module_energy_wind_adv_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_energy_batch_wind_low_xml.Rd b/input/gcamdata/man/module_energy_wind_low_xml.Rd similarity index 69% rename from input/gcamdata/man/module_energy_batch_wind_low_xml.Rd rename to input/gcamdata/man/module_energy_wind_low_xml.Rd index a34ba0c05d..1285510b64 100644 --- a/input/gcamdata/man/module_energy_batch_wind_low_xml.Rd +++ b/input/gcamdata/man/module_energy_wind_low_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zenergy_batch_wind_low_xml.R -\name{module_energy_batch_wind_low_xml} -\alias{module_energy_batch_wind_low_xml} -\title{module_energy_batch_wind_low_xml} +% Please edit documentation in R/zenergy_xml_wind_low.R +\name{module_energy_wind_low_xml} +\alias{module_energy_wind_low_xml} +\title{module_energy_wind_low_xml} \usage{ -module_energy_batch_wind_low_xml(command, ...) +module_energy_wind_low_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_Cstorage_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_Cstorage_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_Cstorage_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_Cstorage_xml.Rd index dddddbf885..e0151481b5 100644 --- a/input/gcamdata/man/module_gcamusa_batch_Cstorage_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_Cstorage_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_Cstorage_USA_xml.R -\name{module_gcamusa_batch_Cstorage_USA_xml} -\alias{module_gcamusa_batch_Cstorage_USA_xml} -\title{module_gcamusa_batch_Cstorage_USA_xml} +% Please edit documentation in R/zgcamusa_xml_Cstorage.R +\name{module_gcamusa_Cstorage_xml} +\alias{module_gcamusa_Cstorage_xml} +\title{module_gcamusa_Cstorage_xml} \usage{ -module_gcamusa_batch_Cstorage_USA_xml(command, ...) +module_gcamusa_Cstorage_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_Fert_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_Fert_xml.Rd similarity index 68% rename from input/gcamdata/man/module_gcamusa_batch_Fert_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_Fert_xml.Rd index fdadf3b561..750b61768f 100644 --- a/input/gcamdata/man/module_gcamusa_batch_Fert_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_Fert_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_Fert_USA_xml.R -\name{module_gcamusa_batch_Fert_USA_xml} -\alias{module_gcamusa_batch_Fert_USA_xml} -\title{module_gcamusa_batch_Fert_USA_xml} +% Please edit documentation in R/zgcamusa_xml_Fert.R +\name{module_gcamusa_Fert_xml} +\alias{module_gcamusa_Fert_xml} +\title{module_gcamusa_Fert_xml} \usage{ -module_gcamusa_batch_Fert_USA_xml(command, ...) +module_gcamusa_Fert_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_HDDCDD_A2_GFDL_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_HDDCDD_A2_GFDL_xml.Rd index 787c83d2f2..5174757937 100644 --- a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_HDDCDD_A2_GFDL_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_HDDCDD_A2_GFDL_USA_xml.R -\name{module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml} -\alias{module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml} -\title{module_gcamusa_batch_HDDCDD_A2_GFDL_USA.xml} +% Please edit documentation in R/zgcamusa_xml_HDDCDD_A2_GFDL.R +\name{module_gcamusa_HDDCDD_A2_GFDL_xml} +\alias{module_gcamusa_HDDCDD_A2_GFDL_xml} +\title{module_gcamusa_HDDCDD_A2_GFDL.xml} \usage{ -module_gcamusa_batch_HDDCDD_A2_GFDL_USA_xml(command, ...) +module_gcamusa_HDDCDD_A2_GFDL_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_HDDCDD_AEO_2015_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_HDDCDD_AEO_2015_xml.Rd index 6879bddecb..4f7610b9ca 100644 --- a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_HDDCDD_AEO_2015_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_HDDCDD_AEO_2015_USA_xml.R -\name{module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml} -\alias{module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml} -\title{module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml} +% Please edit documentation in R/zgcamusa_xml_HDDCDD_AEO_2015.R +\name{module_gcamusa_HDDCDD_AEO_2015_xml} +\alias{module_gcamusa_HDDCDD_AEO_2015_xml} +\title{module_gcamusa_HDDCDD_AEO_2015_xml} \usage{ -module_gcamusa_batch_HDDCDD_AEO_2015_USA_xml(command, ...) +module_gcamusa_HDDCDD_AEO_2015_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_constdds_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_HDDCDD_constdds_xml.Rd similarity index 60% rename from input/gcamdata/man/module_gcamusa_batch_HDDCDD_constdds_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_HDDCDD_constdds_xml.Rd index 4dbdafd27b..d2e8d5e0a7 100644 --- a/input/gcamdata/man/module_gcamusa_batch_HDDCDD_constdds_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_HDDCDD_constdds_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_HDDCDD_constdds_USA_xml.R -\name{module_gcamusa_batch_HDDCDD_constdds_USA_xml} -\alias{module_gcamusa_batch_HDDCDD_constdds_USA_xml} -\title{module_gcamusa_batch_HDDCDD_constdds_USA_xml} +% Please edit documentation in R/zgcamusa_xml_HDDCDD_constdds.R +\name{module_gcamusa_HDDCDD_constdds_xml} +\alias{module_gcamusa_HDDCDD_constdds_xml} +\title{module_gcamusa_HDDCDD_constdds_xml} \usage{ -module_gcamusa_batch_HDDCDD_constdds_USA_xml(command, ...) +module_gcamusa_HDDCDD_constdds_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L101.nonghg_en_USA_S_T_Y.Rd b/input/gcamdata/man/module_gcamusa_L101.nonghg_en_S_T_Y.Rd similarity index 83% rename from input/gcamdata/man/module_emissions_L101.nonghg_en_USA_S_T_Y.Rd rename to input/gcamdata/man/module_gcamusa_L101.nonghg_en_S_T_Y.Rd index 0f4888ebb3..9760829e82 100644 --- a/input/gcamdata/man/module_emissions_L101.nonghg_en_USA_S_T_Y.Rd +++ b/input/gcamdata/man/module_gcamusa_L101.nonghg_en_S_T_Y.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_L101.nonghg_en_USA_S_T_Y.R -\name{module_emissions_L101.nonghg_en_USA_S_T_Y} -\alias{module_emissions_L101.nonghg_en_USA_S_T_Y} -\title{module_emissions_L101.nonghg_en_USA_S_T_Y} +% Please edit documentation in R/zgcamusa_L101.nonghg_en_S_T_Y.R +\name{module_gcamusa_L101.nonghg_en_S_T_Y} +\alias{module_gcamusa_L101.nonghg_en_S_T_Y} +\title{module_gcamusa_L101.nonghg_en_S_T_Y} \usage{ -module_emissions_L101.nonghg_en_USA_S_T_Y(command, ...) +module_gcamusa_L101.nonghg_en_S_T_Y(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L102.ghg_en_USA_S_T_Y.Rd b/input/gcamdata/man/module_gcamusa_L102.ghg_en_S_T_Y.Rd similarity index 75% rename from input/gcamdata/man/module_emissions_L102.ghg_en_USA_S_T_Y.Rd rename to input/gcamdata/man/module_gcamusa_L102.ghg_en_S_T_Y.Rd index e5646b36a3..f5b4f7de29 100644 --- a/input/gcamdata/man/module_emissions_L102.ghg_en_USA_S_T_Y.Rd +++ b/input/gcamdata/man/module_gcamusa_L102.ghg_en_S_T_Y.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_L102.ghg_en_USA_S_T_Y.R -\name{module_emissions_L102.ghg_en_USA_S_T_Y} -\alias{module_emissions_L102.ghg_en_USA_S_T_Y} -\title{module_emissions_L102.ghg_en_USA_S_T_Y} +% Please edit documentation in R/zgcamusa_L102.ghg_en_S_T_Y.R +\name{module_gcamusa_L102.ghg_en_S_T_Y} +\alias{module_gcamusa_L102.ghg_en_S_T_Y} +\title{module_gcamusa_L102.ghg_en_S_T_Y} \usage{ -module_emissions_L102.ghg_en_USA_S_T_Y(command, ...) +module_gcamusa_L102.ghg_en_S_T_Y(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L103.ghg_an_USA_S_T_Y.Rd b/input/gcamdata/man/module_gcamusa_L103.ghg_an_S_T_Y.Rd similarity index 76% rename from input/gcamdata/man/module_emissions_L103.ghg_an_USA_S_T_Y.Rd rename to input/gcamdata/man/module_gcamusa_L103.ghg_an_S_T_Y.Rd index cd9a363cc0..465c2c9376 100644 --- a/input/gcamdata/man/module_emissions_L103.ghg_an_USA_S_T_Y.Rd +++ b/input/gcamdata/man/module_gcamusa_L103.ghg_an_S_T_Y.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_L103.ghg_an_USA_S_T_Y.R -\name{module_emissions_L103.ghg_an_USA_S_T_Y} -\alias{module_emissions_L103.ghg_an_USA_S_T_Y} -\title{module_emissions_L103.ghg_an_USA_S_T_Y} +% Please edit documentation in R/zgcamusa_L103.ghg_an_S_T_Y.R +\name{module_gcamusa_L103.ghg_an_S_T_Y} +\alias{module_gcamusa_L103.ghg_an_S_T_Y} +\title{module_gcamusa_L103.ghg_an_S_T_Y} \usage{ -module_emissions_L103.ghg_an_USA_S_T_Y(command, ...) +module_gcamusa_L103.ghg_an_S_T_Y(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L103.water_mapping_USA.Rd b/input/gcamdata/man/module_gcamusa_L103.water_mapping.Rd similarity index 74% rename from input/gcamdata/man/module_gcamusa_L103.water_mapping_USA.Rd rename to input/gcamdata/man/module_gcamusa_L103.water_mapping.Rd index 7f08df9eb9..c2e2b47e52 100644 --- a/input/gcamdata/man/module_gcamusa_L103.water_mapping_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L103.water_mapping.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L103.water_mapping_USA.R -\name{module_gcamusa_L103.water_mapping_USA} -\alias{module_gcamusa_L103.water_mapping_USA} -\title{module_gcamusa_L103.water_mapping_USA} +% Please edit documentation in R/zgcamusa_L103.water_mapping.R +\name{module_gcamusa_L103.water_mapping} +\alias{module_gcamusa_L103.water_mapping} +\title{module_gcamusa_L103.water_mapping} \usage{ -module_gcamusa_L103.water_mapping_USA(command, ...) +module_gcamusa_L103.water_mapping(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L104.bcoc_en_USA_S_T_Y.Rd b/input/gcamdata/man/module_gcamusa_L104.bcoc_en_S_T_Y.Rd similarity index 72% rename from input/gcamdata/man/module_emissions_L104.bcoc_en_USA_S_T_Y.Rd rename to input/gcamdata/man/module_gcamusa_L104.bcoc_en_S_T_Y.Rd index c78d9babfd..d569e228b1 100644 --- a/input/gcamdata/man/module_emissions_L104.bcoc_en_USA_S_T_Y.Rd +++ b/input/gcamdata/man/module_gcamusa_L104.bcoc_en_S_T_Y.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_L104.bcoc_en_USA_S_T_Y.R -\name{module_emissions_L104.bcoc_en_USA_S_T_Y} -\alias{module_emissions_L104.bcoc_en_USA_S_T_Y} -\title{module_emissions_L104.bcoc_en_USA_S_T_Y} +% Please edit documentation in R/zgcamusa_L104.bcoc_en_S_T_Y.R +\name{module_gcamusa_L104.bcoc_en_S_T_Y} +\alias{module_gcamusa_L104.bcoc_en_S_T_Y} +\title{module_gcamusa_L104.bcoc_en_S_T_Y} \usage{ -module_emissions_L104.bcoc_en_USA_S_T_Y(command, ...) +module_gcamusa_L104.bcoc_en_S_T_Y(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_emissions_L105.nh3_an_USA_S_T_Y.Rd b/input/gcamdata/man/module_gcamusa_L105.nh3_an_S_T_Y.Rd similarity index 78% rename from input/gcamdata/man/module_emissions_L105.nh3_an_USA_S_T_Y.Rd rename to input/gcamdata/man/module_gcamusa_L105.nh3_an_S_T_Y.Rd index c1221f6e5c..b79cea0bb9 100644 --- a/input/gcamdata/man/module_emissions_L105.nh3_an_USA_S_T_Y.Rd +++ b/input/gcamdata/man/module_gcamusa_L105.nh3_an_S_T_Y.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zemissions_L105.nh3_an_USA_S_T_Y.R -\name{module_emissions_L105.nh3_an_USA_S_T_Y} -\alias{module_emissions_L105.nh3_an_USA_S_T_Y} -\title{module_emissions_L105.nh3_an_USA_S_T_Y} +% Please edit documentation in R/zgcamusa_L105.nh3_an_S_T_Y.R +\name{module_gcamusa_L105.nh3_an_S_T_Y} +\alias{module_gcamusa_L105.nh3_an_S_T_Y} +\title{module_gcamusa_L105.nh3_an_S_T_Y} \usage{ -module_emissions_L105.nh3_an_USA_S_T_Y(command, ...) +module_gcamusa_L105.nh3_an_S_T_Y(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L114.wind.Rd b/input/gcamdata/man/module_gcamusa_L114.wind.Rd index 984436896b..a6d209ac60 100644 --- a/input/gcamdata/man/module_gcamusa_L114.wind.Rd +++ b/input/gcamdata/man/module_gcamusa_L114.wind.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L114.wind_USA.R +% Please edit documentation in R/zgcamusa_L114.wind.R \name{module_gcamusa_L114.wind} \alias{module_gcamusa_L114.wind} \title{module_gcamusa_L114.Wind} diff --git a/input/gcamdata/man/module_gcamusa_L115.rooftopPV.Rd b/input/gcamdata/man/module_gcamusa_L115.rooftopPV.Rd index edf6004296..88bffb7947 100644 --- a/input/gcamdata/man/module_gcamusa_L115.rooftopPV.Rd +++ b/input/gcamdata/man/module_gcamusa_L115.rooftopPV.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L115.rooftopPV_USA.R +% Please edit documentation in R/zgcamusa_L115.rooftopPV.R \name{module_gcamusa_L115.rooftopPV} \alias{module_gcamusa_L115.rooftopPV} \title{module_gcamusa_L115.RooftopPV} diff --git a/input/gcamdata/man/module_gcamusa_L119.solar.Rd b/input/gcamdata/man/module_gcamusa_L119.solar.Rd index 3cb6e50200..bd7bcdcc90 100644 --- a/input/gcamdata/man/module_gcamusa_L119.solar.Rd +++ b/input/gcamdata/man/module_gcamusa_L119.solar.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L119.solar_USA.R +% Please edit documentation in R/zgcamusa_L119.solar.R \name{module_gcamusa_L119.solar} \alias{module_gcamusa_L119.solar} \title{module_gcamusa_L119.Solar} diff --git a/input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds_USA.Rd b/input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds.Rd similarity index 82% rename from input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds_USA.Rd rename to input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds.Rd index 4cd8fb02a9..96d130b971 100644 --- a/input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L120.offshore_wind_reeds.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L120.offshore_wind_reeds_USA.R -\name{module_gcamusa_L120.offshore_wind_reeds_USA} -\alias{module_gcamusa_L120.offshore_wind_reeds_USA} -\title{module_gcamusa_L120.offshore_wind_reeds_USA} +% Please edit documentation in R/zgcamusa_L120.offshore_wind_reeds.R +\name{module_gcamusa_L120.offshore_wind_reeds} +\alias{module_gcamusa_L120.offshore_wind_reeds} +\title{module_gcamusa_L120.offshore_wind_reeds} \usage{ -module_gcamusa_L120.offshore_wind_reeds_USA(command, ...) +module_gcamusa_L120.offshore_wind_reeds(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L1233.elec_water_USA.Rd b/input/gcamdata/man/module_gcamusa_L1233.elec_water.Rd similarity index 75% rename from input/gcamdata/man/module_gcamusa_L1233.elec_water_USA.Rd rename to input/gcamdata/man/module_gcamusa_L1233.elec_water.Rd index 5cca920f62..2321ca081f 100644 --- a/input/gcamdata/man/module_gcamusa_L1233.elec_water_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L1233.elec_water.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1233.elec_water_USA.R -\name{module_gcamusa_L1233.elec_water_USA} -\alias{module_gcamusa_L1233.elec_water_USA} -\title{module_gcamusa_L1233.elec_water_USA} +% Please edit documentation in R/zgcamusa_L1233.elec_water.R +\name{module_gcamusa_L1233.elec_water} +\alias{module_gcamusa_L1233.elec_water} +\title{module_gcamusa_L1233.elec_water} \usage{ -module_gcamusa_L1233.elec_water_USA(command, ...) +module_gcamusa_L1233.elec_water(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L1234.elec_gridregions_USA.Rd b/input/gcamdata/man/module_gcamusa_L1234.elec_gridregions.Rd similarity index 78% rename from input/gcamdata/man/module_gcamusa_L1234.elec_gridregions_USA.Rd rename to input/gcamdata/man/module_gcamusa_L1234.elec_gridregions.Rd index 6f8d929b6a..e9226865ef 100644 --- a/input/gcamdata/man/module_gcamusa_L1234.elec_gridregions_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L1234.elec_gridregions.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1234.elec_gridregions_USA.R -\name{module_gcamusa_L1234.elec_gridregions_USA} -\alias{module_gcamusa_L1234.elec_gridregions_USA} -\title{module_gcamusa_L1234.elec_gridregions_USA} +% Please edit documentation in R/zgcamusa_L1234.elec_gridregions.R +\name{module_gcamusa_L1234.elec_gridregions} +\alias{module_gcamusa_L1234.elec_gridregions} +\title{module_gcamusa_L1234.elec_gridregions} \usage{ -module_gcamusa_L1234.elec_gridregions_USA(command, ...) +module_gcamusa_L1234.elec_gridregions(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L1235.elec_load_segments_USA.Rd b/input/gcamdata/man/module_gcamusa_L1235.elec_load_segments.Rd similarity index 81% rename from input/gcamdata/man/module_gcamusa_L1235.elec_load_segments_USA.Rd rename to input/gcamdata/man/module_gcamusa_L1235.elec_load_segments.Rd index c408042e82..e24424536f 100644 --- a/input/gcamdata/man/module_gcamusa_L1235.elec_load_segments_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L1235.elec_load_segments.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1235.elec_load_segments_USA.R -\name{module_gcamusa_L1235.elec_load_segments_USA} -\alias{module_gcamusa_L1235.elec_load_segments_USA} -\title{module_gcamusa_L1235.elec_load_segments_USA} +% Please edit documentation in R/zgcamusa_L1235.elec_load_segments.R +\name{module_gcamusa_L1235.elec_load_segments} +\alias{module_gcamusa_L1235.elec_load_segments} +\title{module_gcamusa_L1235.elec_load_segments} \usage{ -module_gcamusa_L1235.elec_load_segments_USA(command, ...) +module_gcamusa_L1235.elec_load_segments(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver_USA.Rd b/input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver.Rd similarity index 78% rename from input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver_USA.Rd rename to input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver.Rd index 0f1ba8f314..fe8d34c3c8 100644 --- a/input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L1236.elec_load_segments_solver.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1236.elec_load_segments_solver_USA.R -\name{module_gcamusa_L1236.elec_load_segments_solver_USA} -\alias{module_gcamusa_L1236.elec_load_segments_solver_USA} -\title{module_gcamusa_L1236.elec_load_segments_solver_USA} +% Please edit documentation in R/zgcamusa_L1236.elec_load_segments_solver.R +\name{module_gcamusa_L1236.elec_load_segments_solver} +\alias{module_gcamusa_L1236.elec_load_segments_solver} +\title{module_gcamusa_L1236.elec_load_segments_solver} \usage{ -module_gcamusa_L1236.elec_load_segments_solver_USA(command, ...) +module_gcamusa_L1236.elec_load_segments_solver(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions_USA.Rd b/input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions.Rd similarity index 79% rename from input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions_USA.Rd rename to input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions.Rd index c9a746ba66..11aac5d6ad 100644 --- a/input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L1239.elec_state_fractions.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1239.elec_state_fractions_USA.R -\name{module_gcamusa_L1239.elec_state_fractions_USA} -\alias{module_gcamusa_L1239.elec_state_fractions_USA} -\title{module_gcamusa_L1239.elec_state_fractions_USA} +% Please edit documentation in R/zgcamusa_L1239.elec_state_fractions.R +\name{module_gcamusa_L1239.elec_state_fractions} +\alias{module_gcamusa_L1239.elec_state_fractions} +\title{module_gcamusa_L1239.elec_state_fractions} \usage{ -module_gcamusa_L1239.elec_state_fractions_USA(command, ...) +module_gcamusa_L1239.elec_state_fractions(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L131.enduse_noEFW_USA.Rd b/input/gcamdata/man/module_gcamusa_L131.enduse_noEFW.Rd similarity index 76% rename from input/gcamdata/man/module_gcamusa_L131.enduse_noEFW_USA.Rd rename to input/gcamdata/man/module_gcamusa_L131.enduse_noEFW.Rd index 1d2b908298..2c03c234e4 100644 --- a/input/gcamdata/man/module_gcamusa_L131.enduse_noEFW_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L131.enduse_noEFW.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L131.enduse_noEFW_USA.R -\name{module_gcamusa_L131.enduse_noEFW_USA} -\alias{module_gcamusa_L131.enduse_noEFW_USA} -\title{module_gcamusa_L131.enduse_noEFW_USA} +% Please edit documentation in R/zgcamusa_L131.enduse_noEFW.R +\name{module_gcamusa_L131.enduse_noEFW} +\alias{module_gcamusa_L131.enduse_noEFW} +\title{module_gcamusa_L131.enduse_noEFW} \usage{ -module_gcamusa_L131.enduse_noEFW_USA(command, ...) +module_gcamusa_L131.enduse_noEFW(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L132.industry_USA.Rd b/input/gcamdata/man/module_gcamusa_L132.industry.Rd similarity index 79% rename from input/gcamdata/man/module_gcamusa_L132.industry_USA.Rd rename to input/gcamdata/man/module_gcamusa_L132.industry.Rd index bf54e7e5b8..5c1b55d6f3 100644 --- a/input/gcamdata/man/module_gcamusa_L132.industry_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L132.industry.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L132.industry_USA.R -\name{module_gcamusa_L132.industry_USA} -\alias{module_gcamusa_L132.industry_USA} -\title{module_gcamusa_L132.industry_USA} +% Please edit documentation in R/zgcamusa_L132.industry.R +\name{module_gcamusa_L132.industry} +\alias{module_gcamusa_L132.industry} +\title{module_gcamusa_L132.industry} \usage{ -module_gcamusa_L132.industry_USA(command, ...) +module_gcamusa_L132.industry(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L132.water_demand_industry.Rd b/input/gcamdata/man/module_gcamusa_L132.water_demand_industry.Rd index fa692cc556..212a6fc71f 100644 --- a/input/gcamdata/man/module_gcamusa_L132.water_demand_industry.Rd +++ b/input/gcamdata/man/module_gcamusa_L132.water_demand_industry.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L132.water_demand_industry_USA.R +% Please edit documentation in R/zgcamusa_L132.water_demand_industry.R \name{module_gcamusa_L132.water_demand_industry} \alias{module_gcamusa_L132.water_demand_industry} \title{module_gcamusa_L132.water_demand_industry} diff --git a/input/gcamdata/man/module_gcamusa_L1321.cement.Rd b/input/gcamdata/man/module_gcamusa_L1321.cement.Rd index e583da3d72..2bda29823c 100644 --- a/input/gcamdata/man/module_gcamusa_L1321.cement.Rd +++ b/input/gcamdata/man/module_gcamusa_L1321.cement.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L1321.cement_USA.R +% Please edit documentation in R/zgcamusa_L1321.cement.R \name{module_gcamusa_L1321.cement} \alias{module_gcamusa_L1321.cement} \title{module_gcamusa_L1321.Cement} diff --git a/input/gcamdata/man/module_aglu_L133.ag_Costs_USA_C_2005.Rd b/input/gcamdata/man/module_gcamusa_L133.ag_Costs_C_2005.Rd similarity index 83% rename from input/gcamdata/man/module_aglu_L133.ag_Costs_USA_C_2005.Rd rename to input/gcamdata/man/module_gcamusa_L133.ag_Costs_C_2005.Rd index d9878156df..b4f00ab7a8 100644 --- a/input/gcamdata/man/module_aglu_L133.ag_Costs_USA_C_2005.Rd +++ b/input/gcamdata/man/module_gcamusa_L133.ag_Costs_C_2005.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L133.ag_Costs_USA_C_2005.R -\name{module_aglu_L133.ag_Costs_USA_C_2005} -\alias{module_aglu_L133.ag_Costs_USA_C_2005} -\title{module_aglu_L133.ag_Costs_USA_C_2005} +% Please edit documentation in R/zgcamusa_L133.ag_Costs_C_2005.R +\name{module_gcamusa_L133.ag_Costs_C_2005} +\alias{module_gcamusa_L133.ag_Costs_C_2005} +\title{module_gcamusa_L133.ag_Costs_C_2005} \usage{ -module_aglu_L133.ag_Costs_USA_C_2005(command, ...) +module_gcamusa_L133.ag_Costs_C_2005(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L142.Building_USA.Rd b/input/gcamdata/man/module_gcamusa_L142.Building.Rd similarity index 76% rename from input/gcamdata/man/module_gcamusa_L142.Building_USA.Rd rename to input/gcamdata/man/module_gcamusa_L142.Building.Rd index 34cb255171..80300df1c0 100644 --- a/input/gcamdata/man/module_gcamusa_L142.Building_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L142.Building.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L142.Building_USA.R -\name{module_gcamusa_L142.Building_USA} -\alias{module_gcamusa_L142.Building_USA} -\title{module_gcamusa_L142.Building_USA} +% Please edit documentation in R/zgcamusa_L142.Building.R +\name{module_gcamusa_L142.Building} +\alias{module_gcamusa_L142.Building} +\title{module_gcamusa_L142.Building} \usage{ -module_gcamusa_L142.Building_USA(command, ...) +module_gcamusa_L142.Building(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L143.HDDCDD.Rd b/input/gcamdata/man/module_gcamusa_L143.HDDCDD.Rd index ac2531c8d2..07d3c0bd86 100644 --- a/input/gcamdata/man/module_gcamusa_L143.HDDCDD.Rd +++ b/input/gcamdata/man/module_gcamusa_L143.HDDCDD.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L143.HDDCDD_USA.R +% Please edit documentation in R/zgcamusa_L143.HDDCDD.R \name{module_gcamusa_L143.HDDCDD} \alias{module_gcamusa_L143.HDDCDD} \title{module_gcamusa_L143.HDDCDD} diff --git a/input/gcamdata/man/module_gcamusa_L145.water_demand_municipal.Rd b/input/gcamdata/man/module_gcamusa_L145.water_demand_municipal.Rd index 353541d766..056d21b088 100644 --- a/input/gcamdata/man/module_gcamusa_L145.water_demand_municipal.Rd +++ b/input/gcamdata/man/module_gcamusa_L145.water_demand_municipal.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L145.water_demand_municipal_USA.R +% Please edit documentation in R/zgcamusa_L145.water_demand_municipal.R \name{module_gcamusa_L145.water_demand_municipal} \alias{module_gcamusa_L145.water_demand_municipal} \title{module_gcamusa_L145.water_demand_municipal} diff --git a/input/gcamdata/man/module_gcamusa_L161.Cstorage.Rd b/input/gcamdata/man/module_gcamusa_L161.Cstorage.Rd index a8b65c6e72..44be822d47 100644 --- a/input/gcamdata/man/module_gcamusa_L161.Cstorage.Rd +++ b/input/gcamdata/man/module_gcamusa_L161.Cstorage.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L161.Cstorage_USA.R +% Please edit documentation in R/zgcamusa_L161.Cstorage.R \name{module_gcamusa_L161.Cstorage} \alias{module_gcamusa_L161.Cstorage} \title{module_gcamusa_L161.Cstorage} diff --git a/input/gcamdata/man/module_aglu_L164.ag_Costs_USA_C_2005_irr.Rd b/input/gcamdata/man/module_gcamusa_L164.ag_Costs_C_2005_irr.Rd similarity index 83% rename from input/gcamdata/man/module_aglu_L164.ag_Costs_USA_C_2005_irr.Rd rename to input/gcamdata/man/module_gcamusa_L164.ag_Costs_C_2005_irr.Rd index 210fb2896a..4368c8ff0b 100644 --- a/input/gcamdata/man/module_aglu_L164.ag_Costs_USA_C_2005_irr.Rd +++ b/input/gcamdata/man/module_gcamusa_L164.ag_Costs_C_2005_irr.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zaglu_L164.ag_Costs_USA_C_2005_irr.R -\name{module_aglu_L164.ag_Costs_USA_C_2005_irr} -\alias{module_aglu_L164.ag_Costs_USA_C_2005_irr} -\title{module_aglu_L164.ag_Costs_USA_C_2005_irr} +% Please edit documentation in R/zgcamusa_L164.ag_Costs_C_2005_irr.R +\name{module_gcamusa_L164.ag_Costs_C_2005_irr} +\alias{module_gcamusa_L164.ag_Costs_C_2005_irr} +\title{module_gcamusa_L164.ag_Costs_C_2005_irr} \usage{ -module_aglu_L164.ag_Costs_USA_C_2005_irr(command, ...) +module_gcamusa_L164.ag_Costs_C_2005_irr(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L171.nonghg_trn_USA.Rd b/input/gcamdata/man/module_gcamusa_L171.nonghg_trn.Rd similarity index 85% rename from input/gcamdata/man/module_gcamusa_L171.nonghg_trn_USA.Rd rename to input/gcamdata/man/module_gcamusa_L171.nonghg_trn.Rd index a1fe0c50d2..444d3310e6 100644 --- a/input/gcamdata/man/module_gcamusa_L171.nonghg_trn_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L171.nonghg_trn.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L171.nonghg_trn_USA.R -\name{module_gcamusa_L171.nonghg_trn_USA} -\alias{module_gcamusa_L171.nonghg_trn_USA} -\title{module_gcamusa_L171.nonghg_trn_USA} +% Please edit documentation in R/zgcamusa_L171.nonghg_trn.R +\name{module_gcamusa_L171.nonghg_trn} +\alias{module_gcamusa_L171.nonghg_trn} +\title{module_gcamusa_L171.nonghg_trn} \usage{ -module_gcamusa_L171.nonghg_trn_USA(command, ...) +module_gcamusa_L171.nonghg_trn(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L201.socioeconomics_USA.Rd b/input/gcamdata/man/module_gcamusa_L201.socioeconomics.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_L201.socioeconomics_USA.Rd rename to input/gcamdata/man/module_gcamusa_L201.socioeconomics.Rd index 9e2f85863c..dfb3890f50 100644 --- a/input/gcamdata/man/module_gcamusa_L201.socioeconomics_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L201.socioeconomics.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L201.socioeconomics_USA.R -\name{module_gcamusa_L201.socioeconomics_USA} -\alias{module_gcamusa_L201.socioeconomics_USA} -\title{module_gcamusa_L201.socioeconomics_USA} +% Please edit documentation in R/zgcamusa_L201.socioeconomics.R +\name{module_gcamusa_L201.socioeconomics} +\alias{module_gcamusa_L201.socioeconomics} +\title{module_gcamusa_L201.socioeconomics} \usage{ -module_gcamusa_L201.socioeconomics_USA(command, ...) +module_gcamusa_L201.socioeconomics(command, ...) } \arguments{ \item{command}{API command to execute} @@ -15,7 +15,7 @@ module_gcamusa_L201.socioeconomics_USA(command, ...) Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all the generated outputs: \code{L201.InterestRate_GCAMUSA}, \code{L201.Pop_GCAMUSA}, \code{L201.BaseGDP_GCAMUSA}, -\code{L201.LaborForceFillout_GCAMUSA}, \code{L201.LaborProductivity_GCAMUSA}, \code{L201.Pop_national_updated_USA}, +\code{L201.LaborForceFillout_GCAMUSA}, \code{L201.Pop_national_updated_USA}, \code{L201.BaseGDP_national_updated_USA}, \code{L201.LaborProductivity_national_updated_USA}. The corresponding file in the original data system was \code{L201.socioeconomics_USA.R} (gcam-usa level2). } diff --git a/input/gcamdata/man/module_gcamusa_L203.water_td_USA.Rd b/input/gcamdata/man/module_gcamusa_L203.water_td.Rd similarity index 80% rename from input/gcamdata/man/module_gcamusa_L203.water_td_USA.Rd rename to input/gcamdata/man/module_gcamusa_L203.water_td.Rd index f422530520..a0eb1baed3 100644 --- a/input/gcamdata/man/module_gcamusa_L203.water_td_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L203.water_td.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L203.water_td_USA.R -\name{module_gcamusa_L203.water_td_USA} -\alias{module_gcamusa_L203.water_td_USA} -\title{module_gcamusa_L203.water_td_USA} +% Please edit documentation in R/zgcamusa_L203.water_td.R +\name{module_gcamusa_L203.water_td} +\alias{module_gcamusa_L203.water_td} +\title{module_gcamusa_L203.water_td} \usage{ -module_gcamusa_L203.water_td_USA(command, ...) +module_gcamusa_L203.water_td(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L210.resources_USA.Rd b/input/gcamdata/man/module_gcamusa_L210.resources.Rd similarity index 84% rename from input/gcamdata/man/module_gcamusa_L210.resources_USA.Rd rename to input/gcamdata/man/module_gcamusa_L210.resources.Rd index 6e7e08098c..fbe378540d 100644 --- a/input/gcamdata/man/module_gcamusa_L210.resources_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L210.resources.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L210.resources_USA.R -\name{module_gcamusa_L210.resources_USA} -\alias{module_gcamusa_L210.resources_USA} -\title{module_gcamusa_L210.resources_USA} +% Please edit documentation in R/zgcamusa_L210.resources.R +\name{module_gcamusa_L210.resources} +\alias{module_gcamusa_L210.resources} +\title{module_gcamusa_L210.resources} \usage{ -module_gcamusa_L210.resources_USA(command, ...) +module_gcamusa_L210.resources(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L222.en_transformation_USA.Rd b/input/gcamdata/man/module_gcamusa_L222.en_transformation.Rd similarity index 89% rename from input/gcamdata/man/module_gcamusa_L222.en_transformation_USA.Rd rename to input/gcamdata/man/module_gcamusa_L222.en_transformation.Rd index 123455a282..f7eeaa9cec 100644 --- a/input/gcamdata/man/module_gcamusa_L222.en_transformation_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L222.en_transformation.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L222.en_transformation_USA.R -\name{module_gcamusa_L222.en_transformation_USA} -\alias{module_gcamusa_L222.en_transformation_USA} -\title{module_gcamusa_L222.en_transformation_USA} +% Please edit documentation in R/zgcamusa_L222.en_transformation.R +\name{module_gcamusa_L222.en_transformation} +\alias{module_gcamusa_L222.en_transformation} +\title{module_gcamusa_L222.en_transformation} \usage{ -module_gcamusa_L222.en_transformation_USA(command, ...) +module_gcamusa_L222.en_transformation(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L223.electricity_USA.Rd b/input/gcamdata/man/module_gcamusa_L223.electricity.Rd similarity index 90% rename from input/gcamdata/man/module_gcamusa_L223.electricity_USA.Rd rename to input/gcamdata/man/module_gcamusa_L223.electricity.Rd index 5660c95532..2925ff14be 100644 --- a/input/gcamdata/man/module_gcamusa_L223.electricity_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L223.electricity.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L223.electricity_USA.R -\name{module_gcamusa_L223.electricity_USA} -\alias{module_gcamusa_L223.electricity_USA} -\title{module_gcamusa_L223.electricity_USA} +% Please edit documentation in R/zgcamusa_L223.electricity.R +\name{module_gcamusa_L223.electricity} +\alias{module_gcamusa_L223.electricity} +\title{module_gcamusa_L223.electricity} \usage{ -module_gcamusa_L223.electricity_USA(command, ...) +module_gcamusa_L223.electricity(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2231.nonewcoal_USA.Rd b/input/gcamdata/man/module_gcamusa_L2231.nonewcoal.Rd similarity index 79% rename from input/gcamdata/man/module_gcamusa_L2231.nonewcoal_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2231.nonewcoal.Rd index 87248b9061..3534166195 100644 --- a/input/gcamdata/man/module_gcamusa_L2231.nonewcoal_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2231.nonewcoal.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2231.nonewcoal_USA.R -\name{module_gcamusa_L2231.nonewcoal_USA} -\alias{module_gcamusa_L2231.nonewcoal_USA} -\title{module_gcamusa_L2231.nonewcoal_USA} +% Please edit documentation in R/zgcamusa_L2231.nonewcoal.R +\name{module_gcamusa_L2231.nonewcoal} +\alias{module_gcamusa_L2231.nonewcoal} +\title{module_gcamusa_L2231.nonewcoal} \usage{ -module_gcamusa_L2231.nonewcoal_USA(command, ...) +module_gcamusa_L2231.nonewcoal(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2232.electricity_FERC_USA.Rd b/input/gcamdata/man/module_gcamusa_L2232.electricity_FERC.Rd similarity index 87% rename from input/gcamdata/man/module_gcamusa_L2232.electricity_FERC_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2232.electricity_FERC.Rd index 4b7099311d..916086f645 100644 --- a/input/gcamdata/man/module_gcamusa_L2232.electricity_FERC_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2232.electricity_FERC.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2232.electricity_FERC_USA.R -\name{module_gcamusa_L2232.electricity_FERC_USA} -\alias{module_gcamusa_L2232.electricity_FERC_USA} -\title{module_gcamusa_L2232.electricity_FERC_USA} +% Please edit documentation in R/zgcamusa_L2232.electricity_FERC.R +\name{module_gcamusa_L2232.electricity_FERC} +\alias{module_gcamusa_L2232.electricity_FERC} +\title{module_gcamusa_L2232.electricity_FERC} \usage{ -module_gcamusa_L2232.electricity_FERC_USA(command, ...) +module_gcamusa_L2232.electricity_FERC(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2233.elec_segments_water_USA.Rd b/input/gcamdata/man/module_gcamusa_L2233.elec_segments_water.Rd similarity index 93% rename from input/gcamdata/man/module_gcamusa_L2233.elec_segments_water_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2233.elec_segments_water.Rd index 5ef30e632b..a52aea0bea 100644 --- a/input/gcamdata/man/module_gcamusa_L2233.elec_segments_water_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2233.elec_segments_water.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2233.elec_segments_water_USA.R -\name{module_gcamusa_L2233.elec_segments_water_USA} -\alias{module_gcamusa_L2233.elec_segments_water_USA} -\title{module_gcamusa_L2233.elec_segments_water_USA} +% Please edit documentation in R/zgcamusa_L2233.elec_segments_water.R +\name{module_gcamusa_L2233.elec_segments_water} +\alias{module_gcamusa_L2233.elec_segments_water} +\title{module_gcamusa_L2233.elec_segments_water} \usage{ -module_gcamusa_L2233.elec_segments_water_USA(command, ...) +module_gcamusa_L2233.elec_segments_water(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2234.elec_segments_USA.Rd b/input/gcamdata/man/module_gcamusa_L2234.elec_segments.Rd similarity index 90% rename from input/gcamdata/man/module_gcamusa_L2234.elec_segments_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2234.elec_segments.Rd index af06691b97..a65d95992b 100644 --- a/input/gcamdata/man/module_gcamusa_L2234.elec_segments_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2234.elec_segments.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2234.elec_segments_USA.R -\name{module_gcamusa_L2234.elec_segments_USA} -\alias{module_gcamusa_L2234.elec_segments_USA} -\title{module_gcamusa_L2234.elec_segments_USA} +% Please edit documentation in R/zgcamusa_L2234.elec_segments.R +\name{module_gcamusa_L2234.elec_segments} +\alias{module_gcamusa_L2234.elec_segments} +\title{module_gcamusa_L2234.elec_segments} \usage{ -module_gcamusa_L2234.elec_segments_USA(command, ...) +module_gcamusa_L2234.elec_segments(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC_USA.Rd b/input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC.Rd similarity index 90% rename from input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC.Rd index d4862e5289..4d9147a01e 100644 --- a/input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2235.elec_segments_FERC.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2235.elec_segments_FERC_USA.R -\name{module_gcamusa_L2235.elec_segments_FERC_USA} -\alias{module_gcamusa_L2235.elec_segments_FERC_USA} -\title{module_gcamusa_L2235.elec_segments_FERC_USA} +% Please edit documentation in R/zgcamusa_L2235.elec_segments_FERC.R +\name{module_gcamusa_L2235.elec_segments_FERC} +\alias{module_gcamusa_L2235.elec_segments_FERC} +\title{module_gcamusa_L2235.elec_segments_FERC} \usage{ -module_gcamusa_L2235.elec_segments_FERC_USA(command, ...) +module_gcamusa_L2235.elec_segments_FERC(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions_USA.Rd b/input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions.Rd similarity index 80% rename from input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions.Rd index f90fc08993..77af978899 100644 --- a/input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2236.elecS_ghg_emissions.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2236.elecS_ghg_emissions_USA.R -\name{module_gcamusa_L2236.elecS_ghg_emissions_USA} -\alias{module_gcamusa_L2236.elecS_ghg_emissions_USA} -\title{module_gcamusa_L2236.elecS_ghg_emissions_USA} +% Please edit documentation in R/zgcamusa_L2236.elecS_ghg_emissions.R +\name{module_gcamusa_L2236.elecS_ghg_emissions} +\alias{module_gcamusa_L2236.elecS_ghg_emissions} +\title{module_gcamusa_L2236.elecS_ghg_emissions} \usage{ -module_gcamusa_L2236.elecS_ghg_emissions_USA(command, ...) +module_gcamusa_L2236.elecS_ghg_emissions(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2237.wind_reeds_USA.Rd b/input/gcamdata/man/module_gcamusa_L2237.wind_reeds.Rd similarity index 77% rename from input/gcamdata/man/module_gcamusa_L2237.wind_reeds_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2237.wind_reeds.Rd index 715121f043..f246db4bdf 100644 --- a/input/gcamdata/man/module_gcamusa_L2237.wind_reeds_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2237.wind_reeds.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2237.wind_reeds_USA.R -\name{module_gcamusa_L2237.wind_reeds_USA} -\alias{module_gcamusa_L2237.wind_reeds_USA} -\title{module_gcamusa_L2237.wind_reeds_USA} +% Please edit documentation in R/zgcamusa_L2237.wind_reeds.R +\name{module_gcamusa_L2237.wind_reeds} +\alias{module_gcamusa_L2237.wind_reeds} +\title{module_gcamusa_L2237.wind_reeds} \usage{ -module_gcamusa_L2237.wind_reeds_USA(command, ...) +module_gcamusa_L2237.wind_reeds(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2238.PV_reeds_USA.Rd b/input/gcamdata/man/module_gcamusa_L2238.PV_reeds.Rd similarity index 82% rename from input/gcamdata/man/module_gcamusa_L2238.PV_reeds_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2238.PV_reeds.Rd index f8cacaa98d..74f08d63e2 100644 --- a/input/gcamdata/man/module_gcamusa_L2238.PV_reeds_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2238.PV_reeds.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2238.PV_reeds_USA.R -\name{module_gcamusa_L2238.PV_reeds_USA} -\alias{module_gcamusa_L2238.PV_reeds_USA} -\title{module_gcamusa_L2238.PV_reeds_USA} +% Please edit documentation in R/zgcamusa_L2238.PV_reeds.R +\name{module_gcamusa_L2238.PV_reeds} +\alias{module_gcamusa_L2238.PV_reeds} +\title{module_gcamusa_L2238.PV_reeds} \usage{ -module_gcamusa_L2238.PV_reeds_USA(command, ...) +module_gcamusa_L2238.PV_reeds(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2239.CSP_reeds_USA.Rd b/input/gcamdata/man/module_gcamusa_L2239.CSP_reeds.Rd similarity index 81% rename from input/gcamdata/man/module_gcamusa_L2239.CSP_reeds_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2239.CSP_reeds.Rd index f5f4898eba..d7c0f708a9 100644 --- a/input/gcamdata/man/module_gcamusa_L2239.CSP_reeds_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2239.CSP_reeds.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2239.CSP_reeds_USA.R -\name{module_gcamusa_L2239.CSP_reeds_USA} -\alias{module_gcamusa_L2239.CSP_reeds_USA} -\title{module_gcamusa_L2239.CSP_reeds_USA} +% Please edit documentation in R/zgcamusa_L2239.CSP_reeds.R +\name{module_gcamusa_L2239.CSP_reeds} +\alias{module_gcamusa_L2239.CSP_reeds} +\title{module_gcamusa_L2239.CSP_reeds} \usage{ -module_gcamusa_L2239.CSP_reeds_USA(command, ...) +module_gcamusa_L2239.CSP_reeds(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2241.coal_retire_USA.Rd b/input/gcamdata/man/module_gcamusa_L2241.coal_retire.Rd similarity index 88% rename from input/gcamdata/man/module_gcamusa_L2241.coal_retire_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2241.coal_retire.Rd index 4dfbb144d2..3b79d4c357 100644 --- a/input/gcamdata/man/module_gcamusa_L2241.coal_retire_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2241.coal_retire.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2241.coal_retire_USA.R -\name{module_gcamusa_L2241.coal_retire_USA} -\alias{module_gcamusa_L2241.coal_retire_USA} -\title{module_gcamusa_L2241.coal_retire_USA} +% Please edit documentation in R/zgcamusa_L2241.coal_retire.R +\name{module_gcamusa_L2241.coal_retire} +\alias{module_gcamusa_L2241.coal_retire} +\title{module_gcamusa_L2241.coal_retire} \usage{ -module_gcamusa_L2241.coal_retire_USA(command, ...) +module_gcamusa_L2241.coal_retire(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2242.elec_hydro_USA.Rd b/input/gcamdata/man/module_gcamusa_L2242.elec_hydro.Rd similarity index 73% rename from input/gcamdata/man/module_gcamusa_L2242.elec_hydro_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2242.elec_hydro.Rd index f0cc57a7ba..4853bb1283 100644 --- a/input/gcamdata/man/module_gcamusa_L2242.elec_hydro_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2242.elec_hydro.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2242.elec_hydro_USA.R -\name{module_gcamusa_L2242.elec_hydro_USA} -\alias{module_gcamusa_L2242.elec_hydro_USA} -\title{module_gcamusa_L2242.elec_hydro_USA} +% Please edit documentation in R/zgcamusa_L2242.elec_hydro.R +\name{module_gcamusa_L2242.elec_hydro} +\alias{module_gcamusa_L2242.elec_hydro} +\title{module_gcamusa_L2242.elec_hydro} \usage{ -module_gcamusa_L2242.elec_hydro_USA(command, ...) +module_gcamusa_L2242.elec_hydro(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2244.nuclear_USA.Rd b/input/gcamdata/man/module_gcamusa_L2244.nuclear.Rd similarity index 83% rename from input/gcamdata/man/module_gcamusa_L2244.nuclear_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2244.nuclear.Rd index e0553a0dc2..9d9c708e5a 100644 --- a/input/gcamdata/man/module_gcamusa_L2244.nuclear_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2244.nuclear.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2244.nuclear_USA.R -\name{module_gcamusa_L2244.nuclear_USA} -\alias{module_gcamusa_L2244.nuclear_USA} -\title{module_gcamusa_L2244.nuclear_USA} +% Please edit documentation in R/zgcamusa_L2244.nuclear.R +\name{module_gcamusa_L2244.nuclear} +\alias{module_gcamusa_L2244.nuclear} +\title{module_gcamusa_L2244.nuclear} \usage{ -module_gcamusa_L2244.nuclear_USA(command, ...) +module_gcamusa_L2244.nuclear(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed_USA.Rd b/input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed.Rd similarity index 80% rename from input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed.Rd index 15e0b82306..b118cc0df4 100644 --- a/input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2245.geothermal_fixed.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2245.geothermal_fixed_USA.R -\name{module_gcamusa_L2245.geothermal_fixed_USA} -\alias{module_gcamusa_L2245.geothermal_fixed_USA} -\title{module_gcamusa_L2245.geothermal_fixed_USA} +% Please edit documentation in R/zgcamusa_L2245.geothermal_fixed.R +\name{module_gcamusa_L2245.geothermal_fixed} +\alias{module_gcamusa_L2245.geothermal_fixed} +\title{module_gcamusa_L2245.geothermal_fixed} \usage{ -module_gcamusa_L2245.geothermal_fixed_USA(command, ...) +module_gcamusa_L2245.geothermal_fixed(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs_USA.Rd b/input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs.Rd similarity index 89% rename from input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs.Rd index d03e935192..07830a4d51 100644 --- a/input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2247.elecS_tech_costs.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2247.elecS_tech_costs_USA.R -\name{module_gcamusa_L2247.elecS_tech_costs_USA} -\alias{module_gcamusa_L2247.elecS_tech_costs_USA} -\title{module_gcamusa_L2247.elecS_tech_costs_USA} +% Please edit documentation in R/zgcamusa_L2247.elecS_tech_costs.R +\name{module_gcamusa_L2247.elecS_tech_costs} +\alias{module_gcamusa_L2247.elecS_tech_costs} +\title{module_gcamusa_L2247.elecS_tech_costs} \usage{ -module_gcamusa_L2247.elecS_tech_costs_USA(command, ...) +module_gcamusa_L2247.elecS_tech_costs(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L225.hydrogen_USA.Rd b/input/gcamdata/man/module_gcamusa_L225.hydrogen.Rd similarity index 75% rename from input/gcamdata/man/module_gcamusa_L225.hydrogen_USA.Rd rename to input/gcamdata/man/module_gcamusa_L225.hydrogen.Rd index 5e93a6c4a7..caae9cb26e 100644 --- a/input/gcamdata/man/module_gcamusa_L225.hydrogen_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L225.hydrogen.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L225.hydrogen_USA.R -\name{module_gcamusa_L225.hydrogen_USA} -\alias{module_gcamusa_L225.hydrogen_USA} -\title{module_gcamusa_L225.hydrogen_USA} +% Please edit documentation in R/zgcamusa_L225.hydrogen.R +\name{module_gcamusa_L225.hydrogen} +\alias{module_gcamusa_L225.hydrogen} +\title{module_gcamusa_L225.hydrogen} \usage{ -module_gcamusa_L225.hydrogen_USA(command, ...) +module_gcamusa_L225.hydrogen(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L226.en_distribution_USA.Rd b/input/gcamdata/man/module_gcamusa_L226.en_distribution.Rd similarity index 90% rename from input/gcamdata/man/module_gcamusa_L226.en_distribution_USA.Rd rename to input/gcamdata/man/module_gcamusa_L226.en_distribution.Rd index f0ce0c899d..487bce6efd 100644 --- a/input/gcamdata/man/module_gcamusa_L226.en_distribution_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L226.en_distribution.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L226.en_distribution_USA.R -\name{module_gcamusa_L226.en_distribution_USA} -\alias{module_gcamusa_L226.en_distribution_USA} -\title{module_gcamusa_L226.en_distribution_USA} +% Please edit documentation in R/zgcamusa_L226.en_distribution.R +\name{module_gcamusa_L226.en_distribution} +\alias{module_gcamusa_L226.en_distribution} +\title{module_gcamusa_L226.en_distribution} \usage{ -module_gcamusa_L226.en_distribution_USA(command, ...) +module_gcamusa_L226.en_distribution(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2261.regional_biomass_USA.Rd b/input/gcamdata/man/module_gcamusa_L2261.regional_biomass.Rd similarity index 88% rename from input/gcamdata/man/module_gcamusa_L2261.regional_biomass_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2261.regional_biomass.Rd index 8a1e1f06db..152501296f 100644 --- a/input/gcamdata/man/module_gcamusa_L2261.regional_biomass_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2261.regional_biomass.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2261.regional_biomass_USA.R -\name{module_gcamusa_L2261.regional_biomass_USA} -\alias{module_gcamusa_L2261.regional_biomass_USA} -\title{module_gcamusa_L2261.regional_biomass_USA} +% Please edit documentation in R/zgcamusa_L2261.regional_biomass.R +\name{module_gcamusa_L2261.regional_biomass} +\alias{module_gcamusa_L2261.regional_biomass} +\title{module_gcamusa_L2261.regional_biomass} \usage{ -module_gcamusa_L2261.regional_biomass_USA(command, ...) +module_gcamusa_L2261.regional_biomass(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L231.proc_sector_USA.Rd b/input/gcamdata/man/module_gcamusa_L231.proc_sector.Rd similarity index 86% rename from input/gcamdata/man/module_gcamusa_L231.proc_sector_USA.Rd rename to input/gcamdata/man/module_gcamusa_L231.proc_sector.Rd index ed648b925c..3008cee3cb 100644 --- a/input/gcamdata/man/module_gcamusa_L231.proc_sector_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L231.proc_sector.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L231.proc_sector_USA.R -\name{module_gcamusa_L231.proc_sector_USA} -\alias{module_gcamusa_L231.proc_sector_USA} -\title{module_gcamusa_L231.proc_sector_USA} +% Please edit documentation in R/zgcamusa_L231.proc_sector.R +\name{module_gcamusa_L231.proc_sector} +\alias{module_gcamusa_L231.proc_sector} +\title{module_gcamusa_L231.proc_sector} \usage{ -module_gcamusa_L231.proc_sector_USA(command, ...) +module_gcamusa_L231.proc_sector(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L232.industry_USA.Rd b/input/gcamdata/man/module_gcamusa_L232.industry.Rd similarity index 72% rename from input/gcamdata/man/module_gcamusa_L232.industry_USA.Rd rename to input/gcamdata/man/module_gcamusa_L232.industry.Rd index d47aaca71e..61934f774c 100644 --- a/input/gcamdata/man/module_gcamusa_L232.industry_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L232.industry.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L232.industry_USA.R -\name{module_gcamusa_L232.industry_USA} -\alias{module_gcamusa_L232.industry_USA} -\title{module_gcamusa_L232.industry_USA} +% Please edit documentation in R/zgcamusa_L232.industry.R +\name{module_gcamusa_L232.industry} +\alias{module_gcamusa_L232.industry} +\title{module_gcamusa_L232.industry} \usage{ -module_gcamusa_L232.industry_USA(command, ...) +module_gcamusa_L232.industry(command, ...) } \arguments{ \item{command}{API command to execute} @@ -17,10 +17,10 @@ a vector of output names, or (if \code{command} is "MAKE") all the generated outputs: \code{L232.DeleteSupplysector_USAind}, \code{L232.DeleteFinalDemand_USAind}, \code{L232.StubTechCalInput_indenergy_USA}, \code{L232.StubTechCalInput_indfeed_USA}, \code{L232.StubTechProd_industry_USA}, \code{L232.StubTechCoef_industry_USA}, \code{L232.StubTechMarket_ind_USA}, \code{L232.StubTechSecMarket_ind_USA}, -\code{L232.BaseService_ind_USA}, \code{L232.Supplysector_ind_USA}, \code{L232.FinalEnergyKeyword_ind_USA}, +\code{L232.BaseService_ind_USA}, \code{L232.Supplysector_ind_USA}, \code{L232.FinalEnergyKeyword_ind_USA}, \code{L232.BaseService_iron_steel}, \code{L232.SubsectorLogit_ind_USA}, \code{L232.SubsectorShrwtFllt_ind_USA}, \code{L232.SubsectorInterp_ind_USA}, -\code{L232.StubTech_ind_USA}, \code{L232.StubTechInterp_ind_USA}, \code{L232.PerCapitaBased_ind_USA}, -\code{L232.PriceElasticity_ind_USA}, \code{L232.IncomeElasticity_ind_gcam3_USA}. +\code{L232.StubTech_ind_USA}, \code{L232.StubTechInterp_ind_USA}, \code{L232.PerCapitaBased_ind_USA}, \code{L232.Production_reg_imp}, +\code{L232.PriceElasticity_ind_USA}, \code{L232.IncomeElasticity_ind_gcam3_USA}, \code{L232.DeleteDomSubsector_USAind}, \code{L232.DeleteTraSubsector_USAind}. The corresponding file in the original data system was \code{L232.industry_USA.R} (gcam-usa level2). } \description{ diff --git a/input/gcamdata/man/module_gcamusa_L232.water_demand_industry.Rd b/input/gcamdata/man/module_gcamusa_L232.water_demand_industry.Rd index d379e43006..3415d31a79 100644 --- a/input/gcamdata/man/module_gcamusa_L232.water_demand_industry.Rd +++ b/input/gcamdata/man/module_gcamusa_L232.water_demand_industry.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L232.water_demand_industry_USA.R +% Please edit documentation in R/zgcamusa_L232.water_demand_industry.R \name{module_gcamusa_L232.water_demand_industry} \alias{module_gcamusa_L232.water_demand_industry} \title{module_gcamusa_L232.water_demand_industry} diff --git a/input/gcamdata/man/module_gcamusa_L2321.cement_USA.Rd b/input/gcamdata/man/module_gcamusa_L2321.cement.Rd similarity index 84% rename from input/gcamdata/man/module_gcamusa_L2321.cement_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2321.cement.Rd index 9b6e4c1b3d..1443ac0103 100644 --- a/input/gcamdata/man/module_gcamusa_L2321.cement_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2321.cement.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2321.cement_USA.R -\name{module_gcamusa_L2321.cement_USA} -\alias{module_gcamusa_L2321.cement_USA} -\title{module_gcamusa_L2321.cement_USA} +% Please edit documentation in R/zgcamusa_L2321.cement.R +\name{module_gcamusa_L2321.cement} +\alias{module_gcamusa_L2321.cement} +\title{module_gcamusa_L2321.cement} \usage{ -module_gcamusa_L2321.cement_USA(command, ...) +module_gcamusa_L2321.cement(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2322.Fert_USA.Rd b/input/gcamdata/man/module_gcamusa_L2322.Fert.Rd similarity index 85% rename from input/gcamdata/man/module_gcamusa_L2322.Fert_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2322.Fert.Rd index 15dcedebb9..93e7cdda49 100644 --- a/input/gcamdata/man/module_gcamusa_L2322.Fert_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2322.Fert.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2322.Fert_USA.R -\name{module_gcamusa_L2322.Fert_USA} -\alias{module_gcamusa_L2322.Fert_USA} -\title{module_gcamusa_L2322.Fert_USA} +% Please edit documentation in R/zgcamusa_L2322.Fert.R +\name{module_gcamusa_L2322.Fert} +\alias{module_gcamusa_L2322.Fert} +\title{module_gcamusa_L2322.Fert} \usage{ -module_gcamusa_L2322.Fert_USA(command, ...) +module_gcamusa_L2322.Fert(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2322.industry_vintage_USA.Rd b/input/gcamdata/man/module_gcamusa_L2322.industry_vintage.Rd similarity index 80% rename from input/gcamdata/man/module_gcamusa_L2322.industry_vintage_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2322.industry_vintage.Rd index 342db847d5..2e19e84a0c 100644 --- a/input/gcamdata/man/module_gcamusa_L2322.industry_vintage_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2322.industry_vintage.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2322.industry_vintage_USA.R -\name{module_gcamusa_L2322.industry_vintage_USA} -\alias{module_gcamusa_L2322.industry_vintage_USA} -\title{module_gcamusa_L2322.industry_vintage_USA} +% Please edit documentation in R/zgcamusa_L2322.industry_vintage.R +\name{module_gcamusa_L2322.industry_vintage} +\alias{module_gcamusa_L2322.industry_vintage} +\title{module_gcamusa_L2322.industry_vintage} \usage{ -module_gcamusa_L2322.industry_vintage_USA(command, ...) +module_gcamusa_L2322.industry_vintage(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L244.building_USA.Rd b/input/gcamdata/man/module_gcamusa_L244.building.Rd similarity index 89% rename from input/gcamdata/man/module_gcamusa_L244.building_USA.Rd rename to input/gcamdata/man/module_gcamusa_L244.building.Rd index f05b724955..5024c5cdfc 100644 --- a/input/gcamdata/man/module_gcamusa_L244.building_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L244.building.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L244.building_USA.R -\name{module_gcamusa_L244.building_USA} -\alias{module_gcamusa_L244.building_USA} -\title{module_gcamusa_L244.building_USA} +% Please edit documentation in R/zgcamusa_L244.building.R +\name{module_gcamusa_L244.building} +\alias{module_gcamusa_L244.building} +\title{module_gcamusa_L244.building} \usage{ -module_gcamusa_L244.building_USA(command, ...) +module_gcamusa_L244.building(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L245.water_demand_municipal.Rd b/input/gcamdata/man/module_gcamusa_L245.water_demand_municipal.Rd index abfdcf2bf0..9a614c22d3 100644 --- a/input/gcamdata/man/module_gcamusa_L245.water_demand_municipal.Rd +++ b/input/gcamdata/man/module_gcamusa_L245.water_demand_municipal.Rd @@ -1,5 +1,5 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L245.water_demand_municipal_USA.R +% Please edit documentation in R/zgcamusa_L245.water_demand_municipal.R \name{module_gcamusa_L245.water_demand_municipal} \alias{module_gcamusa_L245.water_demand_municipal} \title{module_gcamusa_L245.water_demand_municipal} diff --git a/input/gcamdata/man/module_gcamusa_L254.transportation_USA.Rd b/input/gcamdata/man/module_gcamusa_L254.transportation.Rd similarity index 91% rename from input/gcamdata/man/module_gcamusa_L254.transportation_USA.Rd rename to input/gcamdata/man/module_gcamusa_L254.transportation.Rd index b773c0731e..4c16f275ac 100644 --- a/input/gcamdata/man/module_gcamusa_L254.transportation_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L254.transportation.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L254.transportation_USA.R -\name{module_gcamusa_L254.transportation_USA} -\alias{module_gcamusa_L254.transportation_USA} -\title{module_gcamusa_L254.transportation_USA} +% Please edit documentation in R/zgcamusa_L254.transportation.R +\name{module_gcamusa_L254.transportation} +\alias{module_gcamusa_L254.transportation} +\title{module_gcamusa_L254.transportation} \usage{ -module_gcamusa_L254.transportation_USA(command, ...) +module_gcamusa_L254.transportation(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L261.carbon_storage_USA.Rd b/input/gcamdata/man/module_gcamusa_L261.carbon_storage.Rd similarity index 81% rename from input/gcamdata/man/module_gcamusa_L261.carbon_storage_USA.Rd rename to input/gcamdata/man/module_gcamusa_L261.carbon_storage.Rd index 05f04f7346..78c8ed7cf9 100644 --- a/input/gcamdata/man/module_gcamusa_L261.carbon_storage_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L261.carbon_storage.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L261.carbon_storage_USA.R -\name{module_gcamusa_L261.carbon_storage_USA} -\alias{module_gcamusa_L261.carbon_storage_USA} -\title{module_gcamusa_L261.carbon_storage_USA} +% Please edit documentation in R/zgcamusa_L261.carbon_storage.R +\name{module_gcamusa_L261.carbon_storage} +\alias{module_gcamusa_L261.carbon_storage} +\title{module_gcamusa_L261.carbon_storage} \usage{ -module_gcamusa_L261.carbon_storage_USA(command, ...) +module_gcamusa_L261.carbon_storage(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L262.dac_USA.Rd b/input/gcamdata/man/module_gcamusa_L262.dac.Rd similarity index 88% rename from input/gcamdata/man/module_gcamusa_L262.dac_USA.Rd rename to input/gcamdata/man/module_gcamusa_L262.dac.Rd index 27d6b715d9..eec7970570 100644 --- a/input/gcamdata/man/module_gcamusa_L262.dac_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L262.dac.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L262.dac_USA.R -\name{module_gcamusa_L262.dac_USA} -\alias{module_gcamusa_L262.dac_USA} -\title{module_gcamusa_L262.dac_USA} +% Please edit documentation in R/zgcamusa_L262.dac.R +\name{module_gcamusa_L262.dac} +\alias{module_gcamusa_L262.dac} +\title{module_gcamusa_L262.dac} \usage{ -module_gcamusa_L262.dac_USA(command, ...) +module_gcamusa_L262.dac(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L270.limits_USA.Rd b/input/gcamdata/man/module_gcamusa_L270.limits.Rd similarity index 83% rename from input/gcamdata/man/module_gcamusa_L270.limits_USA.Rd rename to input/gcamdata/man/module_gcamusa_L270.limits.Rd index 2b629413c6..9871e3d5a4 100644 --- a/input/gcamdata/man/module_gcamusa_L270.limits_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L270.limits.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L270.limits_USA.R -\name{module_gcamusa_L270.limits_USA} -\alias{module_gcamusa_L270.limits_USA} -\title{module_gcamusa_L270.limits_USA} +% Please edit documentation in R/zgcamusa_L270.limits.R +\name{module_gcamusa_L270.limits} +\alias{module_gcamusa_L270.limits} +\title{module_gcamusa_L270.limits} \usage{ -module_gcamusa_L270.limits_USA(command, ...) +module_gcamusa_L270.limits(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L271.ghg_trn_USA.Rd b/input/gcamdata/man/module_gcamusa_L271.ghg_trn.Rd similarity index 75% rename from input/gcamdata/man/module_gcamusa_L271.ghg_trn_USA.Rd rename to input/gcamdata/man/module_gcamusa_L271.ghg_trn.Rd index 310fe4a6ab..faaf84c4ed 100644 --- a/input/gcamdata/man/module_gcamusa_L271.ghg_trn_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L271.ghg_trn.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L271.ghg_trn_USA.R -\name{module_gcamusa_L271.ghg_trn_USA} -\alias{module_gcamusa_L271.ghg_trn_USA} -\title{module_gcamusa_L271.ghg_trn_USA} +% Please edit documentation in R/zgcamusa_L271.ghg_trn.R +\name{module_gcamusa_L271.ghg_trn} +\alias{module_gcamusa_L271.ghg_trn} +\title{module_gcamusa_L271.ghg_trn} \usage{ -module_gcamusa_L271.ghg_trn_USA(command, ...) +module_gcamusa_L271.ghg_trn(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L271.nonghg_trn_USA.Rd b/input/gcamdata/man/module_gcamusa_L271.nonghg_trn.Rd similarity index 74% rename from input/gcamdata/man/module_gcamusa_L271.nonghg_trn_USA.Rd rename to input/gcamdata/man/module_gcamusa_L271.nonghg_trn.Rd index 88c906e7c0..2b0940186f 100644 --- a/input/gcamdata/man/module_gcamusa_L271.nonghg_trn_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L271.nonghg_trn.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L271.nonghg_trn_USA.R -\name{module_gcamusa_L271.nonghg_trn_USA} -\alias{module_gcamusa_L271.nonghg_trn_USA} -\title{module_gcamusa_L271.nonghg_trn_USA} +% Please edit documentation in R/zgcamusa_L271.nonghg_trn.R +\name{module_gcamusa_L271.nonghg_trn} +\alias{module_gcamusa_L271.nonghg_trn} +\title{module_gcamusa_L271.nonghg_trn} \usage{ -module_gcamusa_L271.nonghg_trn_USA(command, ...) +module_gcamusa_L271.nonghg_trn(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L272.elc_nonghg_USA.Rd b/input/gcamdata/man/module_gcamusa_L272.elc_nonghg.Rd similarity index 76% rename from input/gcamdata/man/module_gcamusa_L272.elc_nonghg_USA.Rd rename to input/gcamdata/man/module_gcamusa_L272.elc_nonghg.Rd index a53063d3b9..2d182c62de 100644 --- a/input/gcamdata/man/module_gcamusa_L272.elc_nonghg_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L272.elc_nonghg.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L272.nonghg_elc_USA.R -\name{module_gcamusa_L272.elc_nonghg_USA} -\alias{module_gcamusa_L272.elc_nonghg_USA} -\title{module_gcamusa_L272.elc_nonghg_USA} +% Please edit documentation in R/zgcamusa_L272.nonghg_elc.R +\name{module_gcamusa_L272.elc_nonghg} +\alias{module_gcamusa_L272.elc_nonghg} +\title{module_gcamusa_L272.elc_nonghg} \usage{ -module_gcamusa_L272.elc_nonghg_USA(command, ...) +module_gcamusa_L272.elc_nonghg(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control_USA.Rd b/input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control.Rd similarity index 75% rename from input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control_USA.Rd rename to input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control.Rd index d8716af018..045e9500f5 100644 --- a/input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L2722.nonghg_elc_linear_control.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L2722.nonghg_elc_linear_control_USA.R -\name{module_gcamusa_L2722.nonghg_elc_linear_control_USA} -\alias{module_gcamusa_L2722.nonghg_elc_linear_control_USA} -\title{module_gcamusa_L2722.nonghg_elc_linear_control_USA} +% Please edit documentation in R/zgcamusa_L2722.nonghg_elc_linear_control.R +\name{module_gcamusa_L2722.nonghg_elc_linear_control} +\alias{module_gcamusa_L2722.nonghg_elc_linear_control} +\title{module_gcamusa_L2722.nonghg_elc_linear_control} \usage{ -module_gcamusa_L2722.nonghg_elc_linear_control_USA(command, ...) +module_gcamusa_L2722.nonghg_elc_linear_control(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions_USA.Rd b/input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions.Rd similarity index 75% rename from input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions_USA.Rd rename to input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions.Rd index a515343896..278c862477 100644 --- a/input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L273.en_ghg_emissions.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L273.en_ghg_emissions_USA.R -\name{module_gcamusa_L273.en_ghg_emissions_USA} -\alias{module_gcamusa_L273.en_ghg_emissions_USA} -\title{module_gcamusa_L273.en_ghg_emissions_USA} +% Please edit documentation in R/zgcamusa_L273.en_ghg_emissions.R +\name{module_gcamusa_L273.en_ghg_emissions} +\alias{module_gcamusa_L273.en_ghg_emissions} +\title{module_gcamusa_L273.en_ghg_emissions} \usage{ -module_gcamusa_L273.en_ghg_emissions_USA(command, ...) +module_gcamusa_L273.en_ghg_emissions(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L273.nonghg_refinery_USA.Rd b/input/gcamdata/man/module_gcamusa_L273.nonghg_refinery.Rd similarity index 68% rename from input/gcamdata/man/module_gcamusa_L273.nonghg_refinery_USA.Rd rename to input/gcamdata/man/module_gcamusa_L273.nonghg_refinery.Rd index 1bae15cdac..66e6cecf88 100644 --- a/input/gcamdata/man/module_gcamusa_L273.nonghg_refinery_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L273.nonghg_refinery.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L273.nonghg_refinery_USA.R -\name{module_gcamusa_L273.nonghg_refinery_USA} -\alias{module_gcamusa_L273.nonghg_refinery_USA} -\title{module_gcamusa_L273.nonghg_refinery_USA} +% Please edit documentation in R/zgcamusa_L273.nonghg_refinery.R +\name{module_gcamusa_L273.nonghg_refinery} +\alias{module_gcamusa_L273.nonghg_refinery} +\title{module_gcamusa_L273.nonghg_refinery} \usage{ -module_gcamusa_L273.nonghg_refinery_USA(command, ...) +module_gcamusa_L273.nonghg_refinery(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L274.nonghg_bld_USA.Rd b/input/gcamdata/man/module_gcamusa_L274.nonghg_bld.Rd similarity index 73% rename from input/gcamdata/man/module_gcamusa_L274.nonghg_bld_USA.Rd rename to input/gcamdata/man/module_gcamusa_L274.nonghg_bld.Rd index a2e65de104..4972ed4b8f 100644 --- a/input/gcamdata/man/module_gcamusa_L274.nonghg_bld_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L274.nonghg_bld.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L274.nonghg_bld_USA.R -\name{module_gcamusa_L274.nonghg_bld_USA} -\alias{module_gcamusa_L274.nonghg_bld_USA} -\title{module_gcamusa_L274.nonghg_bld_USA} +% Please edit documentation in R/zgcamusa_L274.nonghg_bld.R +\name{module_gcamusa_L274.nonghg_bld} +\alias{module_gcamusa_L274.nonghg_bld} +\title{module_gcamusa_L274.nonghg_bld} \usage{ -module_gcamusa_L274.nonghg_bld_USA(command, ...) +module_gcamusa_L274.nonghg_bld(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg_USA.Rd b/input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg.Rd similarity index 72% rename from input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg_USA.Rd rename to input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg.Rd index 33211dcfb7..084a503790 100644 --- a/input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L275.indenergy_nonghg.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L275.nonghg_indenergy_USA.R -\name{module_gcamusa_L275.indenergy_nonghg_USA} -\alias{module_gcamusa_L275.indenergy_nonghg_USA} -\title{module_gcamusa_L275.indenergy_nonghg_USA} +% Please edit documentation in R/zgcamusa_L275.nonghg_indenergy.R +\name{module_gcamusa_L275.indenergy_nonghg} +\alias{module_gcamusa_L275.indenergy_nonghg} +\title{module_gcamusa_L275.indenergy_nonghg} \usage{ -module_gcamusa_L275.indenergy_nonghg_USA(command, ...) +module_gcamusa_L275.indenergy_nonghg(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn_USA.Rd b/input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn.Rd similarity index 73% rename from input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn_USA.Rd rename to input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn.Rd index e8efb7d996..d831a1a5ab 100644 --- a/input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L276.nonghg_othertrn.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L276.nonghg_othertrn_USA.R -\name{module_gcamusa_L276.nonghg_othertrn_USA} -\alias{module_gcamusa_L276.nonghg_othertrn_USA} -\title{module_gcamusa_L276.nonghg_othertrn_USA} +% Please edit documentation in R/zgcamusa_L276.nonghg_othertrn.R +\name{module_gcamusa_L276.nonghg_othertrn} +\alias{module_gcamusa_L276.nonghg_othertrn} +\title{module_gcamusa_L276.nonghg_othertrn} \usage{ -module_gcamusa_L276.nonghg_othertrn_USA(command, ...) +module_gcamusa_L276.nonghg_othertrn(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_L277.ghg_prc_USA.Rd b/input/gcamdata/man/module_gcamusa_L277.ghg_prc.Rd similarity index 76% rename from input/gcamdata/man/module_gcamusa_L277.ghg_prc_USA.Rd rename to input/gcamdata/man/module_gcamusa_L277.ghg_prc.Rd index d917235499..eff0126dc8 100644 --- a/input/gcamdata/man/module_gcamusa_L277.ghg_prc_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L277.ghg_prc.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zchunk_L277.ghg_prc_USA.R -\name{module_gcamusa_L277.ghg_prc_USA} -\alias{module_gcamusa_L277.ghg_prc_USA} -\title{module_gcamusa_L277.ghg_prc_USA} +% Please edit documentation in R/zgcamusa_L277.ghg_prc.R +\name{module_gcamusa_L277.ghg_prc} +\alias{module_gcamusa_L277.ghg_prc} +\title{module_gcamusa_L277.ghg_prc} \usage{ -module_gcamusa_L277.ghg_prc_USA(command, ...) +module_gcamusa_L277.ghg_prc(command, ...) } \arguments{ \item{command}{API command to execute} @@ -14,7 +14,7 @@ module_gcamusa_L277.ghg_prc_USA(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L277.ghg_prc_USA}, \code{L277.MAC_prc_tc_average_USA}, \code{L277.MAC_prc_phaseInTime_USA}. +the generated outputs: \code{L277.ghg_prc_USA}, \code{L277.MAC_prc_USA}, \code{L277.MAC_prc_tc_average_USA}, \code{L277.MAC_prc_phaseInTime_USA}. } \description{ Generates input ghg emissions and marginal abatement curves for industrial processes and urban processes by diff --git a/input/gcamdata/man/module_gcamusa_L277.nonghg_prc_USA.Rd b/input/gcamdata/man/module_gcamusa_L277.nonghg_prc.Rd similarity index 79% rename from input/gcamdata/man/module_gcamusa_L277.nonghg_prc_USA.Rd rename to input/gcamdata/man/module_gcamusa_L277.nonghg_prc.Rd index 239b7a0e9a..ff7b72df66 100644 --- a/input/gcamdata/man/module_gcamusa_L277.nonghg_prc_USA.Rd +++ b/input/gcamdata/man/module_gcamusa_L277.nonghg_prc.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_L277.nonghg_prc_USA.R -\name{module_gcamusa_L277.nonghg_prc_USA} -\alias{module_gcamusa_L277.nonghg_prc_USA} -\title{module_gcamusa_L277.nonghg_prc_USA} +% Please edit documentation in R/zgcamusa_L277.nonghg_prc.R +\name{module_gcamusa_L277.nonghg_prc} +\alias{module_gcamusa_L277.nonghg_prc} +\title{module_gcamusa_L277.nonghg_prc} \usage{ -module_gcamusa_L277.nonghg_prc_USA(command, ...) +module_gcamusa_L277.nonghg_prc(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_bld_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_bld_emissions_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_bld_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_bld_emissions_xml.Rd index 085144b3f9..61a67a4bba 100644 --- a/input/gcamdata/man/module_gcamusa_batch_bld_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_bld_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_bld_emissions_USA_xml.R -\name{module_gcamusa_batch_bld_emissions_USA_xml} -\alias{module_gcamusa_batch_bld_emissions_USA_xml} -\title{module_gcamusa_batch_bld_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_bld_emissions.R +\name{module_gcamusa_bld_emissions_xml} +\alias{module_gcamusa_bld_emissions_xml} +\title{module_gcamusa_bld_emissions_xml} \usage{ -module_gcamusa_batch_bld_emissions_USA_xml(command, ...) +module_gcamusa_bld_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_building_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_building_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_building_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_building_xml.Rd index 0a5f872ede..15cca0a87a 100644 --- a/input/gcamdata/man/module_gcamusa_batch_building_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_building_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_building_USA_xml.R -\name{module_gcamusa_batch_building_USA_xml} -\alias{module_gcamusa_batch_building_USA_xml} -\title{module_gcamusa_batch_building_USA_xml} +% Please edit documentation in R/zgcamusa_xml_building.R +\name{module_gcamusa_building_xml} +\alias{module_gcamusa_building_xml} +\title{module_gcamusa_building_xml} \usage{ -module_gcamusa_batch_building_USA_xml(command, ...) +module_gcamusa_building_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_cement_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_cement_xml.Rd similarity index 68% rename from input/gcamdata/man/module_gcamusa_batch_cement_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_cement_xml.Rd index 16c60f6fb2..c5a306f1a2 100644 --- a/input/gcamdata/man/module_gcamusa_batch_cement_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_cement_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_cement_USA_xml.R -\name{module_gcamusa_batch_cement_USA_xml} -\alias{module_gcamusa_batch_cement_USA_xml} -\title{module_gcamusa_batch_cement_USA_xml} +% Please edit documentation in R/zgcamusa_xml_cement.R +\name{module_gcamusa_cement_xml} +\alias{module_gcamusa_cement_xml} +\title{module_gcamusa_cement_xml} \usage{ -module_gcamusa_batch_cement_USA_xml(command, ...) +module_gcamusa_cement_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_coal_delay_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_coal_delay_xml.Rd similarity index 61% rename from input/gcamdata/man/module_gcamusa_batch_coal_delay_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_coal_delay_xml.Rd index 3c9c0564f3..b3e6f2c5b0 100644 --- a/input/gcamdata/man/module_gcamusa_batch_coal_delay_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_coal_delay_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_coal_delay_USA_xml.R -\name{module_gcamusa_batch_coal_delay_USA_xml} -\alias{module_gcamusa_batch_coal_delay_USA_xml} -\title{module_gcamusa_batch_coal_delay_USA_xml} +% Please edit documentation in R/zgcamusa_xml_coal_delay.R +\name{module_gcamusa_coal_delay_xml} +\alias{module_gcamusa_coal_delay_xml} +\title{module_gcamusa_coal_delay_xml} \usage{ -module_gcamusa_batch_coal_delay_USA_xml(command, ...) +module_gcamusa_coal_delay_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_coal_retire_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_coal_retire_xml.Rd similarity index 62% rename from input/gcamdata/man/module_gcamusa_batch_coal_retire_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_coal_retire_xml.Rd index 4d62ec5b6d..3cae8a29cb 100644 --- a/input/gcamdata/man/module_gcamusa_batch_coal_retire_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_coal_retire_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_coal_retire_USA_xml.R -\name{module_gcamusa_batch_coal_retire_USA_xml} -\alias{module_gcamusa_batch_coal_retire_USA_xml} -\title{module_gcamusa_batch_coal_retire_USA_xml} +% Please edit documentation in R/zgcamusa_xml_coal_retire.R +\name{module_gcamusa_coal_retire_xml} +\alias{module_gcamusa_coal_retire_xml} +\title{module_gcamusa_coal_retire_xml} \usage{ -module_gcamusa_batch_coal_retire_USA_xml(command, ...) +module_gcamusa_coal_retire_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_dac_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_dac_xml.Rd similarity index 70% rename from input/gcamdata/man/module_gcamusa_batch_dac_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_dac_xml.Rd index b9016efef8..e32c2656ab 100644 --- a/input/gcamdata/man/module_gcamusa_batch_dac_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_dac_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_dac_USA_xml.R -\name{module_gcamusa_batch_dac_USA_xml} -\alias{module_gcamusa_batch_dac_USA_xml} -\title{module_gcamusa_batch_dac_USA_xml} +% Please edit documentation in R/zgcamusa_xml_dac.R +\name{module_gcamusa_dac_xml} +\alias{module_gcamusa_dac_xml} +\title{module_gcamusa_dac_xml} \usage{ -module_gcamusa_batch_dac_USA_xml(command, ...) +module_gcamusa_dac_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elc_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_elc_emissions_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_elc_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_elc_emissions_xml.Rd index e8e46e38d8..7b340a4418 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elc_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elc_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elc_emissions_USA_xml.R -\name{module_gcamusa_batch_elc_emissions_USA_xml} -\alias{module_gcamusa_batch_elc_emissions_USA_xml} -\title{module_gcamusa_batch_elc_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_elc_emissions.R +\name{module_gcamusa_elc_emissions_xml} +\alias{module_gcamusa_elc_emissions_xml} +\title{module_gcamusa_elc_emissions_xml} \usage{ -module_gcamusa_batch_elc_emissions_USA_xml(command, ...) +module_gcamusa_elc_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_itc_xml.Rd b/input/gcamdata/man/module_gcamusa_elecS_costs_itc_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_itc_xml.Rd rename to input/gcamdata/man/module_gcamusa_elecS_costs_itc_xml.Rd index c9e207c6fc..d88e362ed4 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_itc_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elecS_costs_itc_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elecS_costs_USA_itc_xml.R -\name{module_gcamusa_batch_elecS_costs_USA_itc_xml} -\alias{module_gcamusa_batch_elecS_costs_USA_itc_xml} -\title{module_gcamusa_batch_elecS_costs_USA_itc_xml} +% Please edit documentation in R/zgcamusa_xml_elecS_costs_itc.R +\name{module_gcamusa_elecS_costs_itc_xml} +\alias{module_gcamusa_elecS_costs_itc_xml} +\title{module_gcamusa_elecS_costs_itc_xml} \usage{ -module_gcamusa_batch_elecS_costs_USA_itc_xml(command, ...) +module_gcamusa_elecS_costs_itc_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_ptc_xml.Rd b/input/gcamdata/man/module_gcamusa_elecS_costs_ptc_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_ptc_xml.Rd rename to input/gcamdata/man/module_gcamusa_elecS_costs_ptc_xml.Rd index 00f63ab9ff..722094d9c3 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elecS_costs_USA_ptc_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elecS_costs_ptc_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elecS_costs_USA_ptc_xml.R -\name{module_gcamusa_batch_elecS_costs_USA_ptc_xml} -\alias{module_gcamusa_batch_elecS_costs_USA_ptc_xml} -\title{module_gcamusa_batch_elecS_costs_USA_ptc_xml} +% Please edit documentation in R/zgcamusa_xml_elecS_costs_ptc.R +\name{module_gcamusa_elecS_costs_ptc_xml} +\alias{module_gcamusa_elecS_costs_ptc_xml} +\title{module_gcamusa_elecS_costs_ptc_xml} \usage{ -module_gcamusa_batch_elecS_costs_USA_ptc_xml(command, ...) +module_gcamusa_elecS_costs_ptc_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_elecS_ghg_emissions_water_xml.Rd similarity index 62% rename from input/gcamdata/man/module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_elecS_ghg_emissions_water_xml.Rd index 6e356c077c..3e1975b7a5 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elecS_ghg_emissions_water_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zgcamusa_batch_elecS_ghg_emissions_water_USA_xml.R -\name{module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml} -\alias{module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml} -\title{module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml} +% Please edit documentation in R/zgcamusa_xml_elecS_ghg_emissions_water.R +\name{module_gcamusa_elecS_ghg_emissions_water_xml} +\alias{module_gcamusa_elecS_ghg_emissions_water_xml} +\title{module_gcamusa_elecS_ghg_emissions_water_xml} \usage{ -module_gcamusa_batch_elecS_ghg_emissions_water_USA_xml(command, ...) +module_gcamusa_elecS_ghg_emissions_water_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elec_hydro_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_elec_hydro_xml.Rd similarity index 66% rename from input/gcamdata/man/module_gcamusa_batch_elec_hydro_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_elec_hydro_xml.Rd index 0a433e0962..66184306d9 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elec_hydro_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elec_hydro_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elec_hydro_USA_xml.R -\name{module_gcamusa_batch_elec_hydro_USA_xml} -\alias{module_gcamusa_batch_elec_hydro_USA_xml} -\title{module_gcamusa_batch_elec_hydro_USA_xml} +% Please edit documentation in R/zgcamusa_xml_elec_hydro.R +\name{module_gcamusa_elec_hydro_xml} +\alias{module_gcamusa_elec_hydro_xml} +\title{module_gcamusa_elec_hydro_xml} \usage{ -module_gcamusa_batch_elec_hydro_USA_xml(command, ...) +module_gcamusa_elec_hydro_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elec_segments_water_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_elec_segments_water_xml.Rd similarity index 63% rename from input/gcamdata/man/module_gcamusa_batch_elec_segments_water_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_elec_segments_water_xml.Rd index 8841d1a64d..30f2f5b929 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elec_segments_water_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elec_segments_water_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elec_segments_water_USA_xml.R -\name{module_gcamusa_batch_elec_segments_water_USA_xml} -\alias{module_gcamusa_batch_elec_segments_water_USA_xml} -\title{module_gcamusa_batch_elec_segments_water_USA_xml} +% Please edit documentation in R/zgcamusa_xml_elec_segments_water.R +\name{module_gcamusa_elec_segments_water_xml} +\alias{module_gcamusa_elec_segments_water_xml} +\title{module_gcamusa_elec_segments_water_xml} \usage{ -module_gcamusa_batch_elec_segments_water_USA_xml(command, ...) +module_gcamusa_elec_segments_water_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_elec_segments_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_elec_segments_xml.Rd similarity index 66% rename from input/gcamdata/man/module_gcamusa_batch_elec_segments_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_elec_segments_xml.Rd index 712087cf49..909120505d 100644 --- a/input/gcamdata/man/module_gcamusa_batch_elec_segments_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_elec_segments_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_elec_segments_USA_xml.R -\name{module_gcamusa_batch_elec_segments_USA_xml} -\alias{module_gcamusa_batch_elec_segments_USA_xml} -\title{module_gcamusa_batch_elec_segments_USA_xml} +% Please edit documentation in R/zgcamusa_xml_elec_segments.R +\name{module_gcamusa_elec_segments_xml} +\alias{module_gcamusa_elec_segments_xml} +\title{module_gcamusa_elec_segments_xml} \usage{ -module_gcamusa_batch_elec_segments_USA_xml(command, ...) +module_gcamusa_elec_segments_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_electd_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_electd_xml.Rd similarity index 68% rename from input/gcamdata/man/module_gcamusa_batch_electd_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_electd_xml.Rd index 6c5891c277..84d7f89194 100644 --- a/input/gcamdata/man/module_gcamusa_batch_electd_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_electd_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_electd_USA_xml.R -\name{module_gcamusa_batch_electd_USA_xml} -\alias{module_gcamusa_batch_electd_USA_xml} -\title{module_gcamusa_batch_electd_USA_xml} +% Please edit documentation in R/zgcamusa_xml_electd.R +\name{module_gcamusa_electd_xml} +\alias{module_gcamusa_electd_xml} +\title{module_gcamusa_electd_xml} \usage{ -module_gcamusa_batch_electd_USA_xml(command, ...) +module_gcamusa_electd_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_electricity_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_electricity_xml.Rd similarity index 66% rename from input/gcamdata/man/module_gcamusa_batch_electricity_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_electricity_xml.Rd index d4bdfc0c8a..177423a55c 100644 --- a/input/gcamdata/man/module_gcamusa_batch_electricity_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_electricity_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_electricity_USA_xml.R -\name{module_gcamusa_batch_electricity_USA_xml} -\alias{module_gcamusa_batch_electricity_USA_xml} -\title{module_gcamusa_batch_electricity_USA_xml} +% Please edit documentation in R/zgcamusa_xml_electricity.R +\name{module_gcamusa_electricity_xml} +\alias{module_gcamusa_electricity_xml} +\title{module_gcamusa_electricity_xml} \usage{ -module_gcamusa_batch_electricity_USA_xml(command, ...) +module_gcamusa_electricity_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_en_prices_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_en_prices_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_en_prices_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_en_prices_xml.Rd index 04fa366ccf..037a8b2858 100644 --- a/input/gcamdata/man/module_gcamusa_batch_en_prices_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_en_prices_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_en_prices_USA_xml.R -\name{module_gcamusa_batch_en_prices_USA_xml} -\alias{module_gcamusa_batch_en_prices_USA_xml} -\title{module_gcamusa_batch_en_prices_USA_xml} +% Please edit documentation in R/zgcamusa_xml_en_prices.R +\name{module_gcamusa_en_prices_xml} +\alias{module_gcamusa_en_prices_xml} +\title{module_gcamusa_en_prices_xml} \usage{ -module_gcamusa_batch_en_prices_USA_xml(command, ...) +module_gcamusa_en_prices_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_en_transformation_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_en_transformation_xml.Rd similarity index 64% rename from input/gcamdata/man/module_gcamusa_batch_en_transformation_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_en_transformation_xml.Rd index 0947038995..2b4a21b9b5 100644 --- a/input/gcamdata/man/module_gcamusa_batch_en_transformation_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_en_transformation_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_en_transformation_USA_xml.R -\name{module_gcamusa_batch_en_transformation_USA_xml} -\alias{module_gcamusa_batch_en_transformation_USA_xml} -\title{module_gcamusa_batch_en_transformation_USA_xml} +% Please edit documentation in R/zgcamusa_xml_en_transformation.R +\name{module_gcamusa_en_transformation_xml} +\alias{module_gcamusa_en_transformation_xml} +\title{module_gcamusa_en_transformation_xml} \usage{ -module_gcamusa_batch_en_transformation_USA_xml(command, ...) +module_gcamusa_en_transformation_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_geothermal_fixed_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_geothermal_fixed_xml.Rd similarity index 59% rename from input/gcamdata/man/module_gcamusa_batch_geothermal_fixed_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_geothermal_fixed_xml.Rd index 261b7984a9..48759e6dd4 100644 --- a/input/gcamdata/man/module_gcamusa_batch_geothermal_fixed_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_geothermal_fixed_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_geothermal_fixed_USA_xml.R -\name{module_gcamusa_batch_geothermal_fixed_USA_xml} -\alias{module_gcamusa_batch_geothermal_fixed_USA_xml} -\title{module_gcamusa_batch_geothermal_fixed_USA_xml} +% Please edit documentation in R/zgcamusa_xml_geothermal_fixed.R +\name{module_gcamusa_geothermal_fixed_xml} +\alias{module_gcamusa_geothermal_fixed_xml} +\title{module_gcamusa_geothermal_fixed_xml} \usage{ -module_gcamusa_batch_geothermal_fixed_USA_xml(command, ...) +module_gcamusa_geothermal_fixed_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_ghg_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_ghg_emissions_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_ghg_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_ghg_emissions_xml.Rd index 180ab7b3c1..ac31b89d48 100644 --- a/input/gcamdata/man/module_gcamusa_batch_ghg_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_ghg_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_ghg_emissions_USA_xml.R -\name{module_gcamusa_batch_ghg_emissions_USA_xml} -\alias{module_gcamusa_batch_ghg_emissions_USA_xml} -\title{module_gcamusa_batch_ghg_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_ghg_emissions.R +\name{module_gcamusa_ghg_emissions_xml} +\alias{module_gcamusa_ghg_emissions_xml} +\title{module_gcamusa_ghg_emissions_xml} \usage{ -module_gcamusa_batch_ghg_emissions_USA_xml(command, ...) +module_gcamusa_ghg_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_hydrogen_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_hydrogen_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_hydrogen_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_hydrogen_xml.Rd index 32ff6893a0..803d0086bc 100644 --- a/input/gcamdata/man/module_gcamusa_batch_hydrogen_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_hydrogen_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_hydrogen_USA_xml.R -\name{module_gcamusa_batch_hydrogen_USA_xml} -\alias{module_gcamusa_batch_hydrogen_USA_xml} -\title{module_gcamusa_batch_hydrogen_USA_xml} +% Please edit documentation in R/zgcamusa_xml_hydrogen.R +\name{module_gcamusa_hydrogen_xml} +\alias{module_gcamusa_hydrogen_xml} +\title{module_gcamusa_hydrogen_xml} \usage{ -module_gcamusa_batch_hydrogen_USA_xml(command, ...) +module_gcamusa_hydrogen_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_ind_urb_proc_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_ind_urb_proc_emissions_xml.Rd similarity index 50% rename from input/gcamdata/man/module_gcamusa_batch_ind_urb_proc_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_ind_urb_proc_emissions_xml.Rd index e1c1fa26cc..25abcb3a38 100644 --- a/input/gcamdata/man/module_gcamusa_batch_ind_urb_proc_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_ind_urb_proc_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_ind_urb_proc_emissions_USA_xml.R -\name{module_gcamusa_batch_ind_urb_proc_emissions_USA_xml} -\alias{module_gcamusa_batch_ind_urb_proc_emissions_USA_xml} -\title{module_gcamusa_batch_ind_urb_proc_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_ind_urb_proc_emissions.R +\name{module_gcamusa_ind_urb_proc_emissions_xml} +\alias{module_gcamusa_ind_urb_proc_emissions_xml} +\title{module_gcamusa_ind_urb_proc_emissions_xml} \usage{ -module_gcamusa_batch_ind_urb_proc_emissions_USA_xml(command, ...) +module_gcamusa_ind_urb_proc_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} @@ -14,7 +14,7 @@ module_gcamusa_batch_ind_urb_proc_emissions_USA_xml(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{ind_urb_proc_emissions_USA.xml}. +the generated outputs: \code{ind_urb_proc_emissions_USA.xml}, \code{ind_urb_proc_ghg_emissions_USA.xml}. } \description{ Construct XML data structure for \code{ind_urb_proc_emissions_USA.xml}. diff --git a/input/gcamdata/man/module_gcamusa_batch_ind_urb_processing_sectors_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_ind_urb_processing_sectors_xml.Rd similarity index 62% rename from input/gcamdata/man/module_gcamusa_batch_ind_urb_processing_sectors_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_ind_urb_processing_sectors_xml.Rd index d69485f1c8..db90655220 100644 --- a/input/gcamdata/man/module_gcamusa_batch_ind_urb_processing_sectors_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_ind_urb_processing_sectors_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zgcamusa_batch_ind_urb_processing_sectors_USA_xml.R -\name{module_gcamusa_batch_ind_urb_processing_sectors_USA_xml} -\alias{module_gcamusa_batch_ind_urb_processing_sectors_USA_xml} -\title{module_gcamusa_batch_ind_urb_processing_sectors_USA_xml} +% Please edit documentation in R/zgcamusa_xml_ind_urb_processing_sectors.R +\name{module_gcamusa_ind_urb_processing_sectors_xml} +\alias{module_gcamusa_ind_urb_processing_sectors_xml} +\title{module_gcamusa_ind_urb_processing_sectors_xml} \usage{ -module_gcamusa_batch_ind_urb_processing_sectors_USA_xml(command, ...) +module_gcamusa_ind_urb_processing_sectors_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_indenergy_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_indenergy_emissions_xml.Rd similarity index 64% rename from input/gcamdata/man/module_gcamusa_batch_indenergy_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_indenergy_emissions_xml.Rd index 392720fcd4..310debe607 100644 --- a/input/gcamdata/man/module_gcamusa_batch_indenergy_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_indenergy_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_indenergy_emissions_USA_xml.R -\name{module_gcamusa_batch_indenergy_emissions_USA_xml} -\alias{module_gcamusa_batch_indenergy_emissions_USA_xml} -\title{module_gcamusa_batch_indenergy_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_indenergy_emissions.R +\name{module_gcamusa_indenergy_emissions_xml} +\alias{module_gcamusa_indenergy_emissions_xml} +\title{module_gcamusa_indenergy_emissions_xml} \usage{ -module_gcamusa_batch_indenergy_emissions_USA_xml(command, ...) +module_gcamusa_indenergy_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_industry_vintage_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_industry_vintage_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_industry_vintage_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_industry_vintage_xml.Rd index 1ae7369d0b..4deaccba08 100644 --- a/input/gcamdata/man/module_gcamusa_batch_industry_vintage_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_industry_vintage_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_industry_vintage_USA_xml.R -\name{module_gcamusa_batch_industry_vintage_USA_xml} -\alias{module_gcamusa_batch_industry_vintage_USA_xml} -\title{module_gcamusa_batch_industry_vintage_USA_xml} +% Please edit documentation in R/zgcamusa_xml_industry_vintage.R +\name{module_gcamusa_industry_vintage_xml} +\alias{module_gcamusa_industry_vintage_xml} +\title{module_gcamusa_industry_vintage_xml} \usage{ -module_gcamusa_batch_industry_vintage_USA_xml(command, ...) +module_gcamusa_industry_vintage_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_industry_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_industry_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_industry_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_industry_xml.Rd index ba136a77d3..a691d5a01b 100644 --- a/input/gcamdata/man/module_gcamusa_batch_industry_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_industry_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_industry_USA_xml.R -\name{module_gcamusa_batch_industry_USA_xml} -\alias{module_gcamusa_batch_industry_USA_xml} -\title{module_gcamusa_batch_industry_USA_xml} +% Please edit documentation in R/zgcamusa_xml_industry.R +\name{module_gcamusa_industry_xml} +\alias{module_gcamusa_industry_xml} +\title{module_gcamusa_industry_xml} \usage{ -module_gcamusa_batch_industry_USA_xml(command, ...) +module_gcamusa_industry_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_liquids_limits_usa_xml.Rd b/input/gcamdata/man/module_gcamusa_liquids_limits_usa_xml.Rd similarity index 60% rename from input/gcamdata/man/module_gcamusa_batch_liquids_limits_usa_xml.Rd rename to input/gcamdata/man/module_gcamusa_liquids_limits_usa_xml.Rd index e7dabded60..01b8d2c14d 100644 --- a/input/gcamdata/man/module_gcamusa_batch_liquids_limits_usa_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_liquids_limits_usa_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_liquids_limits_usa_xml.R -\name{module_gcamusa_batch_liquids_limits_usa_xml} -\alias{module_gcamusa_batch_liquids_limits_usa_xml} -\title{module_gcamusa_batch_liquids_limits_usa_xml} +% Please edit documentation in R/zgcamusa_xml_liquids_limits_usa.R +\name{module_gcamusa_liquids_limits_usa_xml} +\alias{module_gcamusa_liquids_limits_usa_xml} +\title{module_gcamusa_liquids_limits_usa_xml} \usage{ -module_gcamusa_batch_liquids_limits_usa_xml(command, ...) +module_gcamusa_liquids_limits_usa_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_negative_emissions_budget_usa_xml.Rd b/input/gcamdata/man/module_gcamusa_negative_emissions_budget_usa_xml.Rd similarity index 63% rename from input/gcamdata/man/module_gcamusa_batch_negative_emissions_budget_usa_xml.Rd rename to input/gcamdata/man/module_gcamusa_negative_emissions_budget_usa_xml.Rd index 8711e19fb0..d46060017d 100644 --- a/input/gcamdata/man/module_gcamusa_batch_negative_emissions_budget_usa_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_negative_emissions_budget_usa_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zgcamusa_batch_negative_emissions_budget_usa_xml.R -\name{module_gcamusa_batch_negative_emissions_budget_usa_xml} -\alias{module_gcamusa_batch_negative_emissions_budget_usa_xml} -\title{module_gcamusa_batch_negative_emissions_budget_usa_xml} +% Please edit documentation in R/zgcamusa_xml_negative_emissions_budget_usa.R +\name{module_gcamusa_negative_emissions_budget_usa_xml} +\alias{module_gcamusa_negative_emissions_budget_usa_xml} +\title{module_gcamusa_negative_emissions_budget_usa_xml} \usage{ -module_gcamusa_batch_negative_emissions_budget_usa_xml(command, ...) +module_gcamusa_negative_emissions_budget_usa_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_nonewcoal_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_nonewcoal_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_nonewcoal_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_nonewcoal_xml.Rd index 981497d113..249f178dd0 100644 --- a/input/gcamdata/man/module_gcamusa_batch_nonewcoal_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_nonewcoal_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_nonewcoal_USA_xml.R -\name{module_gcamusa_batch_nonewcoal_USA_xml} -\alias{module_gcamusa_batch_nonewcoal_USA_xml} -\title{module_gcamusa_batch_nonewcoal_USA_xml} +% Please edit documentation in R/zgcamusa_xml_nonewcoal.R +\name{module_gcamusa_nonewcoal_xml} +\alias{module_gcamusa_nonewcoal_xml} +\title{module_gcamusa_nonewcoal_xml} \usage{ -module_gcamusa_batch_nonewcoal_USA_xml(command, ...) +module_gcamusa_nonewcoal_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_nuclear_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_nuclear_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_nuclear_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_nuclear_xml.Rd index 1308424c92..61a5247f11 100644 --- a/input/gcamdata/man/module_gcamusa_batch_nuclear_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_nuclear_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_nuclear_USA_xml.R -\name{module_gcamusa_batch_nuclear_USA_xml} -\alias{module_gcamusa_batch_nuclear_USA_xml} -\title{module_gcamusa_batch_nuclear_USA_xml} +% Please edit documentation in R/zgcamusa_xml_nuclear.R +\name{module_gcamusa_nuclear_xml} +\alias{module_gcamusa_nuclear_xml} +\title{module_gcamusa_nuclear_xml} \usage{ -module_gcamusa_batch_nuclear_USA_xml(command, ...) +module_gcamusa_nuclear_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_othertrn_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_othertrn_emissions_xml.Rd similarity index 64% rename from input/gcamdata/man/module_gcamusa_batch_othertrn_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_othertrn_emissions_xml.Rd index 5c8cf8c285..67708a7a7d 100644 --- a/input/gcamdata/man/module_gcamusa_batch_othertrn_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_othertrn_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_othertrn_emissions_USA_xml.R -\name{module_gcamusa_batch_othertrn_emissions_USA_xml} -\alias{module_gcamusa_batch_othertrn_emissions_USA_xml} -\title{module_gcamusa_batch_othertrn_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_othertrn_emissions.R +\name{module_gcamusa_othertrn_emissions_xml} +\alias{module_gcamusa_othertrn_emissions_xml} +\title{module_gcamusa_othertrn_emissions_xml} \usage{ -module_gcamusa_batch_othertrn_emissions_USA_xml(command, ...) +module_gcamusa_othertrn_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_refinery_nonghg_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_refinery_nonghg_emissions_xml.Rd similarity index 61% rename from input/gcamdata/man/module_gcamusa_batch_refinery_nonghg_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_refinery_nonghg_emissions_xml.Rd index 5733f279c2..1e1a11472e 100644 --- a/input/gcamdata/man/module_gcamusa_batch_refinery_nonghg_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_refinery_nonghg_emissions_xml.Rd @@ -1,11 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in -% R/zgcamusa_batch_refinery_nonghg_emissions_USA_xml.R -\name{module_gcamusa_batch_refinery_nonghg_emissions_USA_xml} -\alias{module_gcamusa_batch_refinery_nonghg_emissions_USA_xml} -\title{module_gcamusa_batch_refinery_nonghg_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_refinery_nonghg_emissions.R +\name{module_gcamusa_refinery_nonghg_emissions_xml} +\alias{module_gcamusa_refinery_nonghg_emissions_xml} +\title{module_gcamusa_refinery_nonghg_emissions_xml} \usage{ -module_gcamusa_batch_refinery_nonghg_emissions_USA_xml(command, ...) +module_gcamusa_refinery_nonghg_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_regional_biomass_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_regional_biomass_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_regional_biomass_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_regional_biomass_xml.Rd index 570a2093ca..b1ece8e056 100644 --- a/input/gcamdata/man/module_gcamusa_batch_regional_biomass_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_regional_biomass_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_regional_biomass_USA_xml.R -\name{module_gcamusa_batch_regional_biomass_USA_xml} -\alias{module_gcamusa_batch_regional_biomass_USA_xml} -\title{module_gcamusa_batch_regional_biomass_USA_xml} +% Please edit documentation in R/zgcamusa_xml_regional_biomass.R +\name{module_gcamusa_regional_biomass_xml} +\alias{module_gcamusa_regional_biomass_xml} +\title{module_gcamusa_regional_biomass_xml} \usage{ -module_gcamusa_batch_regional_biomass_USA_xml(command, ...) +module_gcamusa_regional_biomass_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_resources_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_resources_xml.Rd similarity index 67% rename from input/gcamdata/man/module_gcamusa_batch_resources_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_resources_xml.Rd index bc5167f5d2..67629cda7f 100644 --- a/input/gcamdata/man/module_gcamusa_batch_resources_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_resources_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_resources_USA_xml.R -\name{module_gcamusa_batch_resources_USA_xml} -\alias{module_gcamusa_batch_resources_USA_xml} -\title{module_gcamusa_batch_resources_USA_xml} +% Please edit documentation in R/zgcamusa_xml_resources.R +\name{module_gcamusa_resources_xml} +\alias{module_gcamusa_resources_xml} +\title{module_gcamusa_resources_xml} \usage{ -module_gcamusa_batch_resources_USA_xml(command, ...) +module_gcamusa_resources_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_socioeconomics_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_socioeconomics_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_socioeconomics_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_socioeconomics_xml.Rd index cc02bb034b..f6b1c3643f 100644 --- a/input/gcamdata/man/module_gcamusa_batch_socioeconomics_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_socioeconomics_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_socioeconomics_USA_xml.R -\name{module_gcamusa_batch_socioeconomics_USA_xml} -\alias{module_gcamusa_batch_socioeconomics_USA_xml} -\title{module_gcamusa_batch_socioeconomics_USA_xml} +% Please edit documentation in R/zgcamusa_xml_socioeconomics.R +\name{module_gcamusa_socioeconomics_xml} +\alias{module_gcamusa_socioeconomics_xml} +\title{module_gcamusa_socioeconomics_xml} \usage{ -module_gcamusa_batch_socioeconomics_USA_xml(command, ...) +module_gcamusa_socioeconomics_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_solar_reeds_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_solar_reeds_xml.Rd similarity index 66% rename from input/gcamdata/man/module_gcamusa_batch_solar_reeds_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_solar_reeds_xml.Rd index 66823d0565..a230c7f798 100644 --- a/input/gcamdata/man/module_gcamusa_batch_solar_reeds_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_solar_reeds_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_solar_reeds_USA_xml.R -\name{module_gcamusa_batch_solar_reeds_USA_xml} -\alias{module_gcamusa_batch_solar_reeds_USA_xml} -\title{module_gcamusa_batch_solar_reeds_USA_xml} +% Please edit documentation in R/zgcamusa_xml_solar_reeds.R +\name{module_gcamusa_solar_reeds_xml} +\alias{module_gcamusa_solar_reeds_xml} +\title{module_gcamusa_solar_reeds_xml} \usage{ -module_gcamusa_batch_solar_reeds_USA_xml(command, ...) +module_gcamusa_solar_reeds_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_transport_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_transport_emissions_xml.Rd similarity index 64% rename from input/gcamdata/man/module_gcamusa_batch_transport_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_transport_emissions_xml.Rd index e1feea2336..c583888f47 100644 --- a/input/gcamdata/man/module_gcamusa_batch_transport_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_transport_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_transport_emissions_USA_xml.R -\name{module_gcamusa_batch_transport_emissions_USA_xml} -\alias{module_gcamusa_batch_transport_emissions_USA_xml} -\title{module_gcamusa_batch_transport_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_transport_emissions.R +\name{module_gcamusa_transport_emissions_xml} +\alias{module_gcamusa_transport_emissions_xml} +\title{module_gcamusa_transport_emissions_xml} \usage{ -module_gcamusa_batch_transport_emissions_USA_xml(command, ...) +module_gcamusa_transport_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_transportation_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_transportation_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_transportation_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_transportation_xml.Rd index 79e2f3ebb4..3efc41a15f 100644 --- a/input/gcamdata/man/module_gcamusa_batch_transportation_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_transportation_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_transportation_USA_xml.R -\name{module_gcamusa_batch_transportation_USA_xml} -\alias{module_gcamusa_batch_transportation_USA_xml} -\title{module_gcamusa_batch_transportation_USA_xml} +% Please edit documentation in R/zgcamusa_xml_transportation.R +\name{module_gcamusa_transportation_xml} +\alias{module_gcamusa_transportation_xml} +\title{module_gcamusa_transportation_xml} \usage{ -module_gcamusa_batch_transportation_USA_xml(command, ...) +module_gcamusa_transportation_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_trn_ghg_emissions_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_trn_ghg_emissions_xml.Rd similarity index 65% rename from input/gcamdata/man/module_gcamusa_batch_trn_ghg_emissions_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_trn_ghg_emissions_xml.Rd index 8d88441a80..a81eee3a48 100644 --- a/input/gcamdata/man/module_gcamusa_batch_trn_ghg_emissions_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_trn_ghg_emissions_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_trn_ghg_emissions_USA_xml.R -\name{module_gcamusa_batch_trn_ghg_emissions_USA_xml} -\alias{module_gcamusa_batch_trn_ghg_emissions_USA_xml} -\title{module_gcamusa_batch_trn_ghg_emissions_USA_xml} +% Please edit documentation in R/zgcamusa_xml_trn_ghg_emissions.R +\name{module_gcamusa_trn_ghg_emissions_xml} +\alias{module_gcamusa_trn_ghg_emissions_xml} +\title{module_gcamusa_trn_ghg_emissions_xml} \usage{ -module_gcamusa_batch_trn_ghg_emissions_USA_xml(command, ...) +module_gcamusa_trn_ghg_emissions_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_water_demand_industry_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_water_demand_industry_xml.Rd similarity index 58% rename from input/gcamdata/man/module_gcamusa_batch_water_demand_industry_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_water_demand_industry_xml.Rd index 6feaef0268..d726969f42 100644 --- a/input/gcamdata/man/module_gcamusa_batch_water_demand_industry_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_water_demand_industry_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_water_demand_industry_USA_xml.R -\name{module_gcamusa_batch_water_demand_industry_USA_xml} -\alias{module_gcamusa_batch_water_demand_industry_USA_xml} -\title{module_gcamusa_batch_water_demand_industry_USA_xml} +% Please edit documentation in R/zgcamusa_xml_water_demand_industry.R +\name{module_gcamusa_water_demand_industry_xml} +\alias{module_gcamusa_water_demand_industry_xml} +\title{module_gcamusa_water_demand_industry_xml} \usage{ -module_gcamusa_batch_water_demand_industry_USA_xml(command, ...) +module_gcamusa_water_demand_industry_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_water_demand_municipal_xml.Rd b/input/gcamdata/man/module_gcamusa_water_demand_municipal_xml.Rd similarity index 59% rename from input/gcamdata/man/module_gcamusa_batch_water_demand_municipal_xml.Rd rename to input/gcamdata/man/module_gcamusa_water_demand_municipal_xml.Rd index b97886133e..b42d0ca88f 100644 --- a/input/gcamdata/man/module_gcamusa_batch_water_demand_municipal_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_water_demand_municipal_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_water_demand_municipal_USA_xml.R -\name{module_gcamusa_batch_water_demand_municipal_xml} -\alias{module_gcamusa_batch_water_demand_municipal_xml} -\title{module_gcamusa_batch_water_demand_municipal_xml} +% Please edit documentation in R/zgcamusa_xml_water_demand_municipal.R +\name{module_gcamusa_water_demand_municipal_xml} +\alias{module_gcamusa_water_demand_municipal_xml} +\title{module_gcamusa_water_demand_municipal_xml} \usage{ -module_gcamusa_batch_water_demand_municipal_xml(command, ...) +module_gcamusa_water_demand_municipal_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_water_td_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_water_td_xml.Rd similarity index 62% rename from input/gcamdata/man/module_gcamusa_batch_water_td_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_water_td_xml.Rd index 474860f002..bfc5c7f7e5 100644 --- a/input/gcamdata/man/module_gcamusa_batch_water_td_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_water_td_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_water_td_USA_xml.R -\name{module_gcamusa_batch_water_td_USA_xml} -\alias{module_gcamusa_batch_water_td_USA_xml} -\title{module_gcamusa_batch_water_td_USA_xml} +% Please edit documentation in R/zgcamusa_xml_water_td.R +\name{module_gcamusa_water_td_xml} +\alias{module_gcamusa_water_td_xml} +\title{module_gcamusa_water_td_xml} \usage{ -module_gcamusa_batch_water_td_USA_xml(command, ...) +module_gcamusa_water_td_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_gcamusa_batch_wind_reeds_USA_xml.Rd b/input/gcamdata/man/module_gcamusa_wind_reeds_xml.Rd similarity index 66% rename from input/gcamdata/man/module_gcamusa_batch_wind_reeds_USA_xml.Rd rename to input/gcamdata/man/module_gcamusa_wind_reeds_xml.Rd index 1562327b4a..9b9a294ddb 100644 --- a/input/gcamdata/man/module_gcamusa_batch_wind_reeds_USA_xml.Rd +++ b/input/gcamdata/man/module_gcamusa_wind_reeds_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zgcamusa_batch_wind_reeds_USA_xml.R -\name{module_gcamusa_batch_wind_reeds_USA_xml} -\alias{module_gcamusa_batch_wind_reeds_USA_xml} -\title{module_gcamusa_batch_wind_reeds_USA_xml} +% Please edit documentation in R/zgcamusa_xml_wind_reeds.R +\name{module_gcamusa_wind_reeds_xml} +\alias{module_gcamusa_wind_reeds_xml} +\title{module_gcamusa_wind_reeds_xml} \usage{ -module_gcamusa_batch_wind_reeds_USA_xml(command, ...) +module_gcamusa_wind_reeds_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_modeltime_batch_modeltime_xml.Rd b/input/gcamdata/man/module_modeltime_modeltime_xml.Rd similarity index 67% rename from input/gcamdata/man/module_modeltime_batch_modeltime_xml.Rd rename to input/gcamdata/man/module_modeltime_modeltime_xml.Rd index 97af55cf13..4de8723d0e 100644 --- a/input/gcamdata/man/module_modeltime_batch_modeltime_xml.Rd +++ b/input/gcamdata/man/module_modeltime_modeltime_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zmodeltime_batch_modeltime_xml.R -\name{module_modeltime_batch_modeltime_xml} -\alias{module_modeltime_batch_modeltime_xml} -\title{module_modeltime_batch_modeltime_xml} +% Please edit documentation in R/zmodeltime_xml_modeltime.R +\name{module_modeltime_modeltime_xml} +\alias{module_modeltime_modeltime_xml} +\title{module_modeltime_modeltime_xml} \usage{ -module_modeltime_batch_modeltime_xml(command, ...) +module_modeltime_modeltime_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_socio_L180.GDP_macro.Rd b/input/gcamdata/man/module_socio_L180.GDP_macro.Rd new file mode 100644 index 0000000000..1c79b91ac4 --- /dev/null +++ b/input/gcamdata/man/module_socio_L180.GDP_macro.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zsocio_L180.GDP_macro.R +\name{module_socio_L180.GDP_macro} +\alias{module_socio_L180.GDP_macro} +\title{module_socio_L180.GDP_macro} +\usage{ +module_socio_L180.GDP_macro(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{L180.nationalAccounts}, \code{L180.laborForceSSP}. +There is no corresponding file in the original data system. +} +\description{ +National accounts information for GDP macro. +} +\details{ +Select national accounts data from Penn World Table for all countries. +} +\author{ +SHK October 2020 +} diff --git a/input/gcamdata/man/module_socio_L201.Pop_GDP_scenarios.Rd b/input/gcamdata/man/module_socio_L201.Pop_GDP_scenarios.Rd index ca0f60e603..c935fdac94 100644 --- a/input/gcamdata/man/module_socio_L201.Pop_GDP_scenarios.Rd +++ b/input/gcamdata/man/module_socio_L201.Pop_GDP_scenarios.Rd @@ -14,7 +14,7 @@ module_socio_L201.Pop_GDP_scenarios(command, ...) \value{ Depends on \code{command}: either a vector of required inputs, a vector of output names, or (if \code{command} is "MAKE") all -the generated outputs: \code{L201.InterestRate}, \code{L201.LaborForceFillout}, \code{L201.PPPConvert}, \code{L201.BaseGDP_Scen}, \code{L201.Pop_gSSP1}, \code{L201.Pop_gSSP2}, \code{L201.Pop_gSSP3}, \code{L201.Pop_gSSP4}, \code{L201.Pop_gSSP5}, \code{L201.Pop_SSP1}, \code{L201.Pop_SSP2}, \code{L201.Pop_SSP3}, \code{L201.Pop_SSP4}, \code{L201.Pop_SSP5}, \code{L201.LaborProductivity_gSSP1}, \code{L201.LaborProductivity_gSSP2}, \code{L201.LaborProductivity_gSSP3}, \code{L201.LaborProductivity_gSSP4}, \code{L201.LaborProductivity_gSSP5}, \code{L201.LaborProductivity_SSP1}, \code{L201.LaborProductivity_SSP2}, \code{L201.LaborProductivity_SSP3}, \code{L201.LaborProductivity_SSP4}, and \code{L201.LaborProductivity_SSP5}. The corresponding file in the +the generated outputs: \code{L201.InterestRate}, \code{L201.LaborForceFillout}, \code{L201.PPPConvert}, \code{L201.BaseGDP_Scen}, \code{L201.Pop_gSSP1}, \code{L201.Pop_gSSP2}, \code{L201.Pop_gSSP3}, \code{L201.Pop_gSSP4}, \code{L201.Pop_gSSP5}, \code{L201.Pop_SSP1}, \code{L201.Pop_SSP2}, \code{L201.Pop_SSP3}, \code{L201.Pop_SSP4}, \code{L201.Pop_SSP5}, \code{L201.TotalFactorProductivity_gSSP1}, \code{L201.TotalFactorProductivity_gSSP2}, \code{L201.TotalFactorProductivity_gSSP3}, \code{L201.TotalFactorProductivity_gSSP4}, \code{L201.TotalFactorProductivity_gSSP5}, \code{L201.TotalFactorProductivity_SSP1}, \code{L201.TotalFactorProductivity_SSP2}, \code{L201.TotalFactorProductivity_SSP3}, \code{L201.TotalFactorProductivity_SSP4}, and \code{L201.TotalFactorProductivity_SSP5}. The corresponding file in the original data system was \code{L201.Pop_GDP_scenarios.R} (socioeconomics level2). } \description{ diff --git a/input/gcamdata/man/module_socio_L280.GDP_macro.Rd b/input/gcamdata/man/module_socio_L280.GDP_macro.Rd new file mode 100644 index 0000000000..1f8762465a --- /dev/null +++ b/input/gcamdata/man/module_socio_L280.GDP_macro.Rd @@ -0,0 +1,28 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zsocio_L280.GDP_macro.R +\name{module_socio_L280.GDP_macro} +\alias{module_socio_L280.GDP_macro} +\title{module_socio_L280.GDP_macro} +\usage{ +module_socio_L280.GDP_macro(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{L280.nationalAccounts}, \code{L280.SavingsRateParams}, \code{L280.GDP_macro_function}, \code{L280.FactorProductivity}. +There is no corresponding file in the original data system. +} +\description{ +National accounts information for GDP macro. +} +\details{ +National accounts data and GDP macro function parameters for GCAM regions. +} +\author{ +SHK October 2020 +} diff --git a/input/gcamdata/man/module_socio_L281.macro_account_tracking.Rd b/input/gcamdata/man/module_socio_L281.macro_account_tracking.Rd new file mode 100644 index 0000000000..e8d1dfe74c --- /dev/null +++ b/input/gcamdata/man/module_socio_L281.macro_account_tracking.Rd @@ -0,0 +1,32 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zsocio_L281.macro_account_tracking.R +\name{module_socio_L281.macro_account_tracking} +\alias{module_socio_L281.macro_account_tracking} +\title{module_socio_L281.macro_account_tracking} +\usage{ +module_socio_L281.macro_account_tracking(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{L281.BasePriceSectorMapping}, \code{L281.GlobalTechAccountOutputUseBasePrice_fd}, \code{L281.TrialValueResource} +\code{L281.TechAccountOutput_entrade}, \code{L281.TechAccountInput_entrade}, \code{L281.TechAccountInput_NG_entrade}, \code{L281.GlobalTechAccountInput_entrade}. +\code{L280.factor_input_productivity}. +There is no corresponding file in the original data system. +} +\description{ +Generate tibbles to add "hooks" into GCAM to be able to track certain accounts such as +final energy service and net energy trade. In addition generate the trial value market/resources +for those accounts as well as the capital investment tracking markets. +} +\details{ +National accounts data and GDP macro function parameters for GCAM regions. +} +\author{ +SHK October 2020 +} diff --git a/input/gcamdata/man/module_socio_batch_SSP_xml.Rd b/input/gcamdata/man/module_socio_SSP_xml.Rd similarity index 77% rename from input/gcamdata/man/module_socio_batch_SSP_xml.Rd rename to input/gcamdata/man/module_socio_SSP_xml.Rd index 48987155ad..0d6558f794 100644 --- a/input/gcamdata/man/module_socio_batch_SSP_xml.Rd +++ b/input/gcamdata/man/module_socio_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zsocio_batch_socioeconomics_SSP_xml.R -\name{module_socio_batch_SSP_xml} -\alias{module_socio_batch_SSP_xml} -\title{module_socio_batch_SSP_xml} +% Please edit documentation in R/zsocio_xml_socioeconomics_SSP.R +\name{module_socio_SSP_xml} +\alias{module_socio_SSP_xml} +\title{module_socio_SSP_xml} \usage{ -module_socio_batch_SSP_xml(command, ...) +module_socio_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_socio_batch_bld_agg_xml.Rd b/input/gcamdata/man/module_socio_bld_agg_xml.Rd similarity index 71% rename from input/gcamdata/man/module_socio_batch_bld_agg_xml.Rd rename to input/gcamdata/man/module_socio_bld_agg_xml.Rd index d0f79b7d8e..0f589a766b 100644 --- a/input/gcamdata/man/module_socio_batch_bld_agg_xml.Rd +++ b/input/gcamdata/man/module_socio_bld_agg_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zsocio_batch_bld_agg_xml.R -\name{module_socio_batch_bld_agg_xml} -\alias{module_socio_batch_bld_agg_xml} -\title{module_socio_batch_bld_agg_xml} +% Please edit documentation in R/zsocio_xml_bld_agg.R +\name{module_socio_bld_agg_xml} +\alias{module_socio_bld_agg_xml} +\title{module_socio_bld_agg_xml} \usage{ -module_socio_batch_bld_agg_xml(command, ...) +module_socio_bld_agg_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_socioeconomics_macro_xml.Rd b/input/gcamdata/man/module_socioeconomics_macro_xml.Rd new file mode 100644 index 0000000000..ecaaca8ce7 --- /dev/null +++ b/input/gcamdata/man/module_socioeconomics_macro_xml.Rd @@ -0,0 +1,22 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/zsocio_xml_socioeconomics_macro.R +\name{module_socioeconomics_macro_xml} +\alias{module_socioeconomics_macro_xml} +\title{module_socio_macro_xml} +\usage{ +module_socioeconomics_macro_xml(command, ...) +} +\arguments{ +\item{command}{API command to execute} + +\item{...}{other optional parameters, depending on command} +} +\value{ +Depends on \code{command}: either a vector of required inputs, +a vector of output names, or (if \code{command} is "MAKE") all +the generated outputs: \code{socioeconomics_macro.xml}. There is no corresponding file in the +original data system. +} +\description{ +Construct XML data structure for \code{socioeconomics_macro.xml}. +} diff --git a/input/gcamdata/man/module_water_batch_EFW_WWtrt_coefs_SSP_xml.Rd b/input/gcamdata/man/module_water_EFW_WWtrt_coefs_SSP_xml.Rd similarity index 68% rename from input/gcamdata/man/module_water_batch_EFW_WWtrt_coefs_SSP_xml.Rd rename to input/gcamdata/man/module_water_EFW_WWtrt_coefs_SSP_xml.Rd index e2b1e1663e..128cade492 100644 --- a/input/gcamdata/man/module_water_batch_EFW_WWtrt_coefs_SSP_xml.Rd +++ b/input/gcamdata/man/module_water_EFW_WWtrt_coefs_SSP_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_EFW_WWtrt_coefs_SSP_xml.R -\name{module_water_batch_EFW_WWtrt_coefs_SSP_xml} -\alias{module_water_batch_EFW_WWtrt_coefs_SSP_xml} -\title{module_water_batch_EFW_WWtrt_coefs_SSP_xml} +% Please edit documentation in R/zwater_xml_EFW_WWtrt_coefs_SSP.R +\name{module_water_EFW_WWtrt_coefs_SSP_xml} +\alias{module_water_EFW_WWtrt_coefs_SSP_xml} +\title{module_water_EFW_WWtrt_coefs_SSP_xml} \usage{ -module_water_batch_EFW_WWtrt_coefs_SSP_xml(command, ...) +module_water_EFW_WWtrt_coefs_SSP_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_EFW_input_coefs_xml.Rd b/input/gcamdata/man/module_water_EFW_input_coefs_xml.Rd similarity index 62% rename from input/gcamdata/man/module_water_batch_EFW_input_coefs_xml.Rd rename to input/gcamdata/man/module_water_EFW_input_coefs_xml.Rd index 5409e01994..7efba81971 100644 --- a/input/gcamdata/man/module_water_batch_EFW_input_coefs_xml.Rd +++ b/input/gcamdata/man/module_water_EFW_input_coefs_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_EFW_input_coefs_xml.R -\name{module_water_batch_EFW_input_coefs_xml} -\alias{module_water_batch_EFW_input_coefs_xml} -\title{module_water_batch_EFW_input_coefs_xml} +% Please edit documentation in R/zwater_xml_EFW_input_coefs.R +\name{module_water_EFW_input_coefs_xml} +\alias{module_water_EFW_input_coefs_xml} +\title{module_water_EFW_input_coefs_xml} \usage{ -module_water_batch_EFW_input_coefs_xml(command, ...) +module_water_EFW_input_coefs_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_EFW_irrigation_xml.Rd b/input/gcamdata/man/module_water_EFW_irrigation_xml.Rd similarity index 62% rename from input/gcamdata/man/module_water_batch_EFW_irrigation_xml.Rd rename to input/gcamdata/man/module_water_EFW_irrigation_xml.Rd index 0c2c6a9940..fb59dea82c 100644 --- a/input/gcamdata/man/module_water_batch_EFW_irrigation_xml.Rd +++ b/input/gcamdata/man/module_water_EFW_irrigation_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_EFW_irrigation_xml.R -\name{module_water_batch_EFW_irrigation_xml} -\alias{module_water_batch_EFW_irrigation_xml} -\title{module_water_batch_EFW_irrigation_xml} +% Please edit documentation in R/zwater_xml_EFW_irrigation.R +\name{module_water_EFW_irrigation_xml} +\alias{module_water_EFW_irrigation_xml} +\title{module_water_EFW_irrigation_xml} \usage{ -module_water_batch_EFW_irrigation_xml(command, ...) +module_water_EFW_irrigation_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_EFW_manufacturing_xml.Rd b/input/gcamdata/man/module_water_EFW_manufacturing_xml.Rd similarity index 61% rename from input/gcamdata/man/module_water_batch_EFW_manufacturing_xml.Rd rename to input/gcamdata/man/module_water_EFW_manufacturing_xml.Rd index 4706ee7397..46340fcefe 100644 --- a/input/gcamdata/man/module_water_batch_EFW_manufacturing_xml.Rd +++ b/input/gcamdata/man/module_water_EFW_manufacturing_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_EFW_manufacturing_xml.R -\name{module_water_batch_EFW_manufacturing_xml} -\alias{module_water_batch_EFW_manufacturing_xml} -\title{module_water_batch_EFW_manufacturing_xml} +% Please edit documentation in R/zwater_xml_EFW_manufacturing.R +\name{module_water_EFW_manufacturing_xml} +\alias{module_water_EFW_manufacturing_xml} +\title{module_water_EFW_manufacturing_xml} \usage{ -module_water_batch_EFW_manufacturing_xml(command, ...) +module_water_EFW_manufacturing_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_EFW_municipal_xml.Rd b/input/gcamdata/man/module_water_EFW_municipal_xml.Rd similarity index 63% rename from input/gcamdata/man/module_water_batch_EFW_municipal_xml.Rd rename to input/gcamdata/man/module_water_EFW_municipal_xml.Rd index 7881a37c8b..c4e5021a6b 100644 --- a/input/gcamdata/man/module_water_batch_EFW_municipal_xml.Rd +++ b/input/gcamdata/man/module_water_EFW_municipal_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_EFW_municipal_xml.R -\name{module_water_batch_EFW_municipal_xml} -\alias{module_water_batch_EFW_municipal_xml} -\title{module_water_batch_EFW_municipal_xml} +% Please edit documentation in R/zwater_xml_EFW_municipal.R +\name{module_water_EFW_municipal_xml} +\alias{module_water_EFW_municipal_xml} +\title{module_water_EFW_municipal_xml} \usage{ -module_water_batch_EFW_municipal_xml(command, ...) +module_water_EFW_municipal_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_desalination_xml.Rd b/input/gcamdata/man/module_water_desalination_xml.Rd similarity index 63% rename from input/gcamdata/man/module_water_batch_desalination_xml.Rd rename to input/gcamdata/man/module_water_desalination_xml.Rd index 1757218740..dc5f763150 100644 --- a/input/gcamdata/man/module_water_batch_desalination_xml.Rd +++ b/input/gcamdata/man/module_water_desalination_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_desalination_xml.R -\name{module_water_batch_desalination_xml} -\alias{module_water_batch_desalination_xml} -\title{module_water_batch_desalination_xml} +% Please edit documentation in R/zwater_xml_desalination.R +\name{module_water_desalination_xml} +\alias{module_water_desalination_xml} +\title{module_water_desalination_xml} \usage{ -module_water_batch_desalination_xml(command, ...) +module_water_desalination_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_electricity_water_coefs_xml.Rd b/input/gcamdata/man/module_water_electricity_water_coefs_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_electricity_water_coefs_xml.Rd rename to input/gcamdata/man/module_water_electricity_water_coefs_xml.Rd index 2ce3ba04a0..4f02fc93eb 100644 --- a/input/gcamdata/man/module_water_batch_electricity_water_coefs_xml.Rd +++ b/input/gcamdata/man/module_water_electricity_water_coefs_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_electricity_water_coefs_xml.R -\name{module_water_batch_electricity_water_coefs_xml} -\alias{module_water_batch_electricity_water_coefs_xml} -\title{module_water_batch_electricity_water_coefs_xml} +% Please edit documentation in R/zwater_xml_electricity_water_coefs.R +\name{module_water_electricity_water_coefs_xml} +\alias{module_water_electricity_water_coefs_xml} +\title{module_water_electricity_water_coefs_xml} \usage{ -module_water_batch_electricity_water_coefs_xml(command, ...) +module_water_electricity_water_coefs_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_electricity_water_xml.Rd b/input/gcamdata/man/module_water_electricity_water_xml.Rd similarity index 66% rename from input/gcamdata/man/module_water_batch_electricity_water_xml.Rd rename to input/gcamdata/man/module_water_electricity_water_xml.Rd index 50048c6092..4ed8a219a0 100644 --- a/input/gcamdata/man/module_water_batch_electricity_water_xml.Rd +++ b/input/gcamdata/man/module_water_electricity_water_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_electricity_water_xml.R -\name{module_water_batch_electricity_water_xml} -\alias{module_water_batch_electricity_water_xml} -\title{module_water_batch_electricity_water_xml} +% Please edit documentation in R/zwater_xml_electricity_water.R +\name{module_water_electricity_water_xml} +\alias{module_water_electricity_water_xml} +\title{module_water_electricity_water_xml} \usage{ -module_water_batch_electricity_water_xml(command, ...) +module_water_electricity_water_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_unlimited_water_supply_xml.Rd b/input/gcamdata/man/module_water_unlimited_water_supply_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_unlimited_water_supply_xml.Rd rename to input/gcamdata/man/module_water_unlimited_water_supply_xml.Rd index 4a527bc9a9..f223997cd0 100644 --- a/input/gcamdata/man/module_water_batch_unlimited_water_supply_xml.Rd +++ b/input/gcamdata/man/module_water_unlimited_water_supply_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_unlimited_water_supply_xml.R -\name{module_water_batch_unlimited_water_supply_xml} -\alias{module_water_batch_unlimited_water_supply_xml} -\title{module_water_batch_unlimited_water_supply_xml} +% Please edit documentation in R/zwater_xml_unlimited_water_supply.R +\name{module_water_unlimited_water_supply_xml} +\alias{module_water_unlimited_water_supply_xml} +\title{module_water_unlimited_water_supply_xml} \usage{ -module_water_batch_unlimited_water_supply_xml(command, ...) +module_water_unlimited_water_supply_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_demand_industry_xml.Rd b/input/gcamdata/man/module_water_water_demand_industry_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_water_demand_industry_xml.Rd rename to input/gcamdata/man/module_water_water_demand_industry_xml.Rd index 844467fd51..6d96abf0e0 100644 --- a/input/gcamdata/man/module_water_batch_water_demand_industry_xml.Rd +++ b/input/gcamdata/man/module_water_water_demand_industry_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_demand_industry_xml.R -\name{module_water_batch_water_demand_industry_xml} -\alias{module_water_batch_water_demand_industry_xml} -\title{module_water_batch_water_demand_industry_xml} +% Please edit documentation in R/zwater_xml_water_demand_industry.R +\name{module_water_water_demand_industry_xml} +\alias{module_water_water_demand_industry_xml} +\title{module_water_water_demand_industry_xml} \usage{ -module_water_batch_water_demand_industry_xml(command, ...) +module_water_water_demand_industry_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_demand_livestock_xml.Rd b/input/gcamdata/man/module_water_water_demand_livestock_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_water_demand_livestock_xml.Rd rename to input/gcamdata/man/module_water_water_demand_livestock_xml.Rd index e55d152fb1..e3b1f35c3b 100644 --- a/input/gcamdata/man/module_water_batch_water_demand_livestock_xml.Rd +++ b/input/gcamdata/man/module_water_water_demand_livestock_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_demand_livestock_xml.R -\name{module_water_batch_water_demand_livestock_xml} -\alias{module_water_batch_water_demand_livestock_xml} -\title{module_water_batch_water_demand_livestock_xml} +% Please edit documentation in R/zwater_xml_water_demand_livestock.R +\name{module_water_water_demand_livestock_xml} +\alias{module_water_water_demand_livestock_xml} +\title{module_water_water_demand_livestock_xml} \usage{ -module_water_batch_water_demand_livestock_xml(command, ...) +module_water_water_demand_livestock_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_demand_municipal_xml.Rd b/input/gcamdata/man/module_water_water_demand_municipal_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_water_demand_municipal_xml.Rd rename to input/gcamdata/man/module_water_water_demand_municipal_xml.Rd index 3000b2cd10..c2fe08f23a 100644 --- a/input/gcamdata/man/module_water_batch_water_demand_municipal_xml.Rd +++ b/input/gcamdata/man/module_water_water_demand_municipal_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_demand_municipal_xml.R -\name{module_water_batch_water_demand_municipal_xml} -\alias{module_water_batch_water_demand_municipal_xml} -\title{module_water_batch_water_demand_municipal_xml} +% Please edit documentation in R/zwater_xml_water_demand_municipal.R +\name{module_water_water_demand_municipal_xml} +\alias{module_water_water_demand_municipal_xml} +\title{module_water_water_demand_municipal_xml} \usage{ -module_water_batch_water_demand_municipal_xml(command, ...) +module_water_water_demand_municipal_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_demand_primary_xml.Rd b/input/gcamdata/man/module_water_water_demand_primary_xml.Rd similarity index 65% rename from input/gcamdata/man/module_water_batch_water_demand_primary_xml.Rd rename to input/gcamdata/man/module_water_water_demand_primary_xml.Rd index cd55dba763..9655569a61 100644 --- a/input/gcamdata/man/module_water_batch_water_demand_primary_xml.Rd +++ b/input/gcamdata/man/module_water_water_demand_primary_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_demand_primary_xml.R -\name{module_water_batch_water_demand_primary_xml} -\alias{module_water_batch_water_demand_primary_xml} -\title{module_water_batch_water_demand_primary_xml} +% Please edit documentation in R/zwater_xml_water_demand_primary.R +\name{module_water_water_demand_primary_xml} +\alias{module_water_water_demand_primary_xml} +\title{module_water_water_demand_primary_xml} \usage{ -module_water_batch_water_demand_primary_xml(command, ...) +module_water_water_demand_primary_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_elec_liquids_limits_xml.Rd b/input/gcamdata/man/module_water_water_elec_liquids_limits_xml.Rd similarity index 64% rename from input/gcamdata/man/module_water_batch_water_elec_liquids_limits_xml.Rd rename to input/gcamdata/man/module_water_water_elec_liquids_limits_xml.Rd index 14294e3108..31ec052846 100644 --- a/input/gcamdata/man/module_water_batch_water_elec_liquids_limits_xml.Rd +++ b/input/gcamdata/man/module_water_water_elec_liquids_limits_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_elec_liquids_limits_xml.R -\name{module_water_batch_water_elec_liquids_limits_xml} -\alias{module_water_batch_water_elec_liquids_limits_xml} -\title{module_water_batch_water_elec_liquids_limits_xml} +% Please edit documentation in R/zwater_xml_water_elec_liquids_limits.R +\name{module_water_water_elec_liquids_limits_xml} +\alias{module_water_water_elec_liquids_limits_xml} +\title{module_water_water_elec_liquids_limits_xml} \usage{ -module_water_batch_water_elec_liquids_limits_xml(command, ...) +module_water_water_elec_liquids_limits_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_supply_constrained_xml.Rd b/input/gcamdata/man/module_water_water_supply_constrained_xml.Rd similarity index 64% rename from input/gcamdata/man/module_water_batch_water_supply_constrained_xml.Rd rename to input/gcamdata/man/module_water_water_supply_constrained_xml.Rd index 6e2b9791f6..16602b85a2 100644 --- a/input/gcamdata/man/module_water_batch_water_supply_constrained_xml.Rd +++ b/input/gcamdata/man/module_water_water_supply_constrained_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_supply_constrained_xml.R -\name{module_water_batch_water_supply_constrained_xml} -\alias{module_water_batch_water_supply_constrained_xml} -\title{module_water_batch_water_supply_constrained_xml} +% Please edit documentation in R/zwater_xml_water_supply_constrained.R +\name{module_water_water_supply_constrained_xml} +\alias{module_water_water_supply_constrained_xml} +\title{module_water_water_supply_constrained_xml} \usage{ -module_water_batch_water_supply_constrained_xml(command, ...) +module_water_water_supply_constrained_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_supply_uncalibrated_xml.Rd b/input/gcamdata/man/module_water_water_supply_uncalibrated_xml.Rd similarity index 64% rename from input/gcamdata/man/module_water_batch_water_supply_uncalibrated_xml.Rd rename to input/gcamdata/man/module_water_water_supply_uncalibrated_xml.Rd index aac6e04eb8..5f44b492ec 100644 --- a/input/gcamdata/man/module_water_batch_water_supply_uncalibrated_xml.Rd +++ b/input/gcamdata/man/module_water_water_supply_uncalibrated_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_supply_uncalibrated_xml.R -\name{module_water_batch_water_supply_uncalibrated_xml} -\alias{module_water_batch_water_supply_uncalibrated_xml} -\title{module_water_batch_water_supply_uncalibrated_xml} +% Please edit documentation in R/zwater_xml_water_supply_uncalibrated.R +\name{module_water_water_supply_uncalibrated_xml} +\alias{module_water_water_supply_uncalibrated_xml} +\title{module_water_water_supply_uncalibrated_xml} \usage{ -module_water_batch_water_supply_uncalibrated_xml(command, ...) +module_water_water_supply_uncalibrated_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/module_water_batch_water_td_xml.Rd b/input/gcamdata/man/module_water_water_td_xml.Rd similarity index 69% rename from input/gcamdata/man/module_water_batch_water_td_xml.Rd rename to input/gcamdata/man/module_water_water_td_xml.Rd index c35d097da3..ce3e9085a6 100644 --- a/input/gcamdata/man/module_water_batch_water_td_xml.Rd +++ b/input/gcamdata/man/module_water_water_td_xml.Rd @@ -1,10 +1,10 @@ % Generated by roxygen2: do not edit by hand -% Please edit documentation in R/zwater_batch_water_td_xml.R -\name{module_water_batch_water_td_xml} -\alias{module_water_batch_water_td_xml} -\title{module_water_batch_water_td_xml} +% Please edit documentation in R/zwater_xml_water_td.R +\name{module_water_water_td_xml} +\alias{module_water_water_td_xml} +\title{module_water_water_td_xml} \usage{ -module_water_batch_water_td_xml(command, ...) +module_water_water_td_xml(command, ...) } \arguments{ \item{command}{API command to execute} diff --git a/input/gcamdata/man/rename_gcamdata_chunks.Rd b/input/gcamdata/man/rename_gcamdata_chunks.Rd new file mode 100644 index 0000000000..99a8d975e3 --- /dev/null +++ b/input/gcamdata/man/rename_gcamdata_chunks.Rd @@ -0,0 +1,18 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/admin.R +\name{rename_gcamdata_chunks} +\alias{rename_gcamdata_chunks} +\title{rename_gcamdata_chunks} +\usage{ +rename_gcamdata_chunks() +} +\value{ +Nothing +} +\description{ +Renames gcamdata chunks to new format, including getting rid of LA/LBs, cleaning up module +names, and replacing "batch" with "xml". Also renames function within scripts +} +\author{ +ENL 2023 +} diff --git a/input/gcamdata/man/return_data.Rd b/input/gcamdata/man/return_data.Rd index 06be8174e1..fc2fb095d8 100644 --- a/input/gcamdata/man/return_data.Rd +++ b/input/gcamdata/man/return_data.Rd @@ -7,7 +7,7 @@ return_data(...) } \arguments{ -\item{...}{Objects to handle} +\item{...}{Objects to handle; could be a vector of char including object names} } \value{ Object ready for insertion into the data system data structure. From 596d50c7d2c137e82f9f709f496c19bef901575b Mon Sep 17 00:00:00 2001 From: Pralit Patel Date: Mon, 5 Jun 2023 16:20:18 -0400 Subject: [PATCH 14/14] Some final things to do before next release: * Update target finder 2.6 initial guesses * Update calibrate macro TFP * Update to version.h to say 7.0 --- cvs/objects/util/base/include/version.h | 4 +- .../socioeconomics/gcam_macro_TFP_open.csv | 8448 ++++++++--------- input/policy/forcing_target_2p6_overshoot.xml | 2 +- input/policy/policy_target_2p6_spa23.xml | 2 +- input/policy/policy_target_2p6_spa4.xml | 2 +- input/policy/policy_target_2p6_spa5.xml | 2 +- 6 files changed, 4230 insertions(+), 4230 deletions(-) diff --git a/cvs/objects/util/base/include/version.h b/cvs/objects/util/base/include/version.h index 9ab7bac7be..91e61f25d8 100644 --- a/cvs/objects/util/base/include/version.h +++ b/cvs/objects/util/base/include/version.h @@ -41,10 +41,10 @@ * NOTE: ADD 1 TO LATEST SUBVERSION REVISION NUMBER */ //! The latest SVN revision number for identification of the build. -#define __REVISION_NUMBER__ "gcam-v6.0" +#define __REVISION_NUMBER__ "gcam-v7.0" /*****************************************************************************/ //! GCAM model version. -#define __ObjECTS_VER__ "6.0" +#define __ObjECTS_VER__ "7.0" #endif // _VERSION_H_ diff --git a/input/gcamdata/inst/extdata/socioeconomics/gcam_macro_TFP_open.csv b/input/gcamdata/inst/extdata/socioeconomics/gcam_macro_TFP_open.csv index ac2bff5396..2b55fd7edf 100644 --- a/input/gcamdata/inst/extdata/socioeconomics/gcam_macro_TFP_open.csv +++ b/input/gcamdata/inst/extdata/socioeconomics/gcam_macro_TFP_open.csv @@ -5,4227 +5,4227 @@ # Column types: ccinc # ---------- scenario,region,year,productivity,gcam.version -SSP1,Africa_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2020,0.177275,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2025,0.179661,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2030,0.175857,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2035,0.119897,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2040,0.0613945,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2045,0.0233242,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2050,0.00612239,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2055,0.00355323,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2060,0.00430481,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2065,0.00682995,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2070,0.00941289,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2075,0.0118466,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2080,0.0146134,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2085,0.0168148,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2090,0.0184009,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2095,0.0201239,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Eastern,2100,0.0195817,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2020,0.137016,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2025,0.103407,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2030,0.0745954,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2035,0.0401256,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2040,0.0184409,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2045,0.0150899,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2050,0.0104891,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2055,0.0129935,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2060,0.0137415,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2065,0.0134627,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2070,0.0112258,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2075,0.0102438,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2080,0.0123433,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2085,0.0142142,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2090,0.0163217,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2095,0.017012,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Northern,2100,0.0169332,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2020,0.138015,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2025,0.138513,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2030,0.149048,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2035,0.145964,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2040,0.141355,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2045,0.103622,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2050,0.056175,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2055,0.0167404,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2060,-0.00528711,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2065,-0.0101348,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2070,-0.00943706,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2075,-0.00623062,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2080,-0.00037098,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2085,0.004077,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2090,0.00749125,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2095,0.010477,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Southern,2100,0.0117972,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2020,0.113597,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2025,0.137274,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2030,0.139584,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2035,0.0846459,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2040,0.0460245,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2045,0.0242508,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2050,0.0139146,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2055,0.0125317,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2060,0.0124991,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2065,0.013107,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2070,0.0137112,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2075,0.0145274,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2080,0.0162013,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2085,0.0169569,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2090,0.0174368,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2095,0.0179513,gcam-v5.3-658-g03f23c2 -SSP1,Africa_Western,2100,0.0178119,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2020,0.0401099,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2025,0.0439279,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2030,0.0342192,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2035,0.0280894,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2040,0.0224203,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2045,0.0195768,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2050,0.0159289,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2055,0.0149203,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2060,0.0143996,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2065,0.0135439,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2070,0.0121595,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2075,0.0112202,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2080,0.0115599,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2085,0.0122412,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2090,0.0127796,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2095,0.0132391,gcam-v5.3-658-g03f23c2 -SSP1,Argentina,2100,0.0136671,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2020,0.0316457,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2025,0.0264615,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2030,0.0232307,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2035,0.0206417,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2040,0.0194374,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2045,0.0170559,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2050,0.0162177,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2055,0.0164049,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2060,0.0146851,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2065,0.0131646,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2070,0.013065,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2075,0.0122707,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2080,0.0123871,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2085,0.0131595,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2090,0.0134271,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2095,0.012958,gcam-v5.3-658-g03f23c2 -SSP1,Australia_NZ,2100,0.0128951,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2020,0.0661993,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2025,0.0662807,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2030,0.0633592,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2035,0.0559833,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2040,0.045871,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2045,0.0363907,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2050,0.02902,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2055,0.0237843,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2060,0.0200231,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2065,0.0179872,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2070,0.0165416,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2075,0.0140661,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2080,0.0137256,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2085,0.0138171,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2090,0.0140771,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2095,0.013862,gcam-v5.3-658-g03f23c2 -SSP1,Brazil,2100,0.0138373,gcam-v5.3-658-g03f23c2 -SSP1,Canada,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Canada,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2020,0.0269314,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2025,0.0197516,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2030,0.0167286,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2035,0.0146249,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2040,0.0131752,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2045,0.0125702,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2050,0.0144346,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2055,0.0163428,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2060,0.0169341,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2065,0.0159942,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2070,0.0152909,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2075,0.0152107,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2080,0.01521,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2085,0.0157845,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2090,0.0161648,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2095,0.0156372,gcam-v5.3-658-g03f23c2 -SSP1,Canada,2100,0.0148282,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2020,0.0577161,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2025,0.0612126,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2030,0.0617347,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2035,0.0547731,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2040,0.0436676,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2045,0.0331419,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2050,0.0168244,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2055,0.0286596,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2060,0.0186997,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2065,0.01727,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2070,0.0158193,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2075,0.0148709,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2080,0.0157093,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2085,0.0155652,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2090,0.0158415,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2095,0.0164855,gcam-v5.3-658-g03f23c2 -SSP1,Central America and Caribbean,2100,0.0158893,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2020,-0.0219551,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2025,0.0279006,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2030,0.0257921,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2035,0.0217156,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2040,0.0202148,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2045,0.014595,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2050,0.0110927,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2055,0.0160424,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2060,0.0194688,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2065,0.0201576,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2070,0.0141059,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2075,0.0140838,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2080,0.0159888,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2085,0.0154611,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2090,0.0160758,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2095,0.0164099,gcam-v5.3-658-g03f23c2 -SSP1,Central Asia,2100,0.0148487,gcam-v5.3-658-g03f23c2 -SSP1,China,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,China,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,China,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,China,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,China,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,China,2020,0.115279,gcam-v5.3-658-g03f23c2 -SSP1,China,2025,0.0878802,gcam-v5.3-658-g03f23c2 -SSP1,China,2030,0.0675922,gcam-v5.3-658-g03f23c2 -SSP1,China,2035,0.0554488,gcam-v5.3-658-g03f23c2 -SSP1,China,2040,0.0418864,gcam-v5.3-658-g03f23c2 -SSP1,China,2045,0.028434,gcam-v5.3-658-g03f23c2 -SSP1,China,2050,0.0233175,gcam-v5.3-658-g03f23c2 -SSP1,China,2055,0.0238439,gcam-v5.3-658-g03f23c2 -SSP1,China,2060,0.0204872,gcam-v5.3-658-g03f23c2 -SSP1,China,2065,0.0181653,gcam-v5.3-658-g03f23c2 -SSP1,China,2070,0.0150598,gcam-v5.3-658-g03f23c2 -SSP1,China,2075,0.0139054,gcam-v5.3-658-g03f23c2 -SSP1,China,2080,0.0123017,gcam-v5.3-658-g03f23c2 -SSP1,China,2085,0.0121025,gcam-v5.3-658-g03f23c2 -SSP1,China,2090,0.0119332,gcam-v5.3-658-g03f23c2 -SSP1,China,2095,0.01203,gcam-v5.3-658-g03f23c2 -SSP1,China,2100,0.0120566,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2020,0.0522737,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2025,0.0422781,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2030,0.053341,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2035,0.053334,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2040,0.04304,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2045,0.0334677,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2050,0.0261814,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2055,0.0222604,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2060,0.0199783,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2065,0.017677,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2070,0.0157661,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2075,0.0145578,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2080,0.014227,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2085,0.0140905,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2090,0.0143176,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2095,0.0142579,gcam-v5.3-658-g03f23c2 -SSP1,Colombia,2100,0.0142493,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2020,0.0544825,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2025,0.0347571,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2030,0.0324599,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2035,0.0299685,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2040,0.0269183,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2045,0.0256091,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2050,0.0245324,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2055,0.0227967,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2060,0.0215119,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2065,0.0174595,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2070,0.0147575,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2075,0.0153101,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2080,0.016057,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2085,0.016558,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2090,0.017036,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2095,0.0167748,gcam-v5.3-658-g03f23c2 -SSP1,EU-12,2100,0.0154741,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2020,0.0300468,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2025,0.0293385,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2030,0.0323091,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2035,0.0334553,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2040,0.0303737,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2045,0.0256382,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2050,0.0207534,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2055,0.0189098,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2060,0.0162908,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2065,0.0147608,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2070,0.0138248,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2075,0.0139347,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2080,0.0136799,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2085,0.0137028,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2090,0.0138209,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2095,0.0135864,gcam-v5.3-658-g03f23c2 -SSP1,EU-15,2100,0.0138368,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2020,0.0279547,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2025,0.0260158,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2030,0.0288843,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2035,0.0291873,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2040,0.0236857,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2045,0.0185585,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2050,0.0170054,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2055,0.0163926,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2060,0.0151347,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2065,0.0137206,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2070,0.0123245,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2075,0.0121645,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2080,0.0122389,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2085,0.0126965,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2090,0.0131197,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2095,0.0132226,gcam-v5.3-658-g03f23c2 -SSP1,European Free Trade Association,2100,0.0130361,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2020,0.0288756,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2025,0.061963,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2030,0.0619083,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2035,0.0517707,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2040,0.0404719,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2045,0.0373141,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2050,0.0357782,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2055,0.0329425,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2060,0.0248748,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2065,0.0204241,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2070,0.0117195,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2075,0.0143646,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2080,0.0173942,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2085,0.0171584,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2090,0.0170957,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2095,0.0170774,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Eastern,2100,0.0156088,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2020,0.0596792,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2025,0.055567,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2030,0.0486039,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2035,0.0401242,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2040,0.0330642,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2045,0.0259361,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2050,0.020335,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2055,0.0178581,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2060,0.0157357,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2065,0.0144192,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2070,0.0121092,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2075,0.0110917,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2080,0.011642,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2085,0.0123977,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2090,0.0132347,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2095,0.0138918,gcam-v5.3-658-g03f23c2 -SSP1,Europe_Non_EU,2100,0.0140397,gcam-v5.3-658-g03f23c2 -SSP1,India,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,India,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,India,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,India,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,India,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,India,2020,0.0988071,gcam-v5.3-658-g03f23c2 -SSP1,India,2025,0.0835092,gcam-v5.3-658-g03f23c2 -SSP1,India,2030,0.0669523,gcam-v5.3-658-g03f23c2 -SSP1,India,2035,0.0611941,gcam-v5.3-658-g03f23c2 -SSP1,India,2040,0.051478,gcam-v5.3-658-g03f23c2 -SSP1,India,2045,0.0428196,gcam-v5.3-658-g03f23c2 -SSP1,India,2050,0.0357453,gcam-v5.3-658-g03f23c2 -SSP1,India,2055,0.0326537,gcam-v5.3-658-g03f23c2 -SSP1,India,2060,0.0297409,gcam-v5.3-658-g03f23c2 -SSP1,India,2065,0.0268271,gcam-v5.3-658-g03f23c2 -SSP1,India,2070,0.0239001,gcam-v5.3-658-g03f23c2 -SSP1,India,2075,0.0217464,gcam-v5.3-658-g03f23c2 -SSP1,India,2080,0.0212501,gcam-v5.3-658-g03f23c2 -SSP1,India,2085,0.0203597,gcam-v5.3-658-g03f23c2 -SSP1,India,2090,0.0191174,gcam-v5.3-658-g03f23c2 -SSP1,India,2095,0.0181005,gcam-v5.3-658-g03f23c2 -SSP1,India,2100,0.0173856,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2020,0.127105,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2025,0.134038,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2030,0.113038,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2035,0.087299,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2040,0.0575759,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2045,0.0340659,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2050,0.0239254,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2055,0.0206494,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2060,0.0189588,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2065,0.017293,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2070,0.0164459,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2075,0.0151532,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2080,0.0148536,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2085,0.0143174,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2090,0.014034,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2095,0.0131775,gcam-v5.3-658-g03f23c2 -SSP1,Indonesia,2100,0.0134702,gcam-v5.3-658-g03f23c2 -SSP1,Japan,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Japan,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2020,0.0267147,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2025,0.0283061,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2030,0.0328916,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2035,0.0334344,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2040,0.0333279,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2045,0.0292782,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2050,0.024574,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2055,0.0214078,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2060,0.0188323,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2065,0.0170352,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2070,0.0154926,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2075,0.0144619,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2080,0.0140377,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2085,0.0128743,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2090,0.0119061,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2095,0.0111489,gcam-v5.3-658-g03f23c2 -SSP1,Japan,2100,0.0117004,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2020,0.0388829,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2025,0.0517309,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2030,0.0582483,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2035,0.0527888,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2040,0.039528,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2045,0.0290449,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2050,0.0208883,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2055,0.0165552,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2060,0.0138305,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2065,0.0116152,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2070,0.0101442,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2075,0.00899914,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2080,0.00946453,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2085,0.00979995,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2090,0.0101901,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2095,0.0105915,gcam-v5.3-658-g03f23c2 -SSP1,Mexico,2100,0.0109378,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2020,0.153769,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2025,0.124489,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2030,0.111459,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2035,0.0674285,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2040,0.0312665,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2045,0.00674064,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2050,-0.00329536,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2055,0.000238229,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2060,0.00509873,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2065,0.00736517,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2070,0.00712395,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2075,0.00805657,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2080,0.0106704,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2085,0.0109752,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2090,0.0111164,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2095,0.0119385,gcam-v5.3-658-g03f23c2 -SSP1,Middle East,2100,0.0112147,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2020,0.00269625,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2025,0.0329921,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2030,0.0534238,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2035,0.0548557,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2040,0.0511668,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2045,0.0466056,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2050,0.0421628,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2055,0.0402529,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2060,0.0370318,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2065,0.03417,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2070,0.0305257,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2075,0.0283827,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2080,0.0278448,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2085,0.0270542,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2090,0.0259985,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2095,0.0250504,gcam-v5.3-658-g03f23c2 -SSP1,Pakistan,2100,0.0234328,gcam-v5.3-658-g03f23c2 -SSP1,Russia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Russia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2020,0.0561927,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2025,0.0524211,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2030,0.0504217,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2035,0.0359516,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2040,0.0251859,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2045,0.0181565,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2050,0.0179846,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2055,0.0182265,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2060,0.0128212,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2065,0.0107087,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2070,0.00748076,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2075,0.00971863,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2080,0.0130012,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2085,0.0132374,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2090,0.0129766,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2095,0.012283,gcam-v5.3-658-g03f23c2 -SSP1,Russia,2100,0.0120803,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2020,0.0760107,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2025,0.0765768,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2030,0.0648153,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2035,0.0438096,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2040,0.0267471,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2045,0.0167734,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2050,0.0122107,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2055,0.0118863,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2060,0.0114666,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2065,0.00994002,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2070,0.00850682,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2075,0.00798415,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2080,0.00836491,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2085,0.00867842,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2090,0.00961533,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2095,0.0103676,gcam-v5.3-658-g03f23c2 -SSP1,South Africa,2100,0.0110428,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2020,0.0643338,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2025,0.139671,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2030,0.17191,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2035,0.137414,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2040,0.0682046,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2045,0.0170655,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2050,-0.0164994,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2055,-0.0218257,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2060,-0.0183583,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2065,-0.0129125,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2070,-0.00763105,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2075,-0.00459505,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2080,0.000276599,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2085,0.00309145,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2090,0.00519544,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2095,0.00635623,gcam-v5.3-658-g03f23c2 -SSP1,South America_Northern,2100,0.00829225,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2020,0.0618727,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2025,0.0571243,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2030,0.0515246,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2035,0.0424538,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2040,0.0343084,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2045,0.0274888,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2050,0.0223649,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2055,0.020312,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2060,0.0194692,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2065,0.0184163,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2070,0.0172328,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2075,0.0158916,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2080,0.0157461,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2085,0.0154673,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2090,0.015273,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2095,0.0151247,gcam-v5.3-658-g03f23c2 -SSP1,South America_Southern,2100,0.015193,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2020,0.410624,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2025,0.307201,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2030,0.172816,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2035,0.0884845,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2040,0.0204919,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2045,-0.0318665,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2050,-0.0590367,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2055,-0.0642644,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2060,-0.0645416,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2065,-0.0636444,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2070,-0.0612904,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2075,-0.0559467,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2080,-0.0481031,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2085,-0.0415194,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2090,-0.0338628,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2095,-0.0268208,gcam-v5.3-658-g03f23c2 -SSP1,South Asia,2100,-0.0220232,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2020,0.129775,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2025,0.102273,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2030,0.0809035,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2035,0.0627391,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2040,0.0462008,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2045,0.0314605,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2050,0.0229989,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2055,0.0214616,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2060,0.0199426,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2065,0.0181253,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2070,0.0158589,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2075,0.013892,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2080,0.014435,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2085,0.0146915,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2090,0.0156017,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2095,0.0165444,gcam-v5.3-658-g03f23c2 -SSP1,Southeast Asia,2100,0.0159469,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2020,0.0465524,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2025,0.0469148,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2030,0.0410776,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2035,0.0343709,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2040,0.0292931,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2045,0.0229725,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2050,0.0193041,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2055,0.0169694,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2060,0.0183406,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2065,0.0184348,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2070,0.0141737,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2075,0.0144202,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2080,0.0128809,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2085,0.0125878,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2090,0.0133705,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2095,0.0145195,gcam-v5.3-658-g03f23c2 -SSP1,South Korea,2100,0.0139097,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2020,0.0493308,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2025,0.0240084,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2030,0.0165884,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2035,0.0152772,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2040,0.0128391,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2045,0.00755441,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2050,0.00203941,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2055,-0.0011596,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2060,-0.000500842,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2065,0.0106279,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2070,0.0075685,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2075,0.00335334,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2080,0.00068623,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2085,-0.00289743,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2090,-0.00452193,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2095,-0.00572012,gcam-v5.3-658-g03f23c2 -SSP1,Taiwan,2100,-0.00694196,gcam-v5.3-658-g03f23c2 -SSP1,USA,1975,0,gcam-v5.3-658-g03f23c2 -SSP1,USA,1990,0,gcam-v5.3-658-g03f23c2 -SSP1,USA,2005,0,gcam-v5.3-658-g03f23c2 -SSP1,USA,2010,0,gcam-v5.3-658-g03f23c2 -SSP1,USA,2015,0,gcam-v5.3-658-g03f23c2 -SSP1,USA,2020,0.0397958,gcam-v5.3-658-g03f23c2 -SSP1,USA,2025,0.0314763,gcam-v5.3-658-g03f23c2 -SSP1,USA,2030,0.0250603,gcam-v5.3-658-g03f23c2 -SSP1,USA,2035,0.0176185,gcam-v5.3-658-g03f23c2 -SSP1,USA,2040,0.0131685,gcam-v5.3-658-g03f23c2 -SSP1,USA,2045,0.00949868,gcam-v5.3-658-g03f23c2 -SSP1,USA,2050,0.00877312,gcam-v5.3-658-g03f23c2 -SSP1,USA,2055,0.0100292,gcam-v5.3-658-g03f23c2 -SSP1,USA,2060,0.0104165,gcam-v5.3-658-g03f23c2 -SSP1,USA,2065,0.0100507,gcam-v5.3-658-g03f23c2 -SSP1,USA,2070,0.0103608,gcam-v5.3-658-g03f23c2 -SSP1,USA,2075,0.0107709,gcam-v5.3-658-g03f23c2 -SSP1,USA,2080,0.0103588,gcam-v5.3-658-g03f23c2 -SSP1,USA,2085,0.0108162,gcam-v5.3-658-g03f23c2 -SSP1,USA,2090,0.0113875,gcam-v5.3-658-g03f23c2 -SSP1,USA,2095,0.0119071,gcam-v5.3-658-g03f23c2 -SSP1,USA,2100,0.0122168,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2020,0.17635,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2025,0.140806,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2030,0.0967409,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2035,0.0392704,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2040,0.0243102,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2045,0.0174002,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2050,0.0148698,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2055,0.0170417,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2060,0.017243,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2065,0.0203389,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2070,0.0225391,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2075,0.0237243,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2080,0.0249938,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2085,0.0266199,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2090,0.0275948,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2095,0.0284624,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Eastern,2100,0.029379,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2020,0.137105,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2025,0.0832678,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2030,0.0383237,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2035,0.00489229,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2040,0.00347049,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2045,0.0102059,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2050,0.0146182,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2055,0.0190218,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2060,0.0203563,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2065,0.0203139,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2070,0.0185252,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2075,0.0194012,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2080,0.020932,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2085,0.0229984,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2090,0.0230412,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2095,0.0229906,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Northern,2100,0.0236127,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2020,0.135008,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2025,0.111081,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2030,0.0862041,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2035,0.0581645,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2040,0.064567,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2045,0.0619216,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2050,0.0474607,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2055,0.0344568,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2060,0.0222557,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2065,0.0160049,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2070,0.0140198,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2075,0.0137024,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2080,0.0153244,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2085,0.0179149,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2090,0.019812,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2095,0.0215356,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Southern,2100,0.0247212,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2020,0.110904,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2025,0.106631,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2030,0.0824073,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2035,0.0324947,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2040,0.0212,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2045,0.0170531,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2050,0.0155188,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2055,0.0180412,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2060,0.0202957,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2065,0.0210517,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2070,0.0223446,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2075,0.02338,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2080,0.024154,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2085,0.0248318,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2090,0.0250732,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2095,0.0252917,gcam-v5.3-658-g03f23c2 -SSP2,Africa_Western,2100,0.0256294,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2020,0.0396271,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2025,0.0362384,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2030,0.0224996,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2035,0.0156917,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2040,0.0127852,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2045,0.0139106,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2050,0.0142279,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2055,0.0152664,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2060,0.0158282,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2065,0.0156857,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2070,0.0147065,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2075,0.0150845,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2080,0.0154324,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2085,0.0161188,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2090,0.0161953,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2095,0.0163948,gcam-v5.3-658-g03f23c2 -SSP2,Argentina,2100,0.0167679,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2020,0.0307988,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2025,0.0227021,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2030,0.0157058,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2035,0.0111479,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2040,0.0119204,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2045,0.011871,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2050,0.0134862,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2055,0.0148516,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2060,0.014452,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2065,0.0130643,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2070,0.0121659,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2075,0.0127609,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2080,0.0131488,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2085,0.013602,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2090,0.0139599,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2095,0.0139869,gcam-v5.3-658-g03f23c2 -SSP2,Australia_NZ,2100,0.0137978,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2020,0.0652046,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2025,0.0549721,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2030,0.04093,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2035,0.0277478,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2040,0.0233004,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2045,0.0214362,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2050,0.0207307,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2055,0.0200014,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2060,0.0191467,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2065,0.0195055,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2070,0.0199726,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2075,0.0183738,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2080,0.0179977,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2085,0.0183758,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2090,0.0185704,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2095,0.0185401,gcam-v5.3-658-g03f23c2 -SSP2,Brazil,2100,0.0185347,gcam-v5.3-658-g03f23c2 -SSP2,Canada,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Canada,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2020,0.0261812,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2025,0.0222809,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2030,0.019206,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2035,0.0147656,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2040,0.0123424,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2045,0.0108634,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2050,0.0128904,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2055,0.0142713,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2060,0.0148674,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2065,0.0142158,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2070,0.0135481,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2075,0.0142062,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2080,0.0145243,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2085,0.0156531,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2090,0.0160237,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2095,0.0157582,gcam-v5.3-658-g03f23c2 -SSP2,Canada,2100,0.0154602,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2020,0.0561906,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2025,0.0467803,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2030,0.0354559,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2035,0.0257874,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2040,0.023827,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2045,0.0220678,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2050,0.0214498,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2055,0.0215237,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2060,0.0222125,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2065,0.022792,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2070,0.0231408,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2075,0.0233397,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2080,0.0233689,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2085,0.0235168,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2090,0.0232476,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2095,0.0231058,gcam-v5.3-658-g03f23c2 -SSP2,Central America and Caribbean,2100,0.0230893,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2020,-0.0255579,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2025,0.0131291,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2030,0.00162122,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2035,-0.0011907,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2040,0.00448745,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2045,0.00674559,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2050,0.00860875,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2055,0.0153106,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2060,0.0214828,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2065,0.0230454,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2070,0.022724,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2075,0.0229784,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2080,0.0234179,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2085,0.0239629,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2090,0.0234092,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2095,0.0223998,gcam-v5.3-658-g03f23c2 -SSP2,Central Asia,2100,0.0217976,gcam-v5.3-658-g03f23c2 -SSP2,China,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,China,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,China,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,China,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,China,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,China,2020,0.108161,gcam-v5.3-658-g03f23c2 -SSP2,China,2025,0.0649653,gcam-v5.3-658-g03f23c2 -SSP2,China,2030,0.0394552,gcam-v5.3-658-g03f23c2 -SSP2,China,2035,0.0319971,gcam-v5.3-658-g03f23c2 -SSP2,China,2040,0.0302451,gcam-v5.3-658-g03f23c2 -SSP2,China,2045,0.0238091,gcam-v5.3-658-g03f23c2 -SSP2,China,2050,0.0234199,gcam-v5.3-658-g03f23c2 -SSP2,China,2055,0.0268421,gcam-v5.3-658-g03f23c2 -SSP2,China,2060,0.0257248,gcam-v5.3-658-g03f23c2 -SSP2,China,2065,0.0243168,gcam-v5.3-658-g03f23c2 -SSP2,China,2070,0.0221364,gcam-v5.3-658-g03f23c2 -SSP2,China,2075,0.0218521,gcam-v5.3-658-g03f23c2 -SSP2,China,2080,0.0196326,gcam-v5.3-658-g03f23c2 -SSP2,China,2085,0.0192375,gcam-v5.3-658-g03f23c2 -SSP2,China,2090,0.0182706,gcam-v5.3-658-g03f23c2 -SSP2,China,2095,0.0175109,gcam-v5.3-658-g03f23c2 -SSP2,China,2100,0.0169917,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2020,0.0524744,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2025,0.0318547,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2030,0.031815,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2035,0.0281936,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2040,0.0252882,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2045,0.0235961,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2050,0.0227514,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2055,0.022665,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2060,0.0227261,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2065,0.0221662,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2070,0.0215197,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2075,0.0211263,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2080,0.0204879,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2085,0.020364,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2090,0.0199153,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2095,0.0195816,gcam-v5.3-658-g03f23c2 -SSP2,Colombia,2100,0.0193675,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2020,0.0516861,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2025,0.0282734,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2030,0.0231017,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2035,0.0214201,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2040,0.0226424,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2045,0.0249834,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2050,0.0261738,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2055,0.0259405,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2060,0.0246623,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2065,0.0208791,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2070,0.0184836,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2075,0.019207,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2080,0.019769,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2085,0.0199258,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2090,0.0193702,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2095,0.0186113,gcam-v5.3-658-g03f23c2 -SSP2,EU-12,2100,0.0176134,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2020,0.029307,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2025,0.0263802,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2030,0.0264691,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2035,0.0264414,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2040,0.0254039,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2045,0.0232071,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2050,0.021155,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2055,0.0198747,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2060,0.0181599,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2065,0.0167317,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2070,0.0158957,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2075,0.0160445,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2080,0.0156956,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2085,0.0155965,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2090,0.0152799,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2095,0.0150139,gcam-v5.3-658-g03f23c2 -SSP2,EU-15,2100,0.0147644,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2020,0.0281069,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2025,0.021807,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2030,0.0220101,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2035,0.0222357,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2040,0.020432,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2045,0.0180185,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2050,0.0194174,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2055,0.0195596,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2060,0.0188,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2065,0.0170897,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2070,0.0155182,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2075,0.0150316,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2080,0.0147458,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2085,0.0147272,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2090,0.0148145,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2095,0.0146897,gcam-v5.3-658-g03f23c2 -SSP2,European Free Trade Association,2100,0.0143487,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2020,0.023368,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2025,0.0458378,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2030,0.037969,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2035,0.0269885,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2040,0.0235141,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2045,0.0287924,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2050,0.0315797,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2055,0.0311536,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2060,0.0270118,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2065,0.0235683,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2070,0.0219539,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2075,0.023328,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2080,0.0224357,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2085,0.0224539,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2090,0.021691,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2095,0.0200372,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Eastern,2100,0.0195454,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2020,0.0600634,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2025,0.0457341,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2030,0.0321384,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2035,0.02382,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2040,0.0235007,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2045,0.0223899,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2050,0.0220803,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2055,0.021278,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2060,0.0206773,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2065,0.0200166,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2070,0.0187018,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2075,0.0184556,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2080,0.0180277,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2085,0.0180843,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2090,0.0180321,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2095,0.0180024,gcam-v5.3-658-g03f23c2 -SSP2,Europe_Non_EU,2100,0.0179613,gcam-v5.3-658-g03f23c2 -SSP2,India,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,India,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,India,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,India,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,India,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,India,2020,0.0957673,gcam-v5.3-658-g03f23c2 -SSP2,India,2025,0.0636843,gcam-v5.3-658-g03f23c2 -SSP2,India,2030,0.0360087,gcam-v5.3-658-g03f23c2 -SSP2,India,2035,0.0301775,gcam-v5.3-658-g03f23c2 -SSP2,India,2040,0.0307768,gcam-v5.3-658-g03f23c2 -SSP2,India,2045,0.0305615,gcam-v5.3-658-g03f23c2 -SSP2,India,2050,0.030298,gcam-v5.3-658-g03f23c2 -SSP2,India,2055,0.0303875,gcam-v5.3-658-g03f23c2 -SSP2,India,2060,0.0308427,gcam-v5.3-658-g03f23c2 -SSP2,India,2065,0.0295707,gcam-v5.3-658-g03f23c2 -SSP2,India,2070,0.0282652,gcam-v5.3-658-g03f23c2 -SSP2,India,2075,0.0272357,gcam-v5.3-658-g03f23c2 -SSP2,India,2080,0.026217,gcam-v5.3-658-g03f23c2 -SSP2,India,2085,0.0253797,gcam-v5.3-658-g03f23c2 -SSP2,India,2090,0.0241789,gcam-v5.3-658-g03f23c2 -SSP2,India,2095,0.0231598,gcam-v5.3-658-g03f23c2 -SSP2,India,2100,0.0226002,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2020,0.124367,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2025,0.104557,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2030,0.0643687,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2035,0.0392526,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2040,0.0322805,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2045,0.0262281,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2050,0.0237651,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2055,0.0230329,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2060,0.0234368,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2065,0.0227811,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2070,0.023531,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2075,0.0234896,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2080,0.0234664,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2085,0.0233295,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2090,0.0227118,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2095,0.0221597,gcam-v5.3-658-g03f23c2 -SSP2,Indonesia,2100,0.0218472,gcam-v5.3-658-g03f23c2 -SSP2,Japan,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Japan,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2020,0.0255523,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2025,0.0233304,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2030,0.0226907,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2035,0.0198979,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2040,0.0222337,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2045,0.021025,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2050,0.0192256,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2055,0.0182873,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2060,0.0173674,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2065,0.0170045,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2070,0.0165393,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2075,0.0164595,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2080,0.0164952,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2085,0.0155283,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2090,0.0150351,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2095,0.0148265,gcam-v5.3-658-g03f23c2 -SSP2,Japan,2100,0.0150032,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2020,0.041078,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2025,0.0445505,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2030,0.03883,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2035,0.0283919,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2040,0.02183,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2045,0.0184533,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2050,0.0173836,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2055,0.0177276,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2060,0.0176778,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2065,0.0174157,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2070,0.0176623,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2075,0.0176909,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2080,0.0180058,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2085,0.0182277,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2090,0.018389,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2095,0.0186727,gcam-v5.3-658-g03f23c2 -SSP2,Mexico,2100,0.0191799,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2020,0.155391,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2025,0.119913,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2030,0.0850626,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2035,0.037981,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2040,0.0145779,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2045,-0.000641927,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2050,-0.00379976,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2055,0.00118959,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2060,0.00588384,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2065,0.0100243,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2070,0.0139895,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2075,0.0164603,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2080,0.0175305,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2085,0.0154725,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2090,0.0154644,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2095,0.0164142,gcam-v5.3-658-g03f23c2 -SSP2,Middle East,2100,0.0179545,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2020,0.00365572,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2025,0.0210028,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2030,0.0309204,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2035,0.0291248,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2040,0.0309978,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2045,0.0321018,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2050,0.0335069,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2055,0.0352706,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2060,0.0354861,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2065,0.0354339,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2070,0.0339622,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2075,0.0334237,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2080,0.0331485,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2085,0.0329001,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2090,0.031745,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2095,0.0303194,gcam-v5.3-658-g03f23c2 -SSP2,Pakistan,2100,0.0294161,gcam-v5.3-658-g03f23c2 -SSP2,Russia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Russia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2020,0.0514606,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2025,0.0424867,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2030,0.0332321,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2035,0.0190298,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2040,0.015403,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2045,0.0141625,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2050,0.0174315,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2055,0.0195295,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2060,0.0167194,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2065,0.0146056,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2070,0.0160308,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2075,0.0174871,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2080,0.0183211,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2085,0.0178504,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2090,0.016327,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2095,0.014434,gcam-v5.3-658-g03f23c2 -SSP2,Russia,2100,0.0141213,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2020,0.073565,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2025,0.0654876,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2030,0.046234,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2035,0.0253191,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2040,0.0153726,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2045,0.0115888,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2050,0.0118001,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2055,0.0138539,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2060,0.014973,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2065,0.0150487,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2070,0.0153514,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2075,0.0153954,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2080,0.0154014,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2085,0.0156711,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2090,0.0160208,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2095,0.0160887,gcam-v5.3-658-g03f23c2 -SSP2,South Africa,2100,0.016295,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2020,0.0646323,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2025,0.130583,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2030,0.153268,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2035,0.123114,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2040,0.0598258,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2045,0.0137099,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2050,-0.0126012,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2055,-0.0189795,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2060,-0.0176428,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2065,-0.0131771,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2070,-0.00765523,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2075,-0.00158413,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2080,0.00378988,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2085,0.00859832,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2090,0.0109187,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2095,0.0127152,gcam-v5.3-658-g03f23c2 -SSP2,South America_Northern,2100,0.0146107,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2020,0.0611975,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2025,0.0458855,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2030,0.0308624,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2035,0.0207471,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2040,0.0200969,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2045,0.0200529,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2050,0.0203177,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2055,0.0208744,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2060,0.0217866,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2065,0.0219615,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2070,0.0219526,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2075,0.021569,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2080,0.021206,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2085,0.0210302,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2090,0.0206293,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2095,0.0202479,gcam-v5.3-658-g03f23c2 -SSP2,South America_Southern,2100,0.0200278,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2020,0.410562,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2025,0.19345,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2030,-0.00480218,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2035,-0.069866,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2040,-0.0493872,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2045,-0.03728,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2050,-0.0228544,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2055,-0.011413,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2060,-0.00257435,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2065,0.000984951,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2070,0.00350746,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2075,0.00569793,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2080,0.00715279,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2085,0.0106348,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2090,0.0118754,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2095,0.0145398,gcam-v5.3-658-g03f23c2 -SSP2,South Asia,2100,0.0167229,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2020,0.128374,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2025,0.0774391,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2030,0.0415238,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2035,0.0245689,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2040,0.0253494,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2045,0.0244455,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2050,0.0250647,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2055,0.0265909,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2060,0.0282286,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2065,0.0271617,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2070,0.026626,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2075,0.0258895,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2080,0.0254706,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2085,0.02555,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2090,0.0252154,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2095,0.0250673,gcam-v5.3-658-g03f23c2 -SSP2,Southeast Asia,2100,0.0252663,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2020,0.0436029,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2025,0.041256,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2030,0.0348531,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2035,0.0293839,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2040,0.0273862,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2045,0.0233649,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2050,0.0221358,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2055,0.0188022,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2060,0.0207481,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2065,0.0204417,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2070,0.0159316,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2075,0.0162,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2080,0.0148674,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2085,0.0149611,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2090,0.015529,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2095,0.0162378,gcam-v5.3-658-g03f23c2 -SSP2,South Korea,2100,0.0158554,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2020,0.0488394,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2025,0.0229892,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2030,0.0154444,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2035,0.0150128,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2040,0.0138503,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2045,0.0102242,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2050,0.00633323,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2055,0.00405022,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2060,0.00555158,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2065,0.0177674,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2070,0.0158383,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2075,0.0126439,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2080,0.00973795,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2085,0.00659731,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2090,0.00454787,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2095,0.00307267,gcam-v5.3-658-g03f23c2 -SSP2,Taiwan,2100,0.00228442,gcam-v5.3-658-g03f23c2 -SSP2,USA,1975,0,gcam-v5.3-658-g03f23c2 -SSP2,USA,1990,0,gcam-v5.3-658-g03f23c2 -SSP2,USA,2005,0,gcam-v5.3-658-g03f23c2 -SSP2,USA,2010,0,gcam-v5.3-658-g03f23c2 -SSP2,USA,2015,0,gcam-v5.3-658-g03f23c2 -SSP2,USA,2020,0.0379011,gcam-v5.3-658-g03f23c2 -SSP2,USA,2025,0.0260862,gcam-v5.3-658-g03f23c2 -SSP2,USA,2030,0.0173144,gcam-v5.3-658-g03f23c2 -SSP2,USA,2035,0.00993484,gcam-v5.3-658-g03f23c2 -SSP2,USA,2040,0.00794276,gcam-v5.3-658-g03f23c2 -SSP2,USA,2045,0.00617446,gcam-v5.3-658-g03f23c2 -SSP2,USA,2050,0.00726644,gcam-v5.3-658-g03f23c2 -SSP2,USA,2055,0.00853324,gcam-v5.3-658-g03f23c2 -SSP2,USA,2060,0.00926487,gcam-v5.3-658-g03f23c2 -SSP2,USA,2065,0.00874435,gcam-v5.3-658-g03f23c2 -SSP2,USA,2070,0.00906297,gcam-v5.3-658-g03f23c2 -SSP2,USA,2075,0.00951438,gcam-v5.3-658-g03f23c2 -SSP2,USA,2080,0.00883525,gcam-v5.3-658-g03f23c2 -SSP2,USA,2085,0.00911035,gcam-v5.3-658-g03f23c2 -SSP2,USA,2090,0.00914674,gcam-v5.3-658-g03f23c2 -SSP2,USA,2095,0.00917734,gcam-v5.3-658-g03f23c2 -SSP2,USA,2100,0.00930732,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2020,0.180183,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2025,0.113121,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2030,0.0438965,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2035,-0.0109701,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2040,-0.0128637,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2045,-0.0105749,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2050,-0.00787472,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2055,-0.00234195,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2060,0.00304281,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2065,0.00843649,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2070,0.0124429,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2075,0.0143439,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2080,0.0150956,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2085,0.0158806,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2090,0.0169211,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2095,0.0187741,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Eastern,2100,0.0193347,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2020,0.143453,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2025,0.0681845,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2030,0.0106821,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2035,-0.0231927,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2040,-0.0252995,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2045,-0.0191782,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2050,-0.00713669,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2055,0.00404165,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2060,0.00923855,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2065,0.0126828,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2070,0.0149107,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2075,0.0162441,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2080,0.0168088,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2085,0.0170828,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2090,0.0178077,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2095,0.0190604,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Northern,2100,0.020167,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2020,0.132173,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2025,0.0936054,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2030,0.0496692,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2035,0.0100568,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2040,0.00984174,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2045,0.0135107,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2050,0.011662,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2055,0.00945319,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2060,0.00789424,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2065,0.00737243,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2070,0.00825927,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2075,0.00821752,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2080,0.00844854,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2085,0.00908829,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2090,0.0100955,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2095,0.0112646,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Southern,2100,0.0158,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2020,0.112306,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2025,0.0837091,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2030,0.0436513,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2035,-0.00503391,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2040,-0.0130078,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2045,-0.0112747,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2050,-0.00604003,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2055,-0.00187149,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2060,0.00285456,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2065,0.00692045,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2070,0.0104206,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2075,0.0132127,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2080,0.0146819,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2085,0.0152772,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2090,0.0157413,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2095,0.0167312,gcam-v5.3-658-g03f23c2 -SSP3,Africa_Western,2100,0.0176258,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2020,0.0398473,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2025,0.0262986,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2030,0.00766324,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2035,-0.00114454,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2040,-0.00219179,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2045,-0.000555885,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2050,0.000969313,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2055,0.00301649,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2060,0.00524448,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2065,0.0069113,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2070,0.00768067,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2075,0.00855967,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2080,0.00817986,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2085,0.0079507,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2090,0.00773487,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2095,0.00812917,gcam-v5.3-658-g03f23c2 -SSP3,Argentina,2100,0.0087002,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2020,0.0279475,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2025,0.0187778,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2030,0.0107382,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2035,0.00519143,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2040,0.00484752,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2045,0.00417358,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2050,0.00569059,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2055,0.00730097,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2060,0.00760713,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2065,0.00754426,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2070,0.00678259,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2075,0.0063773,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2080,0.00692907,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2085,0.00817358,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2090,0.00918379,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2095,0.00919456,gcam-v5.3-658-g03f23c2 -SSP3,Australia_NZ,2100,0.00922015,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2020,0.0646855,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2025,0.0454825,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2030,0.024045,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2035,0.00677523,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2040,0.00245137,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2045,0.00116421,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2050,0.00113853,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2055,0.00149265,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2060,0.0018898,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2065,0.0035628,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2070,0.0047722,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2075,0.00316791,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2080,0.0023451,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2085,0.00183058,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2090,0.00165133,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2095,0.00139271,gcam-v5.3-658-g03f23c2 -SSP3,Brazil,2100,0.00120968,gcam-v5.3-658-g03f23c2 -SSP3,Canada,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Canada,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2020,0.0247224,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2025,0.0199232,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2030,0.0185846,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2035,0.0173498,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2040,0.0175846,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2045,0.0162421,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2050,0.0151685,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2055,0.0141997,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2060,0.0134747,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2065,0.0118368,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2070,0.0104369,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2075,0.0105023,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2080,0.0102735,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2085,0.0112968,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2090,0.012137,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2095,0.0123334,gcam-v5.3-658-g03f23c2 -SSP3,Canada,2100,0.0117617,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2020,0.0538174,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2025,0.0304066,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2030,0.0123849,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2035,0.000901904,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2040,0.0013457,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2045,0.00203462,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2050,0.00331664,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2055,0.00526727,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2060,0.00790354,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2065,0.0103229,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2070,0.0122312,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2075,0.01323,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2080,0.0130883,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2085,0.0125431,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2090,0.0127307,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2095,0.0134286,gcam-v5.3-658-g03f23c2 -SSP3,Central America and Caribbean,2100,0.0141792,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2020,-0.0234672,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2025,0.00287872,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2030,-0.00921217,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2035,-0.0106488,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2040,-0.00510256,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2045,-0.00609577,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2050,-0.00797152,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2055,-0.00229889,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2060,0.00705643,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2065,0.0125108,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2070,0.0154138,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2075,0.0181068,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2080,0.0189981,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2085,0.0174739,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2090,0.0166506,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2095,0.0169471,gcam-v5.3-658-g03f23c2 -SSP3,Central Asia,2100,0.0169001,gcam-v5.3-658-g03f23c2 -SSP3,China,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,China,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,China,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,China,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,China,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,China,2020,0.105316,gcam-v5.3-658-g03f23c2 -SSP3,China,2025,0.0521209,gcam-v5.3-658-g03f23c2 -SSP3,China,2030,0.0235993,gcam-v5.3-658-g03f23c2 -SSP3,China,2035,0.0150125,gcam-v5.3-658-g03f23c2 -SSP3,China,2040,0.015392,gcam-v5.3-658-g03f23c2 -SSP3,China,2045,0.0101904,gcam-v5.3-658-g03f23c2 -SSP3,China,2050,0.0105751,gcam-v5.3-658-g03f23c2 -SSP3,China,2055,0.0153622,gcam-v5.3-658-g03f23c2 -SSP3,China,2060,0.0151081,gcam-v5.3-658-g03f23c2 -SSP3,China,2065,0.015013,gcam-v5.3-658-g03f23c2 -SSP3,China,2070,0.0137561,gcam-v5.3-658-g03f23c2 -SSP3,China,2075,0.0142366,gcam-v5.3-658-g03f23c2 -SSP3,China,2080,0.0118271,gcam-v5.3-658-g03f23c2 -SSP3,China,2085,0.0111435,gcam-v5.3-658-g03f23c2 -SSP3,China,2090,0.0101876,gcam-v5.3-658-g03f23c2 -SSP3,China,2095,0.00958257,gcam-v5.3-658-g03f23c2 -SSP3,China,2100,0.00978183,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2020,0.053493,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2025,0.0227049,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2030,0.013609,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2035,0.00554262,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2040,0.00430207,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2045,0.0044797,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2050,0.00526293,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2055,0.00741875,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2060,0.00982413,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2065,0.0111926,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2070,0.0123536,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2075,0.0133498,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2080,0.0131559,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2085,0.0131259,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2090,0.0133859,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2095,0.0136426,gcam-v5.3-658-g03f23c2 -SSP3,Colombia,2100,0.0140032,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2020,0.0485923,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2025,0.021854,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2030,0.0145825,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2035,0.0112122,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2040,0.012618,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2045,0.0150977,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2050,0.0163782,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2055,0.0164711,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2060,0.0158376,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2065,0.0127448,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2070,0.0103959,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2075,0.0108551,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2080,0.011234,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2085,0.0110857,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2090,0.0108474,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2095,0.0106496,gcam-v5.3-658-g03f23c2 -SSP3,EU-12,2100,0.00962094,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2020,0.0270185,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2025,0.0221725,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2030,0.0201676,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2035,0.0178687,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2040,0.0156407,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2045,0.0128468,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2050,0.0109322,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2055,0.0101204,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2060,0.00928855,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2065,0.00873833,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2070,0.00821703,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2075,0.00845117,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2080,0.00871251,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2085,0.00904289,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2090,0.00960348,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2095,0.0102263,gcam-v5.3-658-g03f23c2 -SSP3,EU-15,2100,0.0100432,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2020,0.0252022,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2025,0.0189616,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2030,0.0180306,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2035,0.0168778,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2040,0.0127168,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2045,0.00792183,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2050,0.0092148,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2055,0.0105186,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2060,0.0110717,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2065,0.0105418,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2070,0.00928294,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2075,0.00868319,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2080,0.00862396,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2085,0.00875401,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2090,0.00915534,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2095,0.00933238,gcam-v5.3-658-g03f23c2 -SSP3,European Free Trade Association,2100,0.00850851,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2020,0.0220132,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2025,0.0353167,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2030,0.0218187,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2035,0.00969481,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2040,0.00856241,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2045,0.0150958,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2050,0.0199323,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2055,0.0209157,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2060,0.018276,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2065,0.0164993,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2070,0.0162978,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2075,0.0185284,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2080,0.0170047,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2085,0.0162295,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2090,0.015716,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2095,0.015755,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Eastern,2100,0.0154766,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2020,0.0587185,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2025,0.0327319,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2030,0.0139958,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2035,0.00527179,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2040,0.00662568,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2045,0.00695215,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2050,0.00812173,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2055,0.00824165,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2060,0.00872462,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2065,0.00964277,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2070,0.00996429,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2075,0.0107682,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2080,0.00994289,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2085,0.00909674,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2090,0.00880472,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2095,0.00902105,gcam-v5.3-658-g03f23c2 -SSP3,Europe_Non_EU,2100,0.00956757,gcam-v5.3-658-g03f23c2 -SSP3,India,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,India,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,India,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,India,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,India,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,India,2020,0.0939792,gcam-v5.3-658-g03f23c2 -SSP3,India,2025,0.0447774,gcam-v5.3-658-g03f23c2 -SSP3,India,2030,0.0107844,gcam-v5.3-658-g03f23c2 -SSP3,India,2035,0.00249962,gcam-v5.3-658-g03f23c2 -SSP3,India,2040,0.0050911,gcam-v5.3-658-g03f23c2 -SSP3,India,2045,0.00640757,gcam-v5.3-658-g03f23c2 -SSP3,India,2050,0.00738798,gcam-v5.3-658-g03f23c2 -SSP3,India,2055,0.00950364,gcam-v5.3-658-g03f23c2 -SSP3,India,2060,0.0110506,gcam-v5.3-658-g03f23c2 -SSP3,India,2065,0.012038,gcam-v5.3-658-g03f23c2 -SSP3,India,2070,0.0124942,gcam-v5.3-658-g03f23c2 -SSP3,India,2075,0.0127556,gcam-v5.3-658-g03f23c2 -SSP3,India,2080,0.0121596,gcam-v5.3-658-g03f23c2 -SSP3,India,2085,0.0114584,gcam-v5.3-658-g03f23c2 -SSP3,India,2090,0.0109781,gcam-v5.3-658-g03f23c2 -SSP3,India,2095,0.0107605,gcam-v5.3-658-g03f23c2 -SSP3,India,2100,0.0113855,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2020,0.123299,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2025,0.0866722,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2030,0.0371669,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2035,0.00927622,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2040,0.00662653,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2045,0.00418651,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2050,0.00337032,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2055,0.00446713,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2060,0.00592479,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2065,0.00703309,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2070,0.00923837,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2075,0.0102018,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2080,0.0105034,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2085,0.0103493,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2090,0.0105002,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2095,0.0109051,gcam-v5.3-658-g03f23c2 -SSP3,Indonesia,2100,0.0115232,gcam-v5.3-658-g03f23c2 -SSP3,Japan,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Japan,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2020,0.0237736,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2025,0.0198121,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2030,0.0170369,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2035,0.0118913,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2040,0.0128188,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2045,0.0103479,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2050,0.00807832,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2055,0.00725864,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2060,0.00711603,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2065,0.00750787,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2070,0.00749791,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2075,0.00774752,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2080,0.00892866,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2085,0.00854994,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2090,0.00917478,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2095,0.0102421,gcam-v5.3-658-g03f23c2 -SSP3,Japan,2100,0.0106794,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2020,0.0451721,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2025,0.0369536,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2030,0.0219619,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2035,0.00786241,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2040,0.000205309,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2045,-0.00413475,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2050,-0.0044272,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2055,-0.00170155,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2060,0.000611826,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2065,0.00239683,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2070,0.00432489,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2075,0.00498429,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2080,0.00495585,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2085,0.0046751,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2090,0.00457892,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2095,0.00501145,gcam-v5.3-658-g03f23c2 -SSP3,Mexico,2100,0.00575346,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2020,0.155974,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2025,0.108871,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2030,0.0787318,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2035,0.0311101,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2040,0.001718,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2045,-0.0212352,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2050,-0.0314682,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2055,-0.0293782,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2060,-0.0230416,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2065,-0.0149212,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2070,-0.00844906,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2075,4.14e-05,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2080,0.00572006,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2085,0.00368553,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2090,0.00563266,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2095,0.0087383,gcam-v5.3-658-g03f23c2 -SSP3,Middle East,2100,0.0114062,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2020,0.00379467,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2025,0.00727678,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2030,0.00867227,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2035,0.00385517,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2040,0.00588853,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2045,0.0074628,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2050,0.00923003,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2055,0.0120332,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2060,0.0140824,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2065,0.0160609,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2070,0.016279,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2075,0.0173076,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2080,0.017972,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2085,0.018282,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2090,0.0183857,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2095,0.0187655,gcam-v5.3-658-g03f23c2 -SSP3,Pakistan,2100,0.0192192,gcam-v5.3-658-g03f23c2 -SSP3,Russia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Russia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2020,0.0504745,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2025,0.0361022,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2030,0.0254897,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2035,0.0133854,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2040,0.0101623,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2045,0.00490368,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2050,0.0063018,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2055,0.00833348,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2060,0.00663923,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2065,0.00748128,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2070,0.0102521,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2075,0.0129584,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2080,0.0144912,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2085,0.0112562,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2090,0.00980039,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2095,0.00852296,gcam-v5.3-658-g03f23c2 -SSP3,Russia,2100,0.00781272,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2020,0.0705234,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2025,0.0531955,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2030,0.0279568,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2035,0.00720963,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2040,-6.98e-05,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2045,-0.00158104,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2050,0.000447673,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2055,0.00375235,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2060,0.00597373,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2065,0.00706592,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2070,0.00835143,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2075,0.00842641,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2080,0.00816572,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2085,0.0083313,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2090,0.00877133,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2095,0.00902902,gcam-v5.3-658-g03f23c2 -SSP3,South Africa,2100,0.00972743,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2020,0.0703217,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2025,0.124719,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2030,0.165595,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2035,0.15807,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2040,0.104814,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2045,0.0325098,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2050,-0.0213995,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2055,-0.0438317,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2060,-0.0461749,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2065,-0.0406442,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2070,-0.0316599,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2075,-0.0229109,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2080,-0.0164291,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2085,-0.011259,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2090,-0.00653674,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2095,-0.00169029,gcam-v5.3-658-g03f23c2 -SSP3,South America_Northern,2100,0.000526487,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2020,0.0617648,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2025,0.0346254,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2030,0.0129925,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2035,0.000314426,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2040,0.00141206,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2045,0.00295386,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2050,0.00465203,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2055,0.00681208,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2060,0.00950974,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2065,0.0113136,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2070,0.0127602,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2075,0.0134651,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2080,0.013233,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2085,0.0127411,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2090,0.0127216,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2095,0.0129577,gcam-v5.3-658-g03f23c2 -SSP3,South America_Southern,2100,0.013437,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2020,0.421948,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2025,0.116211,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2030,-0.0996754,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2035,-0.15887,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2040,-0.119068,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2045,-0.0909605,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2050,-0.0661245,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2055,-0.0437155,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2060,-0.0243222,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2065,-0.0106349,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2070,-0.000116654,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2075,0.00619088,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2080,0.00871124,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2085,0.0102403,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2090,0.0134472,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2095,0.0189366,gcam-v5.3-658-g03f23c2 -SSP3,South Asia,2100,0.0229004,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2020,0.124672,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2025,0.0531929,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2030,0.0104861,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2035,-0.00690504,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2040,-0.00113535,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2045,0.00244199,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2050,0.00635626,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2055,0.0119151,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2060,0.0161875,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2065,0.0189352,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2070,0.0210467,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2075,0.0218021,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2080,0.0211533,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2085,0.0200902,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2090,0.0198647,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2095,0.0206006,gcam-v5.3-658-g03f23c2 -SSP3,Southeast Asia,2100,0.0213947,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2020,0.0410593,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2025,0.0352842,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2030,0.0288897,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2035,0.0220407,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2040,0.0199022,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2045,0.015609,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2050,0.0141554,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2055,0.0112374,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2060,0.014076,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2065,0.0144058,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2070,0.0099168,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2075,0.00971667,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2080,0.00845961,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2085,0.00824051,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2090,0.00920773,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2095,0.0104273,gcam-v5.3-658-g03f23c2 -SSP3,South Korea,2100,0.00963129,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2020,0.0462183,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2025,0.0126393,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2030,0.00250806,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2035,0.0012855,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2040,0.00122518,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2045,-0.000942475,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2050,-0.00336341,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2055,-0.00420818,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2060,-0.00182416,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2065,0.012185,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2070,0.0141592,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2075,0.0135064,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2080,0.0112805,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2085,0.00844294,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2090,0.00706102,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2095,0.00645713,gcam-v5.3-658-g03f23c2 -SSP3,Taiwan,2100,0.00689488,gcam-v5.3-658-g03f23c2 -SSP3,USA,1975,0,gcam-v5.3-658-g03f23c2 -SSP3,USA,1990,0,gcam-v5.3-658-g03f23c2 -SSP3,USA,2005,0,gcam-v5.3-658-g03f23c2 -SSP3,USA,2010,0,gcam-v5.3-658-g03f23c2 -SSP3,USA,2015,0,gcam-v5.3-658-g03f23c2 -SSP3,USA,2020,0.035255,gcam-v5.3-658-g03f23c2 -SSP3,USA,2025,0.0224933,gcam-v5.3-658-g03f23c2 -SSP3,USA,2030,0.0140733,gcam-v5.3-658-g03f23c2 -SSP3,USA,2035,0.00739138,gcam-v5.3-658-g03f23c2 -SSP3,USA,2040,0.00598132,gcam-v5.3-658-g03f23c2 -SSP3,USA,2045,0.0046963,gcam-v5.3-658-g03f23c2 -SSP3,USA,2050,0.00567059,gcam-v5.3-658-g03f23c2 -SSP3,USA,2055,0.00649606,gcam-v5.3-658-g03f23c2 -SSP3,USA,2060,0.00675538,gcam-v5.3-658-g03f23c2 -SSP3,USA,2065,0.00566055,gcam-v5.3-658-g03f23c2 -SSP3,USA,2070,0.00496914,gcam-v5.3-658-g03f23c2 -SSP3,USA,2075,0.00446793,gcam-v5.3-658-g03f23c2 -SSP3,USA,2080,0.00361664,gcam-v5.3-658-g03f23c2 -SSP3,USA,2085,0.00375588,gcam-v5.3-658-g03f23c2 -SSP3,USA,2090,0.00431547,gcam-v5.3-658-g03f23c2 -SSP3,USA,2095,0.00509628,gcam-v5.3-658-g03f23c2 -SSP3,USA,2100,0.00511122,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2020,0.1746,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2025,0.102097,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2030,0.0307785,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2035,-0.0274177,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2040,-0.0272326,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2045,-0.0221527,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2050,-0.0172859,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2055,-0.0105522,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2060,-0.00471365,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2065,0.00091634,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2070,0.00547311,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2075,0.00813422,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2080,0.0098801,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2085,0.0115029,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2090,0.0133261,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2095,0.0152705,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Eastern,2100,0.0174807,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2020,0.131679,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2025,0.0758351,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2030,0.0379333,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2035,0.000714726,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2040,-0.000195072,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2045,0.00130681,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2050,0.00624522,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2055,0.0134441,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2060,0.0168108,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2065,0.0168721,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2070,0.0157707,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2075,0.0149801,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2080,0.0172423,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2085,0.0188725,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2090,0.0205602,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2095,0.0210906,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Northern,2100,0.0211063,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2020,0.129446,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2025,0.0908286,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2030,0.0502672,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2035,0.00713649,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2040,0.00553746,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2045,0.00940745,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2050,0.0109494,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2055,0.00796815,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2060,0.00725768,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2065,0.00773227,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2070,0.00911298,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2075,0.0095839,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2080,0.00985178,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2085,0.010445,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2090,0.0113626,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2095,0.0130132,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Southern,2100,0.0161921,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2020,0.107661,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2025,0.0748864,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2030,0.0346179,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2035,-0.0155436,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2040,-0.0194257,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2045,-0.0171966,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2050,-0.0121423,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2055,-0.00612982,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2060,-0.00240984,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2065,0.000961279,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2070,0.00464084,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2075,0.00785402,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2080,0.00978737,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2085,0.0110084,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2090,0.0121256,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2095,0.0132702,gcam-v5.3-658-g03f23c2 -SSP4,Africa_Western,2100,0.0149992,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2020,0.0385542,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2025,0.0328754,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2030,0.0207733,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2035,0.0136964,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2040,0.00995443,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2045,0.0102745,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2050,0.0110778,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2055,0.0124677,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2060,0.0133616,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2065,0.0129926,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2070,0.0119617,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2075,0.0118443,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2080,0.0124155,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2085,0.0132948,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2090,0.0141827,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2095,0.0151119,gcam-v5.3-658-g03f23c2 -SSP4,Argentina,2100,0.0156796,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2020,0.0307502,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2025,0.0265971,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2030,0.0239018,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2035,0.0213536,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2040,0.020094,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2045,0.0179786,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2050,0.0179389,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2055,0.0179938,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2060,0.0169569,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2065,0.0154581,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2070,0.0139425,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2075,0.0132726,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2080,0.0134184,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2085,0.0140082,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2090,0.0142569,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2095,0.0138995,gcam-v5.3-658-g03f23c2 -SSP4,Australia_NZ,2100,0.0134305,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2020,0.0637912,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2025,0.052595,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2030,0.0415092,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2035,0.0292464,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2040,0.0241563,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2045,0.0214419,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2050,0.0203419,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2055,0.0199649,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2060,0.0196167,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2065,0.0196134,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2070,0.0195632,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2075,0.0178506,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2080,0.0178464,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2085,0.0182731,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2090,0.019074,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2095,0.0199579,gcam-v5.3-658-g03f23c2 -SSP4,Brazil,2100,0.0197648,gcam-v5.3-658-g03f23c2 -SSP4,Canada,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Canada,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2020,0.0260662,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2025,0.022335,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2030,0.0218826,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2035,0.0194225,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2040,0.0160153,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2045,0.0141528,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2050,0.0152359,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2055,0.0162676,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2060,0.0168626,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2065,0.0159724,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2070,0.0151653,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2075,0.0152258,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2080,0.0153562,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2085,0.0160871,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2090,0.016524,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2095,0.0162015,gcam-v5.3-658-g03f23c2 -SSP4,Canada,2100,0.0151387,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2020,0.0498866,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2025,0.0327824,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2030,0.0218027,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2035,0.00968231,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2040,0.00642833,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2045,0.00437452,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2050,0.00367218,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2055,0.0041896,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2060,0.0055165,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2065,0.00598993,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2070,0.00609351,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2075,0.00627426,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2080,0.00605932,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2085,0.0058205,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2090,0.00658651,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2095,0.00736839,gcam-v5.3-658-g03f23c2 -SSP4,Central America and Caribbean,2100,0.00819737,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2020,-0.0287224,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2025,0.0150383,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2030,0.0120889,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2035,0.0100437,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2040,0.00982904,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2045,0.00665401,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2050,0.00309196,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2055,0.0082114,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2060,0.0151298,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2065,0.0169991,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2070,0.0163754,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2075,0.0161141,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2080,0.016996,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2085,0.0165133,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2090,0.0168039,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2095,0.0169278,gcam-v5.3-658-g03f23c2 -SSP4,Central Asia,2100,0.0161447,gcam-v5.3-658-g03f23c2 -SSP4,China,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,China,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,China,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,China,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,China,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,China,2020,0.107816,gcam-v5.3-658-g03f23c2 -SSP4,China,2025,0.0663855,gcam-v5.3-658-g03f23c2 -SSP4,China,2030,0.0437473,gcam-v5.3-658-g03f23c2 -SSP4,China,2035,0.0355369,gcam-v5.3-658-g03f23c2 -SSP4,China,2040,0.0320241,gcam-v5.3-658-g03f23c2 -SSP4,China,2045,0.0242659,gcam-v5.3-658-g03f23c2 -SSP4,China,2050,0.022945,gcam-v5.3-658-g03f23c2 -SSP4,China,2055,0.0261139,gcam-v5.3-658-g03f23c2 -SSP4,China,2060,0.0244403,gcam-v5.3-658-g03f23c2 -SSP4,China,2065,0.0227985,gcam-v5.3-658-g03f23c2 -SSP4,China,2070,0.0199938,gcam-v5.3-658-g03f23c2 -SSP4,China,2075,0.0191548,gcam-v5.3-658-g03f23c2 -SSP4,China,2080,0.0174491,gcam-v5.3-658-g03f23c2 -SSP4,China,2085,0.0172622,gcam-v5.3-658-g03f23c2 -SSP4,China,2090,0.0169635,gcam-v5.3-658-g03f23c2 -SSP4,China,2095,0.016983,gcam-v5.3-658-g03f23c2 -SSP4,China,2100,0.0162525,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2020,0.0514451,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2025,0.029152,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2030,0.0306231,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2035,0.0267427,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2040,0.0231568,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2045,0.0208162,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2050,0.019861,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2055,0.0202498,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2060,0.0208627,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2065,0.0198097,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2070,0.0186845,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2075,0.0179753,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2080,0.0175831,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2085,0.0175122,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2090,0.0178589,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2095,0.0182535,gcam-v5.3-658-g03f23c2 -SSP4,Colombia,2100,0.0180092,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2020,0.0521692,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2025,0.0318603,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2030,0.0284282,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2035,0.0253271,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2040,0.0236839,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2045,0.0243749,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2050,0.0250058,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2055,0.0246965,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2060,0.0236633,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2065,0.0197913,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2070,0.0169411,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2075,0.0172765,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2080,0.0180911,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2085,0.0183758,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2090,0.0186569,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2095,0.0183975,gcam-v5.3-658-g03f23c2 -SSP4,EU-12,2100,0.0167904,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2020,0.0291414,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2025,0.0292198,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2030,0.0321247,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2035,0.0325983,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2040,0.0292072,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2045,0.024887,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2050,0.0214693,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2055,0.0193052,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2060,0.0173472,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2065,0.0156216,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2070,0.014235,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2075,0.0139367,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2080,0.0139436,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2085,0.0140334,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2090,0.0143957,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2095,0.014776,gcam-v5.3-658-g03f23c2 -SSP4,EU-15,2100,0.0143729,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2020,0.0282256,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2025,0.0273534,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2030,0.0310988,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2035,0.0314199,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2040,0.0246861,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2045,0.0178884,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2050,0.0172394,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2055,0.0168689,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2060,0.0164607,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2065,0.0150362,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2070,0.0132882,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2075,0.0126524,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2080,0.0128085,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2085,0.0131551,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2090,0.0138635,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2095,0.014256,gcam-v5.3-658-g03f23c2 -SSP4,European Free Trade Association,2100,0.0137257,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2020,0.0233993,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2025,0.0454344,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2030,0.0410172,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2035,0.029237,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2040,0.0256743,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2045,0.0294642,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2050,0.0331951,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2055,0.0332833,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2060,0.0290384,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2065,0.024717,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2070,0.0223241,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2075,0.023181,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2080,0.0218845,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2085,0.0212958,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2090,0.020663,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2095,0.0204452,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Eastern,2100,0.0193705,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2020,0.0572414,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2025,0.040072,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2030,0.0288182,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2035,0.0202938,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2040,0.0190168,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2045,0.0168157,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2050,0.0164575,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2055,0.0156933,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2060,0.0156183,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2065,0.0150411,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2070,0.0138199,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2075,0.0137956,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2080,0.0138588,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2085,0.0140615,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2090,0.0150181,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2095,0.0162302,gcam-v5.3-658-g03f23c2 -SSP4,Europe_Non_EU,2100,0.0167429,gcam-v5.3-658-g03f23c2 -SSP4,India,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,India,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,India,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,India,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,India,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,India,2020,0.0931364,gcam-v5.3-658-g03f23c2 -SSP4,India,2025,0.0581274,gcam-v5.3-658-g03f23c2 -SSP4,India,2030,0.033357,gcam-v5.3-658-g03f23c2 -SSP4,India,2035,0.0272588,gcam-v5.3-658-g03f23c2 -SSP4,India,2040,0.0265288,gcam-v5.3-658-g03f23c2 -SSP4,India,2045,0.0254229,gcam-v5.3-658-g03f23c2 -SSP4,India,2050,0.0248826,gcam-v5.3-658-g03f23c2 -SSP4,India,2055,0.0256492,gcam-v5.3-658-g03f23c2 -SSP4,India,2060,0.0256435,gcam-v5.3-658-g03f23c2 -SSP4,India,2065,0.0246023,gcam-v5.3-658-g03f23c2 -SSP4,India,2070,0.0232803,gcam-v5.3-658-g03f23c2 -SSP4,India,2075,0.0223191,gcam-v5.3-658-g03f23c2 -SSP4,India,2080,0.0218833,gcam-v5.3-658-g03f23c2 -SSP4,India,2085,0.0213352,gcam-v5.3-658-g03f23c2 -SSP4,India,2090,0.0209997,gcam-v5.3-658-g03f23c2 -SSP4,India,2095,0.0207157,gcam-v5.3-658-g03f23c2 -SSP4,India,2100,0.0208038,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2020,0.122175,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2025,0.102168,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2030,0.0683632,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2035,0.043553,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2040,0.0342511,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2045,0.026081,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2050,0.0222398,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2055,0.0211849,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2060,0.0217636,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2065,0.020499,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2070,0.0205171,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2075,0.0199188,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2080,0.0201569,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2085,0.0201885,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2090,0.0204361,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2095,0.0199843,gcam-v5.3-658-g03f23c2 -SSP4,Indonesia,2100,0.0207544,gcam-v5.3-658-g03f23c2 -SSP4,Japan,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Japan,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2020,0.02585,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2025,0.0283946,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2030,0.0340958,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2035,0.0342121,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2040,0.0338152,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2045,0.0297933,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2050,0.0253361,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2055,0.0223441,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2060,0.019898,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2065,0.0178213,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2070,0.0157451,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2075,0.0142101,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2080,0.0140431,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2085,0.0131924,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2090,0.0125111,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2095,0.0126481,gcam-v5.3-658-g03f23c2 -SSP4,Japan,2100,0.0121814,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2020,0.0384385,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2025,0.0407485,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2030,0.0413087,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2035,0.0314268,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2040,0.0219381,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2045,0.0159402,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2050,0.0143484,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2055,0.0152946,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2060,0.0160519,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2065,0.0155182,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2070,0.0149712,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2075,0.0144069,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2080,0.0150155,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2085,0.0154235,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2090,0.015593,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2095,0.0162701,gcam-v5.3-658-g03f23c2 -SSP4,Mexico,2100,0.0165363,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2020,0.155295,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2025,0.127577,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2030,0.10855,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2035,0.0686136,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2040,0.0216154,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2045,-0.0102922,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2050,-0.022684,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2055,-0.0207134,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2060,-0.0133414,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2065,-0.00728494,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2070,-0.000500159,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2075,0.00627436,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2080,0.00967436,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2085,0.00885157,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2090,0.0119998,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2095,0.0147039,gcam-v5.3-658-g03f23c2 -SSP4,Middle East,2100,0.0171445,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2020,0.00223436,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2025,0.00488787,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2030,0.005539,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2035,-0.00180111,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2040,0.000186593,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2045,0.00193491,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2050,0.00371665,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2055,0.00659665,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2060,0.00861629,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2065,0.0103685,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2070,0.0105822,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2075,0.0118658,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2080,0.0128116,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2085,0.0136048,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2090,0.0142659,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2095,0.0147666,gcam-v5.3-658-g03f23c2 -SSP4,Pakistan,2100,0.0158545,gcam-v5.3-658-g03f23c2 -SSP4,Russia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Russia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2020,0.0514296,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2025,0.0441359,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2030,0.0388048,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2035,0.0270583,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2040,0.0222463,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2045,0.0182861,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2050,0.0190024,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2055,0.0202635,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2060,0.0171256,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2065,0.0141557,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2070,0.0150967,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2075,0.0162866,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2080,0.0174386,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2085,0.0165473,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2090,0.0150628,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2095,0.013887,gcam-v5.3-658-g03f23c2 -SSP4,Russia,2100,0.0133917,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2020,0.071615,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2025,0.0615152,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2030,0.0450256,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2035,0.0246154,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2040,0.0143384,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2045,0.0104223,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2050,0.0104251,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2055,0.0125942,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2060,0.0137989,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2065,0.0137006,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2070,0.0135586,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2075,0.0138124,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2080,0.0141946,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2085,0.0146128,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2090,0.015418,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2095,0.0160449,gcam-v5.3-658-g03f23c2 -SSP4,South Africa,2100,0.0163825,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2020,0.0637024,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2025,0.1279,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2030,0.145832,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2035,0.118304,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2040,0.0505304,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2045,-0.00375062,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2050,-0.0266149,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2055,-0.0268026,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2060,-0.0227425,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2065,-0.0173874,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2070,-0.0117862,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2075,-0.00613499,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2080,-0.000284504,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2085,0.00403578,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2090,0.00766482,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2095,0.0109134,gcam-v5.3-658-g03f23c2 -SSP4,South America_Northern,2100,0.0121971,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2020,0.059743,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2025,0.0411112,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2030,0.0292079,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2035,0.019106,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2040,0.0174747,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2045,0.016599,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2050,0.0167695,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2055,0.0176845,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2060,0.0192449,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2065,0.0194883,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2070,0.0195978,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2075,0.0193649,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2080,0.0192263,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2085,0.0190006,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2090,0.0192818,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2095,0.0197671,gcam-v5.3-658-g03f23c2 -SSP4,South America_Southern,2100,0.0198476,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2020,0.374217,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2025,0.102247,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2030,-0.0978027,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2035,-0.167501,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2040,-0.13684,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2045,-0.114401,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2050,-0.0914109,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2055,-0.0696338,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2060,-0.0507023,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2065,-0.0393549,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2070,-0.0319284,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2075,-0.0256685,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2080,-0.0171001,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2085,-0.00958509,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2090,-0.00165649,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2095,0.00707413,gcam-v5.3-658-g03f23c2 -SSP4,South Asia,2100,0.0120825,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2020,0.123221,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2025,0.0622898,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2030,0.028818,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2035,0.00923964,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2040,0.00948681,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2045,0.0085434,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2050,0.00926267,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2055,0.0124243,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2060,0.0146132,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2065,0.0142009,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2070,0.0131567,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2075,0.0117559,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2080,0.0113812,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2085,0.0110741,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2090,0.0117144,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2095,0.0126027,gcam-v5.3-658-g03f23c2 -SSP4,Southeast Asia,2100,0.0127678,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2020,0.0439254,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2025,0.0458622,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2030,0.0411193,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2035,0.0341405,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2040,0.02909,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2045,0.0234331,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2050,0.0214016,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2055,0.0181062,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2060,0.0204492,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2065,0.0202254,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2070,0.0155155,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2075,0.0152074,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2080,0.0139052,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2085,0.0138605,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2090,0.0149306,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2095,0.0163631,gcam-v5.3-658-g03f23c2 -SSP4,South Korea,2100,0.0155138,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2020,0.051171,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2025,0.0250237,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2030,0.016248,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2035,0.0144587,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2040,0.0124807,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2045,0.00857886,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2050,0.00458171,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2055,0.00258211,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2060,0.00442463,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2065,0.0165076,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2070,0.0140714,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2075,0.0103662,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2080,0.00745717,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2085,0.00401025,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2090,0.00194857,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2095,0.000192946,gcam-v5.3-658-g03f23c2 -SSP4,Taiwan,2100,-0.00137258,gcam-v5.3-658-g03f23c2 -SSP4,USA,1975,0,gcam-v5.3-658-g03f23c2 -SSP4,USA,1990,0,gcam-v5.3-658-g03f23c2 -SSP4,USA,2005,0,gcam-v5.3-658-g03f23c2 -SSP4,USA,2010,0,gcam-v5.3-658-g03f23c2 -SSP4,USA,2015,0,gcam-v5.3-658-g03f23c2 -SSP4,USA,2020,0.0383054,gcam-v5.3-658-g03f23c2 -SSP4,USA,2025,0.0317491,gcam-v5.3-658-g03f23c2 -SSP4,USA,2030,0.0257416,gcam-v5.3-658-g03f23c2 -SSP4,USA,2035,0.0180757,gcam-v5.3-658-g03f23c2 -SSP4,USA,2040,0.0131515,gcam-v5.3-658-g03f23c2 -SSP4,USA,2045,0.00944783,gcam-v5.3-658-g03f23c2 -SSP4,USA,2050,0.00966916,gcam-v5.3-658-g03f23c2 -SSP4,USA,2055,0.0107209,gcam-v5.3-658-g03f23c2 -SSP4,USA,2060,0.0117434,gcam-v5.3-658-g03f23c2 -SSP4,USA,2065,0.0113749,gcam-v5.3-658-g03f23c2 -SSP4,USA,2070,0.0115255,gcam-v5.3-658-g03f23c2 -SSP4,USA,2075,0.0117369,gcam-v5.3-658-g03f23c2 -SSP4,USA,2080,0.0114502,gcam-v5.3-658-g03f23c2 -SSP4,USA,2085,0.0118454,gcam-v5.3-658-g03f23c2 -SSP4,USA,2090,0.0124448,gcam-v5.3-658-g03f23c2 -SSP4,USA,2095,0.0130417,gcam-v5.3-658-g03f23c2 -SSP4,USA,2100,0.0130887,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2020,0.179546,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2025,0.209403,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2030,0.245516,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2035,0.188692,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2040,0.0707686,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2045,0.00263483,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2050,-0.0165938,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2055,-0.0132879,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2060,-0.00514958,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2065,0.00261498,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2070,0.00859588,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2075,0.013482,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2080,0.0175338,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2085,0.0208117,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2090,0.0231749,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2095,0.0249266,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Eastern,2100,0.0259786,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2020,0.136016,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2025,0.117278,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2030,0.0954245,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2035,0.069432,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2040,0.0279924,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2045,0.0101611,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2050,0.00629031,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2055,0.00876017,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2060,0.0132098,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2065,0.0162747,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2070,0.0150733,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2075,0.0159196,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2080,0.0195755,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2085,0.0223225,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2090,0.0239944,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2095,0.0241457,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Northern,2100,0.024521,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2020,0.14463,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2025,0.172497,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2030,0.218614,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2035,0.228208,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2040,0.178758,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2045,0.0948581,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2050,0.0223073,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2055,-0.0172216,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2060,-0.0269961,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2065,-0.0217589,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2070,-0.0136773,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2075,-0.00595374,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2080,0.00215091,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2085,0.00802355,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2090,0.012389,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2095,0.0156247,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Southern,2100,0.0182453,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2020,0.115098,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2025,0.158627,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2030,0.184365,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2035,0.130222,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2040,0.0485151,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2045,0.0115016,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2050,0.00465452,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2055,0.00668147,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2060,0.0103571,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2065,0.0138933,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2070,0.0163713,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2075,0.0185414,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2080,0.0207974,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2085,0.0220889,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2090,0.0230433,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2095,0.0238451,gcam-v5.3-658-g03f23c2 -SSP5,Africa_Western,2100,0.0241202,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2020,0.0400195,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2025,0.050779,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2030,0.0477697,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2035,0.0409974,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2040,0.0295518,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2045,0.0244264,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2050,0.0206017,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2055,0.0195219,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2060,0.0194614,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2065,0.0197099,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2070,0.0184625,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2075,0.0181164,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2080,0.0190874,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2085,0.0204266,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2090,0.020966,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2095,0.0215035,gcam-v5.3-658-g03f23c2 -SSP5,Argentina,2100,0.0208197,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2020,0.0341625,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2025,0.0325974,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2030,0.0336542,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2035,0.0319773,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2040,0.0289204,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2045,0.024896,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2050,0.0226164,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2055,0.0219198,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2060,0.021304,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2065,0.0200221,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2070,0.0194264,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2075,0.0201388,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2080,0.0202647,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2085,0.0206965,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2090,0.0204758,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2095,0.0191689,gcam-v5.3-658-g03f23c2 -SSP5,Australia_NZ,2100,0.0197339,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2020,0.0664522,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2025,0.0746706,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2030,0.0806766,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2035,0.0756012,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2040,0.0589305,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2045,0.0441911,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2050,0.0338168,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2055,0.0276475,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2060,0.0240819,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2065,0.0224221,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2070,0.0212894,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2075,0.0193606,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2080,0.0192491,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2085,0.0196768,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2090,0.0202819,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2095,0.0205759,gcam-v5.3-658-g03f23c2 -SSP5,Brazil,2100,0.0205022,gcam-v5.3-658-g03f23c2 -SSP5,Canada,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Canada,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2020,0.0278166,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2025,0.0273683,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2030,0.0317361,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2035,0.0325783,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2040,0.0320792,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2045,0.0285201,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2050,0.0252446,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2055,0.0235057,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2060,0.0218216,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2065,0.0202092,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2070,0.0195804,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2075,0.0203277,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2080,0.0204339,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2085,0.0211975,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2090,0.0213682,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2095,0.0207355,gcam-v5.3-658-g03f23c2 -SSP5,Canada,2100,0.0199704,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2020,0.0578096,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2025,0.0730506,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2030,0.0830877,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2035,0.076631,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2040,0.0551895,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2045,0.037687,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2050,0.026449,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2055,0.0216394,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2060,0.0202681,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2065,0.0200605,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2070,0.019243,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2075,0.0190776,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2080,0.0209725,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2085,0.0216578,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2090,0.0225274,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2095,0.0235098,gcam-v5.3-658-g03f23c2 -SSP5,Central America and Caribbean,2100,0.0240232,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2020,-0.023603,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2025,0.0452571,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2030,0.0470557,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2035,0.0381571,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2040,0.0253772,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2045,0.0142991,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2050,0.00961232,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2055,0.0140214,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2060,0.0213471,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2065,0.0240516,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2070,0.0226408,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2075,0.0222071,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2080,0.0235499,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2085,0.0237471,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2090,0.0248929,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2095,0.0254837,gcam-v5.3-658-g03f23c2 -SSP5,Central Asia,2100,0.0240129,gcam-v5.3-658-g03f23c2 -SSP5,China,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,China,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,China,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,China,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,China,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,China,2020,0.116773,gcam-v5.3-658-g03f23c2 -SSP5,China,2025,0.103037,gcam-v5.3-658-g03f23c2 -SSP5,China,2030,0.0836994,gcam-v5.3-658-g03f23c2 -SSP5,China,2035,0.0646342,gcam-v5.3-658-g03f23c2 -SSP5,China,2040,0.0440988,gcam-v5.3-658-g03f23c2 -SSP5,China,2045,0.0289256,gcam-v5.3-658-g03f23c2 -SSP5,China,2050,0.0240917,gcam-v5.3-658-g03f23c2 -SSP5,China,2055,0.0257208,gcam-v5.3-658-g03f23c2 -SSP5,China,2060,0.0238257,gcam-v5.3-658-g03f23c2 -SSP5,China,2065,0.0226123,gcam-v5.3-658-g03f23c2 -SSP5,China,2070,0.0202202,gcam-v5.3-658-g03f23c2 -SSP5,China,2075,0.0197458,gcam-v5.3-658-g03f23c2 -SSP5,China,2080,0.0184429,gcam-v5.3-658-g03f23c2 -SSP5,China,2085,0.0186975,gcam-v5.3-658-g03f23c2 -SSP5,China,2090,0.0188435,gcam-v5.3-658-g03f23c2 -SSP5,China,2095,0.0192719,gcam-v5.3-658-g03f23c2 -SSP5,China,2100,0.0194245,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2020,0.0535026,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2025,0.0528225,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2030,0.070399,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2035,0.0709089,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2040,0.0535431,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2045,0.0394549,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2050,0.0302095,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2055,0.0256195,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2060,0.0238095,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2065,0.0221542,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2070,0.0205677,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2075,0.0197782,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2080,0.0198646,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2085,0.0203016,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2090,0.0208095,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2095,0.0211822,gcam-v5.3-658-g03f23c2 -SSP5,Colombia,2100,0.0209901,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2020,0.0559925,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2025,0.0427148,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2030,0.0420898,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2035,0.038602,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2040,0.0330883,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2045,0.0314258,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2050,0.0305282,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2055,0.0298779,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2060,0.0291916,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2065,0.0259078,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2070,0.0236698,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2075,0.0245784,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2080,0.0251515,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2085,0.0254752,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2090,0.0257526,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2095,0.0254733,gcam-v5.3-658-g03f23c2 -SSP5,EU-12,2100,0.0248074,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2020,0.0316437,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2025,0.0351306,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2030,0.0422132,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2035,0.0453218,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2040,0.0413096,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2045,0.0359141,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2050,0.030939,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2055,0.0280339,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2060,0.0256519,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2065,0.0240237,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2070,0.0232203,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2075,0.0234446,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2080,0.0224321,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2085,0.0218359,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2090,0.0214481,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2095,0.0211677,gcam-v5.3-658-g03f23c2 -SSP5,EU-15,2100,0.0212624,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2020,0.0323414,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2025,0.0339713,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2030,0.0400706,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2035,0.0410625,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2040,0.0328799,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2045,0.025497,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2050,0.0238855,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2055,0.0228998,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2060,0.0222242,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2065,0.0208784,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2070,0.0199593,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2075,0.0201458,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2080,0.0198728,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2085,0.0197912,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2090,0.0198035,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2095,0.0198258,gcam-v5.3-658-g03f23c2 -SSP5,European Free Trade Association,2100,0.0198244,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2020,0.0294801,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2025,0.0747301,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2030,0.0793305,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2035,0.0632088,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2040,0.0457807,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2045,0.039663,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2050,0.0367576,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2055,0.0346058,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2060,0.0301464,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2065,0.0255198,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2070,0.0227123,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2075,0.0233105,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2080,0.0234773,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2085,0.0235567,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2090,0.0236492,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2095,0.0232345,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Eastern,2100,0.0222453,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2020,0.0605966,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2025,0.0637041,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2030,0.0623935,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2035,0.0539946,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2040,0.0421527,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2045,0.0322362,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2050,0.0259106,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2055,0.022663,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2060,0.0213817,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2065,0.0204424,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2070,0.0182161,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2075,0.0174059,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2080,0.0180576,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2085,0.0190845,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2090,0.0201834,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2095,0.0211547,gcam-v5.3-658-g03f23c2 -SSP5,Europe_Non_EU,2100,0.021356,gcam-v5.3-658-g03f23c2 -SSP5,India,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,India,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,India,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,India,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,India,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,India,2020,0.0996979,gcam-v5.3-658-g03f23c2 -SSP5,India,2025,0.0962721,gcam-v5.3-658-g03f23c2 -SSP5,India,2030,0.0849506,gcam-v5.3-658-g03f23c2 -SSP5,India,2035,0.0759707,gcam-v5.3-658-g03f23c2 -SSP5,India,2040,0.0570962,gcam-v5.3-658-g03f23c2 -SSP5,India,2045,0.0449967,gcam-v5.3-658-g03f23c2 -SSP5,India,2050,0.0374606,gcam-v5.3-658-g03f23c2 -SSP5,India,2055,0.0348659,gcam-v5.3-658-g03f23c2 -SSP5,India,2060,0.0330767,gcam-v5.3-658-g03f23c2 -SSP5,India,2065,0.0310768,gcam-v5.3-658-g03f23c2 -SSP5,India,2070,0.0287074,gcam-v5.3-658-g03f23c2 -SSP5,India,2075,0.0271962,gcam-v5.3-658-g03f23c2 -SSP5,India,2080,0.0270583,gcam-v5.3-658-g03f23c2 -SSP5,India,2085,0.0266804,gcam-v5.3-658-g03f23c2 -SSP5,India,2090,0.0258395,gcam-v5.3-658-g03f23c2 -SSP5,India,2095,0.0250808,gcam-v5.3-658-g03f23c2 -SSP5,India,2100,0.0247824,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2020,0.130464,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2025,0.15321,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2030,0.14583,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2035,0.113804,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2040,0.064984,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2045,0.0336539,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2050,0.0214231,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2055,0.018965,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2060,0.0193639,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2065,0.0195666,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2070,0.0199572,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2075,0.019861,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2080,0.0202687,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2085,0.0203912,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2090,0.0206171,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2095,0.0206185,gcam-v5.3-658-g03f23c2 -SSP5,Indonesia,2100,0.0203074,gcam-v5.3-658-g03f23c2 -SSP5,Japan,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Japan,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2020,0.0283071,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2025,0.0355689,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2030,0.0446841,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2035,0.0471381,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2040,0.045025,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2045,0.039474,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2050,0.0339439,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2055,0.0304045,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2060,0.0275064,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2065,0.0255763,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2070,0.0241141,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2075,0.0233723,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2080,0.0223664,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2085,0.0207644,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2090,0.0193434,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2095,0.0184343,gcam-v5.3-658-g03f23c2 -SSP5,Japan,2100,0.0185599,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2020,0.0374007,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2025,0.0606571,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2030,0.0784101,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2035,0.0748212,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2040,0.0525545,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2045,0.0351055,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2050,0.0246838,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2055,0.0192172,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2060,0.0163567,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2065,0.0156137,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2070,0.0147865,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2075,0.0144329,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2080,0.0159769,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2085,0.0172499,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2090,0.0177792,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2095,0.0184871,gcam-v5.3-658-g03f23c2 -SSP5,Mexico,2100,0.0188141,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2020,0.163964,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2025,0.163663,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2030,0.181988,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2035,0.134881,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2040,0.0581912,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2045,0.00622511,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2050,-0.0143884,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2055,-0.0120743,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2060,-0.00330741,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2065,0.0031336,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2070,0.00450314,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2075,0.00601235,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2080,0.0081115,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2085,0.0124264,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2090,0.0164151,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2095,0.019128,gcam-v5.3-658-g03f23c2 -SSP5,Middle East,2100,0.0208865,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2020,0.00291398,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2025,0.0404927,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2030,0.0691091,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2035,0.0721954,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2040,0.0618609,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2045,0.0524299,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2050,0.0458437,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2055,0.0425174,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2060,0.0395486,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2065,0.0372236,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2070,0.0338389,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2075,0.0321626,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2080,0.0316705,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2085,0.0313516,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2090,0.0308095,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2095,0.0300484,gcam-v5.3-658-g03f23c2 -SSP5,Pakistan,2100,0.0293815,gcam-v5.3-658-g03f23c2 -SSP5,Russia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Russia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2020,0.0559487,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2025,0.0649041,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2030,0.0652205,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2035,0.0491941,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2040,0.0364411,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2045,0.024419,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2050,0.0224946,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2055,0.0228416,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2060,0.0191582,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2065,0.0170903,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2070,0.017245,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2075,0.0189264,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2080,0.0212635,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2085,0.0217474,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2090,0.0212022,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2095,0.0201954,gcam-v5.3-658-g03f23c2 -SSP5,Russia,2100,0.0193309,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2020,0.0754635,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2025,0.0825588,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2030,0.0781769,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2035,0.0580034,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2040,0.0353238,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2045,0.0218543,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2050,0.0162809,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2055,0.0156395,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2060,0.0158815,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2065,0.0148232,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2070,0.013695,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2075,0.013438,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2080,0.0138049,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2085,0.0145596,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2090,0.0158233,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2095,0.0167356,gcam-v5.3-658-g03f23c2 -SSP5,South Africa,2100,0.0174989,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2020,0.0635225,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2025,0.151234,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2030,0.224596,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2035,0.28108,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2040,0.191009,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2045,0.0364116,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2050,-0.0494508,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2055,-0.0596243,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2060,-0.046216,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2065,-0.03115,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2070,-0.0199249,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2075,-0.010626,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2080,-0.00129609,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2085,0.00471267,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2090,0.00857633,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2095,0.0115944,gcam-v5.3-658-g03f23c2 -SSP5,South America_Northern,2100,0.0121302,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2020,0.0618839,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2025,0.0661517,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2030,0.0672665,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2035,0.0568821,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2040,0.0416624,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2045,0.0313482,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2050,0.0253011,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2055,0.0233168,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2060,0.0233888,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2065,0.0232049,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2070,0.0224073,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2075,0.0215451,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2080,0.0217736,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2085,0.0210177,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2090,0.0216792,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2095,0.022552,gcam-v5.3-658-g03f23c2 -SSP5,South America_Southern,2100,0.0231952,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2020,0.418788,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2025,0.408427,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2030,0.326742,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2035,0.19841,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2040,0.0245041,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2045,-0.0683586,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2050,-0.0992005,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2055,-0.100402,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2060,-0.0893988,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2065,-0.0776994,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2070,-0.0683995,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2075,-0.057259,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2080,-0.0467067,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2085,-0.0367718,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2090,-0.0259172,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2095,-0.0156974,gcam-v5.3-658-g03f23c2 -SSP5,South Asia,2100,-0.00885529,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2020,0.132232,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2025,0.12331,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2030,0.111773,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2035,0.0883707,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2040,0.0553786,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2045,0.0331037,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2050,0.0221129,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2055,0.020256,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2060,0.0209085,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2065,0.020905,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2070,0.0194932,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2075,0.0186756,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2080,0.019701,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2085,0.020826,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2090,0.0224804,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2095,0.0238812,gcam-v5.3-658-g03f23c2 -SSP5,Southeast Asia,2100,0.0241627,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2020,0.0473617,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2025,0.0524845,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2030,0.047331,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2035,0.0400578,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2040,0.0338483,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2045,0.028089,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2050,0.0263844,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2055,0.0234007,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2060,0.0261693,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2065,0.0268873,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2070,0.023062,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2075,0.0240596,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2080,0.0224809,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2085,0.022089,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2090,0.0226155,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2095,0.0233747,gcam-v5.3-658-g03f23c2 -SSP5,South Korea,2100,0.0233915,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2020,0.051536,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2025,0.0337533,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2030,0.0287044,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2035,0.0275215,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2040,0.0236898,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2045,0.0177689,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2050,0.0119034,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2055,0.00821167,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2060,0.00926093,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2065,0.0206332,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2070,0.0156957,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2075,0.0107901,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2080,0.00839223,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2085,0.00475233,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2090,0.00318788,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2095,0.00184756,gcam-v5.3-658-g03f23c2 -SSP5,Taiwan,2100,-0.000161691,gcam-v5.3-658-g03f23c2 -SSP5,USA,1975,0,gcam-v5.3-658-g03f23c2 -SSP5,USA,1990,0,gcam-v5.3-658-g03f23c2 -SSP5,USA,2005,0,gcam-v5.3-658-g03f23c2 -SSP5,USA,2010,0,gcam-v5.3-658-g03f23c2 -SSP5,USA,2015,0,gcam-v5.3-658-g03f23c2 -SSP5,USA,2020,0.0419764,gcam-v5.3-658-g03f23c2 -SSP5,USA,2025,0.0373453,gcam-v5.3-658-g03f23c2 -SSP5,USA,2030,0.0332201,gcam-v5.3-658-g03f23c2 -SSP5,USA,2035,0.0258196,gcam-v5.3-658-g03f23c2 -SSP5,USA,2040,0.0195562,gcam-v5.3-658-g03f23c2 -SSP5,USA,2045,0.0156059,gcam-v5.3-658-g03f23c2 -SSP5,USA,2050,0.0156824,gcam-v5.3-658-g03f23c2 -SSP5,USA,2055,0.0167852,gcam-v5.3-658-g03f23c2 -SSP5,USA,2060,0.0178396,gcam-v5.3-658-g03f23c2 -SSP5,USA,2065,0.017895,gcam-v5.3-658-g03f23c2 -SSP5,USA,2070,0.0189754,gcam-v5.3-658-g03f23c2 -SSP5,USA,2075,0.0200818,gcam-v5.3-658-g03f23c2 -SSP5,USA,2080,0.0190485,gcam-v5.3-658-g03f23c2 -SSP5,USA,2085,0.0190976,gcam-v5.3-658-g03f23c2 -SSP5,USA,2090,0.019268,gcam-v5.3-658-g03f23c2 -SSP5,USA,2095,0.0194123,gcam-v5.3-658-g03f23c2 -SSP5,USA,2100,0.0201162,gcam-v5.3-658-g03f23c2 -gSSP2,Africa_Eastern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2020,0.117427,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2025,0.121237,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2030,0.152694,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2035,0.094681,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2040,0.0669694,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2045,0.0489367,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2050,0.0325584,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2055,0.0219778,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2060,0.0151511,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2065,0.0112069,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2070,0.00947574,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2075,0.00825727,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2080,0.00877268,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2085,0.0102473,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2090,0.0124739,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2095,0.0139327,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Eastern,2100,0.0155101,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2020,0.166852,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2025,0.0467817,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2030,0.0609762,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2035,0.00897318,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2040,-0.00679483,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2045,-0.00601554,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2050,-0.000626628,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2055,0.00361467,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2060,0.00945356,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2065,0.00711074,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2070,0.00807936,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2075,0.00894413,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2080,0.0109801,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2085,0.012436,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2090,0.0129435,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2095,0.0133099,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Northern,2100,0.0128943,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2020,-0.00608717,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2025,0.0787467,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2030,0.092167,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2035,0.0680584,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2040,0.0730877,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2045,0.0707254,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2050,0.0594539,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2055,0.0458567,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2060,0.0313557,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2065,0.0219477,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2070,0.0164359,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2075,0.0128105,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2080,0.0123247,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2085,0.0124317,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2090,0.0134769,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2095,0.0143068,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Southern,2100,0.0169908,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2020,0.0177486,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2025,0.0164394,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2030,0.0820131,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2035,0.0407616,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2040,0.0282868,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2045,0.0236435,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2050,0.021682,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2055,0.0234722,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2060,0.023759,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2065,0.0232871,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2070,0.0236461,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2075,0.0237775,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2080,0.0237493,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2085,0.0238074,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2090,0.0233065,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2095,0.0229357,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Africa_Western,2100,0.0228284,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2020,-0.0276358,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2025,0.0423699,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2030,0.0299382,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2035,0.0200099,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2040,0.0151968,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2045,0.0143963,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2050,0.013164,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2055,0.0135431,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2060,0.0134335,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2065,0.0125504,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2070,0.0117502,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2075,0.012125,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2080,0.0124804,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2085,0.0123838,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2090,0.0123093,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2095,0.0122868,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Argentina,2100,0.0126623,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2020,0.0208051,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2025,0.0225067,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2030,0.0165491,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2035,0.0115217,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2040,0.0119736,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2045,0.0113092,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2050,0.0126389,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2055,0.0134157,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2060,0.0129484,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2065,0.0120176,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2070,0.0113486,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2075,0.0118616,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2080,0.0119101,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2085,0.0123811,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2090,0.0127051,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2095,0.0122441,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Australia_NZ,2100,0.0119995,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2020,0.00412547,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2025,0.0373219,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2030,0.0435529,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2035,0.0320969,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2040,0.0275093,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2045,0.0242467,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2050,0.0225853,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2055,0.0205815,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2060,0.0189056,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2065,0.0187482,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2070,0.0187276,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2075,0.0166765,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2080,0.016138,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2085,0.0161371,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2090,0.0161868,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2095,0.015898,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Brazil,2100,0.0155748,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2020,0.0111926,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2025,0.0172961,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2030,0.0188521,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2035,0.0143834,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2040,0.0118004,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2045,0.0104872,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2050,0.0114254,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2055,0.013099,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2060,0.0132818,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2065,0.012102,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2070,0.0110259,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2075,0.0122116,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2080,0.012603,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2085,0.0132851,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2090,0.013604,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2095,0.013161,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Canada,2100,0.0127746,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2020,0.0641159,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2025,0.0404709,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2030,0.0467585,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2035,0.0329784,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2040,0.0275012,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2045,0.0226505,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2050,0.0196812,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2055,0.0187943,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2060,0.018214,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2065,0.0176075,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2070,0.0177461,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2075,0.0176575,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2080,0.0178423,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2085,0.017545,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2090,0.0172022,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2095,0.017091,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central America and Caribbean,2100,0.016825,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2020,-0.101558,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2025,-0.00429296,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2030,0.00940032,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2035,-0.00176357,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2040,0.0029736,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2045,0.004566,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2050,0.0029491,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2055,0.00934751,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2060,0.0153606,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2065,0.0173223,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2070,0.016804,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2075,0.0168346,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2080,0.0167194,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2085,0.0163171,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2090,0.0158181,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2095,0.0138128,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Central Asia,2100,0.0114085,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2020,0.09478,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2025,0.0670707,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2030,0.0449502,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2035,0.0333393,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2040,0.0294956,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2045,0.022091,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2050,0.0214048,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2055,0.0247682,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2060,0.0233631,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2065,0.0221056,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2070,0.0197526,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2075,0.0194803,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2080,0.017442,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2085,0.0166728,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2090,0.015459,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2095,0.0143856,gcam-v5.3-1375-g299c4bbc1 -gSSP2,China,2100,0.0134088,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2020,0.0217304,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2025,0.0335699,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2030,0.0246569,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2035,0.022819,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2040,0.0206276,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2045,0.0200749,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2050,0.0200461,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2055,0.0198762,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2060,0.0201097,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2065,0.0196543,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2070,0.0192313,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2075,0.0189321,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2080,0.0184708,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2085,0.0180746,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2090,0.017668,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2095,0.0172944,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Colombia,2100,0.0169091,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2020,0.0745424,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2025,0.0390833,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2030,0.0272593,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2035,0.0237513,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2040,0.0222196,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2045,0.0224433,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2050,0.0222715,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2055,0.0226569,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2060,0.0201356,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2065,0.0170127,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2070,0.0145732,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2075,0.0151001,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2080,0.015597,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2085,0.0154507,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2090,0.0151696,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2095,0.0146642,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-12,2100,0.0138258,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2020,0.0347814,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2025,0.0244855,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2030,0.0265851,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2035,0.0262712,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2040,0.0247266,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2045,0.021935,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2050,0.0199886,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2055,0.0185625,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2060,0.0166127,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2065,0.015055,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2070,0.0142317,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2075,0.0144481,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2080,0.0142498,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2085,0.0140189,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2090,0.0136715,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2095,0.0133585,gcam-v5.3-1375-g299c4bbc1 -gSSP2,EU-15,2100,0.0130356,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2020,0.0424551,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2025,0.0542677,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2030,0.0488561,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2035,0.0322183,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2040,0.0238251,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2045,0.0197835,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2050,0.0198812,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2055,0.0210957,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2060,0.0208562,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2065,0.0183249,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2070,0.0154684,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2075,0.0218466,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2080,0.0169791,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2085,0.0159054,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2090,0.0149804,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2095,0.0139907,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Eastern,2100,0.0132848,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2020,0.0437786,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2025,0.0461155,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2030,0.039029,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2035,0.0282497,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2040,0.0257865,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2045,0.022848,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2050,0.021544,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2055,0.020007,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2060,0.0188234,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2065,0.0177778,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2070,0.0162202,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2075,0.0158176,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2080,0.0154469,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2085,0.0152152,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2090,0.0150602,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2095,0.0149317,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Europe_Non_EU,2100,0.0146291,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2020,0.0136661,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2025,0.0175711,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2030,0.0205758,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2035,0.0209218,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2040,0.0193731,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2045,0.0169143,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2050,0.0177877,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2055,0.0179546,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2060,0.0172963,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2065,0.0158232,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2070,0.0143762,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2075,0.0139692,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2080,0.0137794,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2085,0.0138874,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2090,0.0138722,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2095,0.0130768,gcam-v5.3-1375-g299c4bbc1 -gSSP2,European Free Trade Association,2100,0.0126408,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2020,0.146935,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2025,0.0939593,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2030,0.0322071,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2035,0.0262098,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2040,0.0263363,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2045,0.0252771,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2050,0.0250935,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2055,0.025543,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2060,0.0256106,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2065,0.0245953,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2070,0.0237688,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2075,0.0226805,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2080,0.021776,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2085,0.0205719,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2090,0.0193235,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2095,0.0183021,gcam-v5.3-1375-g299c4bbc1 -gSSP2,India,2100,0.0175131,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2020,0.107966,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2025,0.0702724,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2030,0.0615563,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2035,0.0399712,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2040,0.03289,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2045,0.0262177,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2050,0.0234793,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2055,0.0219456,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2060,0.0214961,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2065,0.0206785,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2070,0.0211043,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2075,0.0210622,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2080,0.0206079,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2085,0.0201661,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2090,0.0196317,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2095,0.0188185,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Indonesia,2100,0.0181103,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2020,0.0321852,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2025,0.0159832,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2030,0.0234953,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2035,0.020278,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2040,0.0226664,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2045,0.020759,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2050,0.0189096,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2055,0.0177213,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2060,0.0165218,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2065,0.0159893,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2070,0.0154979,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2075,0.0153521,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2080,0.0156146,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2085,0.014853,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2090,0.0141841,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2095,0.0138165,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Japan,2100,0.0136563,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2020,0.0122444,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2025,0.039046,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2030,0.046576,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2035,0.0373209,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2040,0.0281366,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2045,0.0215411,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2050,0.0180564,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2055,0.0160238,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2060,0.0148926,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2065,0.0136672,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2070,0.0133736,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2075,0.0132927,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2080,0.013643,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2085,0.0136256,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2090,0.0137645,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2095,0.0138177,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Mexico,2100,0.0139323,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2020,0.290228,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2025,-0.0261316,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2030,0.0176368,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2035,-0.0454888,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2040,-0.0416274,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2045,-0.0309439,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2050,-0.0226825,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2055,-0.0136286,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2060,-0.00964337,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2065,-0.00452147,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2070,-0.00132826,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2075,0.00176779,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2080,0.00556074,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2085,0.00575289,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2090,0.006616,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2095,0.00754736,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Middle East,2100,0.00872125,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2020,0.0403619,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2025,-0.00435874,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2030,0.0465999,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2035,0.0377882,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2040,0.0337993,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2045,0.0316983,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2050,0.0272869,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2055,0.0262647,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2060,0.02656,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2065,0.0274908,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2070,0.0261049,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2075,0.0259574,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2080,0.025844,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2085,0.0253943,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2090,0.0247413,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2095,0.0238484,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Pakistan,2100,0.0227205,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2020,-0.00314919,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2025,0.0247513,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2030,0.0381823,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2035,0.022246,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2040,0.0165928,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2045,0.00991017,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2050,0.0114136,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2055,0.0152282,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2060,0.0122754,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2065,0.00987654,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2070,0.0108887,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2075,0.0123498,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2080,0.0130102,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2085,0.0122867,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2090,0.0105745,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2095,0.00944958,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Russia,2100,0.00900302,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2020,0.0163841,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2025,0.0380336,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2030,0.0593952,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2035,0.03982,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2040,0.0247474,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2045,0.0153681,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2050,0.0118542,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2055,0.0117411,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2060,0.0117828,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2065,0.0112521,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2070,0.0110919,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2075,0.0111201,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2080,0.011061,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2085,0.0110428,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2090,0.0114694,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2095,0.0115513,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Africa,2100,0.0114561,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2020,-0.397038,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2025,-0.0143802,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2030,0.06826,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2035,0.0826896,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2040,0.0766045,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2045,0.0804258,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2050,0.0738854,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2055,0.0513306,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2060,0.0363537,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2065,0.0246129,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2070,0.0157156,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2075,0.0127069,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2080,0.0130826,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2085,0.0128408,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2090,0.0120304,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2095,0.0109823,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Northern,2100,0.0102473,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2020,0.02891,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2025,0.0320155,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2030,0.0363212,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2035,0.0245697,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2040,0.021905,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2045,0.0199938,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2050,0.0189788,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2055,0.0184055,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2060,0.018781,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2065,0.0184971,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2070,0.0184147,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2075,0.0178851,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2080,0.017438,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2085,0.0170087,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2090,0.0166341,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2095,0.016137,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South America_Southern,2100,0.0156853,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2020,0.754738,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2025,1.02596,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2030,0.226707,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2035,-0.281042,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2040,-0.181553,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2045,-0.127035,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2050,-0.0999801,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2055,-0.0728851,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2060,-0.0515178,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2065,-0.0394762,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2070,-0.031303,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2075,-0.0248595,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2080,-0.0202999,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2085,-0.0149067,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2090,-0.00989111,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2095,-0.0052568,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Asia,2100,-0.00179256,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2020,0.0505461,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2025,0.0442219,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2030,0.0410281,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2035,0.0322826,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2040,0.0285924,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2045,0.023191,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2050,0.0212285,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2055,0.0175579,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2060,0.0188887,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2065,0.0182548,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2070,0.0136944,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2075,0.0138933,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2080,0.0126902,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2085,0.0125184,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2090,0.0128684,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2095,0.0133245,gcam-v5.3-1375-g299c4bbc1 -gSSP2,South Korea,2100,0.0125917,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2020,0.183816,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2025,0.102847,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2030,0.0521511,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2035,0.0232638,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2040,0.0213774,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2045,0.01806,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2050,0.0155788,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2055,0.0166561,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2060,0.0166259,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2065,0.0150504,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2070,0.0148008,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2075,0.0144373,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2080,0.0144066,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2085,0.0138688,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2090,0.0135932,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2095,0.0134189,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Southeast Asia,2100,0.012592,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2020,0.0443421,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2025,0.0237516,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2030,0.0166942,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2035,0.0149671,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2040,0.0132671,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2045,0.00878336,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2050,0.00437126,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2055,0.00171077,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2060,0.00276996,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2065,0.0140893,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2070,0.0118882,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2075,0.00871703,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2080,0.00596964,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2085,0.00270277,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2090,0.000547845,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2095,-0.00111659,gcam-v5.3-1375-g299c4bbc1 -gSSP2,Taiwan,2100,-0.00232424,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,1975,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,1990,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2005,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2010,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2015,0,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2020,0.0294491,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2025,0.0194519,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2030,0.0201926,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2035,0.0112416,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2040,0.0082257,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2045,0.00573153,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2050,0.00654753,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2055,0.00735114,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2060,0.00758505,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2065,0.00658483,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2070,0.00689775,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2075,0.0073125,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2080,0.00660268,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2085,0.00661901,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2090,0.00652012,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2095,0.00650036,gcam-v5.3-1375-g299c4bbc1 -gSSP2,USA,2100,0.00653274,gcam-v5.3-1375-g299c4bbc1 +gSSP2,Africa_Eastern,1975,0,gcam-v7.0 +gSSP2,Africa_Eastern,1990,0,gcam-v7.0 +gSSP2,Africa_Eastern,2005,0,gcam-v7.0 +gSSP2,Africa_Eastern,2010,0,gcam-v7.0 +gSSP2,Africa_Eastern,2015,0,gcam-v7.0 +gSSP2,Africa_Eastern,2020,1.06935,gcam-v7.0 +gSSP2,Africa_Eastern,2025,1.20876,gcam-v7.0 +gSSP2,Africa_Eastern,2030,1.40203,gcam-v7.0 +gSSP2,Africa_Eastern,2035,1.59047,gcam-v7.0 +gSSP2,Africa_Eastern,2040,1.76311,gcam-v7.0 +gSSP2,Africa_Eastern,2045,1.91546,gcam-v7.0 +gSSP2,Africa_Eastern,2050,2.06105,gcam-v7.0 +gSSP2,Africa_Eastern,2055,2.22744,gcam-v7.0 +gSSP2,Africa_Eastern,2060,2.41545,gcam-v7.0 +gSSP2,Africa_Eastern,2065,2.63411,gcam-v7.0 +gSSP2,Africa_Eastern,2070,2.88658,gcam-v7.0 +gSSP2,Africa_Eastern,2075,3.16847,gcam-v7.0 +gSSP2,Africa_Eastern,2080,3.48133,gcam-v7.0 +gSSP2,Africa_Eastern,2085,3.82498,gcam-v7.0 +gSSP2,Africa_Eastern,2090,4.19893,gcam-v7.0 +gSSP2,Africa_Eastern,2095,4.60659,gcam-v7.0 +gSSP2,Africa_Eastern,2100,5.05119,gcam-v7.0 +gSSP2,Africa_Northern,1975,0,gcam-v7.0 +gSSP2,Africa_Northern,1990,0,gcam-v7.0 +gSSP2,Africa_Northern,2005,0,gcam-v7.0 +gSSP2,Africa_Northern,2010,0,gcam-v7.0 +gSSP2,Africa_Northern,2015,0,gcam-v7.0 +gSSP2,Africa_Northern,2020,1.08586,gcam-v7.0 +gSSP2,Africa_Northern,2025,1.20175,gcam-v7.0 +gSSP2,Africa_Northern,2030,1.34511,gcam-v7.0 +gSSP2,Africa_Northern,2035,1.47377,gcam-v7.0 +gSSP2,Africa_Northern,2040,1.58766,gcam-v7.0 +gSSP2,Africa_Northern,2045,1.69486,gcam-v7.0 +gSSP2,Africa_Northern,2050,1.81695,gcam-v7.0 +gSSP2,Africa_Northern,2055,1.95842,gcam-v7.0 +gSSP2,Africa_Northern,2060,2.11497,gcam-v7.0 +gSSP2,Africa_Northern,2065,2.27497,gcam-v7.0 +gSSP2,Africa_Northern,2070,2.44272,gcam-v7.0 +gSSP2,Africa_Northern,2075,2.61765,gcam-v7.0 +gSSP2,Africa_Northern,2080,2.79955,gcam-v7.0 +gSSP2,Africa_Northern,2085,2.98307,gcam-v7.0 +gSSP2,Africa_Northern,2090,3.17099,gcam-v7.0 +gSSP2,Africa_Northern,2095,3.36109,gcam-v7.0 +gSSP2,Africa_Northern,2100,3.55902,gcam-v7.0 +gSSP2,Africa_Southern,1975,0,gcam-v7.0 +gSSP2,Africa_Southern,1990,0,gcam-v7.0 +gSSP2,Africa_Southern,2005,0,gcam-v7.0 +gSSP2,Africa_Southern,2010,0,gcam-v7.0 +gSSP2,Africa_Southern,2015,0,gcam-v7.0 +gSSP2,Africa_Southern,2020,0.954118,gcam-v7.0 +gSSP2,Africa_Southern,2025,1.08482,gcam-v7.0 +gSSP2,Africa_Southern,2030,1.24798,gcam-v7.0 +gSSP2,Africa_Southern,2035,1.40127,gcam-v7.0 +gSSP2,Africa_Southern,2040,1.58392,gcam-v7.0 +gSSP2,Africa_Southern,2045,1.78514,gcam-v7.0 +gSSP2,Africa_Southern,2050,2.00401,gcam-v7.0 +gSSP2,Africa_Southern,2055,2.25204,gcam-v7.0 +gSSP2,Africa_Southern,2060,2.51923,gcam-v7.0 +gSSP2,Africa_Southern,2065,2.81268,gcam-v7.0 +gSSP2,Africa_Southern,2070,3.13699,gcam-v7.0 +gSSP2,Africa_Southern,2075,3.48546,gcam-v7.0 +gSSP2,Africa_Southern,2080,3.86001,gcam-v7.0 +gSSP2,Africa_Southern,2085,4.26667,gcam-v7.0 +gSSP2,Africa_Southern,2090,4.71251,gcam-v7.0 +gSSP2,Africa_Southern,2095,5.20384,gcam-v7.0 +gSSP2,Africa_Southern,2100,5.76143,gcam-v7.0 +gSSP2,Africa_Western,1975,0,gcam-v7.0 +gSSP2,Africa_Western,1990,0,gcam-v7.0 +gSSP2,Africa_Western,2005,0,gcam-v7.0 +gSSP2,Africa_Western,2010,0,gcam-v7.0 +gSSP2,Africa_Western,2015,0,gcam-v7.0 +gSSP2,Africa_Western,2020,1.02013,gcam-v7.0 +gSSP2,Africa_Western,2025,1.10849,gcam-v7.0 +gSSP2,Africa_Western,2030,1.3084,gcam-v7.0 +gSSP2,Africa_Western,2035,1.48982,gcam-v7.0 +gSSP2,Africa_Western,2040,1.67252,gcam-v7.0 +gSSP2,Africa_Western,2045,1.84048,gcam-v7.0 +gSSP2,Africa_Western,2050,2.0144,gcam-v7.0 +gSSP2,Africa_Western,2055,2.21438,gcam-v7.0 +gSSP2,Africa_Western,2060,2.43506,gcam-v7.0 +gSSP2,Africa_Western,2065,2.67851,gcam-v7.0 +gSSP2,Africa_Western,2070,2.95166,gcam-v7.0 +gSSP2,Africa_Western,2075,3.25389,gcam-v7.0 +gSSP2,Africa_Western,2080,3.58598,gcam-v7.0 +gSSP2,Africa_Western,2085,3.94962,gcam-v7.0 +gSSP2,Africa_Western,2090,4.34224,gcam-v7.0 +gSSP2,Africa_Western,2095,4.76806,gcam-v7.0 +gSSP2,Africa_Western,2100,5.22914,gcam-v7.0 +gSSP2,Argentina,1975,0,gcam-v7.0 +gSSP2,Argentina,1990,0,gcam-v7.0 +gSSP2,Argentina,2005,0,gcam-v7.0 +gSSP2,Argentina,2010,0,gcam-v7.0 +gSSP2,Argentina,2015,0,gcam-v7.0 +gSSP2,Argentina,2020,0.945994,gcam-v7.0 +gSSP2,Argentina,2025,1.04484,gcam-v7.0 +gSSP2,Argentina,2030,1.14092,gcam-v7.0 +gSSP2,Argentina,2035,1.23597,gcam-v7.0 +gSSP2,Argentina,2040,1.33314,gcam-v7.0 +gSSP2,Argentina,2045,1.43766,gcam-v7.0 +gSSP2,Argentina,2050,1.54113,gcam-v7.0 +gSSP2,Argentina,2055,1.65222,gcam-v7.0 +gSSP2,Argentina,2060,1.7699,gcam-v7.0 +gSSP2,Argentina,2065,1.89045,gcam-v7.0 +gSSP2,Argentina,2070,2.01594,gcam-v7.0 +gSSP2,Argentina,2075,2.14732,gcam-v7.0 +gSSP2,Argentina,2080,2.28516,gcam-v7.0 +gSSP2,Argentina,2085,2.42986,gcam-v7.0 +gSSP2,Argentina,2090,2.58089,gcam-v7.0 +gSSP2,Argentina,2095,2.7407,gcam-v7.0 +gSSP2,Argentina,2100,2.90964,gcam-v7.0 +gSSP2,Australia_NZ,1975,0,gcam-v7.0 +gSSP2,Australia_NZ,1990,0,gcam-v7.0 +gSSP2,Australia_NZ,2005,0,gcam-v7.0 +gSSP2,Australia_NZ,2010,0,gcam-v7.0 +gSSP2,Australia_NZ,2015,0,gcam-v7.0 +gSSP2,Australia_NZ,2020,1.08932,gcam-v7.0 +gSSP2,Australia_NZ,2025,1.16298,gcam-v7.0 +gSSP2,Australia_NZ,2030,1.22939,gcam-v7.0 +gSSP2,Australia_NZ,2035,1.28986,gcam-v7.0 +gSSP2,Australia_NZ,2040,1.35813,gcam-v7.0 +gSSP2,Australia_NZ,2045,1.42523,gcam-v7.0 +gSSP2,Australia_NZ,2050,1.49861,gcam-v7.0 +gSSP2,Australia_NZ,2055,1.58115,gcam-v7.0 +gSSP2,Australia_NZ,2060,1.66771,gcam-v7.0 +gSSP2,Australia_NZ,2065,1.7583,gcam-v7.0 +gSSP2,Australia_NZ,2070,1.85392,gcam-v7.0 +gSSP2,Australia_NZ,2075,1.96031,gcam-v7.0 +gSSP2,Australia_NZ,2080,2.07619,gcam-v7.0 +gSSP2,Australia_NZ,2085,2.20319,gcam-v7.0 +gSSP2,Australia_NZ,2090,2.33975,gcam-v7.0 +gSSP2,Australia_NZ,2095,2.48355,gcam-v7.0 +gSSP2,Australia_NZ,2100,2.6355,gcam-v7.0 +gSSP2,Brazil,1975,0,gcam-v7.0 +gSSP2,Brazil,1990,0,gcam-v7.0 +gSSP2,Brazil,2005,0,gcam-v7.0 +gSSP2,Brazil,2010,0,gcam-v7.0 +gSSP2,Brazil,2015,0,gcam-v7.0 +gSSP2,Brazil,2020,0.998072,gcam-v7.0 +gSSP2,Brazil,2025,1.07809,gcam-v7.0 +gSSP2,Brazil,2030,1.19155,gcam-v7.0 +gSSP2,Brazil,2035,1.29739,gcam-v7.0 +gSSP2,Brazil,2040,1.40794,gcam-v7.0 +gSSP2,Brazil,2045,1.52164,gcam-v7.0 +gSSP2,Brazil,2050,1.6427,gcam-v7.0 +gSSP2,Brazil,2055,1.77032,gcam-v7.0 +gSSP2,Brazil,2060,1.90489,gcam-v7.0 +gSSP2,Brazil,2065,2.05362,gcam-v7.0 +gSSP2,Brazil,2070,2.21584,gcam-v7.0 +gSSP2,Brazil,2075,2.37709,gcam-v7.0 +gSSP2,Brazil,2080,2.54789,gcam-v7.0 +gSSP2,Brazil,2085,2.73162,gcam-v7.0 +gSSP2,Brazil,2090,2.92755,gcam-v7.0 +gSSP2,Brazil,2095,3.13389,gcam-v7.0 +gSSP2,Brazil,2100,3.35199,gcam-v7.0 +gSSP2,Canada,1975,0,gcam-v7.0 +gSSP2,Canada,1990,0,gcam-v7.0 +gSSP2,Canada,2005,0,gcam-v7.0 +gSSP2,Canada,2010,0,gcam-v7.0 +gSSP2,Canada,2015,0,gcam-v7.0 +gSSP2,Canada,2020,1.0445,gcam-v7.0 +gSSP2,Canada,2025,1.10272,gcam-v7.0 +gSSP2,Canada,2030,1.16759,gcam-v7.0 +gSSP2,Canada,2035,1.23113,gcam-v7.0 +gSSP2,Canada,2040,1.28878,gcam-v7.0 +gSSP2,Canada,2045,1.34782,gcam-v7.0 +gSSP2,Canada,2050,1.41874,gcam-v7.0 +gSSP2,Canada,2055,1.51288,gcam-v7.0 +gSSP2,Canada,2060,1.61503,gcam-v7.0 +gSSP2,Canada,2065,1.71694,gcam-v7.0 +gSSP2,Canada,2070,1.81791,gcam-v7.0 +gSSP2,Canada,2075,1.931,gcam-v7.0 +gSSP2,Canada,2080,2.05598,gcam-v7.0 +gSSP2,Canada,2085,2.1941,gcam-v7.0 +gSSP2,Canada,2090,2.34466,gcam-v7.0 +gSSP2,Canada,2095,2.50341,gcam-v7.0 +gSSP2,Canada,2100,2.67073,gcam-v7.0 +gSSP2,Central America and Caribbean,1975,0,gcam-v7.0 +gSSP2,Central America and Caribbean,1990,0,gcam-v7.0 +gSSP2,Central America and Caribbean,2005,0,gcam-v7.0 +gSSP2,Central America and Caribbean,2010,0,gcam-v7.0 +gSSP2,Central America and Caribbean,2015,0,gcam-v7.0 +gSSP2,Central America and Caribbean,2020,1.04248,gcam-v7.0 +gSSP2,Central America and Caribbean,2025,1.11066,gcam-v7.0 +gSSP2,Central America and Caribbean,2030,1.20777,gcam-v7.0 +gSSP2,Central America and Caribbean,2035,1.30566,gcam-v7.0 +gSSP2,Central America and Caribbean,2040,1.401,gcam-v7.0 +gSSP2,Central America and Caribbean,2045,1.48954,gcam-v7.0 +gSSP2,Central America and Caribbean,2050,1.57832,gcam-v7.0 +gSSP2,Central America and Caribbean,2055,1.67583,gcam-v7.0 +gSSP2,Central America and Caribbean,2060,1.78297,gcam-v7.0 +gSSP2,Central America and Caribbean,2065,1.89947,gcam-v7.0 +gSSP2,Central America and Caribbean,2070,2.0274,gcam-v7.0 +gSSP2,Central America and Caribbean,2075,2.16626,gcam-v7.0 +gSSP2,Central America and Caribbean,2080,2.31707,gcam-v7.0 +gSSP2,Central America and Caribbean,2085,2.48072,gcam-v7.0 +gSSP2,Central America and Caribbean,2090,2.65719,gcam-v7.0 +gSSP2,Central America and Caribbean,2095,2.84654,gcam-v7.0 +gSSP2,Central America and Caribbean,2100,3.04996,gcam-v7.0 +gSSP2,Central Asia,1975,0,gcam-v7.0 +gSSP2,Central Asia,1990,0,gcam-v7.0 +gSSP2,Central Asia,2005,0,gcam-v7.0 +gSSP2,Central Asia,2010,0,gcam-v7.0 +gSSP2,Central Asia,2015,0,gcam-v7.0 +gSSP2,Central Asia,2020,1.09693,gcam-v7.0 +gSSP2,Central Asia,2025,1.26451,gcam-v7.0 +gSSP2,Central Asia,2030,1.43748,gcam-v7.0 +gSSP2,Central Asia,2035,1.59446,gcam-v7.0 +gSSP2,Central Asia,2040,1.75032,gcam-v7.0 +gSSP2,Central Asia,2045,1.89267,gcam-v7.0 +gSSP2,Central Asia,2050,2.01587,gcam-v7.0 +gSSP2,Central Asia,2055,2.14315,gcam-v7.0 +gSSP2,Central Asia,2060,2.2798,gcam-v7.0 +gSSP2,Central Asia,2065,2.42837,gcam-v7.0 +gSSP2,Central Asia,2070,2.58608,gcam-v7.0 +gSSP2,Central Asia,2075,2.7512,gcam-v7.0 +gSSP2,Central Asia,2080,2.92818,gcam-v7.0 +gSSP2,Central Asia,2085,3.11548,gcam-v7.0 +gSSP2,Central Asia,2090,3.31116,gcam-v7.0 +gSSP2,Central Asia,2095,3.51242,gcam-v7.0 +gSSP2,Central Asia,2100,3.70535,gcam-v7.0 +gSSP2,China,1975,0,gcam-v7.0 +gSSP2,China,1990,0,gcam-v7.0 +gSSP2,China,2005,0,gcam-v7.0 +gSSP2,China,2010,0,gcam-v7.0 +gSSP2,China,2015,0,gcam-v7.0 +gSSP2,China,2020,1.288,gcam-v7.0 +gSSP2,China,2025,1.57711,gcam-v7.0 +gSSP2,China,2030,1.85862,gcam-v7.0 +gSSP2,China,2035,2.13197,gcam-v7.0 +gSSP2,China,2040,2.40054,gcam-v7.0 +gSSP2,China,2045,2.62543,gcam-v7.0 +gSSP2,China,2050,2.84783,gcam-v7.0 +gSSP2,China,2055,3.10058,gcam-v7.0 +gSSP2,China,2060,3.34556,gcam-v7.0 +gSSP2,China,2065,3.5879,gcam-v7.0 +gSSP2,China,2070,3.81675,gcam-v7.0 +gSSP2,China,2075,4.04743,gcam-v7.0 +gSSP2,China,2080,4.26397,gcam-v7.0 +gSSP2,China,2085,4.48017,gcam-v7.0 +gSSP2,China,2090,4.68992,gcam-v7.0 +gSSP2,China,2095,4.89468,gcam-v7.0 +gSSP2,China,2100,5.09294,gcam-v7.0 +gSSP2,Colombia,1975,0,gcam-v7.0 +gSSP2,Colombia,1990,0,gcam-v7.0 +gSSP2,Colombia,2005,0,gcam-v7.0 +gSSP2,Colombia,2010,0,gcam-v7.0 +gSSP2,Colombia,2015,0,gcam-v7.0 +gSSP2,Colombia,2020,1.06701,gcam-v7.0 +gSSP2,Colombia,2025,1.17302,gcam-v7.0 +gSSP2,Colombia,2030,1.27868,gcam-v7.0 +gSSP2,Colombia,2035,1.39287,gcam-v7.0 +gSSP2,Colombia,2040,1.50408,gcam-v7.0 +gSSP2,Colombia,2045,1.62448,gcam-v7.0 +gSSP2,Colombia,2050,1.75791,gcam-v7.0 +gSSP2,Colombia,2055,1.90234,gcam-v7.0 +gSSP2,Colombia,2060,2.061,gcam-v7.0 +gSSP2,Colombia,2065,2.23148,gcam-v7.0 +gSSP2,Colombia,2070,2.41429,gcam-v7.0 +gSSP2,Colombia,2075,2.61124,gcam-v7.0 +gSSP2,Colombia,2080,2.82031,gcam-v7.0 +gSSP2,Colombia,2085,3.04424,gcam-v7.0 +gSSP2,Colombia,2090,3.28226,gcam-v7.0 +gSSP2,Colombia,2095,3.5335,gcam-v7.0 +gSSP2,Colombia,2100,3.79888,gcam-v7.0 +gSSP2,EU-12,1975,0,gcam-v7.0 +gSSP2,EU-12,1990,0,gcam-v7.0 +gSSP2,EU-12,2005,0,gcam-v7.0 +gSSP2,EU-12,2010,0,gcam-v7.0 +gSSP2,EU-12,2015,0,gcam-v7.0 +gSSP2,EU-12,2020,1.15581,gcam-v7.0 +gSSP2,EU-12,2025,1.29347,gcam-v7.0 +gSSP2,EU-12,2030,1.40921,gcam-v7.0 +gSSP2,EU-12,2035,1.52979,gcam-v7.0 +gSSP2,EU-12,2040,1.65914,gcam-v7.0 +gSSP2,EU-12,2045,1.80006,gcam-v7.0 +gSSP2,EU-12,2050,1.94706,gcam-v7.0 +gSSP2,EU-12,2055,2.10104,gcam-v7.0 +gSSP2,EU-12,2060,2.25229,gcam-v7.0 +gSSP2,EU-12,2065,2.39892,gcam-v7.0 +gSSP2,EU-12,2070,2.54613,gcam-v7.0 +gSSP2,EU-12,2075,2.71001,gcam-v7.0 +gSSP2,EU-12,2080,2.888,gcam-v7.0 +gSSP2,EU-12,2085,3.07563,gcam-v7.0 +gSSP2,EU-12,2090,3.26999,gcam-v7.0 +gSSP2,EU-12,2095,3.46873,gcam-v7.0 +gSSP2,EU-12,2100,3.67098,gcam-v7.0 +gSSP2,EU-15,1975,0,gcam-v7.0 +gSSP2,EU-15,1990,0,gcam-v7.0 +gSSP2,EU-15,2005,0,gcam-v7.0 +gSSP2,EU-15,2010,0,gcam-v7.0 +gSSP2,EU-15,2015,0,gcam-v7.0 +gSSP2,EU-15,2020,1.07474,gcam-v7.0 +gSSP2,EU-15,2025,1.14183,gcam-v7.0 +gSSP2,EU-15,2030,1.22127,gcam-v7.0 +gSSP2,EU-15,2035,1.31004,gcam-v7.0 +gSSP2,EU-15,2040,1.40263,gcam-v7.0 +gSSP2,EU-15,2045,1.49402,gcam-v7.0 +gSSP2,EU-15,2050,1.58521,gcam-v7.0 +gSSP2,EU-15,2055,1.68115,gcam-v7.0 +gSSP2,EU-15,2060,1.77758,gcam-v7.0 +gSSP2,EU-15,2065,1.87565,gcam-v7.0 +gSSP2,EU-15,2070,1.97858,gcam-v7.0 +gSSP2,EU-15,2075,2.09167,gcam-v7.0 +gSSP2,EU-15,2080,2.21101,gcam-v7.0 +gSSP2,EU-15,2085,2.33705,gcam-v7.0 +gSSP2,EU-15,2090,2.46938,gcam-v7.0 +gSSP2,EU-15,2095,2.60865,gcam-v7.0 +gSSP2,EU-15,2100,2.75659,gcam-v7.0 +gSSP2,Europe_Eastern,1975,0,gcam-v7.0 +gSSP2,Europe_Eastern,1990,0,gcam-v7.0 +gSSP2,Europe_Eastern,2005,0,gcam-v7.0 +gSSP2,Europe_Eastern,2010,0,gcam-v7.0 +gSSP2,Europe_Eastern,2015,0,gcam-v7.0 +gSSP2,Europe_Eastern,2020,1.00995,gcam-v7.0 +gSSP2,Europe_Eastern,2025,1.10812,gcam-v7.0 +gSSP2,Europe_Eastern,2030,1.20475,gcam-v7.0 +gSSP2,Europe_Eastern,2035,1.29538,gcam-v7.0 +gSSP2,Europe_Eastern,2040,1.37459,gcam-v7.0 +gSSP2,Europe_Eastern,2045,1.44896,gcam-v7.0 +gSSP2,Europe_Eastern,2050,1.53873,gcam-v7.0 +gSSP2,Europe_Eastern,2055,1.63712,gcam-v7.0 +gSSP2,Europe_Eastern,2060,1.74659,gcam-v7.0 +gSSP2,Europe_Eastern,2065,1.87515,gcam-v7.0 +gSSP2,Europe_Eastern,2070,2.02533,gcam-v7.0 +gSSP2,Europe_Eastern,2075,2.2533,gcam-v7.0 +gSSP2,Europe_Eastern,2080,2.41921,gcam-v7.0 +gSSP2,Europe_Eastern,2085,2.59662,gcam-v7.0 +gSSP2,Europe_Eastern,2090,2.7799,gcam-v7.0 +gSSP2,Europe_Eastern,2095,2.96483,gcam-v7.0 +gSSP2,Europe_Eastern,2100,3.1525,gcam-v7.0 +gSSP2,Europe_Non_EU,1975,0,gcam-v7.0 +gSSP2,Europe_Non_EU,1990,0,gcam-v7.0 +gSSP2,Europe_Non_EU,2005,0,gcam-v7.0 +gSSP2,Europe_Non_EU,2010,0,gcam-v7.0 +gSSP2,Europe_Non_EU,2015,0,gcam-v7.0 +gSSP2,Europe_Non_EU,2020,1.05753,gcam-v7.0 +gSSP2,Europe_Non_EU,2025,1.13864,gcam-v7.0 +gSSP2,Europe_Non_EU,2030,1.22696,gcam-v7.0 +gSSP2,Europe_Non_EU,2035,1.31136,gcam-v7.0 +gSSP2,Europe_Non_EU,2040,1.39991,gcam-v7.0 +gSSP2,Europe_Non_EU,2045,1.48862,gcam-v7.0 +gSSP2,Europe_Non_EU,2050,1.57951,gcam-v7.0 +gSSP2,Europe_Non_EU,2055,1.67282,gcam-v7.0 +gSSP2,Europe_Non_EU,2060,1.77236,gcam-v7.0 +gSSP2,Europe_Non_EU,2065,1.87728,gcam-v7.0 +gSSP2,Europe_Non_EU,2070,1.98358,gcam-v7.0 +gSSP2,Europe_Non_EU,2075,2.09606,gcam-v7.0 +gSSP2,Europe_Non_EU,2080,2.21374,gcam-v7.0 +gSSP2,Europe_Non_EU,2085,2.33762,gcam-v7.0 +gSSP2,Europe_Non_EU,2090,2.46812,gcam-v7.0 +gSSP2,Europe_Non_EU,2095,2.60615,gcam-v7.0 +gSSP2,Europe_Non_EU,2100,2.75103,gcam-v7.0 +gSSP2,European Free Trade Association,1975,0,gcam-v7.0 +gSSP2,European Free Trade Association,1990,0,gcam-v7.0 +gSSP2,European Free Trade Association,2005,0,gcam-v7.0 +gSSP2,European Free Trade Association,2010,0,gcam-v7.0 +gSSP2,European Free Trade Association,2015,0,gcam-v7.0 +gSSP2,European Free Trade Association,2020,1.0608,gcam-v7.0 +gSSP2,European Free Trade Association,2025,1.13534,gcam-v7.0 +gSSP2,European Free Trade Association,2030,1.21651,gcam-v7.0 +gSSP2,European Free Trade Association,2035,1.29971,gcam-v7.0 +gSSP2,European Free Trade Association,2040,1.38606,gcam-v7.0 +gSSP2,European Free Trade Association,2045,1.46542,gcam-v7.0 +gSSP2,European Free Trade Association,2050,1.55552,gcam-v7.0 +gSSP2,European Free Trade Association,2055,1.65693,gcam-v7.0 +gSSP2,European Free Trade Association,2060,1.76624,gcam-v7.0 +gSSP2,European Free Trade Association,2065,1.87805,gcam-v7.0 +gSSP2,European Free Trade Association,2070,1.99232,gcam-v7.0 +gSSP2,European Free Trade Association,2075,2.11554,gcam-v7.0 +gSSP2,European Free Trade Association,2080,2.25001,gcam-v7.0 +gSSP2,European Free Trade Association,2085,2.39711,gcam-v7.0 +gSSP2,European Free Trade Association,2090,2.55532,gcam-v7.0 +gSSP2,European Free Trade Association,2095,2.7219,gcam-v7.0 +gSSP2,European Free Trade Association,2100,2.89521,gcam-v7.0 +gSSP2,India,1975,0,gcam-v7.0 +gSSP2,India,1990,0,gcam-v7.0 +gSSP2,India,2005,0,gcam-v7.0 +gSSP2,India,2010,0,gcam-v7.0 +gSSP2,India,2015,0,gcam-v7.0 +gSSP2,India,2020,1.22682,gcam-v7.0 +gSSP2,India,2025,1.47594,gcam-v7.0 +gSSP2,India,2030,1.64003,gcam-v7.0 +gSSP2,India,2035,1.7882,gcam-v7.0 +gSSP2,India,2040,1.94576,gcam-v7.0 +gSSP2,India,2045,2.11251,gcam-v7.0 +gSSP2,India,2050,2.29498,gcam-v7.0 +gSSP2,India,2055,2.4992,gcam-v7.0 +gSSP2,India,2060,2.72483,gcam-v7.0 +gSSP2,India,2065,2.97014,gcam-v7.0 +gSSP2,India,2070,3.23337,gcam-v7.0 +gSSP2,India,2075,3.51351,gcam-v7.0 +gSSP2,India,2080,3.80809,gcam-v7.0 +gSSP2,India,2085,4.11603,gcam-v7.0 +gSSP2,India,2090,4.43687,gcam-v7.0 +gSSP2,India,2095,4.77078,gcam-v7.0 +gSSP2,India,2100,5.11875,gcam-v7.0 +gSSP2,Indonesia,1975,0,gcam-v7.0 +gSSP2,Indonesia,1990,0,gcam-v7.0 +gSSP2,Indonesia,2005,0,gcam-v7.0 +gSSP2,Indonesia,2010,0,gcam-v7.0 +gSSP2,Indonesia,2015,0,gcam-v7.0 +gSSP2,Indonesia,2020,1.14718,gcam-v7.0 +gSSP2,Indonesia,2025,1.34218,gcam-v7.0 +gSSP2,Indonesia,2030,1.55757,gcam-v7.0 +gSSP2,Indonesia,2035,1.76143,gcam-v7.0 +gSSP2,Indonesia,2040,1.97481,gcam-v7.0 +gSSP2,Indonesia,2045,2.19081,gcam-v7.0 +gSSP2,Indonesia,2050,2.41832,gcam-v7.0 +gSSP2,Indonesia,2055,2.65592,gcam-v7.0 +gSSP2,Indonesia,2060,2.90698,gcam-v7.0 +gSSP2,Indonesia,2065,3.17088,gcam-v7.0 +gSSP2,Indonesia,2070,3.46006,gcam-v7.0 +gSSP2,Indonesia,2075,3.76511,gcam-v7.0 +gSSP2,Indonesia,2080,4.07785,gcam-v7.0 +gSSP2,Indonesia,2085,4.4039,gcam-v7.0 +gSSP2,Indonesia,2090,4.74235,gcam-v7.0 +gSSP2,Indonesia,2095,5.09161,gcam-v7.0 +gSSP2,Indonesia,2100,5.45224,gcam-v7.0 +gSSP2,Japan,1975,0,gcam-v7.0 +gSSP2,Japan,1990,0,gcam-v7.0 +gSSP2,Japan,2005,0,gcam-v7.0 +gSSP2,Japan,2010,0,gcam-v7.0 +gSSP2,Japan,2015,0,gcam-v7.0 +gSSP2,Japan,2020,1.0554,gcam-v7.0 +gSSP2,Japan,2025,1.09482,gcam-v7.0 +gSSP2,Japan,2030,1.15906,gcam-v7.0 +gSSP2,Japan,2035,1.22395,gcam-v7.0 +gSSP2,Japan,2040,1.30795,gcam-v7.0 +gSSP2,Japan,2045,1.38661,gcam-v7.0 +gSSP2,Japan,2050,1.46255,gcam-v7.0 +gSSP2,Japan,2055,1.54053,gcam-v7.0 +gSSP2,Japan,2060,1.61969,gcam-v7.0 +gSSP2,Japan,2065,1.70252,gcam-v7.0 +gSSP2,Japan,2070,1.78961,gcam-v7.0 +gSSP2,Japan,2075,1.88247,gcam-v7.0 +gSSP2,Japan,2080,1.98135,gcam-v7.0 +gSSP2,Japan,2085,2.08067,gcam-v7.0 +gSSP2,Japan,2090,2.18168,gcam-v7.0 +gSSP2,Japan,2095,2.28667,gcam-v7.0 +gSSP2,Japan,2100,2.39783,gcam-v7.0 +gSSP2,Mexico,1975,0,gcam-v7.0 +gSSP2,Mexico,1990,0,gcam-v7.0 +gSSP2,Mexico,2005,0,gcam-v7.0 +gSSP2,Mexico,2010,0,gcam-v7.0 +gSSP2,Mexico,2015,0,gcam-v7.0 +gSSP2,Mexico,2020,1.00955,gcam-v7.0 +gSSP2,Mexico,2025,1.07852,gcam-v7.0 +gSSP2,Mexico,2030,1.17508,gcam-v7.0 +gSSP2,Mexico,2035,1.2821,gcam-v7.0 +gSSP2,Mexico,2040,1.38297,gcam-v7.0 +gSSP2,Mexico,2045,1.4764,gcam-v7.0 +gSSP2,Mexico,2050,1.56296,gcam-v7.0 +gSSP2,Mexico,2055,1.65406,gcam-v7.0 +gSSP2,Mexico,2060,1.75258,gcam-v7.0 +gSSP2,Mexico,2065,1.85374,gcam-v7.0 +gSSP2,Mexico,2070,1.96239,gcam-v7.0 +gSSP2,Mexico,2075,2.07605,gcam-v7.0 +gSSP2,Mexico,2080,2.19785,gcam-v7.0 +gSSP2,Mexico,2085,2.32821,gcam-v7.0 +gSSP2,Mexico,2090,2.46833,gcam-v7.0 +gSSP2,Mexico,2095,2.61686,gcam-v7.0 +gSSP2,Mexico,2100,2.7761,gcam-v7.0 +gSSP2,Middle East,1975,0,gcam-v7.0 +gSSP2,Middle East,1990,0,gcam-v7.0 +gSSP2,Middle East,2005,0,gcam-v7.0 +gSSP2,Middle East,2010,0,gcam-v7.0 +gSSP2,Middle East,2015,0,gcam-v7.0 +gSSP2,Middle East,2020,1.05079,gcam-v7.0 +gSSP2,Middle East,2025,1.10134,gcam-v7.0 +gSSP2,Middle East,2030,1.25056,gcam-v7.0 +gSSP2,Middle East,2035,1.38763,gcam-v7.0 +gSSP2,Middle East,2040,1.52518,gcam-v7.0 +gSSP2,Middle East,2045,1.65557,gcam-v7.0 +gSSP2,Middle East,2050,1.77856,gcam-v7.0 +gSSP2,Middle East,2055,1.88644,gcam-v7.0 +gSSP2,Middle East,2060,1.99132,gcam-v7.0 +gSSP2,Middle East,2065,2.10548,gcam-v7.0 +gSSP2,Middle East,2070,2.23244,gcam-v7.0 +gSSP2,Middle East,2075,2.36923,gcam-v7.0 +gSSP2,Middle East,2080,2.51753,gcam-v7.0 +gSSP2,Middle East,2085,2.676,gcam-v7.0 +gSSP2,Middle East,2090,2.84549,gcam-v7.0 +gSSP2,Middle East,2095,3.03675,gcam-v7.0 +gSSP2,Middle East,2100,3.24828,gcam-v7.0 +gSSP2,Pakistan,1975,0,gcam-v7.0 +gSSP2,Pakistan,1990,0,gcam-v7.0 +gSSP2,Pakistan,2005,0,gcam-v7.0 +gSSP2,Pakistan,2010,0,gcam-v7.0 +gSSP2,Pakistan,2015,0,gcam-v7.0 +gSSP2,Pakistan,2020,1.05648,gcam-v7.0 +gSSP2,Pakistan,2025,1.09237,gcam-v7.0 +gSSP2,Pakistan,2030,1.19913,gcam-v7.0 +gSSP2,Pakistan,2035,1.32045,gcam-v7.0 +gSSP2,Pakistan,2040,1.45443,gcam-v7.0 +gSSP2,Pakistan,2045,1.60165,gcam-v7.0 +gSSP2,Pakistan,2050,1.76695,gcam-v7.0 +gSSP2,Pakistan,2055,1.96568,gcam-v7.0 +gSSP2,Pakistan,2060,2.19093,gcam-v7.0 +gSSP2,Pakistan,2065,2.45142,gcam-v7.0 +gSSP2,Pakistan,2070,2.74455,gcam-v7.0 +gSSP2,Pakistan,2075,3.06739,gcam-v7.0 +gSSP2,Pakistan,2080,3.41746,gcam-v7.0 +gSSP2,Pakistan,2085,3.78862,gcam-v7.0 +gSSP2,Pakistan,2090,4.17918,gcam-v7.0 +gSSP2,Pakistan,2095,4.58622,gcam-v7.0 +gSSP2,Pakistan,2100,5.01106,gcam-v7.0 +gSSP2,Russia,1975,0,gcam-v7.0 +gSSP2,Russia,1990,0,gcam-v7.0 +gSSP2,Russia,2005,0,gcam-v7.0 +gSSP2,Russia,2010,0,gcam-v7.0 +gSSP2,Russia,2015,0,gcam-v7.0 +gSSP2,Russia,2020,1.10012,gcam-v7.0 +gSSP2,Russia,2025,1.20366,gcam-v7.0 +gSSP2,Russia,2030,1.35935,gcam-v7.0 +gSSP2,Russia,2035,1.50974,gcam-v7.0 +gSSP2,Russia,2040,1.65471,gcam-v7.0 +gSSP2,Russia,2045,1.76858,gcam-v7.0 +gSSP2,Russia,2050,1.88002,gcam-v7.0 +gSSP2,Russia,2055,1.99551,gcam-v7.0 +gSSP2,Russia,2060,2.10221,gcam-v7.0 +gSSP2,Russia,2065,2.2071,gcam-v7.0 +gSSP2,Russia,2070,2.324,gcam-v7.0 +gSSP2,Russia,2075,2.45341,gcam-v7.0 +gSSP2,Russia,2080,2.60088,gcam-v7.0 +gSSP2,Russia,2085,2.75467,gcam-v7.0 +gSSP2,Russia,2090,2.91374,gcam-v7.0 +gSSP2,Russia,2095,3.07434,gcam-v7.0 +gSSP2,Russia,2100,3.23569,gcam-v7.0 +gSSP2,South Africa,1975,0,gcam-v7.0 +gSSP2,South Africa,1990,0,gcam-v7.0 +gSSP2,South Africa,2005,0,gcam-v7.0 +gSSP2,South Africa,2010,0,gcam-v7.0 +gSSP2,South Africa,2015,0,gcam-v7.0 +gSSP2,South Africa,2020,0.999268,gcam-v7.0 +gSSP2,South Africa,2025,1.05484,gcam-v7.0 +gSSP2,South Africa,2030,1.17507,gcam-v7.0 +gSSP2,South Africa,2035,1.29168,gcam-v7.0 +gSSP2,South Africa,2040,1.40278,gcam-v7.0 +gSSP2,South Africa,2045,1.50235,gcam-v7.0 +gSSP2,South Africa,2050,1.60218,gcam-v7.0 +gSSP2,South Africa,2055,1.71339,gcam-v7.0 +gSSP2,South Africa,2060,1.83103,gcam-v7.0 +gSSP2,South Africa,2065,1.95427,gcam-v7.0 +gSSP2,South Africa,2070,2.08577,gcam-v7.0 +gSSP2,South Africa,2075,2.22275,gcam-v7.0 +gSSP2,South Africa,2080,2.36643,gcam-v7.0 +gSSP2,South Africa,2085,2.51621,gcam-v7.0 +gSSP2,South Africa,2090,2.67423,gcam-v7.0 +gSSP2,South Africa,2095,2.83952,gcam-v7.0 +gSSP2,South Africa,2100,3.01483,gcam-v7.0 +gSSP2,South America_Northern,1975,0,gcam-v7.0 +gSSP2,South America_Northern,1990,0,gcam-v7.0 +gSSP2,South America_Northern,2005,0,gcam-v7.0 +gSSP2,South America_Northern,2010,0,gcam-v7.0 +gSSP2,South America_Northern,2015,0,gcam-v7.0 +gSSP2,South America_Northern,2020,0.0534873,gcam-v7.0 +gSSP2,South America_Northern,2025,-0.0393436,gcam-v7.0 +gSSP2,South America_Northern,2030,-0.0533743,gcam-v7.0 +gSSP2,South America_Northern,2035,-0.0154336,gcam-v7.0 +gSSP2,South America_Northern,2040,0.0107452,gcam-v7.0 +gSSP2,South America_Northern,2045,0.0989381,gcam-v7.0 +gSSP2,South America_Northern,2050,0.25205,gcam-v7.0 +gSSP2,South America_Northern,2055,0.397462,gcam-v7.0 +gSSP2,South America_Northern,2060,0.516295,gcam-v7.0 +gSSP2,South America_Northern,2065,0.620207,gcam-v7.0 +gSSP2,South America_Northern,2070,0.709604,gcam-v7.0 +gSSP2,South America_Northern,2075,0.791606,gcam-v7.0 +gSSP2,South America_Northern,2080,0.889469,gcam-v7.0 +gSSP2,South America_Northern,2085,0.996632,gcam-v7.0 +gSSP2,South America_Northern,2090,1.11016,gcam-v7.0 +gSSP2,South America_Northern,2095,1.22116,gcam-v7.0 +gSSP2,South America_Northern,2100,1.33333,gcam-v7.0 +gSSP2,South America_Southern,1975,0,gcam-v7.0 +gSSP2,South America_Southern,1990,0,gcam-v7.0 +gSSP2,South America_Southern,2005,0,gcam-v7.0 +gSSP2,South America_Southern,2010,0,gcam-v7.0 +gSSP2,South America_Southern,2015,0,gcam-v7.0 +gSSP2,South America_Southern,2020,1.06703,gcam-v7.0 +gSSP2,South America_Southern,2025,1.16508,gcam-v7.0 +gSSP2,South America_Southern,2030,1.28464,gcam-v7.0 +gSSP2,South America_Southern,2035,1.39545,gcam-v7.0 +gSSP2,South America_Southern,2040,1.5107,gcam-v7.0 +gSSP2,South America_Southern,2045,1.62921,gcam-v7.0 +gSSP2,South America_Southern,2050,1.75451,gcam-v7.0 +gSSP2,South America_Southern,2055,1.89067,gcam-v7.0 +gSSP2,South America_Southern,2060,2.04046,gcam-v7.0 +gSSP2,South America_Southern,2065,2.20191,gcam-v7.0 +gSSP2,South America_Southern,2070,2.37533,gcam-v7.0 +gSSP2,South America_Southern,2075,2.55843,gcam-v7.0 +gSSP2,South America_Southern,2080,2.75102,gcam-v7.0 +gSSP2,South America_Southern,2085,2.95388,gcam-v7.0 +gSSP2,South America_Southern,2090,3.16752,gcam-v7.0 +gSSP2,South America_Southern,2095,3.3917,gcam-v7.0 +gSSP2,South America_Southern,2100,3.62726,gcam-v7.0 +gSSP2,South Asia,1975,0,gcam-v7.0 +gSSP2,South Asia,1990,0,gcam-v7.0 +gSSP2,South Asia,2005,0,gcam-v7.0 +gSSP2,South Asia,2010,0,gcam-v7.0 +gSSP2,South Asia,2015,0,gcam-v7.0 +gSSP2,South Asia,2020,1.12457,gcam-v7.0 +gSSP2,South Asia,2025,1.28975,gcam-v7.0 +gSSP2,South Asia,2030,1.3946,gcam-v7.0 +gSSP2,South Asia,2035,1.43552,gcam-v7.0 +gSSP2,South Asia,2040,1.45536,gcam-v7.0 +gSSP2,South Asia,2045,1.46434,gcam-v7.0 +gSSP2,South Asia,2050,1.46651,gcam-v7.0 +gSSP2,South Asia,2055,1.4723,gcam-v7.0 +gSSP2,South Asia,2060,1.48551,gcam-v7.0 +gSSP2,South Asia,2065,1.50604,gcam-v7.0 +gSSP2,South Asia,2070,1.53384,gcam-v7.0 +gSSP2,South Asia,2075,1.5659,gcam-v7.0 +gSSP2,South Asia,2080,1.60245,gcam-v7.0 +gSSP2,South Asia,2085,1.64438,gcam-v7.0 +gSSP2,South Asia,2090,1.69207,gcam-v7.0 +gSSP2,South Asia,2095,1.74539,gcam-v7.0 +gSSP2,South Asia,2100,1.80337,gcam-v7.0 +gSSP2,South Korea,1975,0,gcam-v7.0 +gSSP2,South Korea,1990,0,gcam-v7.0 +gSSP2,South Korea,2005,0,gcam-v7.0 +gSSP2,South Korea,2010,0,gcam-v7.0 +gSSP2,South Korea,2015,0,gcam-v7.0 +gSSP2,South Korea,2020,1.09168,gcam-v7.0 +gSSP2,South Korea,2025,1.2183,gcam-v7.0 +gSSP2,South Korea,2030,1.35424,gcam-v7.0 +gSSP2,South Korea,2035,1.48062,gcam-v7.0 +gSSP2,South Korea,2040,1.60757,gcam-v7.0 +gSSP2,South Korea,2045,1.719,gcam-v7.0 +gSSP2,South Korea,2050,1.82652,gcam-v7.0 +gSSP2,South Korea,2055,1.92675,gcam-v7.0 +gSSP2,South Korea,2060,2.03738,gcam-v7.0 +gSSP2,South Korea,2065,2.14664,gcam-v7.0 +gSSP2,South Korea,2070,2.23823,gcam-v7.0 +gSSP2,South Korea,2075,2.33229,gcam-v7.0 +gSSP2,South Korea,2080,2.41906,gcam-v7.0 +gSSP2,South Korea,2085,2.50549,gcam-v7.0 +gSSP2,South Korea,2090,2.59517,gcam-v7.0 +gSSP2,South Korea,2095,2.6891,gcam-v7.0 +gSSP2,South Korea,2100,2.78235,gcam-v7.0 +gSSP2,Southeast Asia,1975,0,gcam-v7.0 +gSSP2,Southeast Asia,1990,0,gcam-v7.0 +gSSP2,Southeast Asia,2005,0,gcam-v7.0 +gSSP2,Southeast Asia,2010,0,gcam-v7.0 +gSSP2,Southeast Asia,2015,0,gcam-v7.0 +gSSP2,Southeast Asia,2020,1.13414,gcam-v7.0 +gSSP2,Southeast Asia,2025,1.28912,gcam-v7.0 +gSSP2,Southeast Asia,2030,1.41724,gcam-v7.0 +gSSP2,Southeast Asia,2035,1.51243,gcam-v7.0 +gSSP2,Southeast Asia,2040,1.61287,gcam-v7.0 +gSSP2,Southeast Asia,2045,1.70608,gcam-v7.0 +gSSP2,Southeast Asia,2050,1.79859,gcam-v7.0 +gSSP2,Southeast Asia,2055,1.90277,gcam-v7.0 +gSSP2,Southeast Asia,2060,2.01624,gcam-v7.0 +gSSP2,Southeast Asia,2065,2.13551,gcam-v7.0 +gSSP2,Southeast Asia,2070,2.26471,gcam-v7.0 +gSSP2,Southeast Asia,2075,2.4023,gcam-v7.0 +gSSP2,Southeast Asia,2080,2.54774,gcam-v7.0 +gSSP2,Southeast Asia,2085,2.70053,gcam-v7.0 +gSSP2,Southeast Asia,2090,2.8599,gcam-v7.0 +gSSP2,Southeast Asia,2095,3.02638,gcam-v7.0 +gSSP2,Southeast Asia,2100,3.20055,gcam-v7.0 +gSSP2,Taiwan,1975,0,gcam-v7.0 +gSSP2,Taiwan,1990,0,gcam-v7.0 +gSSP2,Taiwan,2005,0,gcam-v7.0 +gSSP2,Taiwan,2010,0,gcam-v7.0 +gSSP2,Taiwan,2015,0,gcam-v7.0 +gSSP2,Taiwan,2020,1.09306,gcam-v7.0 +gSSP2,Taiwan,2025,1.18133,gcam-v7.0 +gSSP2,Taiwan,2030,1.25058,gcam-v7.0 +gSSP2,Taiwan,2035,1.31132,gcam-v7.0 +gSSP2,Taiwan,2040,1.36799,gcam-v7.0 +gSSP2,Taiwan,2045,1.40824,gcam-v7.0 +gSSP2,Taiwan,2050,1.42992,gcam-v7.0 +gSSP2,Taiwan,2055,1.44082,gcam-v7.0 +gSSP2,Taiwan,2060,1.45494,gcam-v7.0 +gSSP2,Taiwan,2065,1.51609,gcam-v7.0 +gSSP2,Taiwan,2070,1.57728,gcam-v7.0 +gSSP2,Taiwan,2075,1.6306,gcam-v7.0 +gSSP2,Taiwan,2080,1.6748,gcam-v7.0 +gSSP2,Taiwan,2085,1.70688,gcam-v7.0 +gSSP2,Taiwan,2090,1.72969,gcam-v7.0 +gSSP2,Taiwan,2095,1.74499,gcam-v7.0 +gSSP2,Taiwan,2100,1.75482,gcam-v7.0 +gSSP2,USA,1975,0,gcam-v7.0 +gSSP2,USA,1990,0,gcam-v7.0 +gSSP2,USA,2005,0,gcam-v7.0 +gSSP2,USA,2010,0,gcam-v7.0 +gSSP2,USA,2015,0,gcam-v7.0 +gSSP2,USA,2020,1.06836,gcam-v7.0 +gSSP2,USA,2025,1.12444,gcam-v7.0 +gSSP2,USA,2030,1.19406,gcam-v7.0 +gSSP2,USA,2035,1.24777,gcam-v7.0 +gSSP2,USA,2040,1.29387,gcam-v7.0 +gSSP2,USA,2045,1.3311,gcam-v7.0 +gSSP2,USA,2050,1.37034,gcam-v7.0 +gSSP2,USA,2055,1.41403,gcam-v7.0 +gSSP2,USA,2060,1.46032,gcam-v7.0 +gSSP2,USA,2065,1.50349,gcam-v7.0 +gSSP2,USA,2070,1.55063,gcam-v7.0 +gSSP2,USA,2075,1.60228,gcam-v7.0 +gSSP2,USA,2080,1.65299,gcam-v7.0 +gSSP2,USA,2085,1.70707,gcam-v7.0 +gSSP2,USA,2090,1.76365,gcam-v7.0 +gSSP2,USA,2095,1.82245,gcam-v7.0 +gSSP2,USA,2100,1.8845,gcam-v7.0 +SSP1,Africa_Eastern,1975,0,gcam-v7.0 +SSP1,Africa_Eastern,1990,0,gcam-v7.0 +SSP1,Africa_Eastern,2005,0,gcam-v7.0 +SSP1,Africa_Eastern,2010,0,gcam-v7.0 +SSP1,Africa_Eastern,2015,0,gcam-v7.0 +SSP1,Africa_Eastern,2020,1.18227,gcam-v7.0 +SSP1,Africa_Eastern,2025,1.43166,gcam-v7.0 +SSP1,Africa_Eastern,2030,1.72153,gcam-v7.0 +SSP1,Africa_Eastern,2035,2.03657,gcam-v7.0 +SSP1,Africa_Eastern,2040,2.36287,gcam-v7.0 +SSP1,Africa_Eastern,2045,2.70384,gcam-v7.0 +SSP1,Africa_Eastern,2050,3.0819,gcam-v7.0 +SSP1,Africa_Eastern,2055,3.52067,gcam-v7.0 +SSP1,Africa_Eastern,2060,4.01825,gcam-v7.0 +SSP1,Africa_Eastern,2065,4.57436,gcam-v7.0 +SSP1,Africa_Eastern,2070,5.18845,gcam-v7.0 +SSP1,Africa_Eastern,2075,5.8542,gcam-v7.0 +SSP1,Africa_Eastern,2080,6.57222,gcam-v7.0 +SSP1,Africa_Eastern,2085,7.33787,gcam-v7.0 +SSP1,Africa_Eastern,2090,8.14644,gcam-v7.0 +SSP1,Africa_Eastern,2095,8.99759,gcam-v7.0 +SSP1,Africa_Eastern,2100,9.87987,gcam-v7.0 +SSP1,Africa_Northern,1975,0,gcam-v7.0 +SSP1,Africa_Northern,1990,0,gcam-v7.0 +SSP1,Africa_Northern,2005,0,gcam-v7.0 +SSP1,Africa_Northern,2010,0,gcam-v7.0 +SSP1,Africa_Northern,2015,0,gcam-v7.0 +SSP1,Africa_Northern,2020,1.12209,gcam-v7.0 +SSP1,Africa_Northern,2025,1.32975,gcam-v7.0 +SSP1,Africa_Northern,2030,1.5417,gcam-v7.0 +SSP1,Africa_Northern,2035,1.76416,gcam-v7.0 +SSP1,Africa_Northern,2040,1.99764,gcam-v7.0 +SSP1,Africa_Northern,2045,2.24282,gcam-v7.0 +SSP1,Africa_Northern,2050,2.4948,gcam-v7.0 +SSP1,Africa_Northern,2055,2.75603,gcam-v7.0 +SSP1,Africa_Northern,2060,3.03906,gcam-v7.0 +SSP1,Africa_Northern,2065,3.32747,gcam-v7.0 +SSP1,Africa_Northern,2070,3.61943,gcam-v7.0 +SSP1,Africa_Northern,2075,3.91181,gcam-v7.0 +SSP1,Africa_Northern,2080,4.21087,gcam-v7.0 +SSP1,Africa_Northern,2085,4.5122,gcam-v7.0 +SSP1,Africa_Northern,2090,4.80994,gcam-v7.0 +SSP1,Africa_Northern,2095,5.10081,gcam-v7.0 +SSP1,Africa_Northern,2100,5.39862,gcam-v7.0 +SSP1,Africa_Southern,1975,0,gcam-v7.0 +SSP1,Africa_Southern,1990,0,gcam-v7.0 +SSP1,Africa_Southern,2005,0,gcam-v7.0 +SSP1,Africa_Southern,2010,0,gcam-v7.0 +SSP1,Africa_Southern,2015,0,gcam-v7.0 +SSP1,Africa_Southern,2020,1.17332,gcam-v7.0 +SSP1,Africa_Southern,2025,1.42311,gcam-v7.0 +SSP1,Africa_Southern,2030,1.70723,gcam-v7.0 +SSP1,Africa_Southern,2035,2.03913,gcam-v7.0 +SSP1,Africa_Southern,2040,2.44461,gcam-v7.0 +SSP1,Africa_Southern,2045,2.91729,gcam-v7.0 +SSP1,Africa_Southern,2050,3.45008,gcam-v7.0 +SSP1,Africa_Southern,2055,4.05076,gcam-v7.0 +SSP1,Africa_Southern,2060,4.71451,gcam-v7.0 +SSP1,Africa_Southern,2065,5.45254,gcam-v7.0 +SSP1,Africa_Southern,2070,6.27882,gcam-v7.0 +SSP1,Africa_Southern,2075,7.1769,gcam-v7.0 +SSP1,Africa_Southern,2080,8.15167,gcam-v7.0 +SSP1,Africa_Southern,2085,9.19646,gcam-v7.0 +SSP1,Africa_Southern,2090,10.3044,gcam-v7.0 +SSP1,Africa_Southern,2095,11.4734,gcam-v7.0 +SSP1,Africa_Southern,2100,12.7047,gcam-v7.0 +SSP1,Africa_Western,1975,0,gcam-v7.0 +SSP1,Africa_Western,1990,0,gcam-v7.0 +SSP1,Africa_Western,2005,0,gcam-v7.0 +SSP1,Africa_Western,2010,0,gcam-v7.0 +SSP1,Africa_Western,2015,0,gcam-v7.0 +SSP1,Africa_Western,2020,1.20631,gcam-v7.0 +SSP1,Africa_Western,2025,1.48917,gcam-v7.0 +SSP1,Africa_Western,2030,1.78115,gcam-v7.0 +SSP1,Africa_Western,2035,2.11125,gcam-v7.0 +SSP1,Africa_Western,2040,2.47421,gcam-v7.0 +SSP1,Africa_Western,2045,2.87185,gcam-v7.0 +SSP1,Africa_Western,2050,3.31504,gcam-v7.0 +SSP1,Africa_Western,2055,3.80938,gcam-v7.0 +SSP1,Africa_Western,2060,4.3514,gcam-v7.0 +SSP1,Africa_Western,2065,4.94317,gcam-v7.0 +SSP1,Africa_Western,2070,5.58953,gcam-v7.0 +SSP1,Africa_Western,2075,6.28667,gcam-v7.0 +SSP1,Africa_Western,2080,7.04103,gcam-v7.0 +SSP1,Africa_Western,2085,7.84178,gcam-v7.0 +SSP1,Africa_Western,2090,8.68591,gcam-v7.0 +SSP1,Africa_Western,2095,9.57877,gcam-v7.0 +SSP1,Africa_Western,2100,10.5095,gcam-v7.0 +SSP1,Argentina,1975,0,gcam-v7.0 +SSP1,Argentina,1990,0,gcam-v7.0 +SSP1,Argentina,2005,0,gcam-v7.0 +SSP1,Argentina,2010,0,gcam-v7.0 +SSP1,Argentina,2015,0,gcam-v7.0 +SSP1,Argentina,2020,1.0734,gcam-v7.0 +SSP1,Argentina,2025,1.22247,gcam-v7.0 +SSP1,Argentina,2030,1.37609,gcam-v7.0 +SSP1,Argentina,2035,1.5465,gcam-v7.0 +SSP1,Argentina,2040,1.73045,gcam-v7.0 +SSP1,Argentina,2045,1.92336,gcam-v7.0 +SSP1,Argentina,2050,2.10842,gcam-v7.0 +SSP1,Argentina,2055,2.29916,gcam-v7.0 +SSP1,Argentina,2060,2.4959,gcam-v7.0 +SSP1,Argentina,2065,2.69583,gcam-v7.0 +SSP1,Argentina,2070,2.89226,gcam-v7.0 +SSP1,Argentina,2075,3.08912,gcam-v7.0 +SSP1,Argentina,2080,3.29141,gcam-v7.0 +SSP1,Argentina,2085,3.50698,gcam-v7.0 +SSP1,Argentina,2090,3.73475,gcam-v7.0 +SSP1,Argentina,2095,3.97808,gcam-v7.0 +SSP1,Argentina,2100,4.23662,gcam-v7.0 +SSP1,Australia_NZ,1975,0,gcam-v7.0 +SSP1,Australia_NZ,1990,0,gcam-v7.0 +SSP1,Australia_NZ,2005,0,gcam-v7.0 +SSP1,Australia_NZ,2010,0,gcam-v7.0 +SSP1,Australia_NZ,2015,0,gcam-v7.0 +SSP1,Australia_NZ,2020,1.10989,gcam-v7.0 +SSP1,Australia_NZ,2025,1.20803,gcam-v7.0 +SSP1,Australia_NZ,2030,1.30353,gcam-v7.0 +SSP1,Australia_NZ,2035,1.40118,gcam-v7.0 +SSP1,Australia_NZ,2040,1.50754,gcam-v7.0 +SSP1,Australia_NZ,2045,1.61021,gcam-v7.0 +SSP1,Australia_NZ,2050,1.71338,gcam-v7.0 +SSP1,Australia_NZ,2055,1.82714,gcam-v7.0 +SSP1,Australia_NZ,2060,1.94492,gcam-v7.0 +SSP1,Australia_NZ,2065,2.06818,gcam-v7.0 +SSP1,Australia_NZ,2070,2.19925,gcam-v7.0 +SSP1,Australia_NZ,2075,2.34667,gcam-v7.0 +SSP1,Australia_NZ,2080,2.51186,gcam-v7.0 +SSP1,Australia_NZ,2085,2.69149,gcam-v7.0 +SSP1,Australia_NZ,2090,2.88487,gcam-v7.0 +SSP1,Australia_NZ,2095,3.08748,gcam-v7.0 +SSP1,Australia_NZ,2100,3.29906,gcam-v7.0 +SSP1,Brazil,1975,0,gcam-v7.0 +SSP1,Brazil,1990,0,gcam-v7.0 +SSP1,Brazil,2005,0,gcam-v7.0 +SSP1,Brazil,2010,0,gcam-v7.0 +SSP1,Brazil,2015,0,gcam-v7.0 +SSP1,Brazil,2020,1.13445,gcam-v7.0 +SSP1,Brazil,2025,1.30738,gcam-v7.0 +SSP1,Brazil,2030,1.50119,gcam-v7.0 +SSP1,Brazil,2035,1.72156,gcam-v7.0 +SSP1,Brazil,2040,1.9634,gcam-v7.0 +SSP1,Brazil,2045,2.22164,gcam-v7.0 +SSP1,Brazil,2050,2.49403,gcam-v7.0 +SSP1,Brazil,2055,2.77646,gcam-v7.0 +SSP1,Brazil,2060,3.06872,gcam-v7.0 +SSP1,Brazil,2065,3.37906,gcam-v7.0 +SSP1,Brazil,2070,3.70357,gcam-v7.0 +SSP1,Brazil,2075,4.01902,gcam-v7.0 +SSP1,Brazil,2080,4.34794,gcam-v7.0 +SSP1,Brazil,2085,4.69403,gcam-v7.0 +SSP1,Brazil,2090,5.06403,gcam-v7.0 +SSP1,Brazil,2095,5.45371,gcam-v7.0 +SSP1,Brazil,2100,5.86035,gcam-v7.0 +SSP1,Canada,1975,0,gcam-v7.0 +SSP1,Canada,1990,0,gcam-v7.0 +SSP1,Canada,2005,0,gcam-v7.0 +SSP1,Canada,2010,0,gcam-v7.0 +SSP1,Canada,2015,0,gcam-v7.0 +SSP1,Canada,2020,1.04436,gcam-v7.0 +SSP1,Canada,2025,1.1126,gcam-v7.0 +SSP1,Canada,2030,1.17113,gcam-v7.0 +SSP1,Canada,2035,1.23002,gcam-v7.0 +SSP1,Canada,2040,1.29424,gcam-v7.0 +SSP1,Canada,2045,1.3708,gcam-v7.0 +SSP1,Canada,2050,1.4602,gcam-v7.0 +SSP1,Canada,2055,1.57098,gcam-v7.0 +SSP1,Canada,2060,1.69318,gcam-v7.0 +SSP1,Canada,2065,1.82035,gcam-v7.0 +SSP1,Canada,2070,1.95452,gcam-v7.0 +SSP1,Canada,2075,2.09493,gcam-v7.0 +SSP1,Canada,2080,2.24516,gcam-v7.0 +SSP1,Canada,2085,2.41253,gcam-v7.0 +SSP1,Canada,2090,2.5941,gcam-v7.0 +SSP1,Canada,2095,2.78407,gcam-v7.0 +SSP1,Canada,2100,2.98019,gcam-v7.0 +SSP1,Central America and Caribbean,1975,0,gcam-v7.0 +SSP1,Central America and Caribbean,1990,0,gcam-v7.0 +SSP1,Central America and Caribbean,2005,0,gcam-v7.0 +SSP1,Central America and Caribbean,2010,0,gcam-v7.0 +SSP1,Central America and Caribbean,2015,0,gcam-v7.0 +SSP1,Central America and Caribbean,2020,1.08018,gcam-v7.0 +SSP1,Central America and Caribbean,2025,1.20402,gcam-v7.0 +SSP1,Central America and Caribbean,2030,1.35246,gcam-v7.0 +SSP1,Central America and Caribbean,2035,1.51392,gcam-v7.0 +SSP1,Central America and Caribbean,2040,1.67546,gcam-v7.0 +SSP1,Central America and Caribbean,2045,1.82977,gcam-v7.0 +SSP1,Central America and Caribbean,2050,1.98535,gcam-v7.0 +SSP1,Central America and Caribbean,2055,2.15476,gcam-v7.0 +SSP1,Central America and Caribbean,2060,2.33818,gcam-v7.0 +SSP1,Central America and Caribbean,2065,2.53282,gcam-v7.0 +SSP1,Central America and Caribbean,2070,2.73789,gcam-v7.0 +SSP1,Central America and Caribbean,2075,2.95071,gcam-v7.0 +SSP1,Central America and Caribbean,2080,3.17747,gcam-v7.0 +SSP1,Central America and Caribbean,2085,3.41559,gcam-v7.0 +SSP1,Central America and Caribbean,2090,3.66639,gcam-v7.0 +SSP1,Central America and Caribbean,2095,3.93287,gcam-v7.0 +SSP1,Central America and Caribbean,2100,4.21301,gcam-v7.0 +SSP1,Central Asia,1975,0,gcam-v7.0 +SSP1,Central Asia,1990,0,gcam-v7.0 +SSP1,Central Asia,2005,0,gcam-v7.0 +SSP1,Central Asia,2010,0,gcam-v7.0 +SSP1,Central Asia,2015,0,gcam-v7.0 +SSP1,Central Asia,2020,1.13848,gcam-v7.0 +SSP1,Central Asia,2025,1.43041,gcam-v7.0 +SSP1,Central Asia,2030,1.70834,gcam-v7.0 +SSP1,Central Asia,2035,1.99425,gcam-v7.0 +SSP1,Central Asia,2040,2.28881,gcam-v7.0 +SSP1,Central Asia,2045,2.56938,gcam-v7.0 +SSP1,Central Asia,2050,2.82685,gcam-v7.0 +SSP1,Central Asia,2055,3.08259,gcam-v7.0 +SSP1,Central Asia,2060,3.34677,gcam-v7.0 +SSP1,Central Asia,2065,3.62346,gcam-v7.0 +SSP1,Central Asia,2070,3.89399,gcam-v7.0 +SSP1,Central Asia,2075,4.15886,gcam-v7.0 +SSP1,Central Asia,2080,4.43417,gcam-v7.0 +SSP1,Central Asia,2085,4.71356,gcam-v7.0 +SSP1,Central Asia,2090,5.00331,gcam-v7.0 +SSP1,Central Asia,2095,5.30161,gcam-v7.0 +SSP1,Central Asia,2100,5.59636,gcam-v7.0 +SSP1,China,1975,0,gcam-v7.0 +SSP1,China,1990,0,gcam-v7.0 +SSP1,China,2005,0,gcam-v7.0 +SSP1,China,2010,0,gcam-v7.0 +SSP1,China,2015,0,gcam-v7.0 +SSP1,China,2020,1.40417,gcam-v7.0 +SSP1,China,2025,1.84219,gcam-v7.0 +SSP1,China,2030,2.33063,gcam-v7.0 +SSP1,China,2035,2.87206,gcam-v7.0 +SSP1,China,2040,3.40172,gcam-v7.0 +SSP1,China,2045,3.84751,gcam-v7.0 +SSP1,China,2050,4.25511,gcam-v7.0 +SSP1,China,2055,4.67574,gcam-v7.0 +SSP1,China,2060,5.0519,gcam-v7.0 +SSP1,China,2065,5.39963,gcam-v7.0 +SSP1,China,2070,5.70433,gcam-v7.0 +SSP1,China,2075,5.98806,gcam-v7.0 +SSP1,China,2080,6.24393,gcam-v7.0 +SSP1,China,2085,6.48777,gcam-v7.0 +SSP1,China,2090,6.7211,gcam-v7.0 +SSP1,China,2095,6.95593,gcam-v7.0 +SSP1,China,2100,7.19439,gcam-v7.0 +SSP1,Colombia,1975,0,gcam-v7.0 +SSP1,Colombia,1990,0,gcam-v7.0 +SSP1,Colombia,2005,0,gcam-v7.0 +SSP1,Colombia,2010,0,gcam-v7.0 +SSP1,Colombia,2015,0,gcam-v7.0 +SSP1,Colombia,2020,1.13164,gcam-v7.0 +SSP1,Colombia,2025,1.24724,gcam-v7.0 +SSP1,Colombia,2030,1.41617,gcam-v7.0 +SSP1,Colombia,2035,1.61374,gcam-v7.0 +SSP1,Colombia,2040,1.82628,gcam-v7.0 +SSP1,Colombia,2045,2.0497,gcam-v7.0 +SSP1,Colombia,2050,2.27865,gcam-v7.0 +SSP1,Colombia,2055,2.52137,gcam-v7.0 +SSP1,Colombia,2060,2.7785,gcam-v7.0 +SSP1,Colombia,2065,3.04451,gcam-v7.0 +SSP1,Colombia,2070,3.31653,gcam-v7.0 +SSP1,Colombia,2075,3.59655,gcam-v7.0 +SSP1,Colombia,2080,3.88747,gcam-v7.0 +SSP1,Colombia,2085,4.19191,gcam-v7.0 +SSP1,Colombia,2090,4.51606,gcam-v7.0 +SSP1,Colombia,2095,4.85876,gcam-v7.0 +SSP1,Colombia,2100,5.21435,gcam-v7.0 +SSP1,EU-12,1975,0,gcam-v7.0 +SSP1,EU-12,1990,0,gcam-v7.0 +SSP1,EU-12,2005,0,gcam-v7.0 +SSP1,EU-12,2010,0,gcam-v7.0 +SSP1,EU-12,2015,0,gcam-v7.0 +SSP1,EU-12,2020,1.10006,gcam-v7.0 +SSP1,EU-12,2025,1.26591,gcam-v7.0 +SSP1,EU-12,2030,1.42211,gcam-v7.0 +SSP1,EU-12,2035,1.58271,gcam-v7.0 +SSP1,EU-12,2040,1.74431,gcam-v7.0 +SSP1,EU-12,2045,1.90814,gcam-v7.0 +SSP1,EU-12,2050,2.06927,gcam-v7.0 +SSP1,EU-12,2055,2.23601,gcam-v7.0 +SSP1,EU-12,2060,2.39654,gcam-v7.0 +SSP1,EU-12,2065,2.54932,gcam-v7.0 +SSP1,EU-12,2070,2.69781,gcam-v7.0 +SSP1,EU-12,2075,2.85937,gcam-v7.0 +SSP1,EU-12,2080,3.03637,gcam-v7.0 +SSP1,EU-12,2085,3.22544,gcam-v7.0 +SSP1,EU-12,2090,3.42685,gcam-v7.0 +SSP1,EU-12,2095,3.63422,gcam-v7.0 +SSP1,EU-12,2100,3.84536,gcam-v7.0 +SSP1,EU-15,1975,0,gcam-v7.0 +SSP1,EU-15,1990,0,gcam-v7.0 +SSP1,EU-15,2005,0,gcam-v7.0 +SSP1,EU-15,2010,0,gcam-v7.0 +SSP1,EU-15,2015,0,gcam-v7.0 +SSP1,EU-15,2020,1.05426,gcam-v7.0 +SSP1,EU-15,2025,1.13844,gcam-v7.0 +SSP1,EU-15,2030,1.23727,gcam-v7.0 +SSP1,EU-15,2035,1.34933,gcam-v7.0 +SSP1,EU-15,2040,1.4614,gcam-v7.0 +SSP1,EU-15,2045,1.56658,gcam-v7.0 +SSP1,EU-15,2050,1.66575,gcam-v7.0 +SSP1,EU-15,2055,1.76654,gcam-v7.0 +SSP1,EU-15,2060,1.8659,gcam-v7.0 +SSP1,EU-15,2065,1.96753,gcam-v7.0 +SSP1,EU-15,2070,2.07485,gcam-v7.0 +SSP1,EU-15,2075,2.19338,gcam-v7.0 +SSP1,EU-15,2080,2.31875,gcam-v7.0 +SSP1,EU-15,2085,2.4535,gcam-v7.0 +SSP1,EU-15,2090,2.59653,gcam-v7.0 +SSP1,EU-15,2095,2.74734,gcam-v7.0 +SSP1,EU-15,2100,2.90535,gcam-v7.0 +SSP1,Europe_Eastern,1975,0,gcam-v7.0 +SSP1,Europe_Eastern,1990,0,gcam-v7.0 +SSP1,Europe_Eastern,2005,0,gcam-v7.0 +SSP1,Europe_Eastern,2010,0,gcam-v7.0 +SSP1,Europe_Eastern,2015,0,gcam-v7.0 +SSP1,Europe_Eastern,2020,0.973325,gcam-v7.0 +SSP1,Europe_Eastern,2025,1.14166,gcam-v7.0 +SSP1,Europe_Eastern,2030,1.32069,gcam-v7.0 +SSP1,Europe_Eastern,2035,1.51389,gcam-v7.0 +SSP1,Europe_Eastern,2040,1.70727,gcam-v7.0 +SSP1,Europe_Eastern,2045,1.89879,gcam-v7.0 +SSP1,Europe_Eastern,2050,2.09464,gcam-v7.0 +SSP1,Europe_Eastern,2055,2.30338,gcam-v7.0 +SSP1,Europe_Eastern,2060,2.52513,gcam-v7.0 +SSP1,Europe_Eastern,2065,2.76377,gcam-v7.0 +SSP1,Europe_Eastern,2070,3.00936,gcam-v7.0 +SSP1,Europe_Eastern,2075,3.3216,gcam-v7.0 +SSP1,Europe_Eastern,2080,3.56709,gcam-v7.0 +SSP1,Europe_Eastern,2085,3.8239,gcam-v7.0 +SSP1,Europe_Eastern,2090,4.08924,gcam-v7.0 +SSP1,Europe_Eastern,2095,4.36077,gcam-v7.0 +SSP1,Europe_Eastern,2100,4.63719,gcam-v7.0 +SSP1,Europe_Non_EU,1975,0,gcam-v7.0 +SSP1,Europe_Non_EU,1990,0,gcam-v7.0 +SSP1,Europe_Non_EU,2005,0,gcam-v7.0 +SSP1,Europe_Non_EU,2010,0,gcam-v7.0 +SSP1,Europe_Non_EU,2015,0,gcam-v7.0 +SSP1,Europe_Non_EU,2020,1.08934,gcam-v7.0 +SSP1,Europe_Non_EU,2025,1.21247,gcam-v7.0 +SSP1,Europe_Non_EU,2030,1.33775,gcam-v7.0 +SSP1,Europe_Non_EU,2035,1.46666,gcam-v7.0 +SSP1,Europe_Non_EU,2040,1.59874,gcam-v7.0 +SSP1,Europe_Non_EU,2045,1.72702,gcam-v7.0 +SSP1,Europe_Non_EU,2050,1.85208,gcam-v7.0 +SSP1,Europe_Non_EU,2055,1.97677,gcam-v7.0 +SSP1,Europe_Non_EU,2060,2.10462,gcam-v7.0 +SSP1,Europe_Non_EU,2065,2.23653,gcam-v7.0 +SSP1,Europe_Non_EU,2070,2.36346,gcam-v7.0 +SSP1,Europe_Non_EU,2075,2.49074,gcam-v7.0 +SSP1,Europe_Non_EU,2080,2.62417,gcam-v7.0 +SSP1,Europe_Non_EU,2085,2.7652,gcam-v7.0 +SSP1,Europe_Non_EU,2090,2.91505,gcam-v7.0 +SSP1,Europe_Non_EU,2095,3.07454,gcam-v7.0 +SSP1,Europe_Non_EU,2100,3.24527,gcam-v7.0 +SSP1,European Free Trade Association,1975,0,gcam-v7.0 +SSP1,European Free Trade Association,1990,0,gcam-v7.0 +SSP1,European Free Trade Association,2005,0,gcam-v7.0 +SSP1,European Free Trade Association,2010,0,gcam-v7.0 +SSP1,European Free Trade Association,2015,0,gcam-v7.0 +SSP1,European Free Trade Association,2020,1.08208,gcam-v7.0 +SSP1,European Free Trade Association,2025,1.17563,gcam-v7.0 +SSP1,European Free Trade Association,2030,1.28125,gcam-v7.0 +SSP1,European Free Trade Association,2035,1.39085,gcam-v7.0 +SSP1,European Free Trade Association,2040,1.49228,gcam-v7.0 +SSP1,European Free Trade Association,2045,1.58092,gcam-v7.0 +SSP1,European Free Trade Association,2050,1.67547,gcam-v7.0 +SSP1,European Free Trade Association,2055,1.77514,gcam-v7.0 +SSP1,European Free Trade Association,2060,1.87939,gcam-v7.0 +SSP1,European Free Trade Association,2065,1.98688,gcam-v7.0 +SSP1,European Free Trade Association,2070,2.09697,gcam-v7.0 +SSP1,European Free Trade Association,2075,2.21657,gcam-v7.0 +SSP1,European Free Trade Association,2080,2.34883,gcam-v7.0 +SSP1,European Free Trade Association,2085,2.49613,gcam-v7.0 +SSP1,European Free Trade Association,2090,2.65577,gcam-v7.0 +SSP1,European Free Trade Association,2095,2.82574,gcam-v7.0 +SSP1,European Free Trade Association,2100,3.0012,gcam-v7.0 +SSP1,India,1975,0,gcam-v7.0 +SSP1,India,1990,0,gcam-v7.0 +SSP1,India,2005,0,gcam-v7.0 +SSP1,India,2010,0,gcam-v7.0 +SSP1,India,2015,0,gcam-v7.0 +SSP1,India,2020,1.19323,gcam-v7.0 +SSP1,India,2025,1.45565,gcam-v7.0 +SSP1,India,2030,1.73353,gcam-v7.0 +SSP1,India,2035,2.02985,gcam-v7.0 +SSP1,India,2040,2.33943,gcam-v7.0 +SSP1,India,2045,2.66231,gcam-v7.0 +SSP1,India,2050,2.9998,gcam-v7.0 +SSP1,India,2055,3.36554,gcam-v7.0 +SSP1,India,2060,3.7518,gcam-v7.0 +SSP1,India,2065,4.15266,gcam-v7.0 +SSP1,India,2070,4.56226,gcam-v7.0 +SSP1,India,2075,4.9814,gcam-v7.0 +SSP1,India,2080,5.42148,gcam-v7.0 +SSP1,India,2085,5.87321,gcam-v7.0 +SSP1,India,2090,6.32988,gcam-v7.0 +SSP1,India,2095,6.79176,gcam-v7.0 +SSP1,India,2100,7.26439,gcam-v7.0 +SSP1,Indonesia,1975,0,gcam-v7.0 +SSP1,Indonesia,1990,0,gcam-v7.0 +SSP1,Indonesia,2005,0,gcam-v7.0 +SSP1,Indonesia,2010,0,gcam-v7.0 +SSP1,Indonesia,2015,0,gcam-v7.0 +SSP1,Indonesia,2020,1.23649,gcam-v7.0 +SSP1,Indonesia,2025,1.56051,gcam-v7.0 +SSP1,Indonesia,2030,1.92433,gcam-v7.0 +SSP1,Indonesia,2035,2.3397,gcam-v7.0 +SSP1,Indonesia,2040,2.78415,gcam-v7.0 +SSP1,Indonesia,2045,3.23553,gcam-v7.0 +SSP1,Indonesia,2050,3.69792,gcam-v7.0 +SSP1,Indonesia,2055,4.18476,gcam-v7.0 +SSP1,Indonesia,2060,4.69345,gcam-v7.0 +SSP1,Indonesia,2065,5.21694,gcam-v7.0 +SSP1,Indonesia,2070,5.76372,gcam-v7.0 +SSP1,Indonesia,2075,6.31534,gcam-v7.0 +SSP1,Indonesia,2080,6.87615,gcam-v7.0 +SSP1,Indonesia,2085,7.4369,gcam-v7.0 +SSP1,Indonesia,2090,8.00308,gcam-v7.0 +SSP1,Indonesia,2095,8.57238,gcam-v7.0 +SSP1,Indonesia,2100,9.14139,gcam-v7.0 +SSP1,Japan,1975,0,gcam-v7.0 +SSP1,Japan,1990,0,gcam-v7.0 +SSP1,Japan,2005,0,gcam-v7.0 +SSP1,Japan,2010,0,gcam-v7.0 +SSP1,Japan,2015,0,gcam-v7.0 +SSP1,Japan,2020,1.04493,gcam-v7.0 +SSP1,Japan,2025,1.12561,gcam-v7.0 +SSP1,Japan,2030,1.21719,gcam-v7.0 +SSP1,Japan,2035,1.32297,gcam-v7.0 +SSP1,Japan,2040,1.44236,gcam-v7.0 +SSP1,Japan,2045,1.557,gcam-v7.0 +SSP1,Japan,2050,1.66184,gcam-v7.0 +SSP1,Japan,2055,1.76453,gcam-v7.0 +SSP1,Japan,2060,1.86599,gcam-v7.0 +SSP1,Japan,2065,1.97155,gcam-v7.0 +SSP1,Japan,2070,2.07952,gcam-v7.0 +SSP1,Japan,2075,2.19334,gcam-v7.0 +SSP1,Japan,2080,2.31197,gcam-v7.0 +SSP1,Japan,2085,2.43052,gcam-v7.0 +SSP1,Japan,2090,2.55022,gcam-v7.0 +SSP1,Japan,2095,2.67159,gcam-v7.0 +SSP1,Japan,2100,2.79693,gcam-v7.0 +SSP1,Mexico,1975,0,gcam-v7.0 +SSP1,Mexico,1990,0,gcam-v7.0 +SSP1,Mexico,2005,0,gcam-v7.0 +SSP1,Mexico,2010,0,gcam-v7.0 +SSP1,Mexico,2015,0,gcam-v7.0 +SSP1,Mexico,2020,1.04928,gcam-v7.0 +SSP1,Mexico,2025,1.16146,gcam-v7.0 +SSP1,Mexico,2030,1.29782,gcam-v7.0 +SSP1,Mexico,2035,1.46299,gcam-v7.0 +SSP1,Mexico,2040,1.62001,gcam-v7.0 +SSP1,Mexico,2045,1.76902,gcam-v7.0 +SSP1,Mexico,2050,1.90753,gcam-v7.0 +SSP1,Mexico,2055,2.04982,gcam-v7.0 +SSP1,Mexico,2060,2.19909,gcam-v7.0 +SSP1,Mexico,2065,2.34841,gcam-v7.0 +SSP1,Mexico,2070,2.50178,gcam-v7.0 +SSP1,Mexico,2075,2.6552,gcam-v7.0 +SSP1,Mexico,2080,2.81518,gcam-v7.0 +SSP1,Mexico,2085,2.98374,gcam-v7.0 +SSP1,Mexico,2090,3.15945,gcam-v7.0 +SSP1,Mexico,2095,3.34482,gcam-v7.0 +SSP1,Mexico,2100,3.54412,gcam-v7.0 +SSP1,Middle East,1975,0,gcam-v7.0 +SSP1,Middle East,1990,0,gcam-v7.0 +SSP1,Middle East,2005,0,gcam-v7.0 +SSP1,Middle East,2010,0,gcam-v7.0 +SSP1,Middle East,2015,0,gcam-v7.0 +SSP1,Middle East,2020,1.11215,gcam-v7.0 +SSP1,Middle East,2025,1.29428,gcam-v7.0 +SSP1,Middle East,2030,1.51788,gcam-v7.0 +SSP1,Middle East,2035,1.73029,gcam-v7.0 +SSP1,Middle East,2040,1.95608,gcam-v7.0 +SSP1,Middle East,2045,2.17942,gcam-v7.0 +SSP1,Middle East,2050,2.39454,gcam-v7.0 +SSP1,Middle East,2055,2.60785,gcam-v7.0 +SSP1,Middle East,2060,2.8164,gcam-v7.0 +SSP1,Middle East,2065,3.03732,gcam-v7.0 +SSP1,Middle East,2070,3.26717,gcam-v7.0 +SSP1,Middle East,2075,3.50458,gcam-v7.0 +SSP1,Middle East,2080,3.75783,gcam-v7.0 +SSP1,Middle East,2085,4.02561,gcam-v7.0 +SSP1,Middle East,2090,4.30925,gcam-v7.0 +SSP1,Middle East,2095,4.61404,gcam-v7.0 +SSP1,Middle East,2100,4.94366,gcam-v7.0 +SSP1,Pakistan,1975,0,gcam-v7.0 +SSP1,Pakistan,1990,0,gcam-v7.0 +SSP1,Pakistan,2005,0,gcam-v7.0 +SSP1,Pakistan,2010,0,gcam-v7.0 +SSP1,Pakistan,2015,0,gcam-v7.0 +SSP1,Pakistan,2020,1.07128,gcam-v7.0 +SSP1,Pakistan,2025,1.19907,gcam-v7.0 +SSP1,Pakistan,2030,1.38083,gcam-v7.0 +SSP1,Pakistan,2035,1.60743,gcam-v7.0 +SSP1,Pakistan,2040,1.87663,gcam-v7.0 +SSP1,Pakistan,2045,2.19176,gcam-v7.0 +SSP1,Pakistan,2050,2.55251,gcam-v7.0 +SSP1,Pakistan,2055,2.98057,gcam-v7.0 +SSP1,Pakistan,2060,3.45019,gcam-v7.0 +SSP1,Pakistan,2065,3.95893,gcam-v7.0 +SSP1,Pakistan,2070,4.49528,gcam-v7.0 +SSP1,Pakistan,2075,5.05263,gcam-v7.0 +SSP1,Pakistan,2080,5.63595,gcam-v7.0 +SSP1,Pakistan,2085,6.23054,gcam-v7.0 +SSP1,Pakistan,2090,6.83145,gcam-v7.0 +SSP1,Pakistan,2095,7.44113,gcam-v7.0 +SSP1,Pakistan,2100,8.06231,gcam-v7.0 +SSP1,Russia,1975,0,gcam-v7.0 +SSP1,Russia,1990,0,gcam-v7.0 +SSP1,Russia,2005,0,gcam-v7.0 +SSP1,Russia,2010,0,gcam-v7.0 +SSP1,Russia,2015,0,gcam-v7.0 +SSP1,Russia,2020,1.16564,gcam-v7.0 +SSP1,Russia,2025,1.40498,gcam-v7.0 +SSP1,Russia,2030,1.68051,gcam-v7.0 +SSP1,Russia,2035,1.97102,gcam-v7.0 +SSP1,Russia,2040,2.22888,gcam-v7.0 +SSP1,Russia,2045,2.43492,gcam-v7.0 +SSP1,Russia,2050,2.6291,gcam-v7.0 +SSP1,Russia,2055,2.8265,gcam-v7.0 +SSP1,Russia,2060,3.00287,gcam-v7.0 +SSP1,Russia,2065,3.1645,gcam-v7.0 +SSP1,Russia,2070,3.31955,gcam-v7.0 +SSP1,Russia,2075,3.46901,gcam-v7.0 +SSP1,Russia,2080,3.64032,gcam-v7.0 +SSP1,Russia,2085,3.82415,gcam-v7.0 +SSP1,Russia,2090,4.0178,gcam-v7.0 +SSP1,Russia,2095,4.21687,gcam-v7.0 +SSP1,Russia,2100,4.42758,gcam-v7.0 +SSP1,South Africa,1975,0,gcam-v7.0 +SSP1,South Africa,1990,0,gcam-v7.0 +SSP1,South Africa,2005,0,gcam-v7.0 +SSP1,South Africa,2010,0,gcam-v7.0 +SSP1,South Africa,2015,0,gcam-v7.0 +SSP1,South Africa,2020,1.1479,gcam-v7.0 +SSP1,South Africa,2025,1.32831,gcam-v7.0 +SSP1,South Africa,2030,1.52106,gcam-v7.0 +SSP1,South Africa,2035,1.72369,gcam-v7.0 +SSP1,South Africa,2040,1.92564,gcam-v7.0 +SSP1,South Africa,2045,2.11817,gcam-v7.0 +SSP1,South Africa,2050,2.30714,gcam-v7.0 +SSP1,South Africa,2055,2.5077,gcam-v7.0 +SSP1,South Africa,2060,2.71244,gcam-v7.0 +SSP1,South Africa,2065,2.91444,gcam-v7.0 +SSP1,South Africa,2070,3.1138,gcam-v7.0 +SSP1,South Africa,2075,3.31005,gcam-v7.0 +SSP1,South Africa,2080,3.50684,gcam-v7.0 +SSP1,South Africa,2085,3.69753,gcam-v7.0 +SSP1,South Africa,2090,3.89231,gcam-v7.0 +SSP1,South Africa,2095,4.09226,gcam-v7.0 +SSP1,South Africa,2100,4.30102,gcam-v7.0 +SSP1,South America_Northern,1975,0,gcam-v7.0 +SSP1,South America_Northern,1990,0,gcam-v7.0 +SSP1,South America_Northern,2005,0,gcam-v7.0 +SSP1,South America_Northern,2010,0,gcam-v7.0 +SSP1,South America_Northern,2015,0,gcam-v7.0 +SSP1,South America_Northern,2020,0.88262,gcam-v7.0 +SSP1,South America_Northern,2025,0.972908,gcam-v7.0 +SSP1,South America_Northern,2030,1.06425,gcam-v7.0 +SSP1,South America_Northern,2035,1.1803,gcam-v7.0 +SSP1,South America_Northern,2040,1.36646,gcam-v7.0 +SSP1,South America_Northern,2045,1.60696,gcam-v7.0 +SSP1,South America_Northern,2050,1.86713,gcam-v7.0 +SSP1,South America_Northern,2055,2.16908,gcam-v7.0 +SSP1,South America_Northern,2060,2.47945,gcam-v7.0 +SSP1,South America_Northern,2065,2.76781,gcam-v7.0 +SSP1,South America_Northern,2070,3.06124,gcam-v7.0 +SSP1,South America_Northern,2075,3.36334,gcam-v7.0 +SSP1,South America_Northern,2080,3.68438,gcam-v7.0 +SSP1,South America_Northern,2085,4.02034,gcam-v7.0 +SSP1,South America_Northern,2090,4.37297,gcam-v7.0 +SSP1,South America_Northern,2095,4.7449,gcam-v7.0 +SSP1,South America_Northern,2100,5.13828,gcam-v7.0 +SSP1,South America_Southern,1975,0,gcam-v7.0 +SSP1,South America_Southern,1990,0,gcam-v7.0 +SSP1,South America_Southern,2005,0,gcam-v7.0 +SSP1,South America_Southern,2010,0,gcam-v7.0 +SSP1,South America_Southern,2015,0,gcam-v7.0 +SSP1,South America_Southern,2020,1.14998,gcam-v7.0 +SSP1,South America_Southern,2025,1.33179,gcam-v7.0 +SSP1,South America_Southern,2030,1.5214,gcam-v7.0 +SSP1,South America_Southern,2035,1.72694,gcam-v7.0 +SSP1,South America_Southern,2040,1.94847,gcam-v7.0 +SSP1,South America_Southern,2045,2.17613,gcam-v7.0 +SSP1,South America_Southern,2050,2.40785,gcam-v7.0 +SSP1,South America_Southern,2055,2.65395,gcam-v7.0 +SSP1,South America_Southern,2060,2.91521,gcam-v7.0 +SSP1,South America_Southern,2065,3.1866,gcam-v7.0 +SSP1,South America_Southern,2070,3.4663,gcam-v7.0 +SSP1,South America_Southern,2075,3.74919,gcam-v7.0 +SSP1,South America_Southern,2080,4.04084,gcam-v7.0 +SSP1,South America_Southern,2085,4.3407,gcam-v7.0 +SSP1,South America_Southern,2090,4.65162,gcam-v7.0 +SSP1,South America_Southern,2095,4.97812,gcam-v7.0 +SSP1,South America_Southern,2100,5.31999,gcam-v7.0 +SSP1,South Asia,1975,0,gcam-v7.0 +SSP1,South Asia,1990,0,gcam-v7.0 +SSP1,South Asia,2005,0,gcam-v7.0 +SSP1,South Asia,2010,0,gcam-v7.0 +SSP1,South Asia,2015,0,gcam-v7.0 +SSP1,South Asia,2020,1.16612,gcam-v7.0 +SSP1,South Asia,2025,1.36639,gcam-v7.0 +SSP1,South Asia,2030,1.52698,gcam-v7.0 +SSP1,South Asia,2035,1.62122,gcam-v7.0 +SSP1,South Asia,2040,1.66117,gcam-v7.0 +SSP1,South Asia,2045,1.66314,gcam-v7.0 +SSP1,South Asia,2050,1.65132,gcam-v7.0 +SSP1,South Asia,2055,1.64626,gcam-v7.0 +SSP1,South Asia,2060,1.65228,gcam-v7.0 +SSP1,South Asia,2065,1.66751,gcam-v7.0 +SSP1,South Asia,2070,1.69005,gcam-v7.0 +SSP1,South Asia,2075,1.71772,gcam-v7.0 +SSP1,South Asia,2080,1.75262,gcam-v7.0 +SSP1,South Asia,2085,1.7933,gcam-v7.0 +SSP1,South Asia,2090,1.83968,gcam-v7.0 +SSP1,South Asia,2095,1.89137,gcam-v7.0 +SSP1,South Asia,2100,1.94622,gcam-v7.0 +SSP1,South Korea,1975,0,gcam-v7.0 +SSP1,South Korea,1990,0,gcam-v7.0 +SSP1,South Korea,2005,0,gcam-v7.0 +SSP1,South Korea,2010,0,gcam-v7.0 +SSP1,South Korea,2015,0,gcam-v7.0 +SSP1,South Korea,2020,0.98729,gcam-v7.0 +SSP1,South Korea,2025,1.1376,gcam-v7.0 +SSP1,South Korea,2030,1.28885,gcam-v7.0 +SSP1,South Korea,2035,1.42851,gcam-v7.0 +SSP1,South Korea,2040,1.56111,gcam-v7.0 +SSP1,South Korea,2045,1.67536,gcam-v7.0 +SSP1,South Korea,2050,1.78025,gcam-v7.0 +SSP1,South Korea,2055,1.87225,gcam-v7.0 +SSP1,South Korea,2060,1.97124,gcam-v7.0 +SSP1,South Korea,2065,2.06844,gcam-v7.0 +SSP1,South Korea,2070,2.14971,gcam-v7.0 +SSP1,South Korea,2075,2.23197,gcam-v7.0 +SSP1,South Korea,2080,2.30641,gcam-v7.0 +SSP1,South Korea,2085,2.37807,gcam-v7.0 +SSP1,South Korea,2090,2.45116,gcam-v7.0 +SSP1,South Korea,2095,2.52736,gcam-v7.0 +SSP1,South Korea,2100,2.60114,gcam-v7.0 +SSP1,Southeast Asia,1975,0,gcam-v7.0 +SSP1,Southeast Asia,1990,0,gcam-v7.0 +SSP1,Southeast Asia,2005,0,gcam-v7.0 +SSP1,Southeast Asia,2010,0,gcam-v7.0 +SSP1,Southeast Asia,2015,0,gcam-v7.0 +SSP1,Southeast Asia,2020,1.15822,gcam-v7.0 +SSP1,Southeast Asia,2025,1.34937,gcam-v7.0 +SSP1,Southeast Asia,2030,1.53505,gcam-v7.0 +SSP1,Southeast Asia,2035,1.70167,gcam-v7.0 +SSP1,Southeast Asia,2040,1.86546,gcam-v7.0 +SSP1,Southeast Asia,2045,2.01171,gcam-v7.0 +SSP1,Southeast Asia,2050,2.15535,gcam-v7.0 +SSP1,Southeast Asia,2055,2.31239,gcam-v7.0 +SSP1,Southeast Asia,2060,2.47955,gcam-v7.0 +SSP1,Southeast Asia,2065,2.65172,gcam-v7.0 +SSP1,Southeast Asia,2070,2.82899,gcam-v7.0 +SSP1,Southeast Asia,2075,3.00848,gcam-v7.0 +SSP1,Southeast Asia,2080,3.196,gcam-v7.0 +SSP1,Southeast Asia,2085,3.38889,gcam-v7.0 +SSP1,Southeast Asia,2090,3.58762,gcam-v7.0 +SSP1,Southeast Asia,2095,3.79264,gcam-v7.0 +SSP1,Southeast Asia,2100,4.00228,gcam-v7.0 +SSP1,Taiwan,1975,0,gcam-v7.0 +SSP1,Taiwan,1990,0,gcam-v7.0 +SSP1,Taiwan,2005,0,gcam-v7.0 +SSP1,Taiwan,2010,0,gcam-v7.0 +SSP1,Taiwan,2015,0,gcam-v7.0 +SSP1,Taiwan,2020,1.16563,gcam-v7.0 +SSP1,Taiwan,2025,1.26236,gcam-v7.0 +SSP1,Taiwan,2030,1.33544,gcam-v7.0 +SSP1,Taiwan,2035,1.40017,gcam-v7.0 +SSP1,Taiwan,2040,1.45507,gcam-v7.0 +SSP1,Taiwan,2045,1.48507,gcam-v7.0 +SSP1,Taiwan,2050,1.48899,gcam-v7.0 +SSP1,Taiwan,2055,1.47837,gcam-v7.0 +SSP1,Taiwan,2060,1.46766,gcam-v7.0 +SSP1,Taiwan,2065,1.5012,gcam-v7.0 +SSP1,Taiwan,2070,1.52868,gcam-v7.0 +SSP1,Taiwan,2075,1.54112,gcam-v7.0 +SSP1,Taiwan,2080,1.54196,gcam-v7.0 +SSP1,Taiwan,2085,1.52869,gcam-v7.0 +SSP1,Taiwan,2090,1.50709,gcam-v7.0 +SSP1,Taiwan,2095,1.47951,gcam-v7.0 +SSP1,Taiwan,2100,1.44634,gcam-v7.0 +SSP1,USA,1975,0,gcam-v7.0 +SSP1,USA,1990,0,gcam-v7.0 +SSP1,USA,2005,0,gcam-v7.0 +SSP1,USA,2010,0,gcam-v7.0 +SSP1,USA,2015,0,gcam-v7.0 +SSP1,USA,2020,1.1061,gcam-v7.0 +SSP1,USA,2025,1.21373,gcam-v7.0 +SSP1,USA,2030,1.31297,gcam-v7.0 +SSP1,USA,2035,1.39734,gcam-v7.0 +SSP1,USA,2040,1.47088,gcam-v7.0 +SSP1,USA,2045,1.52981,gcam-v7.0 +SSP1,USA,2050,1.58817,gcam-v7.0 +SSP1,USA,2055,1.65064,gcam-v7.0 +SSP1,USA,2060,1.71653,gcam-v7.0 +SSP1,USA,2065,1.78076,gcam-v7.0 +SSP1,USA,2070,1.84963,gcam-v7.0 +SSP1,USA,2075,1.92466,gcam-v7.0 +SSP1,USA,2080,2.0015,gcam-v7.0 +SSP1,USA,2085,2.08698,gcam-v7.0 +SSP1,USA,2090,2.18025,gcam-v7.0 +SSP1,USA,2095,2.28246,gcam-v7.0 +SSP1,USA,2100,2.39386,gcam-v7.0 +SSP2,Africa_Eastern,1975,0,gcam-v7.0 +SSP2,Africa_Eastern,1990,0,gcam-v7.0 +SSP2,Africa_Eastern,2005,0,gcam-v7.0 +SSP2,Africa_Eastern,2010,0,gcam-v7.0 +SSP2,Africa_Eastern,2015,0,gcam-v7.0 +SSP2,Africa_Eastern,2020,1.15697,gcam-v7.0 +SSP2,Africa_Eastern,2025,1.34647,gcam-v7.0 +SSP2,Africa_Eastern,2030,1.5309,gcam-v7.0 +SSP2,Africa_Eastern,2035,1.69835,gcam-v7.0 +SSP2,Africa_Eastern,2040,1.86285,gcam-v7.0 +SSP2,Africa_Eastern,2045,2.02294,gcam-v7.0 +SSP2,Africa_Eastern,2050,2.19182,gcam-v7.0 +SSP2,Africa_Eastern,2055,2.38528,gcam-v7.0 +SSP2,Africa_Eastern,2060,2.60334,gcam-v7.0 +SSP2,Africa_Eastern,2065,2.85429,gcam-v7.0 +SSP2,Africa_Eastern,2070,3.14173,gcam-v7.0 +SSP2,Africa_Eastern,2075,3.46268,gcam-v7.0 +SSP2,Africa_Eastern,2080,3.81826,gcam-v7.0 +SSP2,Africa_Eastern,2085,4.20693,gcam-v7.0 +SSP2,Africa_Eastern,2090,4.63115,gcam-v7.0 +SSP2,Africa_Eastern,2095,5.09491,gcam-v7.0 +SSP2,Africa_Eastern,2100,5.60196,gcam-v7.0 +SSP2,Africa_Northern,1975,0,gcam-v7.0 +SSP2,Africa_Northern,1990,0,gcam-v7.0 +SSP2,Africa_Northern,2005,0,gcam-v7.0 +SSP2,Africa_Northern,2010,0,gcam-v7.0 +SSP2,Africa_Northern,2015,0,gcam-v7.0 +SSP2,Africa_Northern,2020,1.12177,gcam-v7.0 +SSP2,Africa_Northern,2025,1.28619,gcam-v7.0 +SSP2,Africa_Northern,2030,1.43041,gcam-v7.0 +SSP2,Africa_Northern,2035,1.56048,gcam-v7.0 +SSP2,Africa_Northern,2040,1.68095,gcam-v7.0 +SSP2,Africa_Northern,2045,1.80695,gcam-v7.0 +SSP2,Africa_Northern,2050,1.94235,gcam-v7.0 +SSP2,Africa_Northern,2055,2.08809,gcam-v7.0 +SSP2,Africa_Northern,2060,2.24916,gcam-v7.0 +SSP2,Africa_Northern,2065,2.42217,gcam-v7.0 +SSP2,Africa_Northern,2070,2.60279,gcam-v7.0 +SSP2,Africa_Northern,2075,2.7923,gcam-v7.0 +SSP2,Africa_Northern,2080,2.98457,gcam-v7.0 +SSP2,Africa_Northern,2085,3.18102,gcam-v7.0 +SSP2,Africa_Northern,2090,3.38383,gcam-v7.0 +SSP2,Africa_Northern,2095,3.58922,gcam-v7.0 +SSP2,Africa_Northern,2100,3.80329,gcam-v7.0 +SSP2,Africa_Southern,1975,0,gcam-v7.0 +SSP2,Africa_Southern,1990,0,gcam-v7.0 +SSP2,Africa_Southern,2005,0,gcam-v7.0 +SSP2,Africa_Southern,2010,0,gcam-v7.0 +SSP2,Africa_Southern,2015,0,gcam-v7.0 +SSP2,Africa_Southern,2020,1.15314,gcam-v7.0 +SSP2,Africa_Southern,2025,1.33705,gcam-v7.0 +SSP2,Africa_Southern,2030,1.50044,gcam-v7.0 +SSP2,Africa_Southern,2035,1.6531,gcam-v7.0 +SSP2,Africa_Southern,2040,1.83669,gcam-v7.0 +SSP2,Africa_Southern,2045,2.04925,gcam-v7.0 +SSP2,Africa_Southern,2050,2.29023,gcam-v7.0 +SSP2,Africa_Southern,2055,2.56145,gcam-v7.0 +SSP2,Africa_Southern,2060,2.85613,gcam-v7.0 +SSP2,Africa_Southern,2065,3.18412,gcam-v7.0 +SSP2,Africa_Southern,2070,3.5491,gcam-v7.0 +SSP2,Africa_Southern,2075,3.94967,gcam-v7.0 +SSP2,Africa_Southern,2080,4.38897,gcam-v7.0 +SSP2,Africa_Southern,2085,4.87354,gcam-v7.0 +SSP2,Africa_Southern,2090,5.41023,gcam-v7.0 +SSP2,Africa_Southern,2095,6.00505,gcam-v7.0 +SSP2,Africa_Southern,2100,6.67739,gcam-v7.0 +SSP2,Africa_Western,1975,0,gcam-v7.0 +SSP2,Africa_Western,1990,0,gcam-v7.0 +SSP2,Africa_Western,2005,0,gcam-v7.0 +SSP2,Africa_Western,2010,0,gcam-v7.0 +SSP2,Africa_Western,2015,0,gcam-v7.0 +SSP2,Africa_Western,2020,1.19788,gcam-v7.0 +SSP2,Africa_Western,2025,1.41155,gcam-v7.0 +SSP2,Africa_Western,2030,1.59023,gcam-v7.0 +SSP2,Africa_Western,2035,1.74457,gcam-v7.0 +SSP2,Africa_Western,2040,1.93111,gcam-v7.0 +SSP2,Africa_Western,2045,2.12415,gcam-v7.0 +SSP2,Africa_Western,2050,2.34311,gcam-v7.0 +SSP2,Africa_Western,2055,2.59205,gcam-v7.0 +SSP2,Africa_Western,2060,2.86609,gcam-v7.0 +SSP2,Africa_Western,2065,3.17322,gcam-v7.0 +SSP2,Africa_Western,2070,3.5168,gcam-v7.0 +SSP2,Africa_Western,2075,3.90066,gcam-v7.0 +SSP2,Africa_Western,2080,4.3241,gcam-v7.0 +SSP2,Africa_Western,2085,4.78503,gcam-v7.0 +SSP2,Africa_Western,2090,5.28503,gcam-v7.0 +SSP2,Africa_Western,2095,5.83048,gcam-v7.0 +SSP2,Africa_Western,2100,6.42393,gcam-v7.0 +SSP2,Argentina,1975,0,gcam-v7.0 +SSP2,Argentina,1990,0,gcam-v7.0 +SSP2,Argentina,2005,0,gcam-v7.0 +SSP2,Argentina,2010,0,gcam-v7.0 +SSP2,Argentina,2015,0,gcam-v7.0 +SSP2,Argentina,2020,1.07503,gcam-v7.0 +SSP2,Argentina,2025,1.19326,gcam-v7.0 +SSP2,Argentina,2030,1.29766,gcam-v7.0 +SSP2,Argentina,2035,1.40378,gcam-v7.0 +SSP2,Argentina,2040,1.51518,gcam-v7.0 +SSP2,Argentina,2045,1.63515,gcam-v7.0 +SSP2,Argentina,2050,1.7558,gcam-v7.0 +SSP2,Argentina,2055,1.8835,gcam-v7.0 +SSP2,Argentina,2060,2.02065,gcam-v7.0 +SSP2,Argentina,2065,2.1635,gcam-v7.0 +SSP2,Argentina,2070,2.31259,gcam-v7.0 +SSP2,Argentina,2075,2.46939,gcam-v7.0 +SSP2,Argentina,2080,2.63426,gcam-v7.0 +SSP2,Argentina,2085,2.80749,gcam-v7.0 +SSP2,Argentina,2090,2.9883,gcam-v7.0 +SSP2,Argentina,2095,3.17914,gcam-v7.0 +SSP2,Argentina,2100,3.38178,gcam-v7.0 +SSP2,Australia_NZ,1975,0,gcam-v7.0 +SSP2,Australia_NZ,1990,0,gcam-v7.0 +SSP2,Australia_NZ,2005,0,gcam-v7.0 +SSP2,Australia_NZ,2010,0,gcam-v7.0 +SSP2,Australia_NZ,2015,0,gcam-v7.0 +SSP2,Australia_NZ,2020,1.12815,gcam-v7.0 +SSP2,Australia_NZ,2025,1.20796,gcam-v7.0 +SSP2,Australia_NZ,2030,1.27444,gcam-v7.0 +SSP2,Australia_NZ,2035,1.33583,gcam-v7.0 +SSP2,Australia_NZ,2040,1.4058,gcam-v7.0 +SSP2,Australia_NZ,2045,1.47474,gcam-v7.0 +SSP2,Australia_NZ,2050,1.5496,gcam-v7.0 +SSP2,Australia_NZ,2055,1.6348,gcam-v7.0 +SSP2,Australia_NZ,2060,1.72417,gcam-v7.0 +SSP2,Australia_NZ,2065,1.81773,gcam-v7.0 +SSP2,Australia_NZ,2070,1.91654,gcam-v7.0 +SSP2,Australia_NZ,2075,2.02685,gcam-v7.0 +SSP2,Australia_NZ,2080,2.14773,gcam-v7.0 +SSP2,Australia_NZ,2085,2.27962,gcam-v7.0 +SSP2,Australia_NZ,2090,2.42185,gcam-v7.0 +SSP2,Australia_NZ,2095,2.57167,gcam-v7.0 +SSP2,Australia_NZ,2100,2.72967,gcam-v7.0 +SSP2,Brazil,1975,0,gcam-v7.0 +SSP2,Brazil,1990,0,gcam-v7.0 +SSP2,Brazil,2005,0,gcam-v7.0 +SSP2,Brazil,2010,0,gcam-v7.0 +SSP2,Brazil,2015,0,gcam-v7.0 +SSP2,Brazil,2020,1.12952,gcam-v7.0 +SSP2,Brazil,2025,1.26159,gcam-v7.0 +SSP2,Brazil,2030,1.3799,gcam-v7.0 +SSP2,Brazil,2035,1.49033,gcam-v7.0 +SSP2,Brazil,2040,1.60817,gcam-v7.0 +SSP2,Brazil,2045,1.73608,gcam-v7.0 +SSP2,Brazil,2050,1.8753,gcam-v7.0 +SSP2,Brazil,2055,2.02311,gcam-v7.0 +SSP2,Brazil,2060,2.17976,gcam-v7.0 +SSP2,Brazil,2065,2.35405,gcam-v7.0 +SSP2,Brazil,2070,2.54516,gcam-v7.0 +SSP2,Brazil,2075,2.73664,gcam-v7.0 +SSP2,Brazil,2080,2.93979,gcam-v7.0 +SSP2,Brazil,2085,3.15852,gcam-v7.0 +SSP2,Brazil,2090,3.39238,gcam-v7.0 +SSP2,Brazil,2095,3.63869,gcam-v7.0 +SSP2,Brazil,2100,3.89967,gcam-v7.0 +SSP2,Canada,1975,0,gcam-v7.0 +SSP2,Canada,1990,0,gcam-v7.0 +SSP2,Canada,2005,0,gcam-v7.0 +SSP2,Canada,2010,0,gcam-v7.0 +SSP2,Canada,2015,0,gcam-v7.0 +SSP2,Canada,2020,1.07092,gcam-v7.0 +SSP2,Canada,2025,1.14267,gcam-v7.0 +SSP2,Canada,2030,1.20718,gcam-v7.0 +SSP2,Canada,2035,1.27298,gcam-v7.0 +SSP2,Canada,2040,1.33429,gcam-v7.0 +SSP2,Canada,2045,1.40375,gcam-v7.0 +SSP2,Canada,2050,1.48143,gcam-v7.0 +SSP2,Canada,2055,1.57174,gcam-v7.0 +SSP2,Canada,2060,1.67726,gcam-v7.0 +SSP2,Canada,2065,1.78613,gcam-v7.0 +SSP2,Canada,2070,1.89133,gcam-v7.0 +SSP2,Canada,2075,2.00968,gcam-v7.0 +SSP2,Canada,2080,2.1402,gcam-v7.0 +SSP2,Canada,2085,2.28455,gcam-v7.0 +SSP2,Canada,2090,2.44078,gcam-v7.0 +SSP2,Canada,2095,2.60588,gcam-v7.0 +SSP2,Canada,2100,2.77983,gcam-v7.0 +SSP2,Central America and Caribbean,1975,0,gcam-v7.0 +SSP2,Central America and Caribbean,1990,0,gcam-v7.0 +SSP2,Central America and Caribbean,2005,0,gcam-v7.0 +SSP2,Central America and Caribbean,2010,0,gcam-v7.0 +SSP2,Central America and Caribbean,2015,0,gcam-v7.0 +SSP2,Central America and Caribbean,2020,1.08029,gcam-v7.0 +SSP2,Central America and Caribbean,2025,1.16807,gcam-v7.0 +SSP2,Central America and Caribbean,2030,1.26303,gcam-v7.0 +SSP2,Central America and Caribbean,2035,1.35692,gcam-v7.0 +SSP2,Central America and Caribbean,2040,1.45042,gcam-v7.0 +SSP2,Central America and Caribbean,2045,1.53835,gcam-v7.0 +SSP2,Central America and Caribbean,2050,1.63104,gcam-v7.0 +SSP2,Central America and Caribbean,2055,1.7336,gcam-v7.0 +SSP2,Central America and Caribbean,2060,1.84743,gcam-v7.0 +SSP2,Central America and Caribbean,2065,1.97186,gcam-v7.0 +SSP2,Central America and Caribbean,2070,2.10853,gcam-v7.0 +SSP2,Central America and Caribbean,2075,2.25717,gcam-v7.0 +SSP2,Central America and Caribbean,2080,2.41812,gcam-v7.0 +SSP2,Central America and Caribbean,2085,2.59352,gcam-v7.0 +SSP2,Central America and Caribbean,2090,2.78239,gcam-v7.0 +SSP2,Central America and Caribbean,2095,2.98516,gcam-v7.0 +SSP2,Central America and Caribbean,2100,3.20298,gcam-v7.0 +SSP2,Central Asia,1975,0,gcam-v7.0 +SSP2,Central Asia,1990,0,gcam-v7.0 +SSP2,Central Asia,2005,0,gcam-v7.0 +SSP2,Central Asia,2010,0,gcam-v7.0 +SSP2,Central Asia,2015,0,gcam-v7.0 +SSP2,Central Asia,2020,1.16652,gcam-v7.0 +SSP2,Central Asia,2025,1.39367,gcam-v7.0 +SSP2,Central Asia,2030,1.57746,gcam-v7.0 +SSP2,Central Asia,2035,1.74732,gcam-v7.0 +SSP2,Central Asia,2040,1.91418,gcam-v7.0 +SSP2,Central Asia,2045,2.06375,gcam-v7.0 +SSP2,Central Asia,2050,2.20369,gcam-v7.0 +SSP2,Central Asia,2055,2.3449,gcam-v7.0 +SSP2,Central Asia,2060,2.49597,gcam-v7.0 +SSP2,Central Asia,2065,2.66031,gcam-v7.0 +SSP2,Central Asia,2070,2.83292,gcam-v7.0 +SSP2,Central Asia,2075,3.01548,gcam-v7.0 +SSP2,Central Asia,2080,3.21259,gcam-v7.0 +SSP2,Central Asia,2085,3.41986,gcam-v7.0 +SSP2,Central Asia,2090,3.63515,gcam-v7.0 +SSP2,Central Asia,2095,3.85759,gcam-v7.0 +SSP2,Central Asia,2100,4.076,gcam-v7.0 +SSP2,China,1975,0,gcam-v7.0 +SSP2,China,1990,0,gcam-v7.0 +SSP2,China,2005,0,gcam-v7.0 +SSP2,China,2010,0,gcam-v7.0 +SSP2,China,2015,0,gcam-v7.0 +SSP2,China,2020,1.35979,gcam-v7.0 +SSP2,China,2025,1.68579,gcam-v7.0 +SSP2,China,2030,1.98319,gcam-v7.0 +SSP2,China,2035,2.27489,gcam-v7.0 +SSP2,China,2040,2.56216,gcam-v7.0 +SSP2,China,2045,2.80293,gcam-v7.0 +SSP2,China,2050,3.04218,gcam-v7.0 +SSP2,China,2055,3.31364,gcam-v7.0 +SSP2,China,2060,3.57712,gcam-v7.0 +SSP2,China,2065,3.83767,gcam-v7.0 +SSP2,China,2070,4.08268,gcam-v7.0 +SSP2,China,2075,4.33016,gcam-v7.0 +SSP2,China,2080,4.56429,gcam-v7.0 +SSP2,China,2085,4.79876,gcam-v7.0 +SSP2,China,2090,5.02435,gcam-v7.0 +SSP2,China,2095,5.24486,gcam-v7.0 +SSP2,China,2100,5.45903,gcam-v7.0 +SSP2,Colombia,1975,0,gcam-v7.0 +SSP2,Colombia,1990,0,gcam-v7.0 +SSP2,Colombia,2005,0,gcam-v7.0 +SSP2,Colombia,2010,0,gcam-v7.0 +SSP2,Colombia,2015,0,gcam-v7.0 +SSP2,Colombia,2020,1.13604,gcam-v7.0 +SSP2,Colombia,2025,1.21876,gcam-v7.0 +SSP2,Colombia,2030,1.32288,gcam-v7.0 +SSP2,Colombia,2035,1.4315,gcam-v7.0 +SSP2,Colombia,2040,1.5461,gcam-v7.0 +SSP2,Colombia,2045,1.67396,gcam-v7.0 +SSP2,Colombia,2050,1.81307,gcam-v7.0 +SSP2,Colombia,2055,1.96378,gcam-v7.0 +SSP2,Colombia,2060,2.12943,gcam-v7.0 +SSP2,Colombia,2065,2.30749,gcam-v7.0 +SSP2,Colombia,2070,2.49882,gcam-v7.0 +SSP2,Colombia,2075,2.70513,gcam-v7.0 +SSP2,Colombia,2080,2.92447,gcam-v7.0 +SSP2,Colombia,2085,3.15929,gcam-v7.0 +SSP2,Colombia,2090,3.40865,gcam-v7.0 +SSP2,Colombia,2095,3.67191,gcam-v7.0 +SSP2,Colombia,2100,3.9502,gcam-v7.0 +SSP2,EU-12,1975,0,gcam-v7.0 +SSP2,EU-12,1990,0,gcam-v7.0 +SSP2,EU-12,2005,0,gcam-v7.0 +SSP2,EU-12,2010,0,gcam-v7.0 +SSP2,EU-12,2015,0,gcam-v7.0 +SSP2,EU-12,2020,1.12744,gcam-v7.0 +SSP2,EU-12,2025,1.26294,gcam-v7.0 +SSP2,EU-12,2030,1.37821,gcam-v7.0 +SSP2,EU-12,2035,1.49772,gcam-v7.0 +SSP2,EU-12,2040,1.62502,gcam-v7.0 +SSP2,EU-12,2045,1.76288,gcam-v7.0 +SSP2,EU-12,2050,1.90619,gcam-v7.0 +SSP2,EU-12,2055,2.05624,gcam-v7.0 +SSP2,EU-12,2060,2.20351,gcam-v7.0 +SSP2,EU-12,2065,2.34626,gcam-v7.0 +SSP2,EU-12,2070,2.48929,gcam-v7.0 +SSP2,EU-12,2075,2.64864,gcam-v7.0 +SSP2,EU-12,2080,2.82203,gcam-v7.0 +SSP2,EU-12,2085,3.00475,gcam-v7.0 +SSP2,EU-12,2090,3.19364,gcam-v7.0 +SSP2,EU-12,2095,3.38675,gcam-v7.0 +SSP2,EU-12,2100,3.58362,gcam-v7.0 +SSP2,EU-15,1975,0,gcam-v7.0 +SSP2,EU-15,1990,0,gcam-v7.0 +SSP2,EU-15,2005,0,gcam-v7.0 +SSP2,EU-15,2010,0,gcam-v7.0 +SSP2,EU-15,2015,0,gcam-v7.0 +SSP2,EU-15,2020,1.07261,gcam-v7.0 +SSP2,EU-15,2025,1.1437,gcam-v7.0 +SSP2,EU-15,2030,1.22345,gcam-v7.0 +SSP2,EU-15,2035,1.31254,gcam-v7.0 +SSP2,EU-15,2040,1.40528,gcam-v7.0 +SSP2,EU-15,2045,1.49626,gcam-v7.0 +SSP2,EU-15,2050,1.58776,gcam-v7.0 +SSP2,EU-15,2055,1.68393,gcam-v7.0 +SSP2,EU-15,2060,1.78061,gcam-v7.0 +SSP2,EU-15,2065,1.87896,gcam-v7.0 +SSP2,EU-15,2070,1.98222,gcam-v7.0 +SSP2,EU-15,2075,2.09565,gcam-v7.0 +SSP2,EU-15,2080,2.21542,gcam-v7.0 +SSP2,EU-15,2085,2.34194,gcam-v7.0 +SSP2,EU-15,2090,2.47467,gcam-v7.0 +SSP2,EU-15,2095,2.61415,gcam-v7.0 +SSP2,EU-15,2100,2.76199,gcam-v7.0 +SSP2,Europe_Eastern,1975,0,gcam-v7.0 +SSP2,Europe_Eastern,1990,0,gcam-v7.0 +SSP2,Europe_Eastern,2005,0,gcam-v7.0 +SSP2,Europe_Eastern,2010,0,gcam-v7.0 +SSP2,Europe_Eastern,2015,0,gcam-v7.0 +SSP2,Europe_Eastern,2020,1.04234,gcam-v7.0 +SSP2,Europe_Eastern,2025,1.16365,gcam-v7.0 +SSP2,Europe_Eastern,2030,1.26606,gcam-v7.0 +SSP2,Europe_Eastern,2035,1.36336,gcam-v7.0 +SSP2,Europe_Eastern,2040,1.45021,gcam-v7.0 +SSP2,Europe_Eastern,2045,1.53968,gcam-v7.0 +SSP2,Europe_Eastern,2050,1.63887,gcam-v7.0 +SSP2,Europe_Eastern,2055,1.74747,gcam-v7.0 +SSP2,Europe_Eastern,2060,1.8687,gcam-v7.0 +SSP2,Europe_Eastern,2065,2.00573,gcam-v7.0 +SSP2,Europe_Eastern,2070,2.16599,gcam-v7.0 +SSP2,Europe_Eastern,2075,2.40348,gcam-v7.0 +SSP2,Europe_Eastern,2080,2.58567,gcam-v7.0 +SSP2,Europe_Eastern,2085,2.78021,gcam-v7.0 +SSP2,Europe_Eastern,2090,2.98119,gcam-v7.0 +SSP2,Europe_Eastern,2095,3.18417,gcam-v7.0 +SSP2,Europe_Eastern,2100,3.3907,gcam-v7.0 +SSP2,Europe_Non_EU,1975,0,gcam-v7.0 +SSP2,Europe_Non_EU,1990,0,gcam-v7.0 +SSP2,Europe_Non_EU,2005,0,gcam-v7.0 +SSP2,Europe_Non_EU,2010,0,gcam-v7.0 +SSP2,Europe_Non_EU,2015,0,gcam-v7.0 +SSP2,Europe_Non_EU,2020,1.11458,gcam-v7.0 +SSP2,Europe_Non_EU,2025,1.20566,gcam-v7.0 +SSP2,Europe_Non_EU,2030,1.28944,gcam-v7.0 +SSP2,Europe_Non_EU,2035,1.37133,gcam-v7.0 +SSP2,Europe_Non_EU,2040,1.46063,gcam-v7.0 +SSP2,Europe_Non_EU,2045,1.55228,gcam-v7.0 +SSP2,Europe_Non_EU,2050,1.64844,gcam-v7.0 +SSP2,Europe_Non_EU,2055,1.74763,gcam-v7.0 +SSP2,Europe_Non_EU,2060,1.85389,gcam-v7.0 +SSP2,Europe_Non_EU,2065,1.96639,gcam-v7.0 +SSP2,Europe_Non_EU,2070,2.08078,gcam-v7.0 +SSP2,Europe_Non_EU,2075,2.20201,gcam-v7.0 +SSP2,Europe_Non_EU,2080,2.32894,gcam-v7.0 +SSP2,Europe_Non_EU,2085,2.46248,gcam-v7.0 +SSP2,Europe_Non_EU,2090,2.60264,gcam-v7.0 +SSP2,Europe_Non_EU,2095,2.75097,gcam-v7.0 +SSP2,Europe_Non_EU,2100,2.90704,gcam-v7.0 +SSP2,European Free Trade Association,1975,0,gcam-v7.0 +SSP2,European Free Trade Association,1990,0,gcam-v7.0 +SSP2,European Free Trade Association,2005,0,gcam-v7.0 +SSP2,European Free Trade Association,2010,0,gcam-v7.0 +SSP2,European Free Trade Association,2015,0,gcam-v7.0 +SSP2,European Free Trade Association,2020,1.08609,gcam-v7.0 +SSP2,European Free Trade Association,2025,1.16109,gcam-v7.0 +SSP2,European Free Trade Association,2030,1.24147,gcam-v7.0 +SSP2,European Free Trade Association,2035,1.3239,gcam-v7.0 +SSP2,European Free Trade Association,2040,1.41006,gcam-v7.0 +SSP2,European Free Trade Association,2045,1.48882,gcam-v7.0 +SSP2,European Free Trade Association,2050,1.58206,gcam-v7.0 +SSP2,European Free Trade Association,2055,1.68595,gcam-v7.0 +SSP2,European Free Trade Association,2060,1.7975,gcam-v7.0 +SSP2,European Free Trade Association,2065,1.9113,gcam-v7.0 +SSP2,European Free Trade Association,2070,2.028,gcam-v7.0 +SSP2,European Free Trade Association,2075,2.15339,gcam-v7.0 +SSP2,European Free Trade Association,2080,2.29016,gcam-v7.0 +SSP2,European Free Trade Association,2085,2.43991,gcam-v7.0 +SSP2,European Free Trade Association,2090,2.60111,gcam-v7.0 +SSP2,European Free Trade Association,2095,2.77118,gcam-v7.0 +SSP2,European Free Trade Association,2100,2.94769,gcam-v7.0 +SSP2,India,1975,0,gcam-v7.0 +SSP2,India,1990,0,gcam-v7.0 +SSP2,India,2005,0,gcam-v7.0 +SSP2,India,2010,0,gcam-v7.0 +SSP2,India,2015,0,gcam-v7.0 +SSP2,India,2020,1.20212,gcam-v7.0 +SSP2,India,2025,1.39825,gcam-v7.0 +SSP2,India,2030,1.56589,gcam-v7.0 +SSP2,India,2035,1.71657,gcam-v7.0 +SSP2,India,2040,1.871,gcam-v7.0 +SSP2,India,2045,2.02999,gcam-v7.0 +SSP2,India,2050,2.20276,gcam-v7.0 +SSP2,India,2055,2.39597,gcam-v7.0 +SSP2,India,2060,2.60925,gcam-v7.0 +SSP2,India,2065,2.83897,gcam-v7.0 +SSP2,India,2070,3.0866,gcam-v7.0 +SSP2,India,2075,3.35103,gcam-v7.0 +SSP2,India,2080,3.62878,gcam-v7.0 +SSP2,India,2085,3.9183,gcam-v7.0 +SSP2,India,2090,4.21918,gcam-v7.0 +SSP2,India,2095,4.53302,gcam-v7.0 +SSP2,India,2100,4.8601,gcam-v7.0 +SSP2,Indonesia,1975,0,gcam-v7.0 +SSP2,Indonesia,1990,0,gcam-v7.0 +SSP2,Indonesia,2005,0,gcam-v7.0 +SSP2,Indonesia,2010,0,gcam-v7.0 +SSP2,Indonesia,2015,0,gcam-v7.0 +SSP2,Indonesia,2020,1.21956,gcam-v7.0 +SSP2,Indonesia,2025,1.46855,gcam-v7.0 +SSP2,Indonesia,2030,1.68754,gcam-v7.0 +SSP2,Indonesia,2035,1.89894,gcam-v7.0 +SSP2,Indonesia,2040,2.12557,gcam-v7.0 +SSP2,Indonesia,2045,2.3582,gcam-v7.0 +SSP2,Indonesia,2050,2.60358,gcam-v7.0 +SSP2,Indonesia,2055,2.86203,gcam-v7.0 +SSP2,Indonesia,2060,3.13622,gcam-v7.0 +SSP2,Indonesia,2065,3.42586,gcam-v7.0 +SSP2,Indonesia,2070,3.74304,gcam-v7.0 +SSP2,Indonesia,2075,4.07454,gcam-v7.0 +SSP2,Indonesia,2080,4.41813,gcam-v7.0 +SSP2,Indonesia,2085,4.77637,gcam-v7.0 +SSP2,Indonesia,2090,5.14836,gcam-v7.0 +SSP2,Indonesia,2095,5.53254,gcam-v7.0 +SSP2,Indonesia,2100,5.93,gcam-v7.0 +SSP2,Japan,1975,0,gcam-v7.0 +SSP2,Japan,1990,0,gcam-v7.0 +SSP2,Japan,2005,0,gcam-v7.0 +SSP2,Japan,2010,0,gcam-v7.0 +SSP2,Japan,2015,0,gcam-v7.0 +SSP2,Japan,2020,1.05561,gcam-v7.0 +SSP2,Japan,2025,1.11619,gcam-v7.0 +SSP2,Japan,2030,1.17994,gcam-v7.0 +SSP2,Japan,2035,1.24411,gcam-v7.0 +SSP2,Japan,2040,1.32829,gcam-v7.0 +SSP2,Japan,2045,1.40661,gcam-v7.0 +SSP2,Japan,2050,1.48299,gcam-v7.0 +SSP2,Japan,2055,1.56151,gcam-v7.0 +SSP2,Japan,2060,1.64151,gcam-v7.0 +SSP2,Japan,2065,1.72572,gcam-v7.0 +SSP2,Japan,2070,1.81438,gcam-v7.0 +SSP2,Japan,2075,1.90913,gcam-v7.0 +SSP2,Japan,2080,2.01019,gcam-v7.0 +SSP2,Japan,2085,2.11189,gcam-v7.0 +SSP2,Japan,2090,2.21547,gcam-v7.0 +SSP2,Japan,2095,2.32345,gcam-v7.0 +SSP2,Japan,2100,2.43752,gcam-v7.0 +SSP2,Mexico,1975,0,gcam-v7.0 +SSP2,Mexico,1990,0,gcam-v7.0 +SSP2,Mexico,2005,0,gcam-v7.0 +SSP2,Mexico,2010,0,gcam-v7.0 +SSP2,Mexico,2015,0,gcam-v7.0 +SSP2,Mexico,2020,1.0609,gcam-v7.0 +SSP2,Mexico,2025,1.14865,gcam-v7.0 +SSP2,Mexico,2030,1.24251,gcam-v7.0 +SSP2,Mexico,2035,1.34782,gcam-v7.0 +SSP2,Mexico,2040,1.44645,gcam-v7.0 +SSP2,Mexico,2045,1.54025,gcam-v7.0 +SSP2,Mexico,2050,1.62786,gcam-v7.0 +SSP2,Mexico,2055,1.72386,gcam-v7.0 +SSP2,Mexico,2060,1.82839,gcam-v7.0 +SSP2,Mexico,2065,1.93648,gcam-v7.0 +SSP2,Mexico,2070,2.05331,gcam-v7.0 +SSP2,Mexico,2075,2.17578,gcam-v7.0 +SSP2,Mexico,2080,2.30704,gcam-v7.0 +SSP2,Mexico,2085,2.4476,gcam-v7.0 +SSP2,Mexico,2090,2.59751,gcam-v7.0 +SSP2,Mexico,2095,2.75761,gcam-v7.0 +SSP2,Mexico,2100,2.929,gcam-v7.0 +SSP2,Middle East,1975,0,gcam-v7.0 +SSP2,Middle East,1990,0,gcam-v7.0 +SSP2,Middle East,2005,0,gcam-v7.0 +SSP2,Middle East,2010,0,gcam-v7.0 +SSP2,Middle East,2015,0,gcam-v7.0 +SSP2,Middle East,2020,1.16668,gcam-v7.0 +SSP2,Middle East,2025,1.3002,gcam-v7.0 +SSP2,Middle East,2030,1.46916,gcam-v7.0 +SSP2,Middle East,2035,1.61154,gcam-v7.0 +SSP2,Middle East,2040,1.76096,gcam-v7.0 +SSP2,Middle East,2045,1.89826,gcam-v7.0 +SSP2,Middle East,2050,2.03128,gcam-v7.0 +SSP2,Middle East,2055,2.15786,gcam-v7.0 +SSP2,Middle East,2060,2.28009,gcam-v7.0 +SSP2,Middle East,2065,2.41115,gcam-v7.0 +SSP2,Middle East,2070,2.55757,gcam-v7.0 +SSP2,Middle East,2075,2.71525,gcam-v7.0 +SSP2,Middle East,2080,2.88643,gcam-v7.0 +SSP2,Middle East,2085,3.07061,gcam-v7.0 +SSP2,Middle East,2090,3.26626,gcam-v7.0 +SSP2,Middle East,2095,3.48327,gcam-v7.0 +SSP2,Middle East,2100,3.72694,gcam-v7.0 +SSP2,Pakistan,1975,0,gcam-v7.0 +SSP2,Pakistan,1990,0,gcam-v7.0 +SSP2,Pakistan,2005,0,gcam-v7.0 +SSP2,Pakistan,2010,0,gcam-v7.0 +SSP2,Pakistan,2015,0,gcam-v7.0 +SSP2,Pakistan,2020,1.05714,gcam-v7.0 +SSP2,Pakistan,2025,1.15091,gcam-v7.0 +SSP2,Pakistan,2030,1.26277,gcam-v7.0 +SSP2,Pakistan,2035,1.38645,gcam-v7.0 +SSP2,Pakistan,2040,1.52512,gcam-v7.0 +SSP2,Pakistan,2045,1.68143,gcam-v7.0 +SSP2,Pakistan,2050,1.86037,gcam-v7.0 +SSP2,Pakistan,2055,2.07609,gcam-v7.0 +SSP2,Pakistan,2060,2.3207,gcam-v7.0 +SSP2,Pakistan,2065,2.6024,gcam-v7.0 +SSP2,Pakistan,2070,2.91808,gcam-v7.0 +SSP2,Pakistan,2075,3.26508,gcam-v7.0 +SSP2,Pakistan,2080,3.64058,gcam-v7.0 +SSP2,Pakistan,2085,4.0381,gcam-v7.0 +SSP2,Pakistan,2090,4.45467,gcam-v7.0 +SSP2,Pakistan,2095,4.88884,gcam-v7.0 +SSP2,Pakistan,2100,5.34187,gcam-v7.0 +SSP2,Russia,1975,0,gcam-v7.0 +SSP2,Russia,1990,0,gcam-v7.0 +SSP2,Russia,2005,0,gcam-v7.0 +SSP2,Russia,2010,0,gcam-v7.0 +SSP2,Russia,2015,0,gcam-v7.0 +SSP2,Russia,2020,1.20412,gcam-v7.0 +SSP2,Russia,2025,1.38932,gcam-v7.0 +SSP2,Russia,2030,1.56039,gcam-v7.0 +SSP2,Russia,2035,1.72939,gcam-v7.0 +SSP2,Russia,2040,1.8813,gcam-v7.0 +SSP2,Russia,2045,1.99321,gcam-v7.0 +SSP2,Russia,2050,2.11202,gcam-v7.0 +SSP2,Russia,2055,2.24019,gcam-v7.0 +SSP2,Russia,2060,2.36474,gcam-v7.0 +SSP2,Russia,2065,2.48556,gcam-v7.0 +SSP2,Russia,2070,2.62216,gcam-v7.0 +SSP2,Russia,2075,2.77222,gcam-v7.0 +SSP2,Russia,2080,2.9427,gcam-v7.0 +SSP2,Russia,2085,3.11861,gcam-v7.0 +SSP2,Russia,2090,3.29956,gcam-v7.0 +SSP2,Russia,2095,3.48465,gcam-v7.0 +SSP2,Russia,2100,3.66848,gcam-v7.0 +SSP2,South Africa,1975,0,gcam-v7.0 +SSP2,South Africa,1990,0,gcam-v7.0 +SSP2,South Africa,2005,0,gcam-v7.0 +SSP2,South Africa,2010,0,gcam-v7.0 +SSP2,South Africa,2015,0,gcam-v7.0 +SSP2,South Africa,2020,1.13993,gcam-v7.0 +SSP2,South Africa,2025,1.28859,gcam-v7.0 +SSP2,South Africa,2030,1.42529,gcam-v7.0 +SSP2,South Africa,2035,1.55375,gcam-v7.0 +SSP2,South Africa,2040,1.67761,gcam-v7.0 +SSP2,South Africa,2045,1.79336,gcam-v7.0 +SSP2,South Africa,2050,1.91458,gcam-v7.0 +SSP2,South Africa,2055,2.05078,gcam-v7.0 +SSP2,South Africa,2060,2.19558,gcam-v7.0 +SSP2,South Africa,2065,2.34763,gcam-v7.0 +SSP2,South Africa,2070,2.50954,gcam-v7.0 +SSP2,South Africa,2075,2.67839,gcam-v7.0 +SSP2,South Africa,2080,2.85638,gcam-v7.0 +SSP2,South Africa,2085,3.04104,gcam-v7.0 +SSP2,South Africa,2090,3.23509,gcam-v7.0 +SSP2,South Africa,2095,3.43733,gcam-v7.0 +SSP2,South Africa,2100,3.65175,gcam-v7.0 +SSP2,South America_Northern,1975,0,gcam-v7.0 +SSP2,South America_Northern,1990,0,gcam-v7.0 +SSP2,South America_Northern,2005,0,gcam-v7.0 +SSP2,South America_Northern,2010,0,gcam-v7.0 +SSP2,South America_Northern,2015,0,gcam-v7.0 +SSP2,South America_Northern,2020,0.933044,gcam-v7.0 +SSP2,South America_Northern,2025,0.99753,gcam-v7.0 +SSP2,South America_Northern,2030,1.04935,gcam-v7.0 +SSP2,South America_Northern,2035,1.15778,gcam-v7.0 +SSP2,South America_Northern,2040,1.25936,gcam-v7.0 +SSP2,South America_Northern,2045,1.44705,gcam-v7.0 +SSP2,South America_Northern,2050,1.65149,gcam-v7.0 +SSP2,South America_Northern,2055,1.86333,gcam-v7.0 +SSP2,South America_Northern,2060,2.0614,gcam-v7.0 +SSP2,South America_Northern,2065,2.25636,gcam-v7.0 +SSP2,South America_Northern,2070,2.45349,gcam-v7.0 +SSP2,South America_Northern,2075,2.66301,gcam-v7.0 +SSP2,South America_Northern,2080,2.893,gcam-v7.0 +SSP2,South America_Northern,2085,3.14419,gcam-v7.0 +SSP2,South America_Northern,2090,3.41966,gcam-v7.0 +SSP2,South America_Northern,2095,3.70541,gcam-v7.0 +SSP2,South America_Northern,2100,4.00576,gcam-v7.0 +SSP2,South America_Southern,1975,0,gcam-v7.0 +SSP2,South America_Southern,1990,0,gcam-v7.0 +SSP2,South America_Southern,2005,0,gcam-v7.0 +SSP2,South America_Southern,2010,0,gcam-v7.0 +SSP2,South America_Southern,2015,0,gcam-v7.0 +SSP2,South America_Southern,2020,1.1477,gcam-v7.0 +SSP2,South America_Southern,2025,1.28618,gcam-v7.0 +SSP2,South America_Southern,2030,1.40438,gcam-v7.0 +SSP2,South America_Southern,2035,1.51725,gcam-v7.0 +SSP2,South America_Southern,2040,1.63942,gcam-v7.0 +SSP2,South America_Southern,2045,1.76884,gcam-v7.0 +SSP2,South America_Southern,2050,1.90775,gcam-v7.0 +SSP2,South America_Southern,2055,2.05922,gcam-v7.0 +SSP2,South America_Southern,2060,2.22647,gcam-v7.0 +SSP2,South America_Southern,2065,2.40735,gcam-v7.0 +SSP2,South America_Southern,2070,2.60158,gcam-v7.0 +SSP2,South America_Southern,2075,2.80723,gcam-v7.0 +SSP2,South America_Southern,2080,3.02388,gcam-v7.0 +SSP2,South America_Southern,2085,3.25231,gcam-v7.0 +SSP2,South America_Southern,2090,3.49272,gcam-v7.0 +SSP2,South America_Southern,2095,3.74502,gcam-v7.0 +SSP2,South America_Southern,2100,4.01101,gcam-v7.0 +SSP2,South Asia,1975,0,gcam-v7.0 +SSP2,South Asia,1990,0,gcam-v7.0 +SSP2,South Asia,2005,0,gcam-v7.0 +SSP2,South Asia,2010,0,gcam-v7.0 +SSP2,South Asia,2015,0,gcam-v7.0 +SSP2,South Asia,2020,1.15153,gcam-v7.0 +SSP2,South Asia,2025,1.31599,gcam-v7.0 +SSP2,South Asia,2030,1.41108,gcam-v7.0 +SSP2,South Asia,2035,1.44435,gcam-v7.0 +SSP2,South Asia,2040,1.46003,gcam-v7.0 +SSP2,South Asia,2045,1.4671,gcam-v7.0 +SSP2,South Asia,2050,1.46975,gcam-v7.0 +SSP2,South Asia,2055,1.4761,gcam-v7.0 +SSP2,South Asia,2060,1.49106,gcam-v7.0 +SSP2,South Asia,2065,1.51348,gcam-v7.0 +SSP2,South Asia,2070,1.54277,gcam-v7.0 +SSP2,South Asia,2075,1.5768,gcam-v7.0 +SSP2,South Asia,2080,1.61519,gcam-v7.0 +SSP2,South Asia,2085,1.65894,gcam-v7.0 +SSP2,South Asia,2090,1.70845,gcam-v7.0 +SSP2,South Asia,2095,1.76374,gcam-v7.0 +SSP2,South Asia,2100,1.82381,gcam-v7.0 +SSP2,South Korea,1975,0,gcam-v7.0 +SSP2,South Korea,1990,0,gcam-v7.0 +SSP2,South Korea,2005,0,gcam-v7.0 +SSP2,South Korea,2010,0,gcam-v7.0 +SSP2,South Korea,2015,0,gcam-v7.0 +SSP2,South Korea,2020,1.12679,gcam-v7.0 +SSP2,South Korea,2025,1.26977,gcam-v7.0 +SSP2,South Korea,2030,1.41054,gcam-v7.0 +SSP2,South Korea,2035,1.54111,gcam-v7.0 +SSP2,South Korea,2040,1.67216,gcam-v7.0 +SSP2,South Korea,2045,1.78627,gcam-v7.0 +SSP2,South Korea,2050,1.89822,gcam-v7.0 +SSP2,South Korea,2055,2.00245,gcam-v7.0 +SSP2,South Korea,2060,2.11769,gcam-v7.0 +SSP2,South Korea,2065,2.23201,gcam-v7.0 +SSP2,South Korea,2070,2.32782,gcam-v7.0 +SSP2,South Korea,2075,2.42619,gcam-v7.0 +SSP2,South Korea,2080,2.51717,gcam-v7.0 +SSP2,South Korea,2085,2.60788,gcam-v7.0 +SSP2,South Korea,2090,2.70166,gcam-v7.0 +SSP2,South Korea,2095,2.79988,gcam-v7.0 +SSP2,South Korea,2100,2.89787,gcam-v7.0 +SSP2,Southeast Asia,1975,0,gcam-v7.0 +SSP2,Southeast Asia,1990,0,gcam-v7.0 +SSP2,Southeast Asia,2005,0,gcam-v7.0 +SSP2,Southeast Asia,2010,0,gcam-v7.0 +SSP2,Southeast Asia,2015,0,gcam-v7.0 +SSP2,Southeast Asia,2020,1.15099,gcam-v7.0 +SSP2,Southeast Asia,2025,1.30343,gcam-v7.0 +SSP2,Southeast Asia,2030,1.43028,gcam-v7.0 +SSP2,Southeast Asia,2035,1.52539,gcam-v7.0 +SSP2,Southeast Asia,2040,1.62642,gcam-v7.0 +SSP2,Southeast Asia,2045,1.71837,gcam-v7.0 +SSP2,Southeast Asia,2050,1.81364,gcam-v7.0 +SSP2,Southeast Asia,2055,1.91977,gcam-v7.0 +SSP2,Southeast Asia,2060,2.03559,gcam-v7.0 +SSP2,Southeast Asia,2065,2.15774,gcam-v7.0 +SSP2,Southeast Asia,2070,2.2889,gcam-v7.0 +SSP2,Southeast Asia,2075,2.42907,gcam-v7.0 +SSP2,Southeast Asia,2080,2.57754,gcam-v7.0 +SSP2,Southeast Asia,2085,2.73339,gcam-v7.0 +SSP2,Southeast Asia,2090,2.89547,gcam-v7.0 +SSP2,Southeast Asia,2095,3.06458,gcam-v7.0 +SSP2,Southeast Asia,2100,3.24171,gcam-v7.0 +SSP2,Taiwan,1975,0,gcam-v7.0 +SSP2,Taiwan,1990,0,gcam-v7.0 +SSP2,Taiwan,2005,0,gcam-v7.0 +SSP2,Taiwan,2010,0,gcam-v7.0 +SSP2,Taiwan,2015,0,gcam-v7.0 +SSP2,Taiwan,2020,1.15923,gcam-v7.0 +SSP2,Taiwan,2025,1.25151,gcam-v7.0 +SSP2,Taiwan,2030,1.32054,gcam-v7.0 +SSP2,Taiwan,2035,1.38255,gcam-v7.0 +SSP2,Taiwan,2040,1.44085,gcam-v7.0 +SSP2,Taiwan,2045,1.48193,gcam-v7.0 +SSP2,Taiwan,2050,1.5051,gcam-v7.0 +SSP2,Taiwan,2055,1.51703,gcam-v7.0 +SSP2,Taiwan,2060,1.53248,gcam-v7.0 +SSP2,Taiwan,2065,1.59739,gcam-v7.0 +SSP2,Taiwan,2070,1.66265,gcam-v7.0 +SSP2,Taiwan,2075,1.71974,gcam-v7.0 +SSP2,Taiwan,2080,1.76713,gcam-v7.0 +SSP2,Taiwan,2085,1.80193,gcam-v7.0 +SSP2,Taiwan,2090,1.82659,gcam-v7.0 +SSP2,Taiwan,2095,1.84326,gcam-v7.0 +SSP2,Taiwan,2100,1.85421,gcam-v7.0 +SSP2,USA,1975,0,gcam-v7.0 +SSP2,USA,1990,0,gcam-v7.0 +SSP2,USA,2005,0,gcam-v7.0 +SSP2,USA,2010,0,gcam-v7.0 +SSP2,USA,2015,0,gcam-v7.0 +SSP2,USA,2020,1.10457,gcam-v7.0 +SSP2,USA,2025,1.18932,gcam-v7.0 +SSP2,USA,2030,1.25792,gcam-v7.0 +SSP2,USA,2035,1.30993,gcam-v7.0 +SSP2,USA,2040,1.35602,gcam-v7.0 +SSP2,USA,2045,1.39364,gcam-v7.0 +SSP2,USA,2050,1.43449,gcam-v7.0 +SSP2,USA,2055,1.48018,gcam-v7.0 +SSP2,USA,2060,1.52868,gcam-v7.0 +SSP2,USA,2065,1.57426,gcam-v7.0 +SSP2,USA,2070,1.62414,gcam-v7.0 +SSP2,USA,2075,1.67902,gcam-v7.0 +SSP2,USA,2080,1.73289,gcam-v7.0 +SSP2,USA,2085,1.79028,gcam-v7.0 +SSP2,USA,2090,1.85049,gcam-v7.0 +SSP2,USA,2095,1.91309,gcam-v7.0 +SSP2,USA,2100,1.97913,gcam-v7.0 +SSP3,Africa_Eastern,1975,0,gcam-v7.0 +SSP3,Africa_Eastern,1990,0,gcam-v7.0 +SSP3,Africa_Eastern,2005,0,gcam-v7.0 +SSP3,Africa_Eastern,2010,0,gcam-v7.0 +SSP3,Africa_Eastern,2015,0,gcam-v7.0 +SSP3,Africa_Eastern,2020,1.15732,gcam-v7.0 +SSP3,Africa_Eastern,2025,1.3098,gcam-v7.0 +SSP3,Africa_Eastern,2030,1.42594,gcam-v7.0 +SSP3,Africa_Eastern,2035,1.51597,gcam-v7.0 +SSP3,Africa_Eastern,2040,1.60297,gcam-v7.0 +SSP3,Africa_Eastern,2045,1.68661,gcam-v7.0 +SSP3,Africa_Eastern,2050,1.76222,gcam-v7.0 +SSP3,Africa_Eastern,2055,1.84109,gcam-v7.0 +SSP3,Africa_Eastern,2060,1.92021,gcam-v7.0 +SSP3,Africa_Eastern,2065,2.00577,gcam-v7.0 +SSP3,Africa_Eastern,2070,2.09703,gcam-v7.0 +SSP3,Africa_Eastern,2075,2.19266,gcam-v7.0 +SSP3,Africa_Eastern,2080,2.29249,gcam-v7.0 +SSP3,Africa_Eastern,2085,2.39707,gcam-v7.0 +SSP3,Africa_Eastern,2090,2.50578,gcam-v7.0 +SSP3,Africa_Eastern,2095,2.62028,gcam-v7.0 +SSP3,Africa_Eastern,2100,2.74465,gcam-v7.0 +SSP3,Africa_Northern,1975,0,gcam-v7.0 +SSP3,Africa_Northern,1990,0,gcam-v7.0 +SSP3,Africa_Northern,2005,0,gcam-v7.0 +SSP3,Africa_Northern,2010,0,gcam-v7.0 +SSP3,Africa_Northern,2015,0,gcam-v7.0 +SSP3,Africa_Northern,2020,1.09746,gcam-v7.0 +SSP3,Africa_Northern,2025,1.24374,gcam-v7.0 +SSP3,Africa_Northern,2030,1.34843,gcam-v7.0 +SSP3,Africa_Northern,2035,1.42221,gcam-v7.0 +SSP3,Africa_Northern,2040,1.48686,gcam-v7.0 +SSP3,Africa_Northern,2045,1.54531,gcam-v7.0 +SSP3,Africa_Northern,2050,1.60161,gcam-v7.0 +SSP3,Africa_Northern,2055,1.65982,gcam-v7.0 +SSP3,Africa_Northern,2060,1.72027,gcam-v7.0 +SSP3,Africa_Northern,2065,1.80109,gcam-v7.0 +SSP3,Africa_Northern,2070,1.88515,gcam-v7.0 +SSP3,Africa_Northern,2075,1.97309,gcam-v7.0 +SSP3,Africa_Northern,2080,2.05659,gcam-v7.0 +SSP3,Africa_Northern,2085,2.13249,gcam-v7.0 +SSP3,Africa_Northern,2090,2.20777,gcam-v7.0 +SSP3,Africa_Northern,2095,2.28425,gcam-v7.0 +SSP3,Africa_Northern,2100,2.36495,gcam-v7.0 +SSP3,Africa_Southern,1975,0,gcam-v7.0 +SSP3,Africa_Southern,1990,0,gcam-v7.0 +SSP3,Africa_Southern,2005,0,gcam-v7.0 +SSP3,Africa_Southern,2010,0,gcam-v7.0 +SSP3,Africa_Southern,2015,0,gcam-v7.0 +SSP3,Africa_Southern,2020,1.1427,gcam-v7.0 +SSP3,Africa_Southern,2025,1.2927,gcam-v7.0 +SSP3,Africa_Southern,2030,1.39654,gcam-v7.0 +SSP3,Africa_Southern,2035,1.46252,gcam-v7.0 +SSP3,Africa_Southern,2040,1.5401,gcam-v7.0 +SSP3,Africa_Southern,2045,1.62892,gcam-v7.0 +SSP3,Africa_Southern,2050,1.72532,gcam-v7.0 +SSP3,Africa_Southern,2055,1.83201,gcam-v7.0 +SSP3,Africa_Southern,2060,1.94315,gcam-v7.0 +SSP3,Africa_Southern,2065,2.06151,gcam-v7.0 +SSP3,Africa_Southern,2070,2.18827,gcam-v7.0 +SSP3,Africa_Southern,2075,2.31764,gcam-v7.0 +SSP3,Africa_Southern,2080,2.448,gcam-v7.0 +SSP3,Africa_Southern,2085,2.57982,gcam-v7.0 +SSP3,Africa_Southern,2090,2.71345,gcam-v7.0 +SSP3,Africa_Southern,2095,2.84917,gcam-v7.0 +SSP3,Africa_Southern,2100,3.00556,gcam-v7.0 +SSP3,Africa_Western,1975,0,gcam-v7.0 +SSP3,Africa_Western,1990,0,gcam-v7.0 +SSP3,Africa_Western,2005,0,gcam-v7.0 +SSP3,Africa_Western,2010,0,gcam-v7.0 +SSP3,Africa_Western,2015,0,gcam-v7.0 +SSP3,Africa_Western,2020,1.17888,gcam-v7.0 +SSP3,Africa_Western,2025,1.35309,gcam-v7.0 +SSP3,Africa_Western,2030,1.45603,gcam-v7.0 +SSP3,Africa_Western,2035,1.52142,gcam-v7.0 +SSP3,Africa_Western,2040,1.59805,gcam-v7.0 +SSP3,Africa_Western,2045,1.67163,gcam-v7.0 +SSP3,Africa_Western,2050,1.7478,gcam-v7.0 +SSP3,Africa_Western,2055,1.833,gcam-v7.0 +SSP3,Africa_Western,2060,1.92592,gcam-v7.0 +SSP3,Africa_Western,2065,2.0245,gcam-v7.0 +SSP3,Africa_Western,2070,2.13481,gcam-v7.0 +SSP3,Africa_Western,2075,2.25526,gcam-v7.0 +SSP3,Africa_Western,2080,2.38432,gcam-v7.0 +SSP3,Africa_Western,2085,2.51573,gcam-v7.0 +SSP3,Africa_Western,2090,2.65003,gcam-v7.0 +SSP3,Africa_Western,2095,2.79075,gcam-v7.0 +SSP3,Africa_Western,2100,2.94203,gcam-v7.0 +SSP3,Argentina,1975,0,gcam-v7.0 +SSP3,Argentina,1990,0,gcam-v7.0 +SSP3,Argentina,2005,0,gcam-v7.0 +SSP3,Argentina,2010,0,gcam-v7.0 +SSP3,Argentina,2015,0,gcam-v7.0 +SSP3,Argentina,2020,1.06419,gcam-v7.0 +SSP3,Argentina,2025,1.15878,gcam-v7.0 +SSP3,Argentina,2030,1.21815,gcam-v7.0 +SSP3,Argentina,2035,1.26172,gcam-v7.0 +SSP3,Argentina,2040,1.30092,gcam-v7.0 +SSP3,Argentina,2045,1.33914,gcam-v7.0 +SSP3,Argentina,2050,1.37242,gcam-v7.0 +SSP3,Argentina,2055,1.40824,gcam-v7.0 +SSP3,Argentina,2060,1.44879,gcam-v7.0 +SSP3,Argentina,2065,1.49249,gcam-v7.0 +SSP3,Argentina,2070,1.53878,gcam-v7.0 +SSP3,Argentina,2075,1.58793,gcam-v7.0 +SSP3,Argentina,2080,1.63473,gcam-v7.0 +SSP3,Argentina,2085,1.67936,gcam-v7.0 +SSP3,Argentina,2090,1.72149,gcam-v7.0 +SSP3,Argentina,2095,1.76247,gcam-v7.0 +SSP3,Argentina,2100,1.80658,gcam-v7.0 +SSP3,Australia_NZ,1975,0,gcam-v7.0 +SSP3,Australia_NZ,1990,0,gcam-v7.0 +SSP3,Australia_NZ,2005,0,gcam-v7.0 +SSP3,Australia_NZ,2010,0,gcam-v7.0 +SSP3,Australia_NZ,2015,0,gcam-v7.0 +SSP3,Australia_NZ,2020,1.1039,gcam-v7.0 +SSP3,Australia_NZ,2025,1.18931,gcam-v7.0 +SSP3,Australia_NZ,2030,1.25205,gcam-v7.0 +SSP3,Australia_NZ,2035,1.29739,gcam-v7.0 +SSP3,Australia_NZ,2040,1.34585,gcam-v7.0 +SSP3,Australia_NZ,2045,1.3892,gcam-v7.0 +SSP3,Australia_NZ,2050,1.43433,gcam-v7.0 +SSP3,Australia_NZ,2055,1.4846,gcam-v7.0 +SSP3,Australia_NZ,2060,1.53826,gcam-v7.0 +SSP3,Australia_NZ,2065,1.59405,gcam-v7.0 +SSP3,Australia_NZ,2070,1.65033,gcam-v7.0 +SSP3,Australia_NZ,2075,1.71019,gcam-v7.0 +SSP3,Australia_NZ,2080,1.77459,gcam-v7.0 +SSP3,Australia_NZ,2085,1.84509,gcam-v7.0 +SSP3,Australia_NZ,2090,1.9213,gcam-v7.0 +SSP3,Australia_NZ,2095,2.00043,gcam-v7.0 +SSP3,Australia_NZ,2100,2.0795,gcam-v7.0 +SSP3,Brazil,1975,0,gcam-v7.0 +SSP3,Brazil,1990,0,gcam-v7.0 +SSP3,Brazil,2005,0,gcam-v7.0 +SSP3,Brazil,2010,0,gcam-v7.0 +SSP3,Brazil,2015,0,gcam-v7.0 +SSP3,Brazil,2020,1.12141,gcam-v7.0 +SSP3,Brazil,2025,1.23009,gcam-v7.0 +SSP3,Brazil,2030,1.29973,gcam-v7.0 +SSP3,Brazil,2035,1.34169,gcam-v7.0 +SSP3,Brazil,2040,1.37972,gcam-v7.0 +SSP3,Brazil,2045,1.41619,gcam-v7.0 +SSP3,Brazil,2050,1.45096,gcam-v7.0 +SSP3,Brazil,2055,1.48363,gcam-v7.0 +SSP3,Brazil,2060,1.51631,gcam-v7.0 +SSP3,Brazil,2065,1.55396,gcam-v7.0 +SSP3,Brazil,2070,1.59389,gcam-v7.0 +SSP3,Brazil,2075,1.62448,gcam-v7.0 +SSP3,Brazil,2080,1.65063,gcam-v7.0 +SSP3,Brazil,2085,1.67246,gcam-v7.0 +SSP3,Brazil,2090,1.69209,gcam-v7.0 +SSP3,Brazil,2095,1.70782,gcam-v7.0 +SSP3,Brazil,2100,1.72089,gcam-v7.0 +SSP3,Canada,1975,0,gcam-v7.0 +SSP3,Canada,1990,0,gcam-v7.0 +SSP3,Canada,2005,0,gcam-v7.0 +SSP3,Canada,2010,0,gcam-v7.0 +SSP3,Canada,2015,0,gcam-v7.0 +SSP3,Canada,2020,1.03335,gcam-v7.0 +SSP3,Canada,2025,1.10086,gcam-v7.0 +SSP3,Canada,2030,1.17124,gcam-v7.0 +SSP3,Canada,2035,1.25059,gcam-v7.0 +SSP3,Canada,2040,1.34165,gcam-v7.0 +SSP3,Canada,2045,1.44229,gcam-v7.0 +SSP3,Canada,2050,1.5454,gcam-v7.0 +SSP3,Canada,2055,1.65083,gcam-v7.0 +SSP3,Canada,2060,1.75564,gcam-v7.0 +SSP3,Canada,2065,1.86495,gcam-v7.0 +SSP3,Canada,2070,1.97298,gcam-v7.0 +SSP3,Canada,2075,2.07211,gcam-v7.0 +SSP3,Canada,2080,2.17858,gcam-v7.0 +SSP3,Canada,2085,2.29527,gcam-v7.0 +SSP3,Canada,2090,2.42092,gcam-v7.0 +SSP3,Canada,2095,2.55015,gcam-v7.0 +SSP3,Canada,2100,2.67867,gcam-v7.0 +SSP3,Central America and Caribbean,1975,0,gcam-v7.0 +SSP3,Central America and Caribbean,1990,0,gcam-v7.0 +SSP3,Central America and Caribbean,2005,0,gcam-v7.0 +SSP3,Central America and Caribbean,2010,0,gcam-v7.0 +SSP3,Central America and Caribbean,2015,0,gcam-v7.0 +SSP3,Central America and Caribbean,2020,1.06546,gcam-v7.0 +SSP3,Central America and Caribbean,2025,1.13646,gcam-v7.0 +SSP3,Central America and Caribbean,2030,1.19178,gcam-v7.0 +SSP3,Central America and Caribbean,2035,1.23534,gcam-v7.0 +SSP3,Central America and Caribbean,2040,1.27758,gcam-v7.0 +SSP3,Central America and Caribbean,2045,1.31504,gcam-v7.0 +SSP3,Central America and Caribbean,2050,1.35169,gcam-v7.0 +SSP3,Central America and Caribbean,2055,1.39343,gcam-v7.0 +SSP3,Central America and Caribbean,2060,1.43939,gcam-v7.0 +SSP3,Central America and Caribbean,2065,1.48851,gcam-v7.0 +SSP3,Central America and Caribbean,2070,1.54075,gcam-v7.0 +SSP3,Central America and Caribbean,2075,1.59485,gcam-v7.0 +SSP3,Central America and Caribbean,2080,1.64858,gcam-v7.0 +SSP3,Central America and Caribbean,2085,1.70259,gcam-v7.0 +SSP3,Central America and Caribbean,2090,1.75714,gcam-v7.0 +SSP3,Central America and Caribbean,2095,1.81288,gcam-v7.0 +SSP3,Central America and Caribbean,2100,1.87195,gcam-v7.0 +SSP3,Central Asia,1975,0,gcam-v7.0 +SSP3,Central Asia,1990,0,gcam-v7.0 +SSP3,Central Asia,2005,0,gcam-v7.0 +SSP3,Central Asia,2010,0,gcam-v7.0 +SSP3,Central Asia,2015,0,gcam-v7.0 +SSP3,Central Asia,2020,1.11083,gcam-v7.0 +SSP3,Central Asia,2025,1.32636,gcam-v7.0 +SSP3,Central Asia,2030,1.48018,gcam-v7.0 +SSP3,Central Asia,2035,1.60867,gcam-v7.0 +SSP3,Central Asia,2040,1.72906,gcam-v7.0 +SSP3,Central Asia,2045,1.82418,gcam-v7.0 +SSP3,Central Asia,2050,1.88588,gcam-v7.0 +SSP3,Central Asia,2055,1.93522,gcam-v7.0 +SSP3,Central Asia,2060,1.99395,gcam-v7.0 +SSP3,Central Asia,2065,2.06434,gcam-v7.0 +SSP3,Central Asia,2070,2.14086,gcam-v7.0 +SSP3,Central Asia,2075,2.2272,gcam-v7.0 +SSP3,Central Asia,2080,2.32077,gcam-v7.0 +SSP3,Central Asia,2085,2.41451,gcam-v7.0 +SSP3,Central Asia,2090,2.50923,gcam-v7.0 +SSP3,Central Asia,2095,2.60417,gcam-v7.0 +SSP3,Central Asia,2100,2.69893,gcam-v7.0 +SSP3,China,1975,0,gcam-v7.0 +SSP3,China,1990,0,gcam-v7.0 +SSP3,China,2005,0,gcam-v7.0 +SSP3,China,2010,0,gcam-v7.0 +SSP3,China,2015,0,gcam-v7.0 +SSP3,China,2020,1.35441,gcam-v7.0 +SSP3,China,2025,1.63926,gcam-v7.0 +SSP3,China,2030,1.85915,gcam-v7.0 +SSP3,China,2035,2.04183,gcam-v7.0 +SSP3,China,2040,2.20578,gcam-v7.0 +SSP3,China,2045,2.32019,gcam-v7.0 +SSP3,China,2050,2.42368,gcam-v7.0 +SSP3,China,2055,2.54873,gcam-v7.0 +SSP3,China,2060,2.66359,gcam-v7.0 +SSP3,China,2065,2.77319,gcam-v7.0 +SSP3,China,2070,2.86852,gcam-v7.0 +SSP3,China,2075,2.96281,gcam-v7.0 +SSP3,China,2080,3.03714,gcam-v7.0 +SSP3,China,2085,3.10382,gcam-v7.0 +SSP3,China,2090,3.15862,gcam-v7.0 +SSP3,China,2095,3.20546,gcam-v7.0 +SSP3,China,2100,3.25013,gcam-v7.0 +SSP3,Colombia,1975,0,gcam-v7.0 +SSP3,Colombia,1990,0,gcam-v7.0 +SSP3,Colombia,2005,0,gcam-v7.0 +SSP3,Colombia,2010,0,gcam-v7.0 +SSP3,Colombia,2015,0,gcam-v7.0 +SSP3,Colombia,2020,1.12668,gcam-v7.0 +SSP3,Colombia,2025,1.1917,gcam-v7.0 +SSP3,Colombia,2030,1.24325,gcam-v7.0 +SSP3,Colombia,2035,1.28466,gcam-v7.0 +SSP3,Colombia,2040,1.329,gcam-v7.0 +SSP3,Colombia,2045,1.37751,gcam-v7.0 +SSP3,Colombia,2050,1.4271,gcam-v7.0 +SSP3,Colombia,2055,1.48197,gcam-v7.0 +SSP3,Colombia,2060,1.54587,gcam-v7.0 +SSP3,Colombia,2065,1.61484,gcam-v7.0 +SSP3,Colombia,2070,1.688,gcam-v7.0 +SSP3,Colombia,2075,1.76754,gcam-v7.0 +SSP3,Colombia,2080,1.84825,gcam-v7.0 +SSP3,Colombia,2085,1.93123,gcam-v7.0 +SSP3,Colombia,2090,2.0172,gcam-v7.0 +SSP3,Colombia,2095,2.10501,gcam-v7.0 +SSP3,Colombia,2100,2.19609,gcam-v7.0 +SSP3,EU-12,1975,0,gcam-v7.0 +SSP3,EU-12,1990,0,gcam-v7.0 +SSP3,EU-12,2005,0,gcam-v7.0 +SSP3,EU-12,2010,0,gcam-v7.0 +SSP3,EU-12,2015,0,gcam-v7.0 +SSP3,EU-12,2020,1.08339,gcam-v7.0 +SSP3,EU-12,2025,1.20838,gcam-v7.0 +SSP3,EU-12,2030,1.30008,gcam-v7.0 +SSP3,EU-12,2035,1.37895,gcam-v7.0 +SSP3,EU-12,2040,1.45955,gcam-v7.0 +SSP3,EU-12,2045,1.54406,gcam-v7.0 +SSP3,EU-12,2050,1.62664,gcam-v7.0 +SSP3,EU-12,2055,1.71149,gcam-v7.0 +SSP3,EU-12,2060,1.79086,gcam-v7.0 +SSP3,EU-12,2065,1.86431,gcam-v7.0 +SSP3,EU-12,2070,1.93059,gcam-v7.0 +SSP3,EU-12,2075,1.99982,gcam-v7.0 +SSP3,EU-12,2080,2.07001,gcam-v7.0 +SSP3,EU-12,2085,2.13847,gcam-v7.0 +SSP3,EU-12,2090,2.20589,gcam-v7.0 +SSP3,EU-12,2095,2.27158,gcam-v7.0 +SSP3,EU-12,2100,2.33486,gcam-v7.0 +SSP3,EU-15,1975,0,gcam-v7.0 +SSP3,EU-15,1990,0,gcam-v7.0 +SSP3,EU-15,2005,0,gcam-v7.0 +SSP3,EU-15,2010,0,gcam-v7.0 +SSP3,EU-15,2015,0,gcam-v7.0 +SSP3,EU-15,2020,1.04877,gcam-v7.0 +SSP3,EU-15,2025,1.1139,gcam-v7.0 +SSP3,EU-15,2030,1.17851,gcam-v7.0 +SSP3,EU-15,2035,1.2417,gcam-v7.0 +SSP3,EU-15,2040,1.30214,gcam-v7.0 +SSP3,EU-15,2045,1.35706,gcam-v7.0 +SSP3,EU-15,2050,1.4087,gcam-v7.0 +SSP3,EU-15,2055,1.46153,gcam-v7.0 +SSP3,EU-15,2060,1.51382,gcam-v7.0 +SSP3,EU-15,2065,1.56627,gcam-v7.0 +SSP3,EU-15,2070,1.61889,gcam-v7.0 +SSP3,EU-15,2075,1.67467,gcam-v7.0 +SSP3,EU-15,2080,1.73326,gcam-v7.0 +SSP3,EU-15,2085,1.79501,gcam-v7.0 +SSP3,EU-15,2090,1.86033,gcam-v7.0 +SSP3,EU-15,2095,1.92999,gcam-v7.0 +SSP3,EU-15,2100,2.00114,gcam-v7.0 +SSP3,Europe_Eastern,1975,0,gcam-v7.0 +SSP3,Europe_Eastern,1990,0,gcam-v7.0 +SSP3,Europe_Eastern,2005,0,gcam-v7.0 +SSP3,Europe_Eastern,2010,0,gcam-v7.0 +SSP3,Europe_Eastern,2015,0,gcam-v7.0 +SSP3,Europe_Eastern,2020,0.950351,gcam-v7.0 +SSP3,Europe_Eastern,2025,1.05446,gcam-v7.0 +SSP3,Europe_Eastern,2030,1.12429,gcam-v7.0 +SSP3,Europe_Eastern,2035,1.17031,gcam-v7.0 +SSP3,Europe_Eastern,2040,1.20666,gcam-v7.0 +SSP3,Europe_Eastern,2045,1.23508,gcam-v7.0 +SSP3,Europe_Eastern,2050,1.26739,gcam-v7.0 +SSP3,Europe_Eastern,2055,1.30871,gcam-v7.0 +SSP3,Europe_Eastern,2060,1.36003,gcam-v7.0 +SSP3,Europe_Eastern,2065,1.42349,gcam-v7.0 +SSP3,Europe_Eastern,2070,1.50595,gcam-v7.0 +SSP3,Europe_Eastern,2075,1.65677,gcam-v7.0 +SSP3,Europe_Eastern,2080,1.7418,gcam-v7.0 +SSP3,Europe_Eastern,2085,1.82967,gcam-v7.0 +SSP3,Europe_Eastern,2090,1.92335,gcam-v7.0 +SSP3,Europe_Eastern,2095,2.01634,gcam-v7.0 +SSP3,Europe_Eastern,2100,2.10983,gcam-v7.0 +SSP3,Europe_Non_EU,1975,0,gcam-v7.0 +SSP3,Europe_Non_EU,1990,0,gcam-v7.0 +SSP3,Europe_Non_EU,2005,0,gcam-v7.0 +SSP3,Europe_Non_EU,2010,0,gcam-v7.0 +SSP3,Europe_Non_EU,2015,0,gcam-v7.0 +SSP3,Europe_Non_EU,2020,1.07854,gcam-v7.0 +SSP3,Europe_Non_EU,2025,1.15019,gcam-v7.0 +SSP3,Europe_Non_EU,2030,1.19232,gcam-v7.0 +SSP3,Europe_Non_EU,2035,1.22349,gcam-v7.0 +SSP3,Europe_Non_EU,2040,1.25972,gcam-v7.0 +SSP3,Europe_Non_EU,2045,1.29576,gcam-v7.0 +SSP3,Europe_Non_EU,2050,1.33209,gcam-v7.0 +SSP3,Europe_Non_EU,2055,1.36803,gcam-v7.0 +SSP3,Europe_Non_EU,2060,1.40577,gcam-v7.0 +SSP3,Europe_Non_EU,2065,1.44714,gcam-v7.0 +SSP3,Europe_Non_EU,2070,1.48831,gcam-v7.0 +SSP3,Europe_Non_EU,2075,1.5309,gcam-v7.0 +SSP3,Europe_Non_EU,2080,1.57106,gcam-v7.0 +SSP3,Europe_Non_EU,2085,1.60889,gcam-v7.0 +SSP3,Europe_Non_EU,2090,1.64548,gcam-v7.0 +SSP3,Europe_Non_EU,2095,1.68235,gcam-v7.0 +SSP3,Europe_Non_EU,2100,1.72123,gcam-v7.0 +SSP3,European Free Trade Association,1975,0,gcam-v7.0 +SSP3,European Free Trade Association,1990,0,gcam-v7.0 +SSP3,European Free Trade Association,2005,0,gcam-v7.0 +SSP3,European Free Trade Association,2010,0,gcam-v7.0 +SSP3,European Free Trade Association,2015,0,gcam-v7.0 +SSP3,European Free Trade Association,2020,1.07154,gcam-v7.0 +SSP3,European Free Trade Association,2025,1.14143,gcam-v7.0 +SSP3,European Free Trade Association,2030,1.21249,gcam-v7.0 +SSP3,European Free Trade Association,2035,1.27862,gcam-v7.0 +SSP3,European Free Trade Association,2040,1.34016,gcam-v7.0 +SSP3,European Free Trade Association,2045,1.3854,gcam-v7.0 +SSP3,European Free Trade Association,2050,1.43814,gcam-v7.0 +SSP3,European Free Trade Association,2055,1.49816,gcam-v7.0 +SSP3,European Free Trade Association,2060,1.56471,gcam-v7.0 +SSP3,European Free Trade Association,2065,1.63135,gcam-v7.0 +SSP3,European Free Trade Association,2070,1.69459,gcam-v7.0 +SSP3,European Free Trade Association,2075,1.75799,gcam-v7.0 +SSP3,European Free Trade Association,2080,1.82609,gcam-v7.0 +SSP3,European Free Trade Association,2085,1.90106,gcam-v7.0 +SSP3,European Free Trade Association,2090,1.98124,gcam-v7.0 +SSP3,European Free Trade Association,2095,2.06431,gcam-v7.0 +SSP3,European Free Trade Association,2100,2.14217,gcam-v7.0 +SSP3,India,1975,0,gcam-v7.0 +SSP3,India,1990,0,gcam-v7.0 +SSP3,India,2005,0,gcam-v7.0 +SSP3,India,2010,0,gcam-v7.0 +SSP3,India,2015,0,gcam-v7.0 +SSP3,India,2020,1.16691,gcam-v7.0 +SSP3,India,2025,1.33088,gcam-v7.0 +SSP3,India,2030,1.4292,gcam-v7.0 +SSP3,India,2035,1.48784,gcam-v7.0 +SSP3,India,2040,1.53893,gcam-v7.0 +SSP3,India,2045,1.58447,gcam-v7.0 +SSP3,India,2050,1.62918,gcam-v7.0 +SSP3,India,2055,1.67998,gcam-v7.0 +SSP3,India,2060,1.73556,gcam-v7.0 +SSP3,India,2065,1.79355,gcam-v7.0 +SSP3,India,2070,1.85385,gcam-v7.0 +SSP3,India,2075,1.91645,gcam-v7.0 +SSP3,India,2080,1.97973,gcam-v7.0 +SSP3,India,2085,2.04126,gcam-v7.0 +SSP3,India,2090,2.10023,gcam-v7.0 +SSP3,India,2095,2.15638,gcam-v7.0 +SSP3,India,2100,2.21541,gcam-v7.0 +SSP3,Indonesia,1975,0,gcam-v7.0 +SSP3,Indonesia,1990,0,gcam-v7.0 +SSP3,Indonesia,2005,0,gcam-v7.0 +SSP3,Indonesia,2010,0,gcam-v7.0 +SSP3,Indonesia,2015,0,gcam-v7.0 +SSP3,Indonesia,2020,1.21445,gcam-v7.0 +SSP3,Indonesia,2025,1.42598,gcam-v7.0 +SSP3,Indonesia,2030,1.5745,gcam-v7.0 +SSP3,Indonesia,2035,1.68383,gcam-v7.0 +SSP3,Indonesia,2040,1.79408,gcam-v7.0 +SSP3,Indonesia,2045,1.89412,gcam-v7.0 +SSP3,Indonesia,2050,1.98388,gcam-v7.0 +SSP3,Indonesia,2055,2.07142,gcam-v7.0 +SSP3,Indonesia,2060,2.16076,gcam-v7.0 +SSP3,Indonesia,2065,2.25027,gcam-v7.0 +SSP3,Indonesia,2070,2.34733,gcam-v7.0 +SSP3,Indonesia,2075,2.44561,gcam-v7.0 +SSP3,Indonesia,2080,2.53416,gcam-v7.0 +SSP3,Indonesia,2085,2.62095,gcam-v7.0 +SSP3,Indonesia,2090,2.70608,gcam-v7.0 +SSP3,Indonesia,2095,2.78863,gcam-v7.0 +SSP3,Indonesia,2100,2.87121,gcam-v7.0 +SSP3,Japan,1975,0,gcam-v7.0 +SSP3,Japan,1990,0,gcam-v7.0 +SSP3,Japan,2005,0,gcam-v7.0 +SSP3,Japan,2010,0,gcam-v7.0 +SSP3,Japan,2015,0,gcam-v7.0 +SSP3,Japan,2020,1.03681,gcam-v7.0 +SSP3,Japan,2025,1.09401,gcam-v7.0 +SSP3,Japan,2030,1.14282,gcam-v7.0 +SSP3,Japan,2035,1.18397,gcam-v7.0 +SSP3,Japan,2040,1.23373,gcam-v7.0 +SSP3,Japan,2045,1.27693,gcam-v7.0 +SSP3,Japan,2050,1.31225,gcam-v7.0 +SSP3,Japan,2055,1.34709,gcam-v7.0 +SSP3,Japan,2060,1.38247,gcam-v7.0 +SSP3,Japan,2065,1.42171,gcam-v7.0 +SSP3,Japan,2070,1.46185,gcam-v7.0 +SSP3,Japan,2075,1.50365,gcam-v7.0 +SSP3,Japan,2080,1.55092,gcam-v7.0 +SSP3,Japan,2085,1.59828,gcam-v7.0 +SSP3,Japan,2090,1.64881,gcam-v7.0 +SSP3,Japan,2095,1.70409,gcam-v7.0 +SSP3,Japan,2100,1.76301,gcam-v7.0 +SSP3,Mexico,1975,0,gcam-v7.0 +SSP3,Mexico,1990,0,gcam-v7.0 +SSP3,Mexico,2005,0,gcam-v7.0 +SSP3,Mexico,2010,0,gcam-v7.0 +SSP3,Mexico,2015,0,gcam-v7.0 +SSP3,Mexico,2020,1.04776,gcam-v7.0 +SSP3,Mexico,2025,1.13043,gcam-v7.0 +SSP3,Mexico,2030,1.19682,gcam-v7.0 +SSP3,Mexico,2035,1.25988,gcam-v7.0 +SSP3,Mexico,2040,1.30831,gcam-v7.0 +SSP3,Mexico,2045,1.3457,gcam-v7.0 +SSP3,Mexico,2050,1.37458,gcam-v7.0 +SSP3,Mexico,2055,1.40472,gcam-v7.0 +SSP3,Mexico,2060,1.43997,gcam-v7.0 +SSP3,Mexico,2065,1.47481,gcam-v7.0 +SSP3,Mexico,2070,1.51254,gcam-v7.0 +SSP3,Mexico,2075,1.54995,gcam-v7.0 +SSP3,Mexico,2080,1.58622,gcam-v7.0 +SSP3,Mexico,2085,1.621,gcam-v7.0 +SSP3,Mexico,2090,1.65346,gcam-v7.0 +SSP3,Mexico,2095,1.68413,gcam-v7.0 +SSP3,Mexico,2100,1.71612,gcam-v7.0 +SSP3,Middle East,1975,0,gcam-v7.0 +SSP3,Middle East,1990,0,gcam-v7.0 +SSP3,Middle East,2005,0,gcam-v7.0 +SSP3,Middle East,2010,0,gcam-v7.0 +SSP3,Middle East,2015,0,gcam-v7.0 +SSP3,Middle East,2020,1.08758,gcam-v7.0 +SSP3,Middle East,2025,1.24012,gcam-v7.0 +SSP3,Middle East,2030,1.39283,gcam-v7.0 +SSP3,Middle East,2035,1.51598,gcam-v7.0 +SSP3,Middle East,2040,1.63494,gcam-v7.0 +SSP3,Middle East,2045,1.72827,gcam-v7.0 +SSP3,Middle East,2050,1.79099,gcam-v7.0 +SSP3,Middle East,2055,1.82184,gcam-v7.0 +SSP3,Middle East,2060,1.83717,gcam-v7.0 +SSP3,Middle East,2065,1.85044,gcam-v7.0 +SSP3,Middle East,2070,1.86696,gcam-v7.0 +SSP3,Middle East,2075,1.89312,gcam-v7.0 +SSP3,Middle East,2080,1.92605,gcam-v7.0 +SSP3,Middle East,2085,1.96489,gcam-v7.0 +SSP3,Middle East,2090,2.00827,gcam-v7.0 +SSP3,Middle East,2095,2.0638,gcam-v7.0 +SSP3,Middle East,2100,2.13191,gcam-v7.0 +SSP3,Pakistan,1975,0,gcam-v7.0 +SSP3,Pakistan,1990,0,gcam-v7.0 +SSP3,Pakistan,2005,0,gcam-v7.0 +SSP3,Pakistan,2010,0,gcam-v7.0 +SSP3,Pakistan,2015,0,gcam-v7.0 +SSP3,Pakistan,2020,1.05625,gcam-v7.0 +SSP3,Pakistan,2025,1.12747,gcam-v7.0 +SSP3,Pakistan,2030,1.19049,gcam-v7.0 +SSP3,Pakistan,2035,1.24577,gcam-v7.0 +SSP3,Pakistan,2040,1.30381,gcam-v7.0 +SSP3,Pakistan,2045,1.36486,gcam-v7.0 +SSP3,Pakistan,2050,1.42483,gcam-v7.0 +SSP3,Pakistan,2055,1.49041,gcam-v7.0 +SSP3,Pakistan,2060,1.56316,gcam-v7.0 +SSP3,Pakistan,2065,1.64918,gcam-v7.0 +SSP3,Pakistan,2070,1.73919,gcam-v7.0 +SSP3,Pakistan,2075,1.83664,gcam-v7.0 +SSP3,Pakistan,2080,1.93953,gcam-v7.0 +SSP3,Pakistan,2085,2.04611,gcam-v7.0 +SSP3,Pakistan,2090,2.15496,gcam-v7.0 +SSP3,Pakistan,2095,2.26798,gcam-v7.0 +SSP3,Pakistan,2100,2.38904,gcam-v7.0 +SSP3,Russia,1975,0,gcam-v7.0 +SSP3,Russia,1990,0,gcam-v7.0 +SSP3,Russia,2005,0,gcam-v7.0 +SSP3,Russia,2010,0,gcam-v7.0 +SSP3,Russia,2015,0,gcam-v7.0 +SSP3,Russia,2020,1.14115,gcam-v7.0 +SSP3,Russia,2025,1.30393,gcam-v7.0 +SSP3,Russia,2030,1.4549,gcam-v7.0 +SSP3,Russia,2035,1.59605,gcam-v7.0 +SSP3,Russia,2040,1.71092,gcam-v7.0 +SSP3,Russia,2045,1.77924,gcam-v7.0 +SSP3,Russia,2050,1.82904,gcam-v7.0 +SSP3,Russia,2055,1.88178,gcam-v7.0 +SSP3,Russia,2060,1.93203,gcam-v7.0 +SSP3,Russia,2065,1.97297,gcam-v7.0 +SSP3,Russia,2070,2.02857,gcam-v7.0 +SSP3,Russia,2075,2.09789,gcam-v7.0 +SSP3,Russia,2080,2.18083,gcam-v7.0 +SSP3,Russia,2085,2.25143,gcam-v7.0 +SSP3,Russia,2090,2.32368,gcam-v7.0 +SSP3,Russia,2095,2.38748,gcam-v7.0 +SSP3,Russia,2100,2.44525,gcam-v7.0 +SSP3,South Africa,1975,0,gcam-v7.0 +SSP3,South Africa,1990,0,gcam-v7.0 +SSP3,South Africa,2005,0,gcam-v7.0 +SSP3,South Africa,2010,0,gcam-v7.0 +SSP3,South Africa,2015,0,gcam-v7.0 +SSP3,South Africa,2020,1.13118,gcam-v7.0 +SSP3,South Africa,2025,1.25979,gcam-v7.0 +SSP3,South Africa,2030,1.3532,gcam-v7.0 +SSP3,South Africa,2035,1.42246,gcam-v7.0 +SSP3,South Africa,2040,1.48,gcam-v7.0 +SSP3,South Africa,2045,1.52583,gcam-v7.0 +SSP3,South Africa,2050,1.5706,gcam-v7.0 +SSP3,South Africa,2055,1.62416,gcam-v7.0 +SSP3,South Africa,2060,1.68287,gcam-v7.0 +SSP3,South Africa,2065,1.74307,gcam-v7.0 +SSP3,South Africa,2070,1.8064,gcam-v7.0 +SSP3,South Africa,2075,1.86867,gcam-v7.0 +SSP3,South Africa,2080,1.92972,gcam-v7.0 +SSP3,South Africa,2085,1.9908,gcam-v7.0 +SSP3,South Africa,2090,2.05361,gcam-v7.0 +SSP3,South Africa,2095,2.11724,gcam-v7.0 +SSP3,South Africa,2100,2.18556,gcam-v7.0 +SSP3,South America_Northern,1975,0,gcam-v7.0 +SSP3,South America_Northern,1990,0,gcam-v7.0 +SSP3,South America_Northern,2005,0,gcam-v7.0 +SSP3,South America_Northern,2010,0,gcam-v7.0 +SSP3,South America_Northern,2015,0,gcam-v7.0 +SSP3,South America_Northern,2020,0.856807,gcam-v7.0 +SSP3,South America_Northern,2025,0.893222,gcam-v7.0 +SSP3,South America_Northern,2030,0.980771,gcam-v7.0 +SSP3,South America_Northern,2035,1.13253,gcam-v7.0 +SSP3,South America_Northern,2040,1.3261,gcam-v7.0 +SSP3,South America_Northern,2045,1.55904,gcam-v7.0 +SSP3,South America_Northern,2050,1.78336,gcam-v7.0 +SSP3,South America_Northern,2055,1.99824,gcam-v7.0 +SSP3,South America_Northern,2060,2.16276,gcam-v7.0 +SSP3,South America_Northern,2065,2.28879,gcam-v7.0 +SSP3,South America_Northern,2070,2.39082,gcam-v7.0 +SSP3,South America_Northern,2075,2.48585,gcam-v7.0 +SSP3,South America_Northern,2080,2.57722,gcam-v7.0 +SSP3,South America_Northern,2085,2.66678,gcam-v7.0 +SSP3,South America_Northern,2090,2.75799,gcam-v7.0 +SSP3,South America_Northern,2095,2.85003,gcam-v7.0 +SSP3,South America_Northern,2100,2.94088,gcam-v7.0 +SSP3,South America_Southern,1975,0,gcam-v7.0 +SSP3,South America_Southern,1990,0,gcam-v7.0 +SSP3,South America_Southern,2005,0,gcam-v7.0 +SSP3,South America_Southern,2010,0,gcam-v7.0 +SSP3,South America_Southern,2015,0,gcam-v7.0 +SSP3,South America_Southern,2020,1.13313,gcam-v7.0 +SSP3,South America_Southern,2025,1.24866,gcam-v7.0 +SSP3,South America_Southern,2030,1.31561,gcam-v7.0 +SSP3,South America_Southern,2035,1.36239,gcam-v7.0 +SSP3,South America_Southern,2040,1.41192,gcam-v7.0 +SSP3,South America_Southern,2045,1.46155,gcam-v7.0 +SSP3,South America_Southern,2050,1.512,gcam-v7.0 +SSP3,South America_Southern,2055,1.56702,gcam-v7.0 +SSP3,South America_Southern,2060,1.62996,gcam-v7.0 +SSP3,South America_Southern,2065,1.69858,gcam-v7.0 +SSP3,South America_Southern,2070,1.77204,gcam-v7.0 +SSP3,South America_Southern,2075,1.84913,gcam-v7.0 +SSP3,South America_Southern,2080,1.92636,gcam-v7.0 +SSP3,South America_Southern,2085,2.00305,gcam-v7.0 +SSP3,South America_Southern,2090,2.08017,gcam-v7.0 +SSP3,South America_Southern,2095,2.15847,gcam-v7.0 +SSP3,South America_Southern,2100,2.24059,gcam-v7.0 +SSP3,South Asia,1975,0,gcam-v7.0 +SSP3,South Asia,1990,0,gcam-v7.0 +SSP3,South Asia,2005,0,gcam-v7.0 +SSP3,South Asia,2010,0,gcam-v7.0 +SSP3,South Asia,2015,0,gcam-v7.0 +SSP3,South Asia,2020,1.15214,gcam-v7.0 +SSP3,South Asia,2025,1.29408,gcam-v7.0 +SSP3,South Asia,2030,1.34446,gcam-v7.0 +SSP3,South Asia,2035,1.3325,gcam-v7.0 +SSP3,South Asia,2040,1.31932,gcam-v7.0 +SSP3,South Asia,2045,1.31041,gcam-v7.0 +SSP3,South Asia,2050,1.30313,gcam-v7.0 +SSP3,South Asia,2055,1.30403,gcam-v7.0 +SSP3,South Asia,2060,1.31341,gcam-v7.0 +SSP3,South Asia,2065,1.32802,gcam-v7.0 +SSP3,South Asia,2070,1.34726,gcam-v7.0 +SSP3,South Asia,2075,1.3687,gcam-v7.0 +SSP3,South Asia,2080,1.38896,gcam-v7.0 +SSP3,South Asia,2085,1.4096,gcam-v7.0 +SSP3,South Asia,2090,1.43004,gcam-v7.0 +SSP3,South Asia,2095,1.45201,gcam-v7.0 +SSP3,South Asia,2100,1.47671,gcam-v7.0 +SSP3,South Korea,1975,0,gcam-v7.0 +SSP3,South Korea,1990,0,gcam-v7.0 +SSP3,South Korea,2005,0,gcam-v7.0 +SSP3,South Korea,2010,0,gcam-v7.0 +SSP3,South Korea,2015,0,gcam-v7.0 +SSP3,South Korea,2020,0.964201,gcam-v7.0 +SSP3,South Korea,2025,1.07523,gcam-v7.0 +SSP3,South Korea,2030,1.17814,gcam-v7.0 +SSP3,South Korea,2035,1.2613,gcam-v7.0 +SSP3,South Korea,2040,1.33803,gcam-v7.0 +SSP3,South Korea,2045,1.40102,gcam-v7.0 +SSP3,South Korea,2050,1.45668,gcam-v7.0 +SSP3,South Korea,2055,1.50216,gcam-v7.0 +SSP3,South Korea,2060,1.55294,gcam-v7.0 +SSP3,South Korea,2065,1.60197,gcam-v7.0 +SSP3,South Korea,2070,1.63642,gcam-v7.0 +SSP3,South Korea,2075,1.66823,gcam-v7.0 +SSP3,South Korea,2080,1.69345,gcam-v7.0 +SSP3,South Korea,2085,1.71557,gcam-v7.0 +SSP3,South Korea,2090,1.73803,gcam-v7.0 +SSP3,South Korea,2095,1.76164,gcam-v7.0 +SSP3,South Korea,2100,1.78131,gcam-v7.0 +SSP3,Southeast Asia,1975,0,gcam-v7.0 +SSP3,Southeast Asia,1990,0,gcam-v7.0 +SSP3,Southeast Asia,2005,0,gcam-v7.0 +SSP3,Southeast Asia,2010,0,gcam-v7.0 +SSP3,Southeast Asia,2015,0,gcam-v7.0 +SSP3,Southeast Asia,2020,1.14136,gcam-v7.0 +SSP3,Southeast Asia,2025,1.2712,gcam-v7.0 +SSP3,Southeast Asia,2030,1.35184,gcam-v7.0 +SSP3,Southeast Asia,2035,1.39427,gcam-v7.0 +SSP3,Southeast Asia,2040,1.44363,gcam-v7.0 +SSP3,Southeast Asia,2045,1.48719,gcam-v7.0 +SSP3,Southeast Asia,2050,1.53022,gcam-v7.0 +SSP3,Southeast Asia,2055,1.58203,gcam-v7.0 +SSP3,Southeast Asia,2060,1.64001,gcam-v7.0 +SSP3,Southeast Asia,2065,1.70151,gcam-v7.0 +SSP3,Southeast Asia,2070,1.76739,gcam-v7.0 +SSP3,Southeast Asia,2075,1.83613,gcam-v7.0 +SSP3,Southeast Asia,2080,1.9059,gcam-v7.0 +SSP3,Southeast Asia,2085,1.97561,gcam-v7.0 +SSP3,Southeast Asia,2090,2.04352,gcam-v7.0 +SSP3,Southeast Asia,2095,2.11119,gcam-v7.0 +SSP3,Southeast Asia,2100,2.18223,gcam-v7.0 +SSP3,Taiwan,1975,0,gcam-v7.0 +SSP3,Taiwan,1990,0,gcam-v7.0 +SSP3,Taiwan,2005,0,gcam-v7.0 +SSP3,Taiwan,2010,0,gcam-v7.0 +SSP3,Taiwan,2015,0,gcam-v7.0 +SSP3,Taiwan,2020,1.15167,gcam-v7.0 +SSP3,Taiwan,2025,1.21058,gcam-v7.0 +SSP3,Taiwan,2030,1.23176,gcam-v7.0 +SSP3,Taiwan,2035,1.23947,gcam-v7.0 +SSP3,Taiwan,2040,1.2444,gcam-v7.0 +SSP3,Taiwan,2045,1.23754,gcam-v7.0 +SSP3,Taiwan,2050,1.22034,gcam-v7.0 +SSP3,Taiwan,2055,1.199,gcam-v7.0 +SSP3,Taiwan,2060,1.18406,gcam-v7.0 +SSP3,Taiwan,2065,1.21514,gcam-v7.0 +SSP3,Taiwan,2070,1.25704,gcam-v7.0 +SSP3,Taiwan,2075,1.2992,gcam-v7.0 +SSP3,Taiwan,2080,1.3359,gcam-v7.0 +SSP3,Taiwan,2085,1.36484,gcam-v7.0 +SSP3,Taiwan,2090,1.38801,gcam-v7.0 +SSP3,Taiwan,2095,1.40809,gcam-v7.0 +SSP3,Taiwan,2100,1.42934,gcam-v7.0 +SSP3,USA,1975,0,gcam-v7.0 +SSP3,USA,1990,0,gcam-v7.0 +SSP3,USA,2005,0,gcam-v7.0 +SSP3,USA,2010,0,gcam-v7.0 +SSP3,USA,2015,0,gcam-v7.0 +SSP3,USA,2020,1.09112,gcam-v7.0 +SSP3,USA,2025,1.17245,gcam-v7.0 +SSP3,USA,2030,1.23481,gcam-v7.0 +SSP3,USA,2035,1.28064,gcam-v7.0 +SSP3,USA,2040,1.32256,gcam-v7.0 +SSP3,USA,2045,1.35654,gcam-v7.0 +SSP3,USA,2050,1.39322,gcam-v7.0 +SSP3,USA,2055,1.43255,gcam-v7.0 +SSP3,USA,2060,1.47262,gcam-v7.0 +SSP3,USA,2065,1.50826,gcam-v7.0 +SSP3,USA,2070,1.54011,gcam-v7.0 +SSP3,USA,2075,1.57098,gcam-v7.0 +SSP3,USA,2080,1.59867,gcam-v7.0 +SSP3,USA,2085,1.62755,gcam-v7.0 +SSP3,USA,2090,1.65866,gcam-v7.0 +SSP3,USA,2095,1.6925,gcam-v7.0 +SSP3,USA,2100,1.72691,gcam-v7.0 +SSP4,Africa_Eastern,1975,0,gcam-v7.0 +SSP4,Africa_Eastern,1990,0,gcam-v7.0 +SSP4,Africa_Eastern,2005,0,gcam-v7.0 +SSP4,Africa_Eastern,2010,0,gcam-v7.0 +SSP4,Africa_Eastern,2015,0,gcam-v7.0 +SSP4,Africa_Eastern,2020,1.15342,gcam-v7.0 +SSP4,Africa_Eastern,2025,1.29851,gcam-v7.0 +SSP4,Africa_Eastern,2030,1.39723,gcam-v7.0 +SSP4,Africa_Eastern,2035,1.45667,gcam-v7.0 +SSP4,Africa_Eastern,2040,1.51012,gcam-v7.0 +SSP4,Africa_Eastern,2045,1.55765,gcam-v7.0 +SSP4,Africa_Eastern,2050,1.59384,gcam-v7.0 +SSP4,Africa_Eastern,2055,1.6373,gcam-v7.0 +SSP4,Africa_Eastern,2060,1.67966,gcam-v7.0 +SSP4,Africa_Eastern,2065,1.72641,gcam-v7.0 +SSP4,Africa_Eastern,2070,1.77554,gcam-v7.0 +SSP4,Africa_Eastern,2075,1.82799,gcam-v7.0 +SSP4,Africa_Eastern,2080,1.88293,gcam-v7.0 +SSP4,Africa_Eastern,2085,1.94107,gcam-v7.0 +SSP4,Africa_Eastern,2090,2.00285,gcam-v7.0 +SSP4,Africa_Eastern,2095,2.06889,gcam-v7.0 +SSP4,Africa_Eastern,2100,2.14152,gcam-v7.0 +SSP4,Africa_Northern,1975,0,gcam-v7.0 +SSP4,Africa_Northern,1990,0,gcam-v7.0 +SSP4,Africa_Northern,2005,0,gcam-v7.0 +SSP4,Africa_Northern,2010,0,gcam-v7.0 +SSP4,Africa_Northern,2015,0,gcam-v7.0 +SSP4,Africa_Northern,2020,1.09487,gcam-v7.0 +SSP4,Africa_Northern,2025,1.24475,gcam-v7.0 +SSP4,Africa_Northern,2030,1.37807,gcam-v7.0 +SSP4,Africa_Northern,2035,1.49354,gcam-v7.0 +SSP4,Africa_Northern,2040,1.61591,gcam-v7.0 +SSP4,Africa_Northern,2045,1.73222,gcam-v7.0 +SSP4,Africa_Northern,2050,1.86061,gcam-v7.0 +SSP4,Africa_Northern,2055,2.00658,gcam-v7.0 +SSP4,Africa_Northern,2060,2.15817,gcam-v7.0 +SSP4,Africa_Northern,2065,2.31326,gcam-v7.0 +SSP4,Africa_Northern,2070,2.47459,gcam-v7.0 +SSP4,Africa_Northern,2075,2.64476,gcam-v7.0 +SSP4,Africa_Northern,2080,2.82357,gcam-v7.0 +SSP4,Africa_Northern,2085,2.99635,gcam-v7.0 +SSP4,Africa_Northern,2090,3.16909,gcam-v7.0 +SSP4,Africa_Northern,2095,3.34075,gcam-v7.0 +SSP4,Africa_Northern,2100,3.5123,gcam-v7.0 +SSP4,Africa_Southern,1975,0,gcam-v7.0 +SSP4,Africa_Southern,1990,0,gcam-v7.0 +SSP4,Africa_Southern,2005,0,gcam-v7.0 +SSP4,Africa_Southern,2010,0,gcam-v7.0 +SSP4,Africa_Southern,2015,0,gcam-v7.0 +SSP4,Africa_Southern,2020,1.13871,gcam-v7.0 +SSP4,Africa_Southern,2025,1.28298,gcam-v7.0 +SSP4,Africa_Southern,2030,1.38253,gcam-v7.0 +SSP4,Africa_Southern,2035,1.44044,gcam-v7.0 +SSP4,Africa_Southern,2040,1.50506,gcam-v7.0 +SSP4,Africa_Southern,2045,1.5822,gcam-v7.0 +SSP4,Africa_Southern,2050,1.66655,gcam-v7.0 +SSP4,Africa_Southern,2055,1.76485,gcam-v7.0 +SSP4,Africa_Southern,2060,1.86927,gcam-v7.0 +SSP4,Africa_Southern,2065,1.98046,gcam-v7.0 +SSP4,Africa_Southern,2070,2.10273,gcam-v7.0 +SSP4,Africa_Southern,2075,2.2303,gcam-v7.0 +SSP4,Africa_Southern,2080,2.36078,gcam-v7.0 +SSP4,Africa_Southern,2085,2.49407,gcam-v7.0 +SSP4,Africa_Southern,2090,2.62993,gcam-v7.0 +SSP4,Africa_Southern,2095,2.76995,gcam-v7.0 +SSP4,Africa_Southern,2100,2.93009,gcam-v7.0 +SSP4,Africa_Western,1975,0,gcam-v7.0 +SSP4,Africa_Western,1990,0,gcam-v7.0 +SSP4,Africa_Western,2005,0,gcam-v7.0 +SSP4,Africa_Western,2010,0,gcam-v7.0 +SSP4,Africa_Western,2015,0,gcam-v7.0 +SSP4,Africa_Western,2020,1.16893,gcam-v7.0 +SSP4,Africa_Western,2025,1.31767,gcam-v7.0 +SSP4,Africa_Western,2030,1.4075,gcam-v7.0 +SSP4,Africa_Western,2035,1.4625,gcam-v7.0 +SSP4,Africa_Western,2040,1.50832,gcam-v7.0 +SSP4,Africa_Western,2045,1.5552,gcam-v7.0 +SSP4,Africa_Western,2050,1.60148,gcam-v7.0 +SSP4,Africa_Western,2055,1.65604,gcam-v7.0 +SSP4,Africa_Western,2060,1.71596,gcam-v7.0 +SSP4,Africa_Western,2065,1.78149,gcam-v7.0 +SSP4,Africa_Western,2070,1.85392,gcam-v7.0 +SSP4,Africa_Western,2075,1.934,gcam-v7.0 +SSP4,Africa_Western,2080,2.01729,gcam-v7.0 +SSP4,Africa_Western,2085,2.10326,gcam-v7.0 +SSP4,Africa_Western,2090,2.19004,gcam-v7.0 +SSP4,Africa_Western,2095,2.27969,gcam-v7.0 +SSP4,Africa_Western,2100,2.37836,gcam-v7.0 +SSP4,Argentina,1975,0,gcam-v7.0 +SSP4,Argentina,1990,0,gcam-v7.0 +SSP4,Argentina,2005,0,gcam-v7.0 +SSP4,Argentina,2010,0,gcam-v7.0 +SSP4,Argentina,2015,0,gcam-v7.0 +SSP4,Argentina,2020,1.0661,gcam-v7.0 +SSP4,Argentina,2025,1.1823,gcam-v7.0 +SSP4,Argentina,2030,1.28781,gcam-v7.0 +SSP4,Argentina,2035,1.39181,gcam-v7.0 +SSP4,Argentina,2040,1.49566,gcam-v7.0 +SSP4,Argentina,2045,1.60421,gcam-v7.0 +SSP4,Argentina,2050,1.71335,gcam-v7.0 +SSP4,Argentina,2055,1.82892,gcam-v7.0 +SSP4,Argentina,2060,1.95446,gcam-v7.0 +SSP4,Argentina,2065,2.08304,gcam-v7.0 +SSP4,Argentina,2070,2.21105,gcam-v7.0 +SSP4,Argentina,2075,2.34418,gcam-v7.0 +SSP4,Argentina,2080,2.48439,gcam-v7.0 +SSP4,Argentina,2085,2.63345,gcam-v7.0 +SSP4,Argentina,2090,2.79227,gcam-v7.0 +SSP4,Argentina,2095,2.9627,gcam-v7.0 +SSP4,Argentina,2100,3.1436,gcam-v7.0 +SSP4,Australia_NZ,1975,0,gcam-v7.0 +SSP4,Australia_NZ,1990,0,gcam-v7.0 +SSP4,Australia_NZ,2005,0,gcam-v7.0 +SSP4,Australia_NZ,2010,0,gcam-v7.0 +SSP4,Australia_NZ,2015,0,gcam-v7.0 +SSP4,Australia_NZ,2020,1.10865,gcam-v7.0 +SSP4,Australia_NZ,2025,1.20926,gcam-v7.0 +SSP4,Australia_NZ,2030,1.30737,gcam-v7.0 +SSP4,Australia_NZ,2035,1.40847,gcam-v7.0 +SSP4,Australia_NZ,2040,1.51933,gcam-v7.0 +SSP4,Australia_NZ,2045,1.62927,gcam-v7.0 +SSP4,Australia_NZ,2050,1.74709,gcam-v7.0 +SSP4,Australia_NZ,2055,1.87421,gcam-v7.0 +SSP4,Australia_NZ,2060,2.00654,gcam-v7.0 +SSP4,Australia_NZ,2065,2.14361,gcam-v7.0 +SSP4,Australia_NZ,2070,2.28541,gcam-v7.0 +SSP4,Australia_NZ,2075,2.43917,gcam-v7.0 +SSP4,Australia_NZ,2080,2.60658,gcam-v7.0 +SSP4,Australia_NZ,2085,2.78755,gcam-v7.0 +SSP4,Australia_NZ,2090,2.98143,gcam-v7.0 +SSP4,Australia_NZ,2095,3.18627,gcam-v7.0 +SSP4,Australia_NZ,2100,3.40042,gcam-v7.0 +SSP4,Brazil,1975,0,gcam-v7.0 +SSP4,Brazil,1990,0,gcam-v7.0 +SSP4,Brazil,2005,0,gcam-v7.0 +SSP4,Brazil,2010,0,gcam-v7.0 +SSP4,Brazil,2015,0,gcam-v7.0 +SSP4,Brazil,2020,1.12205,gcam-v7.0 +SSP4,Brazil,2025,1.25483,gcam-v7.0 +SSP4,Brazil,2030,1.37785,gcam-v7.0 +SSP4,Brazil,2035,1.49629,gcam-v7.0 +SSP4,Brazil,2040,1.62358,gcam-v7.0 +SSP4,Brazil,2045,1.76017,gcam-v7.0 +SSP4,Brazil,2050,1.90769,gcam-v7.0 +SSP4,Brazil,2055,2.0651,gcam-v7.0 +SSP4,Brazil,2060,2.23574,gcam-v7.0 +SSP4,Brazil,2065,2.42427,gcam-v7.0 +SSP4,Brazil,2070,2.62841,gcam-v7.0 +SSP4,Brazil,2075,2.83398,gcam-v7.0 +SSP4,Brazil,2080,3.05556,gcam-v7.0 +SSP4,Brazil,2085,3.29717,gcam-v7.0 +SSP4,Brazil,2090,3.56076,gcam-v7.0 +SSP4,Brazil,2095,3.84605,gcam-v7.0 +SSP4,Brazil,2100,4.15326,gcam-v7.0 +SSP4,Canada,1975,0,gcam-v7.0 +SSP4,Canada,1990,0,gcam-v7.0 +SSP4,Canada,2005,0,gcam-v7.0 +SSP4,Canada,2010,0,gcam-v7.0 +SSP4,Canada,2015,0,gcam-v7.0 +SSP4,Canada,2020,1.0363,gcam-v7.0 +SSP4,Canada,2025,1.10297,gcam-v7.0 +SSP4,Canada,2030,1.17595,gcam-v7.0 +SSP4,Canada,2035,1.25509,gcam-v7.0 +SSP4,Canada,2040,1.34431,gcam-v7.0 +SSP4,Canada,2045,1.43617,gcam-v7.0 +SSP4,Canada,2050,1.54466,gcam-v7.0 +SSP4,Canada,2055,1.66277,gcam-v7.0 +SSP4,Canada,2060,1.78935,gcam-v7.0 +SSP4,Canada,2065,1.92028,gcam-v7.0 +SSP4,Canada,2070,2.0568,gcam-v7.0 +SSP4,Canada,2075,2.19696,gcam-v7.0 +SSP4,Canada,2080,2.35164,gcam-v7.0 +SSP4,Canada,2085,2.52221,gcam-v7.0 +SSP4,Canada,2090,2.70624,gcam-v7.0 +SSP4,Canada,2095,2.89914,gcam-v7.0 +SSP4,Canada,2100,3.09799,gcam-v7.0 +SSP4,Central America and Caribbean,1975,0,gcam-v7.0 +SSP4,Central America and Caribbean,1990,0,gcam-v7.0 +SSP4,Central America and Caribbean,2005,0,gcam-v7.0 +SSP4,Central America and Caribbean,2010,0,gcam-v7.0 +SSP4,Central America and Caribbean,2015,0,gcam-v7.0 +SSP4,Central America and Caribbean,2020,1.06397,gcam-v7.0 +SSP4,Central America and Caribbean,2025,1.14,gcam-v7.0 +SSP4,Central America and Caribbean,2030,1.21115,gcam-v7.0 +SSP4,Central America and Caribbean,2035,1.27052,gcam-v7.0 +SSP4,Central America and Caribbean,2040,1.32246,gcam-v7.0 +SSP4,Central America and Caribbean,2045,1.36433,gcam-v7.0 +SSP4,Central America and Caribbean,2050,1.40237,gcam-v7.0 +SSP4,Central America and Caribbean,2055,1.44259,gcam-v7.0 +SSP4,Central America and Caribbean,2060,1.48601,gcam-v7.0 +SSP4,Central America and Caribbean,2065,1.52869,gcam-v7.0 +SSP4,Central America and Caribbean,2070,1.57062,gcam-v7.0 +SSP4,Central America and Caribbean,2075,1.61169,gcam-v7.0 +SSP4,Central America and Caribbean,2080,1.65183,gcam-v7.0 +SSP4,Central America and Caribbean,2085,1.69084,gcam-v7.0 +SSP4,Central America and Caribbean,2090,1.73076,gcam-v7.0 +SSP4,Central America and Caribbean,2095,1.77164,gcam-v7.0 +SSP4,Central America and Caribbean,2100,1.81363,gcam-v7.0 +SSP4,Central Asia,1975,0,gcam-v7.0 +SSP4,Central Asia,1990,0,gcam-v7.0 +SSP4,Central Asia,2005,0,gcam-v7.0 +SSP4,Central Asia,2010,0,gcam-v7.0 +SSP4,Central Asia,2015,0,gcam-v7.0 +SSP4,Central Asia,2020,1.11383,gcam-v7.0 +SSP4,Central Asia,2025,1.35595,gcam-v7.0 +SSP4,Central Asia,2030,1.56331,gcam-v7.0 +SSP4,Central Asia,2035,1.75468,gcam-v7.0 +SSP4,Central Asia,2040,1.95305,gcam-v7.0 +SSP4,Central Asia,2045,2.13511,gcam-v7.0 +SSP4,Central Asia,2050,2.2896,gcam-v7.0 +SSP4,Central Asia,2055,2.43391,gcam-v7.0 +SSP4,Central Asia,2060,2.58762,gcam-v7.0 +SSP4,Central Asia,2065,2.74902,gcam-v7.0 +SSP4,Central Asia,2070,2.9076,gcam-v7.0 +SSP4,Central Asia,2075,3.0682,gcam-v7.0 +SSP4,Central Asia,2080,3.24252,gcam-v7.0 +SSP4,Central Asia,2085,3.42047,gcam-v7.0 +SSP4,Central Asia,2090,3.60372,gcam-v7.0 +SSP4,Central Asia,2095,3.78855,gcam-v7.0 +SSP4,Central Asia,2100,3.96612,gcam-v7.0 +SSP4,China,1975,0,gcam-v7.0 +SSP4,China,1990,0,gcam-v7.0 +SSP4,China,2005,0,gcam-v7.0 +SSP4,China,2010,0,gcam-v7.0 +SSP4,China,2015,0,gcam-v7.0 +SSP4,China,2020,1.36822,gcam-v7.0 +SSP4,China,2025,1.70836,gcam-v7.0 +SSP4,China,2030,2.03208,gcam-v7.0 +SSP4,China,2035,2.36021,gcam-v7.0 +SSP4,China,2040,2.68156,gcam-v7.0 +SSP4,China,2045,2.95259,gcam-v7.0 +SSP4,China,2050,3.21765,gcam-v7.0 +SSP4,China,2055,3.51406,gcam-v7.0 +SSP4,China,2060,3.80108,gcam-v7.0 +SSP4,China,2065,4.07832,gcam-v7.0 +SSP4,China,2070,4.33359,gcam-v7.0 +SSP4,China,2075,4.58672,gcam-v7.0 +SSP4,China,2080,4.82808,gcam-v7.0 +SSP4,China,2085,5.07315,gcam-v7.0 +SSP4,China,2090,5.31816,gcam-v7.0 +SSP4,China,2095,5.5621,gcam-v7.0 +SSP4,China,2100,5.79982,gcam-v7.0 +SSP4,Colombia,1975,0,gcam-v7.0 +SSP4,Colombia,1990,0,gcam-v7.0 +SSP4,Colombia,2005,0,gcam-v7.0 +SSP4,Colombia,2010,0,gcam-v7.0 +SSP4,Colombia,2015,0,gcam-v7.0 +SSP4,Colombia,2020,1.12597,gcam-v7.0 +SSP4,Colombia,2025,1.20865,gcam-v7.0 +SSP4,Colombia,2030,1.30261,gcam-v7.0 +SSP4,Colombia,2035,1.40617,gcam-v7.0 +SSP4,Colombia,2040,1.52246,gcam-v7.0 +SSP4,Colombia,2045,1.64533,gcam-v7.0 +SSP4,Colombia,2050,1.77697,gcam-v7.0 +SSP4,Colombia,2055,1.9184,gcam-v7.0 +SSP4,Colombia,2060,2.0753,gcam-v7.0 +SSP4,Colombia,2065,2.23989,gcam-v7.0 +SSP4,Colombia,2070,2.41118,gcam-v7.0 +SSP4,Colombia,2075,2.59271,gcam-v7.0 +SSP4,Colombia,2080,2.78442,gcam-v7.0 +SSP4,Colombia,2085,2.98863,gcam-v7.0 +SSP4,Colombia,2090,3.20818,gcam-v7.0 +SSP4,Colombia,2095,3.44262,gcam-v7.0 +SSP4,Colombia,2100,3.69022,gcam-v7.0 +SSP4,EU-12,1975,0,gcam-v7.0 +SSP4,EU-12,1990,0,gcam-v7.0 +SSP4,EU-12,2005,0,gcam-v7.0 +SSP4,EU-12,2010,0,gcam-v7.0 +SSP4,EU-12,2015,0,gcam-v7.0 +SSP4,EU-12,2020,1.09202,gcam-v7.0 +SSP4,EU-12,2025,1.24468,gcam-v7.0 +SSP4,EU-12,2030,1.38153,gcam-v7.0 +SSP4,EU-12,2035,1.51454,gcam-v7.0 +SSP4,EU-12,2040,1.64986,gcam-v7.0 +SSP4,EU-12,2045,1.793,gcam-v7.0 +SSP4,EU-12,2050,1.94028,gcam-v7.0 +SSP4,EU-12,2055,2.09581,gcam-v7.0 +SSP4,EU-12,2060,2.24972,gcam-v7.0 +SSP4,EU-12,2065,2.39869,gcam-v7.0 +SSP4,EU-12,2070,2.54535,gcam-v7.0 +SSP4,EU-12,2075,2.70573,gcam-v7.0 +SSP4,EU-12,2080,2.8808,gcam-v7.0 +SSP4,EU-12,2085,3.06555,gcam-v7.0 +SSP4,EU-12,2090,3.2592,gcam-v7.0 +SSP4,EU-12,2095,3.45917,gcam-v7.0 +SSP4,EU-12,2100,3.66183,gcam-v7.0 +SSP4,EU-15,1975,0,gcam-v7.0 +SSP4,EU-15,1990,0,gcam-v7.0 +SSP4,EU-15,2005,0,gcam-v7.0 +SSP4,EU-15,2010,0,gcam-v7.0 +SSP4,EU-15,2015,0,gcam-v7.0 +SSP4,EU-15,2020,1.05318,gcam-v7.0 +SSP4,EU-15,2025,1.13641,gcam-v7.0 +SSP4,EU-15,2030,1.23484,gcam-v7.0 +SSP4,EU-15,2035,1.34368,gcam-v7.0 +SSP4,EU-15,2040,1.45085,gcam-v7.0 +SSP4,EU-15,2045,1.55329,gcam-v7.0 +SSP4,EU-15,2050,1.65392,gcam-v7.0 +SSP4,EU-15,2055,1.75733,gcam-v7.0 +SSP4,EU-15,2060,1.86115,gcam-v7.0 +SSP4,EU-15,2065,1.96618,gcam-v7.0 +SSP4,EU-15,2070,2.07424,gcam-v7.0 +SSP4,EU-15,2075,2.19066,gcam-v7.0 +SSP4,EU-15,2080,2.31475,gcam-v7.0 +SSP4,EU-15,2085,2.44696,gcam-v7.0 +SSP4,EU-15,2090,2.58879,gcam-v7.0 +SSP4,EU-15,2095,2.74114,gcam-v7.0 +SSP4,EU-15,2100,2.90205,gcam-v7.0 +SSP4,Europe_Eastern,1975,0,gcam-v7.0 +SSP4,Europe_Eastern,1990,0,gcam-v7.0 +SSP4,Europe_Eastern,2005,0,gcam-v7.0 +SSP4,Europe_Eastern,2010,0,gcam-v7.0 +SSP4,Europe_Eastern,2015,0,gcam-v7.0 +SSP4,Europe_Eastern,2020,0.965439,gcam-v7.0 +SSP4,Europe_Eastern,2025,1.09194,gcam-v7.0 +SSP4,Europe_Eastern,2030,1.20611,gcam-v7.0 +SSP4,Europe_Eastern,2035,1.31496,gcam-v7.0 +SSP4,Europe_Eastern,2040,1.42909,gcam-v7.0 +SSP4,Europe_Eastern,2045,1.54165,gcam-v7.0 +SSP4,Europe_Eastern,2050,1.66466,gcam-v7.0 +SSP4,Europe_Eastern,2055,1.8002,gcam-v7.0 +SSP4,Europe_Eastern,2060,1.94906,gcam-v7.0 +SSP4,Europe_Eastern,2065,2.09289,gcam-v7.0 +SSP4,Europe_Eastern,2070,2.2419,gcam-v7.0 +SSP4,Europe_Eastern,2075,2.46401,gcam-v7.0 +SSP4,Europe_Eastern,2080,2.64117,gcam-v7.0 +SSP4,Europe_Eastern,2085,2.82635,gcam-v7.0 +SSP4,Europe_Eastern,2090,3.02133,gcam-v7.0 +SSP4,Europe_Eastern,2095,3.22459,gcam-v7.0 +SSP4,Europe_Eastern,2100,3.43107,gcam-v7.0 +SSP4,Europe_Non_EU,1975,0,gcam-v7.0 +SSP4,Europe_Non_EU,1990,0,gcam-v7.0 +SSP4,Europe_Non_EU,2005,0,gcam-v7.0 +SSP4,Europe_Non_EU,2010,0,gcam-v7.0 +SSP4,Europe_Non_EU,2015,0,gcam-v7.0 +SSP4,Europe_Non_EU,2020,1.07989,gcam-v7.0 +SSP4,Europe_Non_EU,2025,1.16892,gcam-v7.0 +SSP4,Europe_Non_EU,2030,1.24424,gcam-v7.0 +SSP4,Europe_Non_EU,2035,1.31255,gcam-v7.0 +SSP4,Europe_Non_EU,2040,1.38506,gcam-v7.0 +SSP4,Europe_Non_EU,2045,1.45724,gcam-v7.0 +SSP4,Europe_Non_EU,2050,1.53111,gcam-v7.0 +SSP4,Europe_Non_EU,2055,1.60634,gcam-v7.0 +SSP4,Europe_Non_EU,2060,1.68629,gcam-v7.0 +SSP4,Europe_Non_EU,2065,1.76927,gcam-v7.0 +SSP4,Europe_Non_EU,2070,1.85206,gcam-v7.0 +SSP4,Europe_Non_EU,2075,1.93892,gcam-v7.0 +SSP4,Europe_Non_EU,2080,2.02946,gcam-v7.0 +SSP4,Europe_Non_EU,2085,2.12416,gcam-v7.0 +SSP4,Europe_Non_EU,2090,2.22565,gcam-v7.0 +SSP4,Europe_Non_EU,2095,2.33618,gcam-v7.0 +SSP4,Europe_Non_EU,2100,2.45489,gcam-v7.0 +SSP4,European Free Trade Association,1975,0,gcam-v7.0 +SSP4,European Free Trade Association,1990,0,gcam-v7.0 +SSP4,European Free Trade Association,2005,0,gcam-v7.0 +SSP4,European Free Trade Association,2010,0,gcam-v7.0 +SSP4,European Free Trade Association,2015,0,gcam-v7.0 +SSP4,European Free Trade Association,2020,1.0801,gcam-v7.0 +SSP4,European Free Trade Association,2025,1.17723,gcam-v7.0 +SSP4,European Free Trade Association,2030,1.29256,gcam-v7.0 +SSP4,European Free Trade Association,2035,1.41364,gcam-v7.0 +SSP4,European Free Trade Association,2040,1.52089,gcam-v7.0 +SSP4,European Free Trade Association,2045,1.61461,gcam-v7.0 +SSP4,European Free Trade Association,2050,1.71447,gcam-v7.0 +SSP4,European Free Trade Association,2055,1.82345,gcam-v7.0 +SSP4,European Free Trade Association,2060,1.94279,gcam-v7.0 +SSP4,European Free Trade Association,2065,2.06461,gcam-v7.0 +SSP4,European Free Trade Association,2070,2.18737,gcam-v7.0 +SSP4,European Free Trade Association,2075,2.31723,gcam-v7.0 +SSP4,European Free Trade Association,2080,2.45935,gcam-v7.0 +SSP4,European Free Trade Association,2085,2.61621,gcam-v7.0 +SSP4,European Free Trade Association,2090,2.78965,gcam-v7.0 +SSP4,European Free Trade Association,2095,2.97688,gcam-v7.0 +SSP4,European Free Trade Association,2100,3.17047,gcam-v7.0 +SSP4,India,1975,0,gcam-v7.0 +SSP4,India,1990,0,gcam-v7.0 +SSP4,India,2005,0,gcam-v7.0 +SSP4,India,2010,0,gcam-v7.0 +SSP4,India,2015,0,gcam-v7.0 +SSP4,India,2020,1.17232,gcam-v7.0 +SSP4,India,2025,1.36681,gcam-v7.0 +SSP4,India,2030,1.53013,gcam-v7.0 +SSP4,India,2035,1.67284,gcam-v7.0 +SSP4,India,2040,1.8145,gcam-v7.0 +SSP4,India,2045,1.95572,gcam-v7.0 +SSP4,India,2050,2.10452,gcam-v7.0 +SSP4,India,2055,2.26971,gcam-v7.0 +SSP4,India,2060,2.44947,gcam-v7.0 +SSP4,India,2065,2.63838,gcam-v7.0 +SSP4,India,2070,2.83554,gcam-v7.0 +SSP4,India,2075,3.04562,gcam-v7.0 +SSP4,India,2080,3.26586,gcam-v7.0 +SSP4,India,2085,3.49568,gcam-v7.0 +SSP4,India,2090,3.73475,gcam-v7.0 +SSP4,India,2095,3.98426,gcam-v7.0 +SSP4,India,2100,4.24637,gcam-v7.0 +SSP4,Indonesia,1975,0,gcam-v7.0 +SSP4,Indonesia,1990,0,gcam-v7.0 +SSP4,Indonesia,2005,0,gcam-v7.0 +SSP4,Indonesia,2010,0,gcam-v7.0 +SSP4,Indonesia,2015,0,gcam-v7.0 +SSP4,Indonesia,2020,1.2153,gcam-v7.0 +SSP4,Indonesia,2025,1.45954,gcam-v7.0 +SSP4,Indonesia,2030,1.68969,gcam-v7.0 +SSP4,Indonesia,2035,1.9157,gcam-v7.0 +SSP4,Indonesia,2040,2.16719,gcam-v7.0 +SSP4,Indonesia,2045,2.41962,gcam-v7.0 +SSP4,Indonesia,2050,2.67789,gcam-v7.0 +SSP4,Indonesia,2055,2.94959,gcam-v7.0 +SSP4,Indonesia,2060,3.23975,gcam-v7.0 +SSP4,Indonesia,2065,3.54319,gcam-v7.0 +SSP4,Indonesia,2070,3.86985,gcam-v7.0 +SSP4,Indonesia,2075,4.21134,gcam-v7.0 +SSP4,Indonesia,2080,4.56552,gcam-v7.0 +SSP4,Indonesia,2085,4.93519,gcam-v7.0 +SSP4,Indonesia,2090,5.32483,gcam-v7.0 +SSP4,Indonesia,2095,5.73454,gcam-v7.0 +SSP4,Indonesia,2100,6.16153,gcam-v7.0 +SSP4,Japan,1975,0,gcam-v7.0 +SSP4,Japan,1990,0,gcam-v7.0 +SSP4,Japan,2005,0,gcam-v7.0 +SSP4,Japan,2010,0,gcam-v7.0 +SSP4,Japan,2015,0,gcam-v7.0 +SSP4,Japan,2020,1.04193,gcam-v7.0 +SSP4,Japan,2025,1.12184,gcam-v7.0 +SSP4,Japan,2030,1.21673,gcam-v7.0 +SSP4,Japan,2035,1.32406,gcam-v7.0 +SSP4,Japan,2040,1.4442,gcam-v7.0 +SSP4,Japan,2045,1.55973,gcam-v7.0 +SSP4,Japan,2050,1.66755,gcam-v7.0 +SSP4,Japan,2055,1.77432,gcam-v7.0 +SSP4,Japan,2060,1.87965,gcam-v7.0 +SSP4,Japan,2065,1.98773,gcam-v7.0 +SSP4,Japan,2070,2.09571,gcam-v7.0 +SSP4,Japan,2075,2.20599,gcam-v7.0 +SSP4,Japan,2080,2.32423,gcam-v7.0 +SSP4,Japan,2085,2.44268,gcam-v7.0 +SSP4,Japan,2090,2.56525,gcam-v7.0 +SSP4,Japan,2095,2.69272,gcam-v7.0 +SSP4,Japan,2100,2.82524,gcam-v7.0 +SSP4,Mexico,1975,0,gcam-v7.0 +SSP4,Mexico,1990,0,gcam-v7.0 +SSP4,Mexico,2005,0,gcam-v7.0 +SSP4,Mexico,2010,0,gcam-v7.0 +SSP4,Mexico,2015,0,gcam-v7.0 +SSP4,Mexico,2020,1.04257,gcam-v7.0 +SSP4,Mexico,2025,1.13026,gcam-v7.0 +SSP4,Mexico,2030,1.23657,gcam-v7.0 +SSP4,Mexico,2035,1.34864,gcam-v7.0 +SSP4,Mexico,2040,1.45092,gcam-v7.0 +SSP4,Mexico,2045,1.54447,gcam-v7.0 +SSP4,Mexico,2050,1.63162,gcam-v7.0 +SSP4,Mexico,2055,1.72655,gcam-v7.0 +SSP4,Mexico,2060,1.83228,gcam-v7.0 +SSP4,Mexico,2065,1.94057,gcam-v7.0 +SSP4,Mexico,2070,2.05383,gcam-v7.0 +SSP4,Mexico,2075,2.1711,gcam-v7.0 +SSP4,Mexico,2080,2.29695,gcam-v7.0 +SSP4,Mexico,2085,2.43203,gcam-v7.0 +SSP4,Mexico,2090,2.57571,gcam-v7.0 +SSP4,Mexico,2095,2.72912,gcam-v7.0 +SSP4,Mexico,2100,2.89315,gcam-v7.0 +SSP4,Middle East,1975,0,gcam-v7.0 +SSP4,Middle East,1990,0,gcam-v7.0 +SSP4,Middle East,2005,0,gcam-v7.0 +SSP4,Middle East,2010,0,gcam-v7.0 +SSP4,Middle East,2015,0,gcam-v7.0 +SSP4,Middle East,2020,1.08097,gcam-v7.0 +SSP4,Middle East,2025,1.26652,gcam-v7.0 +SSP4,Middle East,2030,1.45695,gcam-v7.0 +SSP4,Middle East,2035,1.63076,gcam-v7.0 +SSP4,Middle East,2040,1.79113,gcam-v7.0 +SSP4,Middle East,2045,1.93374,gcam-v7.0 +SSP4,Middle East,2050,2.05567,gcam-v7.0 +SSP4,Middle East,2055,2.15043,gcam-v7.0 +SSP4,Middle East,2060,2.23294,gcam-v7.0 +SSP4,Middle East,2065,2.31742,gcam-v7.0 +SSP4,Middle East,2070,2.40611,gcam-v7.0 +SSP4,Middle East,2075,2.50472,gcam-v7.0 +SSP4,Middle East,2080,2.61435,gcam-v7.0 +SSP4,Middle East,2085,2.73407,gcam-v7.0 +SSP4,Middle East,2090,2.86267,gcam-v7.0 +SSP4,Middle East,2095,3.00649,gcam-v7.0 +SSP4,Middle East,2100,3.17131,gcam-v7.0 +SSP4,Pakistan,1975,0,gcam-v7.0 +SSP4,Pakistan,1990,0,gcam-v7.0 +SSP4,Pakistan,2005,0,gcam-v7.0 +SSP4,Pakistan,2010,0,gcam-v7.0 +SSP4,Pakistan,2015,0,gcam-v7.0 +SSP4,Pakistan,2020,1.05732,gcam-v7.0 +SSP4,Pakistan,2025,1.12172,gcam-v7.0 +SSP4,Pakistan,2030,1.177,gcam-v7.0 +SSP4,Pakistan,2035,1.21565,gcam-v7.0 +SSP4,Pakistan,2040,1.25213,gcam-v7.0 +SSP4,Pakistan,2045,1.28821,gcam-v7.0 +SSP4,Pakistan,2050,1.32236,gcam-v7.0 +SSP4,Pakistan,2055,1.36518,gcam-v7.0 +SSP4,Pakistan,2060,1.41162,gcam-v7.0 +SSP4,Pakistan,2065,1.46377,gcam-v7.0 +SSP4,Pakistan,2070,1.51847,gcam-v7.0 +SSP4,Pakistan,2075,1.57846,gcam-v7.0 +SSP4,Pakistan,2080,1.64244,gcam-v7.0 +SSP4,Pakistan,2085,1.70932,gcam-v7.0 +SSP4,Pakistan,2090,1.77778,gcam-v7.0 +SSP4,Pakistan,2095,1.84907,gcam-v7.0 +SSP4,Pakistan,2100,1.92704,gcam-v7.0 +SSP4,Russia,1975,0,gcam-v7.0 +SSP4,Russia,1990,0,gcam-v7.0 +SSP4,Russia,2005,0,gcam-v7.0 +SSP4,Russia,2010,0,gcam-v7.0 +SSP4,Russia,2015,0,gcam-v7.0 +SSP4,Russia,2020,1.14216,gcam-v7.0 +SSP4,Russia,2025,1.32597,gcam-v7.0 +SSP4,Russia,2030,1.55828,gcam-v7.0 +SSP4,Russia,2035,1.78083,gcam-v7.0 +SSP4,Russia,2040,1.97832,gcam-v7.0 +SSP4,Russia,2045,2.15174,gcam-v7.0 +SSP4,Russia,2050,2.31422,gcam-v7.0 +SSP4,Russia,2055,2.48997,gcam-v7.0 +SSP4,Russia,2060,2.65883,gcam-v7.0 +SSP4,Russia,2065,2.81309,gcam-v7.0 +SSP4,Russia,2070,2.97828,gcam-v7.0 +SSP4,Russia,2075,3.1554,gcam-v7.0 +SSP4,Russia,2080,3.35133,gcam-v7.0 +SSP4,Russia,2085,3.54927,gcam-v7.0 +SSP4,Russia,2090,3.74543,gcam-v7.0 +SSP4,Russia,2095,3.93775,gcam-v7.0 +SSP4,Russia,2100,4.12466,gcam-v7.0 +SSP4,South Africa,1975,0,gcam-v7.0 +SSP4,South Africa,1990,0,gcam-v7.0 +SSP4,South Africa,2005,0,gcam-v7.0 +SSP4,South Africa,2010,0,gcam-v7.0 +SSP4,South Africa,2015,0,gcam-v7.0 +SSP4,South Africa,2020,1.13631,gcam-v7.0 +SSP4,South Africa,2025,1.28591,gcam-v7.0 +SSP4,South Africa,2030,1.42687,gcam-v7.0 +SSP4,South Africa,2035,1.5589,gcam-v7.0 +SSP4,South Africa,2040,1.68399,gcam-v7.0 +SSP4,South Africa,2045,1.80168,gcam-v7.0 +SSP4,South Africa,2050,1.92206,gcam-v7.0 +SSP4,South Africa,2055,2.05581,gcam-v7.0 +SSP4,South Africa,2060,2.19816,gcam-v7.0 +SSP4,South Africa,2065,2.34579,gcam-v7.0 +SSP4,South Africa,2070,2.49822,gcam-v7.0 +SSP4,South Africa,2075,2.65729,gcam-v7.0 +SSP4,South Africa,2080,2.82583,gcam-v7.0 +SSP4,South Africa,2085,3.00135,gcam-v7.0 +SSP4,South Africa,2090,3.18743,gcam-v7.0 +SSP4,South Africa,2095,3.38392,gcam-v7.0 +SSP4,South Africa,2100,3.59393,gcam-v7.0 +SSP4,South America_Northern,1975,0,gcam-v7.0 +SSP4,South America_Northern,1990,0,gcam-v7.0 +SSP4,South America_Northern,2005,0,gcam-v7.0 +SSP4,South America_Northern,2010,0,gcam-v7.0 +SSP4,South America_Northern,2015,0,gcam-v7.0 +SSP4,South America_Northern,2020,0.850294,gcam-v7.0 +SSP4,South America_Northern,2025,0.854998,gcam-v7.0 +SSP4,South America_Northern,2030,0.886724,gcam-v7.0 +SSP4,South America_Northern,2035,0.992468,gcam-v7.0 +SSP4,South America_Northern,2040,1.18783,gcam-v7.0 +SSP4,South America_Northern,2045,1.38133,gcam-v7.0 +SSP4,South America_Northern,2050,1.57563,gcam-v7.0 +SSP4,South America_Northern,2055,1.7736,gcam-v7.0 +SSP4,South America_Northern,2060,1.94433,gcam-v7.0 +SSP4,South America_Northern,2065,2.10219,gcam-v7.0 +SSP4,South America_Northern,2070,2.24786,gcam-v7.0 +SSP4,South America_Northern,2075,2.39813,gcam-v7.0 +SSP4,South America_Northern,2080,2.56831,gcam-v7.0 +SSP4,South America_Northern,2085,2.75462,gcam-v7.0 +SSP4,South America_Northern,2090,2.95599,gcam-v7.0 +SSP4,South America_Northern,2095,3.16927,gcam-v7.0 +SSP4,South America_Northern,2100,3.39464,gcam-v7.0 +SSP4,South America_Southern,1975,0,gcam-v7.0 +SSP4,South America_Southern,1990,0,gcam-v7.0 +SSP4,South America_Southern,2005,0,gcam-v7.0 +SSP4,South America_Southern,2010,0,gcam-v7.0 +SSP4,South America_Southern,2015,0,gcam-v7.0 +SSP4,South America_Southern,2020,1.13568,gcam-v7.0 +SSP4,South America_Southern,2025,1.2708,gcam-v7.0 +SSP4,South America_Southern,2030,1.38117,gcam-v7.0 +SSP4,South America_Southern,2035,1.48622,gcam-v7.0 +SSP4,South America_Southern,2040,1.5984,gcam-v7.0 +SSP4,South America_Southern,2045,1.71292,gcam-v7.0 +SSP4,South America_Southern,2050,1.83282,gcam-v7.0 +SSP4,South America_Southern,2055,1.96256,gcam-v7.0 +SSP4,South America_Southern,2060,2.10708,gcam-v7.0 +SSP4,South America_Southern,2065,2.26117,gcam-v7.0 +SSP4,South America_Southern,2070,2.42412,gcam-v7.0 +SSP4,South America_Southern,2075,2.59567,gcam-v7.0 +SSP4,South America_Southern,2080,2.77574,gcam-v7.0 +SSP4,South America_Southern,2085,2.96463,gcam-v7.0 +SSP4,South America_Southern,2090,3.16467,gcam-v7.0 +SSP4,South America_Southern,2095,3.37799,gcam-v7.0 +SSP4,South America_Southern,2100,3.60591,gcam-v7.0 +SSP4,South Asia,1975,0,gcam-v7.0 +SSP4,South Asia,1990,0,gcam-v7.0 +SSP4,South Asia,2005,0,gcam-v7.0 +SSP4,South Asia,2010,0,gcam-v7.0 +SSP4,South Asia,2015,0,gcam-v7.0 +SSP4,South Asia,2020,1.14386,gcam-v7.0 +SSP4,South Asia,2025,1.27803,gcam-v7.0 +SSP4,South Asia,2030,1.32564,gcam-v7.0 +SSP4,South Asia,2035,1.30192,gcam-v7.0 +SSP4,South Asia,2040,1.27236,gcam-v7.0 +SSP4,South Asia,2045,1.24355,gcam-v7.0 +SSP4,South Asia,2050,1.21758,gcam-v7.0 +SSP4,South Asia,2055,1.2003,gcam-v7.0 +SSP4,South Asia,2060,1.19316,gcam-v7.0 +SSP4,South Asia,2065,1.19196,gcam-v7.0 +SSP4,South Asia,2070,1.19373,gcam-v7.0 +SSP4,South Asia,2075,1.1983,gcam-v7.0 +SSP4,South Asia,2080,1.20622,gcam-v7.0 +SSP4,South Asia,2085,1.21825,gcam-v7.0 +SSP4,South Asia,2090,1.23458,gcam-v7.0 +SSP4,South Asia,2095,1.25414,gcam-v7.0 +SSP4,South Asia,2100,1.27558,gcam-v7.0 +SSP4,South Korea,1975,0,gcam-v7.0 +SSP4,South Korea,1990,0,gcam-v7.0 +SSP4,South Korea,2005,0,gcam-v7.0 +SSP4,South Korea,2010,0,gcam-v7.0 +SSP4,South Korea,2015,0,gcam-v7.0 +SSP4,South Korea,2020,0.970017,gcam-v7.0 +SSP4,South Korea,2025,1.10152,gcam-v7.0 +SSP4,South Korea,2030,1.2334,gcam-v7.0 +SSP4,South Korea,2035,1.35149,gcam-v7.0 +SSP4,South Korea,2040,1.46146,gcam-v7.0 +SSP4,South Korea,2045,1.55747,gcam-v7.0 +SSP4,South Korea,2050,1.64774,gcam-v7.0 +SSP4,South Korea,2055,1.72871,gcam-v7.0 +SSP4,South Korea,2060,1.81729,gcam-v7.0 +SSP4,South Korea,2065,1.90384,gcam-v7.0 +SSP4,South Korea,2070,1.97432,gcam-v7.0 +SSP4,South Korea,2075,2.04323,gcam-v7.0 +SSP4,South Korea,2080,2.10569,gcam-v7.0 +SSP4,South Korea,2085,2.16651,gcam-v7.0 +SSP4,South Korea,2090,2.22953,gcam-v7.0 +SSP4,South Korea,2095,2.29581,gcam-v7.0 +SSP4,South Korea,2100,2.36013,gcam-v7.0 +SSP4,Southeast Asia,1975,0,gcam-v7.0 +SSP4,Southeast Asia,1990,0,gcam-v7.0 +SSP4,Southeast Asia,2005,0,gcam-v7.0 +SSP4,Southeast Asia,2010,0,gcam-v7.0 +SSP4,Southeast Asia,2015,0,gcam-v7.0 +SSP4,Southeast Asia,2020,1.14243,gcam-v7.0 +SSP4,Southeast Asia,2025,1.28577,gcam-v7.0 +SSP4,Southeast Asia,2030,1.39275,gcam-v7.0 +SSP4,Southeast Asia,2035,1.46183,gcam-v7.0 +SSP4,Southeast Asia,2040,1.53202,gcam-v7.0 +SSP4,Southeast Asia,2045,1.58967,gcam-v7.0 +SSP4,Southeast Asia,2050,1.64578,gcam-v7.0 +SSP4,Southeast Asia,2055,1.70821,gcam-v7.0 +SSP4,Southeast Asia,2060,1.77614,gcam-v7.0 +SSP4,Southeast Asia,2065,1.84359,gcam-v7.0 +SSP4,Southeast Asia,2070,1.91013,gcam-v7.0 +SSP4,Southeast Asia,2075,1.97456,gcam-v7.0 +SSP4,Southeast Asia,2080,2.03964,gcam-v7.0 +SSP4,Southeast Asia,2085,2.10454,gcam-v7.0 +SSP4,Southeast Asia,2090,2.16843,gcam-v7.0 +SSP4,Southeast Asia,2095,2.23198,gcam-v7.0 +SSP4,Southeast Asia,2100,2.29533,gcam-v7.0 +SSP4,Taiwan,1975,0,gcam-v7.0 +SSP4,Taiwan,1990,0,gcam-v7.0 +SSP4,Taiwan,2005,0,gcam-v7.0 +SSP4,Taiwan,2010,0,gcam-v7.0 +SSP4,Taiwan,2015,0,gcam-v7.0 +SSP4,Taiwan,2020,1.1695,gcam-v7.0 +SSP4,Taiwan,2025,1.27187,gcam-v7.0 +SSP4,Taiwan,2030,1.34635,gcam-v7.0 +SSP4,Taiwan,2035,1.40911,gcam-v7.0 +SSP4,Taiwan,2040,1.46313,gcam-v7.0 +SSP4,Taiwan,2045,1.49863,gcam-v7.0 +SSP4,Taiwan,2050,1.51473,gcam-v7.0 +SSP4,Taiwan,2055,1.52073,gcam-v7.0 +SSP4,Taiwan,2060,1.53137,gcam-v7.0 +SSP4,Taiwan,2065,1.59057,gcam-v7.0 +SSP4,Taiwan,2070,1.64705,gcam-v7.0 +SSP4,Taiwan,2075,1.69245,gcam-v7.0 +SSP4,Taiwan,2080,1.72728,gcam-v7.0 +SSP4,Taiwan,2085,1.74854,gcam-v7.0 +SSP4,Taiwan,2090,1.75907,gcam-v7.0 +SSP4,Taiwan,2095,1.75954,gcam-v7.0 +SSP4,Taiwan,2100,1.751,gcam-v7.0 +SSP4,USA,1975,0,gcam-v7.0 +SSP4,USA,1990,0,gcam-v7.0 +SSP4,USA,2005,0,gcam-v7.0 +SSP4,USA,2010,0,gcam-v7.0 +SSP4,USA,2015,0,gcam-v7.0 +SSP4,USA,2020,1.0987,gcam-v7.0 +SSP4,USA,2025,1.20612,gcam-v7.0 +SSP4,USA,2030,1.30496,gcam-v7.0 +SSP4,USA,2035,1.39018,gcam-v7.0 +SSP4,USA,2040,1.46349,gcam-v7.0 +SSP4,USA,2045,1.52317,gcam-v7.0 +SSP4,USA,2050,1.58517,gcam-v7.0 +SSP4,USA,2055,1.65243,gcam-v7.0 +SSP4,USA,2060,1.72567,gcam-v7.0 +SSP4,USA,2065,1.798,gcam-v7.0 +SSP4,USA,2070,1.87564,gcam-v7.0 +SSP4,USA,2075,1.95988,gcam-v7.0 +SSP4,USA,2080,2.04698,gcam-v7.0 +SSP4,USA,2085,2.14238,gcam-v7.0 +SSP4,USA,2090,2.24675,gcam-v7.0 +SSP4,USA,2095,2.36043,gcam-v7.0 +SSP4,USA,2100,2.48131,gcam-v7.0 +SSP5,Africa_Eastern,1975,0,gcam-v7.0 +SSP5,Africa_Eastern,1990,0,gcam-v7.0 +SSP5,Africa_Eastern,2005,0,gcam-v7.0 +SSP5,Africa_Eastern,2010,0,gcam-v7.0 +SSP5,Africa_Eastern,2015,0,gcam-v7.0 +SSP5,Africa_Eastern,2020,1.16765,gcam-v7.0 +SSP5,Africa_Eastern,2025,1.41879,gcam-v7.0 +SSP5,Africa_Eastern,2030,1.73272,gcam-v7.0 +SSP5,Africa_Eastern,2035,2.09113,gcam-v7.0 +SSP5,Africa_Eastern,2040,2.42412,gcam-v7.0 +SSP5,Africa_Eastern,2045,2.75875,gcam-v7.0 +SSP5,Africa_Eastern,2050,3.13389,gcam-v7.0 +SSP5,Africa_Eastern,2055,3.57159,gcam-v7.0 +SSP5,Africa_Eastern,2060,4.06887,gcam-v7.0 +SSP5,Africa_Eastern,2065,4.6289,gcam-v7.0 +SSP5,Africa_Eastern,2070,5.25245,gcam-v7.0 +SSP5,Africa_Eastern,2075,5.94049,gcam-v7.0 +SSP5,Africa_Eastern,2080,6.69761,gcam-v7.0 +SSP5,Africa_Eastern,2085,7.52289,gcam-v7.0 +SSP5,Africa_Eastern,2090,8.41287,gcam-v7.0 +SSP5,Africa_Eastern,2095,9.36583,gcam-v7.0 +SSP5,Africa_Eastern,2100,10.3764,gcam-v7.0 +SSP5,Africa_Northern,1975,0,gcam-v7.0 +SSP5,Africa_Northern,1990,0,gcam-v7.0 +SSP5,Africa_Northern,2005,0,gcam-v7.0 +SSP5,Africa_Northern,2010,0,gcam-v7.0 +SSP5,Africa_Northern,2015,0,gcam-v7.0 +SSP5,Africa_Northern,2020,1.09538,gcam-v7.0 +SSP5,Africa_Northern,2025,1.27342,gcam-v7.0 +SSP5,Africa_Northern,2030,1.47035,gcam-v7.0 +SSP5,Africa_Northern,2035,1.69629,gcam-v7.0 +SSP5,Africa_Northern,2040,1.93286,gcam-v7.0 +SSP5,Africa_Northern,2045,2.17698,gcam-v7.0 +SSP5,Africa_Northern,2050,2.4209,gcam-v7.0 +SSP5,Africa_Northern,2055,2.67533,gcam-v7.0 +SSP5,Africa_Northern,2060,2.94139,gcam-v7.0 +SSP5,Africa_Northern,2065,3.22304,gcam-v7.0 +SSP5,Africa_Northern,2070,3.51534,gcam-v7.0 +SSP5,Africa_Northern,2075,3.80977,gcam-v7.0 +SSP5,Africa_Northern,2080,4.11747,gcam-v7.0 +SSP5,Africa_Northern,2085,4.43758,gcam-v7.0 +SSP5,Africa_Northern,2090,4.77162,gcam-v7.0 +SSP5,Africa_Northern,2095,5.10962,gcam-v7.0 +SSP5,Africa_Northern,2100,5.46095,gcam-v7.0 +SSP5,Africa_Southern,1975,0,gcam-v7.0 +SSP5,Africa_Southern,1990,0,gcam-v7.0 +SSP5,Africa_Southern,2005,0,gcam-v7.0 +SSP5,Africa_Southern,2010,0,gcam-v7.0 +SSP5,Africa_Southern,2015,0,gcam-v7.0 +SSP5,Africa_Southern,2020,1.17562,gcam-v7.0 +SSP5,Africa_Southern,2025,1.45035,gcam-v7.0 +SSP5,Africa_Southern,2030,1.78686,gcam-v7.0 +SSP5,Africa_Southern,2035,2.17777,gcam-v7.0 +SSP5,Africa_Southern,2040,2.61709,gcam-v7.0 +SSP5,Africa_Southern,2045,3.09547,gcam-v7.0 +SSP5,Africa_Southern,2050,3.62109,gcam-v7.0 +SSP5,Africa_Southern,2055,4.20164,gcam-v7.0 +SSP5,Africa_Southern,2060,4.8534,gcam-v7.0 +SSP5,Africa_Southern,2065,5.59185,gcam-v7.0 +SSP5,Africa_Southern,2070,6.42826,gcam-v7.0 +SSP5,Africa_Southern,2075,7.36339,gcam-v7.0 +SSP5,Africa_Southern,2080,8.40217,gcam-v7.0 +SSP5,Africa_Southern,2085,9.52911,gcam-v7.0 +SSP5,Africa_Southern,2090,10.731,gcam-v7.0 +SSP5,Africa_Southern,2095,12.0022,gcam-v7.0 +SSP5,Africa_Southern,2100,13.3444,gcam-v7.0 +SSP5,Africa_Western,1975,0,gcam-v7.0 +SSP5,Africa_Western,1990,0,gcam-v7.0 +SSP5,Africa_Western,2005,0,gcam-v7.0 +SSP5,Africa_Western,2010,0,gcam-v7.0 +SSP5,Africa_Western,2015,0,gcam-v7.0 +SSP5,Africa_Western,2020,1.18622,gcam-v7.0 +SSP5,Africa_Western,2025,1.46271,gcam-v7.0 +SSP5,Africa_Western,2030,1.84793,gcam-v7.0 +SSP5,Africa_Western,2035,2.22964,gcam-v7.0 +SSP5,Africa_Western,2040,2.60931,gcam-v7.0 +SSP5,Africa_Western,2045,3.01513,gcam-v7.0 +SSP5,Africa_Western,2050,3.4743,gcam-v7.0 +SSP5,Africa_Western,2055,3.98944,gcam-v7.0 +SSP5,Africa_Western,2060,4.56878,gcam-v7.0 +SSP5,Africa_Western,2065,5.22541,gcam-v7.0 +SSP5,Africa_Western,2070,5.96307,gcam-v7.0 +SSP5,Africa_Western,2075,6.7853,gcam-v7.0 +SSP5,Africa_Western,2080,7.70198,gcam-v7.0 +SSP5,Africa_Western,2085,8.70185,gcam-v7.0 +SSP5,Africa_Western,2090,9.77868,gcam-v7.0 +SSP5,Africa_Western,2095,10.9359,gcam-v7.0 +SSP5,Africa_Western,2100,12.159,gcam-v7.0 +SSP5,Argentina,1975,0,gcam-v7.0 +SSP5,Argentina,1990,0,gcam-v7.0 +SSP5,Argentina,2005,0,gcam-v7.0 +SSP5,Argentina,2010,0,gcam-v7.0 +SSP5,Argentina,2015,0,gcam-v7.0 +SSP5,Argentina,2020,1.06403,gcam-v7.0 +SSP5,Argentina,2025,1.22076,gcam-v7.0 +SSP5,Argentina,2030,1.40812,gcam-v7.0 +SSP5,Argentina,2035,1.62207,gcam-v7.0 +SSP5,Argentina,2040,1.84441,gcam-v7.0 +SSP5,Argentina,2045,2.07789,gcam-v7.0 +SSP5,Argentina,2050,2.31412,gcam-v7.0 +SSP5,Argentina,2055,2.56354,gcam-v7.0 +SSP5,Argentina,2060,2.82909,gcam-v7.0 +SSP5,Argentina,2065,3.10757,gcam-v7.0 +SSP5,Argentina,2070,3.39509,gcam-v7.0 +SSP5,Argentina,2075,3.698,gcam-v7.0 +SSP5,Argentina,2080,4.02312,gcam-v7.0 +SSP5,Argentina,2085,4.384,gcam-v7.0 +SSP5,Argentina,2090,4.78252,gcam-v7.0 +SSP5,Argentina,2095,5.22228,gcam-v7.0 +SSP5,Argentina,2100,5.69595,gcam-v7.0 +SSP5,Australia_NZ,1975,0,gcam-v7.0 +SSP5,Australia_NZ,1990,0,gcam-v7.0 +SSP5,Australia_NZ,2005,0,gcam-v7.0 +SSP5,Australia_NZ,2010,0,gcam-v7.0 +SSP5,Australia_NZ,2015,0,gcam-v7.0 +SSP5,Australia_NZ,2020,1.10789,gcam-v7.0 +SSP5,Australia_NZ,2025,1.2111,gcam-v7.0 +SSP5,Australia_NZ,2030,1.32393,gcam-v7.0 +SSP5,Australia_NZ,2035,1.45009,gcam-v7.0 +SSP5,Australia_NZ,2040,1.58665,gcam-v7.0 +SSP5,Australia_NZ,2045,1.72128,gcam-v7.0 +SSP5,Australia_NZ,2050,1.86312,gcam-v7.0 +SSP5,Australia_NZ,2055,2.01967,gcam-v7.0 +SSP5,Australia_NZ,2060,2.18505,gcam-v7.0 +SSP5,Australia_NZ,2065,2.36373,gcam-v7.0 +SSP5,Australia_NZ,2070,2.56109,gcam-v7.0 +SSP5,Australia_NZ,2075,2.78496,gcam-v7.0 +SSP5,Australia_NZ,2080,3.03224,gcam-v7.0 +SSP5,Australia_NZ,2085,3.31016,gcam-v7.0 +SSP5,Australia_NZ,2090,3.6161,gcam-v7.0 +SSP5,Australia_NZ,2095,3.94553,gcam-v7.0 +SSP5,Australia_NZ,2100,4.30227,gcam-v7.0 +SSP5,Brazil,1975,0,gcam-v7.0 +SSP5,Brazil,1990,0,gcam-v7.0 +SSP5,Brazil,2005,0,gcam-v7.0 +SSP5,Brazil,2010,0,gcam-v7.0 +SSP5,Brazil,2015,0,gcam-v7.0 +SSP5,Brazil,2020,1.12789,gcam-v7.0 +SSP5,Brazil,2025,1.31444,gcam-v7.0 +SSP5,Brazil,2030,1.545,gcam-v7.0 +SSP5,Brazil,2035,1.82148,gcam-v7.0 +SSP5,Brazil,2040,2.12004,gcam-v7.0 +SSP5,Brazil,2045,2.4411,gcam-v7.0 +SSP5,Brazil,2050,2.78726,gcam-v7.0 +SSP5,Brazil,2055,3.15382,gcam-v7.0 +SSP5,Brazil,2060,3.54231,gcam-v7.0 +SSP5,Brazil,2065,3.96426,gcam-v7.0 +SSP5,Brazil,2070,4.41491,gcam-v7.0 +SSP5,Brazil,2075,4.87273,gcam-v7.0 +SSP5,Brazil,2080,5.36664,gcam-v7.0 +SSP5,Brazil,2085,5.90445,gcam-v7.0 +SSP5,Brazil,2090,6.49629,gcam-v7.0 +SSP5,Brazil,2095,7.13799,gcam-v7.0 +SSP5,Brazil,2100,7.82563,gcam-v7.0 +SSP5,Canada,1975,0,gcam-v7.0 +SSP5,Canada,1990,0,gcam-v7.0 +SSP5,Canada,2005,0,gcam-v7.0 +SSP5,Canada,2010,0,gcam-v7.0 +SSP5,Canada,2015,0,gcam-v7.0 +SSP5,Canada,2020,1.03426,gcam-v7.0 +SSP5,Canada,2025,1.10253,gcam-v7.0 +SSP5,Canada,2030,1.19647,gcam-v7.0 +SSP5,Canada,2035,1.33604,gcam-v7.0 +SSP5,Canada,2040,1.4879,gcam-v7.0 +SSP5,Canada,2045,1.653,gcam-v7.0 +SSP5,Canada,2050,1.82266,gcam-v7.0 +SSP5,Canada,2055,2.00345,gcam-v7.0 +SSP5,Canada,2060,2.19324,gcam-v7.0 +SSP5,Canada,2065,2.38798,gcam-v7.0 +SSP5,Canada,2070,2.59625,gcam-v7.0 +SSP5,Canada,2075,2.83075,gcam-v7.0 +SSP5,Canada,2080,3.0865,gcam-v7.0 +SSP5,Canada,2085,3.37361,gcam-v7.0 +SSP5,Canada,2090,3.69069,gcam-v7.0 +SSP5,Canada,2095,4.02943,gcam-v7.0 +SSP5,Canada,2100,4.39116,gcam-v7.0 +SSP5,Central America and Caribbean,1975,0,gcam-v7.0 +SSP5,Central America and Caribbean,1990,0,gcam-v7.0 +SSP5,Central America and Caribbean,2005,0,gcam-v7.0 +SSP5,Central America and Caribbean,2010,0,gcam-v7.0 +SSP5,Central America and Caribbean,2015,0,gcam-v7.0 +SSP5,Central America and Caribbean,2020,1.0734,gcam-v7.0 +SSP5,Central America and Caribbean,2025,1.2104,gcam-v7.0 +SSP5,Central America and Caribbean,2030,1.38412,gcam-v7.0 +SSP5,Central America and Caribbean,2035,1.57226,gcam-v7.0 +SSP5,Central America and Caribbean,2040,1.75433,gcam-v7.0 +SSP5,Central America and Caribbean,2045,1.92778,gcam-v7.0 +SSP5,Central America and Caribbean,2050,2.10671,gcam-v7.0 +SSP5,Central America and Caribbean,2055,2.30313,gcam-v7.0 +SSP5,Central America and Caribbean,2060,2.52438,gcam-v7.0 +SSP5,Central America and Caribbean,2065,2.76908,gcam-v7.0 +SSP5,Central America and Caribbean,2070,3.03233,gcam-v7.0 +SSP5,Central America and Caribbean,2075,3.31465,gcam-v7.0 +SSP5,Central America and Caribbean,2080,3.62723,gcam-v7.0 +SSP5,Central America and Caribbean,2085,3.96759,gcam-v7.0 +SSP5,Central America and Caribbean,2090,4.33634,gcam-v7.0 +SSP5,Central America and Caribbean,2095,4.7405,gcam-v7.0 +SSP5,Central America and Caribbean,2100,5.17935,gcam-v7.0 +SSP5,Central Asia,1975,0,gcam-v7.0 +SSP5,Central Asia,1990,0,gcam-v7.0 +SSP5,Central Asia,2005,0,gcam-v7.0 +SSP5,Central Asia,2010,0,gcam-v7.0 +SSP5,Central Asia,2015,0,gcam-v7.0 +SSP5,Central Asia,2020,1.11961,gcam-v7.0 +SSP5,Central Asia,2025,1.40601,gcam-v7.0 +SSP5,Central Asia,2030,1.67524,gcam-v7.0 +SSP5,Central Asia,2035,1.97567,gcam-v7.0 +SSP5,Central Asia,2040,2.29252,gcam-v7.0 +SSP5,Central Asia,2045,2.58678,gcam-v7.0 +SSP5,Central Asia,2050,2.85664,gcam-v7.0 +SSP5,Central Asia,2055,3.12615,gcam-v7.0 +SSP5,Central Asia,2060,3.42355,gcam-v7.0 +SSP5,Central Asia,2065,3.74267,gcam-v7.0 +SSP5,Central Asia,2070,4.06384,gcam-v7.0 +SSP5,Central Asia,2075,4.38925,gcam-v7.0 +SSP5,Central Asia,2080,4.73308,gcam-v7.0 +SSP5,Central Asia,2085,5.08768,gcam-v7.0 +SSP5,Central Asia,2090,5.46265,gcam-v7.0 +SSP5,Central Asia,2095,5.86406,gcam-v7.0 +SSP5,Central Asia,2100,6.28497,gcam-v7.0 +SSP5,China,1975,0,gcam-v7.0 +SSP5,China,1990,0,gcam-v7.0 +SSP5,China,2005,0,gcam-v7.0 +SSP5,China,2010,0,gcam-v7.0 +SSP5,China,2015,0,gcam-v7.0 +SSP5,China,2020,1.38749,gcam-v7.0 +SSP5,China,2025,1.85089,gcam-v7.0 +SSP5,China,2030,2.39037,gcam-v7.0 +SSP5,China,2035,2.9869,gcam-v7.0 +SSP5,China,2040,3.55012,gcam-v7.0 +SSP5,China,2045,4.01836,gcam-v7.0 +SSP5,China,2050,4.45374,gcam-v7.0 +SSP5,China,2055,4.90807,gcam-v7.0 +SSP5,China,2060,5.32936,gcam-v7.0 +SSP5,China,2065,5.73054,gcam-v7.0 +SSP5,China,2070,6.10087,gcam-v7.0 +SSP5,China,2075,6.46239,gcam-v7.0 +SSP5,China,2080,6.80781,gcam-v7.0 +SSP5,China,2085,7.16232,gcam-v7.0 +SSP5,China,2090,7.52033,gcam-v7.0 +SSP5,China,2095,7.89113,gcam-v7.0 +SSP5,China,2100,8.27397,gcam-v7.0 +SSP5,Colombia,1975,0,gcam-v7.0 +SSP5,Colombia,1990,0,gcam-v7.0 +SSP5,Colombia,2005,0,gcam-v7.0 +SSP5,Colombia,2010,0,gcam-v7.0 +SSP5,Colombia,2015,0,gcam-v7.0 +SSP5,Colombia,2020,1.12903,gcam-v7.0 +SSP5,Colombia,2025,1.2656,gcam-v7.0 +SSP5,Colombia,2030,1.45117,gcam-v7.0 +SSP5,Colombia,2035,1.70045,gcam-v7.0 +SSP5,Colombia,2040,1.95735,gcam-v7.0 +SSP5,Colombia,2045,2.22178,gcam-v7.0 +SSP5,Colombia,2050,2.5001,gcam-v7.0 +SSP5,Colombia,2055,2.8004,gcam-v7.0 +SSP5,Colombia,2060,3.13101,gcam-v7.0 +SSP5,Colombia,2065,3.48654,gcam-v7.0 +SSP5,Colombia,2070,3.8661,gcam-v7.0 +SSP5,Colombia,2075,4.27475,gcam-v7.0 +SSP5,Colombia,2080,4.71327,gcam-v7.0 +SSP5,Colombia,2085,5.18861,gcam-v7.0 +SSP5,Colombia,2090,5.71141,gcam-v7.0 +SSP5,Colombia,2095,6.28161,gcam-v7.0 +SSP5,Colombia,2100,6.89506,gcam-v7.0 +SSP5,EU-12,1975,0,gcam-v7.0 +SSP5,EU-12,1990,0,gcam-v7.0 +SSP5,EU-12,2005,0,gcam-v7.0 +SSP5,EU-12,2010,0,gcam-v7.0 +SSP5,EU-12,2015,0,gcam-v7.0 +SSP5,EU-12,2020,1.09248,gcam-v7.0 +SSP5,EU-12,2025,1.26669,gcam-v7.0 +SSP5,EU-12,2030,1.43929,gcam-v7.0 +SSP5,EU-12,2035,1.61737,gcam-v7.0 +SSP5,EU-12,2040,1.79836,gcam-v7.0 +SSP5,EU-12,2045,1.99013,gcam-v7.0 +SSP5,EU-12,2050,2.18764,gcam-v7.0 +SSP5,EU-12,2055,2.3992,gcam-v7.0 +SSP5,EU-12,2060,2.61481,gcam-v7.0 +SSP5,EU-12,2065,2.83212,gcam-v7.0 +SSP5,EU-12,2070,3.0589,gcam-v7.0 +SSP5,EU-12,2075,3.31726,gcam-v7.0 +SSP5,EU-12,2080,3.60445,gcam-v7.0 +SSP5,EU-12,2085,3.91962,gcam-v7.0 +SSP5,EU-12,2090,4.26135,gcam-v7.0 +SSP5,EU-12,2095,4.62644,gcam-v7.0 +SSP5,EU-12,2100,5.01364,gcam-v7.0 +SSP5,EU-15,1975,0,gcam-v7.0 +SSP5,EU-15,1990,0,gcam-v7.0 +SSP5,EU-15,2005,0,gcam-v7.0 +SSP5,EU-15,2010,0,gcam-v7.0 +SSP5,EU-15,2015,0,gcam-v7.0 +SSP5,EU-15,2020,1.05482,gcam-v7.0 +SSP5,EU-15,2025,1.14882,gcam-v7.0 +SSP5,EU-15,2030,1.26916,gcam-v7.0 +SSP5,EU-15,2035,1.40823,gcam-v7.0 +SSP5,EU-15,2040,1.54904,gcam-v7.0 +SSP5,EU-15,2045,1.68825,gcam-v7.0 +SSP5,EU-15,2050,1.82701,gcam-v7.0 +SSP5,EU-15,2055,1.97276,gcam-v7.0 +SSP5,EU-15,2060,2.12297,gcam-v7.0 +SSP5,EU-15,2065,2.28314,gcam-v7.0 +SSP5,EU-15,2070,2.46097,gcam-v7.0 +SSP5,EU-15,2075,2.66479,gcam-v7.0 +SSP5,EU-15,2080,2.88613,gcam-v7.0 +SSP5,EU-15,2085,3.1277,gcam-v7.0 +SSP5,EU-15,2090,3.38878,gcam-v7.0 +SSP5,EU-15,2095,3.67025,gcam-v7.0 +SSP5,EU-15,2100,3.97709,gcam-v7.0 +SSP5,Europe_Eastern,1975,0,gcam-v7.0 +SSP5,Europe_Eastern,1990,0,gcam-v7.0 +SSP5,Europe_Eastern,2005,0,gcam-v7.0 +SSP5,Europe_Eastern,2010,0,gcam-v7.0 +SSP5,Europe_Eastern,2015,0,gcam-v7.0 +SSP5,Europe_Eastern,2020,0.969962,gcam-v7.0 +SSP5,Europe_Eastern,2025,1.13252,gcam-v7.0 +SSP5,Europe_Eastern,2030,1.31938,gcam-v7.0 +SSP5,Europe_Eastern,2035,1.52922,gcam-v7.0 +SSP5,Europe_Eastern,2040,1.73517,gcam-v7.0 +SSP5,Europe_Eastern,2045,1.93847,gcam-v7.0 +SSP5,Europe_Eastern,2050,2.15526,gcam-v7.0 +SSP5,Europe_Eastern,2055,2.39571,gcam-v7.0 +SSP5,Europe_Eastern,2060,2.64635,gcam-v7.0 +SSP5,Europe_Eastern,2065,2.91,gcam-v7.0 +SSP5,Europe_Eastern,2070,3.20624,gcam-v7.0 +SSP5,Europe_Eastern,2075,3.58863,gcam-v7.0 +SSP5,Europe_Eastern,2080,3.9048,gcam-v7.0 +SSP5,Europe_Eastern,2085,4.24012,gcam-v7.0 +SSP5,Europe_Eastern,2090,4.58985,gcam-v7.0 +SSP5,Europe_Eastern,2095,4.95252,gcam-v7.0 +SSP5,Europe_Eastern,2100,5.32799,gcam-v7.0 +SSP5,Europe_Non_EU,1975,0,gcam-v7.0 +SSP5,Europe_Non_EU,1990,0,gcam-v7.0 +SSP5,Europe_Non_EU,2005,0,gcam-v7.0 +SSP5,Europe_Non_EU,2010,0,gcam-v7.0 +SSP5,Europe_Non_EU,2015,0,gcam-v7.0 +SSP5,Europe_Non_EU,2020,1.07899,gcam-v7.0 +SSP5,Europe_Non_EU,2025,1.2093,gcam-v7.0 +SSP5,Europe_Non_EU,2030,1.35184,gcam-v7.0 +SSP5,Europe_Non_EU,2035,1.50084,gcam-v7.0 +SSP5,Europe_Non_EU,2040,1.65177,gcam-v7.0 +SSP5,Europe_Non_EU,2045,1.80187,gcam-v7.0 +SSP5,Europe_Non_EU,2050,1.95452,gcam-v7.0 +SSP5,Europe_Non_EU,2055,2.11249,gcam-v7.0 +SSP5,Europe_Non_EU,2060,2.28053,gcam-v7.0 +SSP5,Europe_Non_EU,2065,2.45867,gcam-v7.0 +SSP5,Europe_Non_EU,2070,2.64002,gcam-v7.0 +SSP5,Europe_Non_EU,2075,2.83143,gcam-v7.0 +SSP5,Europe_Non_EU,2080,3.03897,gcam-v7.0 +SSP5,Europe_Non_EU,2085,3.26555,gcam-v7.0 +SSP5,Europe_Non_EU,2090,3.51217,gcam-v7.0 +SSP5,Europe_Non_EU,2095,3.78148,gcam-v7.0 +SSP5,Europe_Non_EU,2100,4.07689,gcam-v7.0 +SSP5,European Free Trade Association,1975,0,gcam-v7.0 +SSP5,European Free Trade Association,1990,0,gcam-v7.0 +SSP5,European Free Trade Association,2005,0,gcam-v7.0 +SSP5,European Free Trade Association,2010,0,gcam-v7.0 +SSP5,European Free Trade Association,2015,0,gcam-v7.0 +SSP5,European Free Trade Association,2020,1.08989,gcam-v7.0 +SSP5,European Free Trade Association,2025,1.20176,gcam-v7.0 +SSP5,European Free Trade Association,2030,1.34029,gcam-v7.0 +SSP5,European Free Trade Association,2035,1.48306,gcam-v7.0 +SSP5,European Free Trade Association,2040,1.61636,gcam-v7.0 +SSP5,European Free Trade Association,2045,1.73673,gcam-v7.0 +SSP5,European Free Trade Association,2050,1.86599,gcam-v7.0 +SSP5,European Free Trade Association,2055,2.01055,gcam-v7.0 +SSP5,European Free Trade Association,2060,2.1719,gcam-v7.0 +SSP5,European Free Trade Association,2065,2.34779,gcam-v7.0 +SSP5,European Free Trade Association,2070,2.53918,gcam-v7.0 +SSP5,European Free Trade Association,2075,2.75641,gcam-v7.0 +SSP5,European Free Trade Association,2080,2.99501,gcam-v7.0 +SSP5,European Free Trade Association,2085,3.25965,gcam-v7.0 +SSP5,European Free Trade Association,2090,3.55097,gcam-v7.0 +SSP5,European Free Trade Association,2095,3.8686,gcam-v7.0 +SSP5,European Free Trade Association,2100,4.21228,gcam-v7.0 +SSP5,India,1975,0,gcam-v7.0 +SSP5,India,1990,0,gcam-v7.0 +SSP5,India,2005,0,gcam-v7.0 +SSP5,India,2010,0,gcam-v7.0 +SSP5,India,2015,0,gcam-v7.0 +SSP5,India,2020,1.18154,gcam-v7.0 +SSP5,India,2025,1.45399,gcam-v7.0 +SSP5,India,2030,1.75854,gcam-v7.0 +SSP5,India,2035,2.08811,gcam-v7.0 +SSP5,India,2040,2.42143,gcam-v7.0 +SSP5,India,2045,2.77154,gcam-v7.0 +SSP5,India,2050,3.14701,gcam-v7.0 +SSP5,India,2055,3.56346,gcam-v7.0 +SSP5,India,2060,4.01726,gcam-v7.0 +SSP5,India,2065,4.50353,gcam-v7.0 +SSP5,India,2070,5.0168,gcam-v7.0 +SSP5,India,2075,5.55612,gcam-v7.0 +SSP5,India,2080,6.13594,gcam-v7.0 +SSP5,India,2085,6.75589,gcam-v7.0 +SSP5,India,2090,7.40961,gcam-v7.0 +SSP5,India,2095,8.09675,gcam-v7.0 +SSP5,India,2100,8.82188,gcam-v7.0 +SSP5,Indonesia,1975,0,gcam-v7.0 +SSP5,Indonesia,1990,0,gcam-v7.0 +SSP5,Indonesia,2005,0,gcam-v7.0 +SSP5,Indonesia,2010,0,gcam-v7.0 +SSP5,Indonesia,2015,0,gcam-v7.0 +SSP5,Indonesia,2020,1.22756,gcam-v7.0 +SSP5,Indonesia,2025,1.56783,gcam-v7.0 +SSP5,Indonesia,2030,1.98248,gcam-v7.0 +SSP5,Indonesia,2035,2.46831,gcam-v7.0 +SSP5,Indonesia,2040,2.97711,gcam-v7.0 +SSP5,Indonesia,2045,3.49118,gcam-v7.0 +SSP5,Indonesia,2050,4.02691,gcam-v7.0 +SSP5,Indonesia,2055,4.59679,gcam-v7.0 +SSP5,Indonesia,2060,5.20308,gcam-v7.0 +SSP5,Indonesia,2065,5.83847,gcam-v7.0 +SSP5,Indonesia,2070,6.51631,gcam-v7.0 +SSP5,Indonesia,2075,7.22122,gcam-v7.0 +SSP5,Indonesia,2080,7.95935,gcam-v7.0 +SSP5,Indonesia,2085,8.72857,gcam-v7.0 +SSP5,Indonesia,2090,9.5283,gcam-v7.0 +SSP5,Indonesia,2095,10.3556,gcam-v7.0 +SSP5,Indonesia,2100,11.2034,gcam-v7.0 +SSP5,Japan,1975,0,gcam-v7.0 +SSP5,Japan,1990,0,gcam-v7.0 +SSP5,Japan,2005,0,gcam-v7.0 +SSP5,Japan,2010,0,gcam-v7.0 +SSP5,Japan,2015,0,gcam-v7.0 +SSP5,Japan,2020,1.04463,gcam-v7.0 +SSP5,Japan,2025,1.13882,gcam-v7.0 +SSP5,Japan,2030,1.257,gcam-v7.0 +SSP5,Japan,2035,1.39625,gcam-v7.0 +SSP5,Japan,2040,1.5492,gcam-v7.0 +SSP5,Japan,2045,1.69917,gcam-v7.0 +SSP5,Japan,2050,1.84246,gcam-v7.0 +SSP5,Japan,2055,1.98659,gcam-v7.0 +SSP5,Japan,2060,2.13543,gcam-v7.0 +SSP5,Japan,2065,2.29375,gcam-v7.0 +SSP5,Japan,2070,2.4656,gcam-v7.0 +SSP5,Japan,2075,2.65307,gcam-v7.0 +SSP5,Japan,2080,2.85579,gcam-v7.0 +SSP5,Japan,2085,3.06591,gcam-v7.0 +SSP5,Japan,2090,3.28063,gcam-v7.0 +SSP5,Japan,2095,3.50656,gcam-v7.0 +SSP5,Japan,2100,3.74723,gcam-v7.0 +SSP5,Mexico,1975,0,gcam-v7.0 +SSP5,Mexico,1990,0,gcam-v7.0 +SSP5,Mexico,2005,0,gcam-v7.0 +SSP5,Mexico,2010,0,gcam-v7.0 +SSP5,Mexico,2015,0,gcam-v7.0 +SSP5,Mexico,2020,1.04093,gcam-v7.0 +SSP5,Mexico,2025,1.15762,gcam-v7.0 +SSP5,Mexico,2030,1.33527,gcam-v7.0 +SSP5,Mexico,2035,1.53446,gcam-v7.0 +SSP5,Mexico,2040,1.71548,gcam-v7.0 +SSP5,Mexico,2045,1.87824,gcam-v7.0 +SSP5,Mexico,2050,2.03861,gcam-v7.0 +SSP5,Mexico,2055,2.20864,gcam-v7.0 +SSP5,Mexico,2060,2.3933,gcam-v7.0 +SSP5,Mexico,2065,2.58657,gcam-v7.0 +SSP5,Mexico,2070,2.79256,gcam-v7.0 +SSP5,Mexico,2075,3.0099,gcam-v7.0 +SSP5,Mexico,2080,3.24513,gcam-v7.0 +SSP5,Mexico,2085,3.50316,gcam-v7.0 +SSP5,Mexico,2090,3.78304,gcam-v7.0 +SSP5,Mexico,2095,4.08621,gcam-v7.0 +SSP5,Mexico,2100,4.41626,gcam-v7.0 +SSP5,Middle East,1975,0,gcam-v7.0 +SSP5,Middle East,1990,0,gcam-v7.0 +SSP5,Middle East,2005,0,gcam-v7.0 +SSP5,Middle East,2010,0,gcam-v7.0 +SSP5,Middle East,2015,0,gcam-v7.0 +SSP5,Middle East,2020,1.0943,gcam-v7.0 +SSP5,Middle East,2025,1.3426,gcam-v7.0 +SSP5,Middle East,2030,1.60405,gcam-v7.0 +SSP5,Middle East,2035,1.86365,gcam-v7.0 +SSP5,Middle East,2040,2.14479,gcam-v7.0 +SSP5,Middle East,2045,2.41812,gcam-v7.0 +SSP5,Middle East,2050,2.68778,gcam-v7.0 +SSP5,Middle East,2055,2.94998,gcam-v7.0 +SSP5,Middle East,2060,3.21679,gcam-v7.0 +SSP5,Middle East,2065,3.49823,gcam-v7.0 +SSP5,Middle East,2070,3.79135,gcam-v7.0 +SSP5,Middle East,2075,4.11071,gcam-v7.0 +SSP5,Middle East,2080,4.47642,gcam-v7.0 +SSP5,Middle East,2085,4.87978,gcam-v7.0 +SSP5,Middle East,2090,5.31381,gcam-v7.0 +SSP5,Middle East,2095,5.78356,gcam-v7.0 +SSP5,Middle East,2100,6.29292,gcam-v7.0 +SSP5,Pakistan,1975,0,gcam-v7.0 +SSP5,Pakistan,1990,0,gcam-v7.0 +SSP5,Pakistan,2005,0,gcam-v7.0 +SSP5,Pakistan,2010,0,gcam-v7.0 +SSP5,Pakistan,2015,0,gcam-v7.0 +SSP5,Pakistan,2020,1.06179,gcam-v7.0 +SSP5,Pakistan,2025,1.19273,gcam-v7.0 +SSP5,Pakistan,2030,1.38908,gcam-v7.0 +SSP5,Pakistan,2035,1.64403,gcam-v7.0 +SSP5,Pakistan,2040,1.94064,gcam-v7.0 +SSP5,Pakistan,2045,2.2847,gcam-v7.0 +SSP5,Pakistan,2050,2.68427,gcam-v7.0 +SSP5,Pakistan,2055,3.1397,gcam-v7.0 +SSP5,Pakistan,2060,3.63192,gcam-v7.0 +SSP5,Pakistan,2065,4.15836,gcam-v7.0 +SSP5,Pakistan,2070,4.7093,gcam-v7.0 +SSP5,Pakistan,2075,5.28247,gcam-v7.0 +SSP5,Pakistan,2080,5.88622,gcam-v7.0 +SSP5,Pakistan,2085,6.51717,gcam-v7.0 +SSP5,Pakistan,2090,7.16976,gcam-v7.0 +SSP5,Pakistan,2095,7.84587,gcam-v7.0 +SSP5,Pakistan,2100,8.55303,gcam-v7.0 +SSP5,Russia,1975,0,gcam-v7.0 +SSP5,Russia,1990,0,gcam-v7.0 +SSP5,Russia,2005,0,gcam-v7.0 +SSP5,Russia,2010,0,gcam-v7.0 +SSP5,Russia,2015,0,gcam-v7.0 +SSP5,Russia,2020,1.15566,gcam-v7.0 +SSP5,Russia,2025,1.40138,gcam-v7.0 +SSP5,Russia,2030,1.76354,gcam-v7.0 +SSP5,Russia,2035,2.09294,gcam-v7.0 +SSP5,Russia,2040,2.41087,gcam-v7.0 +SSP5,Russia,2045,2.69127,gcam-v7.0 +SSP5,Russia,2050,2.97091,gcam-v7.0 +SSP5,Russia,2055,3.26129,gcam-v7.0 +SSP5,Russia,2060,3.54221,gcam-v7.0 +SSP5,Russia,2065,3.82612,gcam-v7.0 +SSP5,Russia,2070,4.12876,gcam-v7.0 +SSP5,Russia,2075,4.4639,gcam-v7.0 +SSP5,Russia,2080,4.8374,gcam-v7.0 +SSP5,Russia,2085,5.24524,gcam-v7.0 +SSP5,Russia,2090,5.67293,gcam-v7.0 +SSP5,Russia,2095,6.11786,gcam-v7.0 +SSP5,Russia,2100,6.59628,gcam-v7.0 +SSP5,South Africa,1975,0,gcam-v7.0 +SSP5,South Africa,1990,0,gcam-v7.0 +SSP5,South Africa,2005,0,gcam-v7.0 +SSP5,South Africa,2010,0,gcam-v7.0 +SSP5,South Africa,2015,0,gcam-v7.0 +SSP5,South Africa,2020,1.13456,gcam-v7.0 +SSP5,South Africa,2025,1.31778,gcam-v7.0 +SSP5,South Africa,2030,1.52702,gcam-v7.0 +SSP5,South Africa,2035,1.75564,gcam-v7.0 +SSP5,South Africa,2040,1.98799,gcam-v7.0 +SSP5,South Africa,2045,2.21816,gcam-v7.0 +SSP5,South Africa,2050,2.45518,gcam-v7.0 +SSP5,South Africa,2055,2.70715,gcam-v7.0 +SSP5,South Africa,2060,2.97092,gcam-v7.0 +SSP5,South Africa,2065,3.24036,gcam-v7.0 +SSP5,South Africa,2070,3.51398,gcam-v7.0 +SSP5,South Africa,2075,3.79201,gcam-v7.0 +SSP5,South Africa,2080,4.08064,gcam-v7.0 +SSP5,South Africa,2085,4.38256,gcam-v7.0 +SSP5,South Africa,2090,4.70108,gcam-v7.0 +SSP5,South Africa,2095,5.03505,gcam-v7.0 +SSP5,South Africa,2100,5.38707,gcam-v7.0 +SSP5,South America_Northern,1975,0,gcam-v7.0 +SSP5,South America_Northern,1990,0,gcam-v7.0 +SSP5,South America_Northern,2005,0,gcam-v7.0 +SSP5,South America_Northern,2010,0,gcam-v7.0 +SSP5,South America_Northern,2015,0,gcam-v7.0 +SSP5,South America_Northern,2020,0.841911,gcam-v7.0 +SSP5,South America_Northern,2025,0.815402,gcam-v7.0 +SSP5,South America_Northern,2030,0.871009,gcam-v7.0 +SSP5,South America_Northern,2035,1.16385,gcam-v7.0 +SSP5,South America_Northern,2040,1.48317,gcam-v7.0 +SSP5,South America_Northern,2045,1.82017,gcam-v7.0 +SSP5,South America_Northern,2050,2.18485,gcam-v7.0 +SSP5,South America_Northern,2055,2.56303,gcam-v7.0 +SSP5,South America_Northern,2060,2.96145,gcam-v7.0 +SSP5,South America_Northern,2065,3.37602,gcam-v7.0 +SSP5,South America_Northern,2070,3.82569,gcam-v7.0 +SSP5,South America_Northern,2075,4.29266,gcam-v7.0 +SSP5,South America_Northern,2080,4.78693,gcam-v7.0 +SSP5,South America_Northern,2085,5.31187,gcam-v7.0 +SSP5,South America_Northern,2090,5.87993,gcam-v7.0 +SSP5,South America_Northern,2095,6.48937,gcam-v7.0 +SSP5,South America_Northern,2100,7.14054,gcam-v7.0 +SSP5,South America_Southern,1975,0,gcam-v7.0 +SSP5,South America_Southern,1990,0,gcam-v7.0 +SSP5,South America_Southern,2005,0,gcam-v7.0 +SSP5,South America_Southern,2010,0,gcam-v7.0 +SSP5,South America_Southern,2015,0,gcam-v7.0 +SSP5,South America_Southern,2020,1.13898,gcam-v7.0 +SSP5,South America_Southern,2025,1.32786,gcam-v7.0 +SSP5,South America_Southern,2030,1.53865,gcam-v7.0 +SSP5,South America_Southern,2035,1.77629,gcam-v7.0 +SSP5,South America_Southern,2040,2.02186,gcam-v7.0 +SSP5,South America_Southern,2045,2.27357,gcam-v7.0 +SSP5,South America_Southern,2050,2.54037,gcam-v7.0 +SSP5,South America_Southern,2055,2.82787,gcam-v7.0 +SSP5,South America_Southern,2060,3.14282,gcam-v7.0 +SSP5,South America_Southern,2065,3.48006,gcam-v7.0 +SSP5,South America_Southern,2070,3.83448,gcam-v7.0 +SSP5,South America_Southern,2075,4.20623,gcam-v7.0 +SSP5,South America_Southern,2080,4.60411,gcam-v7.0 +SSP5,South America_Southern,2085,5.03175,gcam-v7.0 +SSP5,South America_Southern,2090,5.4932,gcam-v7.0 +SSP5,South America_Southern,2095,5.9931,gcam-v7.0 +SSP5,South America_Southern,2100,6.53108,gcam-v7.0 +SSP5,South Asia,1975,0,gcam-v7.0 +SSP5,South Asia,1990,0,gcam-v7.0 +SSP5,South Asia,2005,0,gcam-v7.0 +SSP5,South Asia,2010,0,gcam-v7.0 +SSP5,South Asia,2015,0,gcam-v7.0 +SSP5,South Asia,2020,1.15372,gcam-v7.0 +SSP5,South Asia,2025,1.3779,gcam-v7.0 +SSP5,South Asia,2030,1.57794,gcam-v7.0 +SSP5,South Asia,2035,1.70751,gcam-v7.0 +SSP5,South Asia,2040,1.73987,gcam-v7.0 +SSP5,South Asia,2045,1.72272,gcam-v7.0 +SSP5,South Asia,2050,1.70117,gcam-v7.0 +SSP5,South Asia,2055,1.69336,gcam-v7.0 +SSP5,South Asia,2060,1.70469,gcam-v7.0 +SSP5,South Asia,2065,1.73012,gcam-v7.0 +SSP5,South Asia,2070,1.76577,gcam-v7.0 +SSP5,South Asia,2075,1.81064,gcam-v7.0 +SSP5,South Asia,2080,1.86697,gcam-v7.0 +SSP5,South Asia,2085,1.93409,gcam-v7.0 +SSP5,South Asia,2090,2.01194,gcam-v7.0 +SSP5,South Asia,2095,2.09896,gcam-v7.0 +SSP5,South Asia,2100,2.19292,gcam-v7.0 +SSP5,South Korea,1975,0,gcam-v7.0 +SSP5,South Korea,1990,0,gcam-v7.0 +SSP5,South Korea,2005,0,gcam-v7.0 +SSP5,South Korea,2010,0,gcam-v7.0 +SSP5,South Korea,2015,0,gcam-v7.0 +SSP5,South Korea,2020,0.967813,gcam-v7.0 +SSP5,South Korea,2025,1.10614,gcam-v7.0 +SSP5,South Korea,2030,1.24726,gcam-v7.0 +SSP5,South Korea,2035,1.37493,gcam-v7.0 +SSP5,South Korea,2040,1.49866,gcam-v7.0 +SSP5,South Korea,2045,1.61239,gcam-v7.0 +SSP5,South Korea,2050,1.72442,gcam-v7.0 +SSP5,South Korea,2055,1.82947,gcam-v7.0 +SSP5,South Korea,2060,1.94645,gcam-v7.0 +SSP5,South Korea,2065,2.06681,gcam-v7.0 +SSP5,South Korea,2070,2.17651,gcam-v7.0 +SSP5,South Korea,2075,2.29432,gcam-v7.0 +SSP5,South Korea,2080,2.40994,gcam-v7.0 +SSP5,South Korea,2085,2.52725,gcam-v7.0 +SSP5,South Korea,2090,2.64929,gcam-v7.0 +SSP5,South Korea,2095,2.77764,gcam-v7.0 +SSP5,South Korea,2100,2.9081,gcam-v7.0 +SSP5,Southeast Asia,1975,0,gcam-v7.0 +SSP5,Southeast Asia,1990,0,gcam-v7.0 +SSP5,Southeast Asia,2005,0,gcam-v7.0 +SSP5,Southeast Asia,2010,0,gcam-v7.0 +SSP5,Southeast Asia,2015,0,gcam-v7.0 +SSP5,Southeast Asia,2020,1.14676,gcam-v7.0 +SSP5,Southeast Asia,2025,1.36041,gcam-v7.0 +SSP5,Southeast Asia,2030,1.57548,gcam-v7.0 +SSP5,Southeast Asia,2035,1.76752,gcam-v7.0 +SSP5,Southeast Asia,2040,1.94312,gcam-v7.0 +SSP5,Southeast Asia,2045,2.10245,gcam-v7.0 +SSP5,Southeast Asia,2050,2.26779,gcam-v7.0 +SSP5,Southeast Asia,2055,2.45399,gcam-v7.0 +SSP5,Southeast Asia,2060,2.65888,gcam-v7.0 +SSP5,Southeast Asia,2065,2.87724,gcam-v7.0 +SSP5,Southeast Asia,2070,3.10873,gcam-v7.0 +SSP5,Southeast Asia,2075,3.35241,gcam-v7.0 +SSP5,Southeast Asia,2080,3.61464,gcam-v7.0 +SSP5,Southeast Asia,2085,3.89533,gcam-v7.0 +SSP5,Southeast Asia,2090,4.19498,gcam-v7.0 +SSP5,Southeast Asia,2095,4.51251,gcam-v7.0 +SSP5,Southeast Asia,2100,4.84449,gcam-v7.0 +SSP5,Taiwan,1975,0,gcam-v7.0 +SSP5,Taiwan,1990,0,gcam-v7.0 +SSP5,Taiwan,2005,0,gcam-v7.0 +SSP5,Taiwan,2010,0,gcam-v7.0 +SSP5,Taiwan,2015,0,gcam-v7.0 +SSP5,Taiwan,2020,1.16525,gcam-v7.0 +SSP5,Taiwan,2025,1.2947,gcam-v7.0 +SSP5,Taiwan,2030,1.41539,gcam-v7.0 +SSP5,Taiwan,2035,1.53147,gcam-v7.0 +SSP5,Taiwan,2040,1.6419,gcam-v7.0 +SSP5,Taiwan,2045,1.73233,gcam-v7.0 +SSP5,Taiwan,2050,1.79734,gcam-v7.0 +SSP5,Taiwan,2055,1.8433,gcam-v7.0 +SSP5,Taiwan,2060,1.88971,gcam-v7.0 +SSP5,Taiwan,2065,1.99019,gcam-v7.0 +SSP5,Taiwan,2070,2.07806,gcam-v7.0 +SSP5,Taiwan,2075,2.14803,gcam-v7.0 +SSP5,Taiwan,2080,2.20994,gcam-v7.0 +SSP5,Taiwan,2085,2.25336,gcam-v7.0 +SSP5,Taiwan,2090,2.28489,gcam-v7.0 +SSP5,Taiwan,2095,2.30488,gcam-v7.0 +SSP5,Taiwan,2100,2.30902,gcam-v7.0 +SSP5,USA,1975,0,gcam-v7.0 +SSP5,USA,1990,0,gcam-v7.0 +SSP5,USA,2005,0,gcam-v7.0 +SSP5,USA,2010,0,gcam-v7.0 +SSP5,USA,2015,0,gcam-v7.0 +SSP5,USA,2020,1.10361,gcam-v7.0 +SSP5,USA,2025,1.22181,gcam-v7.0 +SSP5,USA,2030,1.33703,gcam-v7.0 +SSP5,USA,2035,1.44496,gcam-v7.0 +SSP5,USA,2040,1.54077,gcam-v7.0 +SSP5,USA,2045,1.62599,gcam-v7.0 +SSP5,USA,2050,1.71667,gcam-v7.0 +SSP5,USA,2055,1.81653,gcam-v7.0 +SSP5,USA,2060,1.9255,gcam-v7.0 +SSP5,USA,2065,2.03989,gcam-v7.0 +SSP5,USA,2070,2.17112,gcam-v7.0 +SSP5,USA,2075,2.32086,gcam-v7.0 +SSP5,USA,2080,2.47756,gcam-v7.0 +SSP5,USA,2085,2.6513,gcam-v7.0 +SSP5,USA,2090,2.84253,gcam-v7.0 +SSP5,USA,2095,3.05334,gcam-v7.0 +SSP5,USA,2100,3.28837,gcam-v7.0 diff --git a/input/policy/forcing_target_2p6_overshoot.xml b/input/policy/forcing_target_2p6_overshoot.xml index ab5d927b5d..21f436323e 100644 --- a/input/policy/forcing_target_2p6_overshoot.xml +++ b/input/policy/forcing_target_2p6_overshoot.xml @@ -38,7 +38,7 @@ significantly. --> - 270.0 + 330.0 diff --git a/input/policy/policy_target_2p6_spa23.xml b/input/policy/policy_target_2p6_spa23.xml index 60cfabe344..cb20123992 100644 --- a/input/policy/policy_target_2p6_spa23.xml +++ b/input/policy/policy_target_2p6_spa23.xml @@ -6,7 +6,7 @@ 2040 0.03 - 500.0 + 1000.0 CO2_LTG 8000 diff --git a/input/policy/policy_target_2p6_spa4.xml b/input/policy/policy_target_2p6_spa4.xml index 5ec328b798..096a58bf78 100644 --- a/input/policy/policy_target_2p6_spa4.xml +++ b/input/policy/policy_target_2p6_spa4.xml @@ -6,7 +6,7 @@ 2025 0.03 - 235.0 + 600.0 CO2_LTG 8000 diff --git a/input/policy/policy_target_2p6_spa5.xml b/input/policy/policy_target_2p6_spa5.xml index f609743d43..0c2f9cc74b 100644 --- a/input/policy/policy_target_2p6_spa5.xml +++ b/input/policy/policy_target_2p6_spa5.xml @@ -6,7 +6,7 @@ 2040 0.03 - 750.0 + 950.0 CO2_LTG 8000