From 2a31a5694f309e8e269b650f724655b1dbb4f015 Mon Sep 17 00:00:00 2001 From: Eva Sinha Date: Sun, 17 Nov 2019 20:37:16 -0800 Subject: [PATCH 1/5] Updated SRB landleaf data for the four hist years Minor edits to read_data.R and setup.R to read landleaf data for four historical years. --- R/read_data.R | 26 +- R/setup.R | 11 +- .../initialization-data/AgCost_SRB.csv | 518 +----------------- .../LandUse_Nesting_SRB.csv | 60 +- man/AgProductionTechnology_setup.Rd | 5 +- man/LandAllocator_calcFinalLandAllocation.Rd | 3 +- man/LandAllocator_calculateShareWeights.Rd | 4 +- man/LandAllocator_calibrateLandAllocator.Rd | 3 +- ...andAllocator_setUnmanagedLandProfitRate.Rd | 4 +- man/LandNode_setup.Rd | 4 +- man/ReadData_LN1_LeafChildren.Rd | 3 +- man/ReadData_LN2_LandLeaf.Rd | 3 +- man/ReadData_LN3_LandLeaf.Rd | 3 +- ...RelativeCostLogit_calcUnnormalizedShare.Rd | 4 +- man/ScenarioInfo.Rd | 8 +- man/calc_post.Rd | 3 +- man/get_historical_land_data.Rd | 3 +- man/printAllOutputs.Rd | 3 +- man/run_model.Rd | 3 +- man/update_scen_info.Rd | 4 +- tests/testthat/Rplots.pdf | Bin 106677 -> 106677 bytes 21 files changed, 91 insertions(+), 584 deletions(-) diff --git a/R/read_data.R b/R/read_data.R index e72b68a..45cbe56 100644 --- a/R/read_data.R +++ b/R/read_data.R @@ -42,9 +42,9 @@ ReadData_LN0 <- function(aRegionName, aSubRegion, subregionData) { landAllocation = allocation) -> data - # Sum allocation and find unique logit exponent across region, root, and year + # Sum allocation and find unique logit exponent across region, and root data %>% - group_by(region, subregion, LandAllocatorRoot, year.fillout) %>% + group_by(region, subregion, LandAllocatorRoot) %>% summarize(landAllocation = sum(landAllocation), logit.exponent = unique(logit.exponent)) -> data @@ -92,9 +92,9 @@ ReadData_LN1_Node <- function(aRegionName, aSubRegion, subregionData) { logit.year.fillout = year.fillout) -> data - # Find unique logit exponent values across region, root, LandNode1, and year + # Find unique logit exponent values across region, root, and LandNode1 data %>% - group_by(region, subregion, LandAllocatorRoot, LandNode1, logit.year.fillout) %>% + group_by(region, subregion, LandAllocatorRoot, LandNode1) %>% summarize(logit.exponent = unique(logit.exponent), unManagedLandValue = unique(unManagedLandValue)) -> data @@ -152,7 +152,7 @@ ReadData_LN1_LeafChildren <- function(aRegionName, aSubRegion, subregionData, aS # For the SubRegion if data not available for all historical years then repeat data for all historical years if(nrow(data) != 0) { - if (! identical(data$year , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ + if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ data %>% select(-year) %>% mutate(UNIQUE_JOIN_FIELD = 1) %>% @@ -205,9 +205,9 @@ ReadData_LN2_Node <- function(aRegionName, aSubRegion, subregionData) { rename(logit.exponent = LandNode2.logit.exponent) -> data - # Find unique logit exponent values across region, root, LandNode1, LandNode2, and year + # Find unique logit exponent values across region, root, LandNode1, and LandNode2 data %>% - group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, year.fillout) %>% + group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2) %>% summarize(logit.exponent = unique(logit.exponent)) -> data } @@ -265,7 +265,7 @@ ReadData_LN2_LandLeaf <- function(aRegionName, aSubRegion, subregionData, aScena # For the SubRegion if data not available for all historical years then repeat data for all historical years if(nrow(data) != 0) { - if (! identical(data$year , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ + if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ data %>% select(-year) %>% mutate(UNIQUE_JOIN_FIELD = 1) %>% @@ -328,7 +328,7 @@ ReadData_LN2_UnmanagedLandLeaf <- function(aRegionName, aSubRegion, subregionDat # For the SubRegion if data not available for all historical years then repeat data for all historical years if(nrow(data) != 0) { - if (! identical(data$year , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ + if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ data %>% select(-year) %>% mutate(UNIQUE_JOIN_FIELD = 1) %>% @@ -381,9 +381,9 @@ ReadData_LN3_Node <- function(aRegionName, aSubRegion, subregionData) { rename(logit.exponent = LandNode3.logit.exponent) -> data - # Find unique logit exponent values across region, root, LandNode1, LandNode2, LandNode3, and year + # Find unique logit exponent values across region, root, LandNode1, LandNode2, and LandNode3 data %>% - group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, LandNode3, year.fillout) %>% + group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, LandNode3) %>% summarize(logit.exponent = unique(logit.exponent)) -> data } @@ -468,7 +468,7 @@ ReadData_LN3_LandLeaf <- function(aRegionName, aSubRegion, subregionData, aScena # For the SubRegion if data not available for all historical years then repeat data for all historical years if(nrow(data) != 0) { - if (! identical(data$year , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ + if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ data %>% select(-year) %>% mutate(UNIQUE_JOIN_FIELD = 1) %>% @@ -534,7 +534,7 @@ ReadData_LN3_UnmanagedLandLeaf <- function(aRegionName, aSubRegion, subregionDat # For the SubRegion if data not available for all historical years then repeat data for all historical years if(nrow(data) != 0) { - if (! identical(data$year , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ + if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ data %>% select(-year) %>% mutate(UNIQUE_JOIN_FIELD = 1) %>% diff --git a/R/setup.R b/R/setup.R index ff2fb5e..3f6dbdc 100644 --- a/R/setup.R +++ b/R/setup.R @@ -267,7 +267,7 @@ Leaf_setup <- function(aLandAllocator, aRegionName, aData, aColName, parentNames <- unique(parentNames) # Read-in yield, cost, tech change - AgProductionTechnology_setup(newLeaf, aAgData, aScenarioInfo) + AgProductionTechnology_setup(aLandAllocator, newLeaf, aAgData, aScenarioInfo) } # Loop over years and add allocation @@ -345,11 +345,12 @@ LandNode_addChild <- function(aLandNode, aChild, aParentNames) { #' AgProductionTechnology_setup #' #' @details Setup technology (e.g., CalOutput, technical change, cost, etc.) +#' @param aLandAllocator LandAllocator that needs set up #' @param aLandLeaf Land leaf #' @param aAgData Agricultural technology data #' @param aScenarioInfo Scenario info object #' @author KVC October 2017 -AgProductionTechnology_setup <- function(aLandLeaf, aAgData, aScenarioInfo) { +AgProductionTechnology_setup <- function(aLandAllocator, aLandLeaf, aAgData, aScenarioInfo) { # Silence package checks per <- year <- AgProductionTechnology <- GCAM_commodity <- NULL @@ -365,7 +366,11 @@ AgProductionTechnology_setup <- function(aLandLeaf, aAgData, aScenarioInfo) { # Set product name # TODO: Find a better way to do this -- it will need updating when we go to irr/mgmt - aLandLeaf$mProductName <- substr(aLandLeaf$mName[[1]], 1, nchar(aLandLeaf$mName[[1]]) - 5) + if(!is.null(aLandAllocator$mSubRegion)){ + aLandLeaf$mProductName <- substr(aLandLeaf$mName[[1]], 1, nchar(aLandLeaf$mName[[1]]) - 3) } + else { + aLandLeaf$mProductName <- substr(aLandLeaf$mName[[1]], 1, nchar(aLandLeaf$mName[[1]]) - 5) + } if(aLandLeaf$mProductName %in% BIOMASS_TYPES) { aLandLeaf$mProductName <- "biomass" } diff --git a/inst/extdata/initialization-data/AgCost_SRB.csv b/inst/extdata/initialization-data/AgCost_SRB.csv index ab3b49f..30eb14a 100644 --- a/inst/extdata/initialization-data/AgCost_SRB.csv +++ b/inst/extdata/initialization-data/AgCost_SRB.csv @@ -85,92 +85,6 @@ USA,SnakeRiverBasin,Corn,CornSRB,CornSRB,2097,0.015 USA,SnakeRiverBasin,Corn,CornSRB,CornSRB,2098,0.015 USA,SnakeRiverBasin,Corn,CornSRB,CornSRB,2099,0.015 USA,SnakeRiverBasin,Corn,CornSRB,CornSRB,2100,0.015 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,1975,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,1990,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2005,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2010,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2015,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2020,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2021,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2022,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2023,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2024,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2025,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2026,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2027,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2028,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2029,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2030,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2031,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2032,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2033,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2034,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2035,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2036,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2037,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2038,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2039,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2040,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2041,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2042,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2043,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2044,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2045,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2046,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2047,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2048,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2049,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2050,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2051,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2052,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2053,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2054,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2055,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2056,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2057,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2058,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2059,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2060,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2061,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2062,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2063,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2064,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2065,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2066,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2067,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2068,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2069,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2070,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2071,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2072,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2073,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2074,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2075,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2076,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2077,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2078,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2079,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2080,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2081,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2082,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2083,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2084,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2085,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2086,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2087,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2088,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2089,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2090,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2091,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2092,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2093,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2094,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2095,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2096,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2097,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2098,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2099,0.0931 -USA,SnakeRiverBasin,FiberCrop,FiberCropSRB,FiberCropSRB,2100,0.0931 USA,SnakeRiverBasin,FodderGrass,FodderGrassSRB,FodderGrassSRB,1975,0.0123 USA,SnakeRiverBasin,FodderGrass,FodderGrassSRB,FodderGrassSRB,1990,0.0123 USA,SnakeRiverBasin,FodderGrass,FodderGrassSRB,FodderGrassSRB,2005,0.0123 @@ -429,350 +343,6 @@ USA,SnakeRiverBasin,MiscCrop,MiscCropSRB,MiscCropSRB,2097,0.0906 USA,SnakeRiverBasin,MiscCrop,MiscCropSRB,MiscCropSRB,2098,0.0906 USA,SnakeRiverBasin,MiscCrop,MiscCropSRB,MiscCropSRB,2099,0.0906 USA,SnakeRiverBasin,MiscCrop,MiscCropSRB,MiscCropSRB,2100,0.0906 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,1975,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,1990,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2005,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2010,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2015,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2020,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2021,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2022,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2023,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2024,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2025,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2026,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2027,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2028,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2029,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2030,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2031,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2032,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2033,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2034,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2035,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2036,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2037,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2038,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2039,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2040,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2041,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2042,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2043,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2044,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2045,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2046,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2047,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2048,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2049,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2050,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2051,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2052,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2053,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2054,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2055,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2056,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2057,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2058,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2059,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2060,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2061,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2062,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2063,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2064,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2065,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2066,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2067,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2068,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2069,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2070,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2071,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2072,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2073,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2074,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2075,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2076,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2077,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2078,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2079,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2080,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2081,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2082,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2083,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2084,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2085,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2086,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2087,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2088,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2089,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2090,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2091,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2092,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2093,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2094,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2095,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2096,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2097,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2098,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2099,0.0351 -USA,SnakeRiverBasin,OilCrop,OilCropSRB,OilCropSRB,2100,0.0351 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,1975,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,1990,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2005,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2010,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2015,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2020,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2021,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2022,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2023,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2024,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2025,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2026,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2027,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2028,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2029,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2030,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2031,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2032,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2033,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2034,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2035,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2036,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2037,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2038,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2039,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2040,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2041,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2042,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2043,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2044,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2045,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2046,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2047,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2048,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2049,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2050,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2051,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2052,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2053,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2054,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2055,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2056,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2057,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2058,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2059,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2060,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2061,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2062,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2063,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2064,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2065,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2066,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2067,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2068,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2069,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2070,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2071,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2072,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2073,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2074,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2075,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2076,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2077,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2078,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2079,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2080,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2081,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2082,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2083,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2084,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2085,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2086,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2087,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2088,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2089,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2090,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2091,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2092,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2093,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2094,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2095,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2096,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2097,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2098,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2099,0.0247 -USA,SnakeRiverBasin,OtherGrain,OtherGrainSRB,OtherGrainSRB,2100,0.0247 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,1975,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,1990,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2005,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2010,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2015,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2020,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2021,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2022,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2023,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2024,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2025,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2026,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2027,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2028,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2029,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2030,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2031,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2032,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2033,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2034,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2035,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2036,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2037,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2038,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2039,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2040,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2041,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2042,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2043,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2044,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2045,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2046,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2047,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2048,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2049,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2050,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2051,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2052,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2053,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2054,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2055,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2056,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2057,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2058,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2059,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2060,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2061,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2062,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2063,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2064,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2065,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2066,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2067,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2068,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2069,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2070,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2071,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2072,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2073,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2074,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2075,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2076,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2077,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2078,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2079,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2080,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2081,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2082,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2083,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2084,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2085,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2086,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2087,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2088,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2089,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2090,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2091,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2092,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2093,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2094,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2095,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2096,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2097,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2098,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2099,0.0161 -USA,SnakeRiverBasin,PalmFruit,PalmFruitSRB,PalmFruitSRB,2100,0.0161 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,1975,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,1990,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2005,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2010,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2015,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2020,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2021,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2022,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2023,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2024,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2025,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2026,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2027,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2028,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2029,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2030,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2031,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2032,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2033,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2034,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2035,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2036,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2037,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2038,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2039,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2040,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2041,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2042,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2043,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2044,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2045,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2046,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2047,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2048,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2049,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2050,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2051,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2052,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2053,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2054,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2055,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2056,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2057,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2058,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2059,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2060,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2061,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2062,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2063,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2064,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2065,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2066,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2067,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2068,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2069,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2070,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2071,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2072,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2073,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2074,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2075,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2076,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2077,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2078,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2079,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2080,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2081,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2082,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2083,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2084,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2085,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2086,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2087,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2088,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2089,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2090,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2091,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2092,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2093,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2094,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2095,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2096,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2097,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2098,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2099,0.0388 -USA,SnakeRiverBasin,Rice,RiceSRB,RiceSRB,2100,0.0388 USA,SnakeRiverBasin,Root_Tuber,Root_TuberSRB,Root_TuberSRB,1975,0.0249 USA,SnakeRiverBasin,Root_Tuber,Root_TuberSRB,Root_TuberSRB,1990,0.0249 USA,SnakeRiverBasin,Root_Tuber,Root_TuberSRB,Root_TuberSRB,2005,0.0249 @@ -1030,90 +600,4 @@ USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2096,0.026 USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2097,0.026 USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2098,0.026 USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2099,0.026 -USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2100,0.026 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,1975,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,1990,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2005,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2010,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2015,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2020,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2021,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2022,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2023,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2024,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2025,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2026,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2027,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2028,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2029,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2030,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2031,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2032,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2033,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2034,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2035,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2036,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2037,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2038,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2039,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2040,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2041,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2042,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2043,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2044,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2045,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2046,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2047,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2048,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2049,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2050,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2051,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2052,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2053,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2054,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2055,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2056,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2057,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2058,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2059,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2060,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2061,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2062,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2063,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2064,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2065,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2066,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2067,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2068,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2069,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2070,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2071,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2072,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2073,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2074,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2075,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2076,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2077,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2078,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2079,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2080,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2081,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2082,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2083,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2084,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2085,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2086,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2087,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2088,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2089,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2090,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2091,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2092,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2093,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2094,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2095,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2096,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2097,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2098,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2099,29.59 -USA,SnakeRiverBasin,Forest,ForestSRB,ForestSRB,2100,29.59 \ No newline at end of file +USA,SnakeRiverBasin,Wheat,WheatSRB,WheatSRB,2100,0.026 \ No newline at end of file diff --git a/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv b/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv index 06a0ba3..ce4fa96 100644 --- a/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv +++ b/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv @@ -1,27 +1,33 @@ -region,subregion,LandAllocatorRoot,LandNode1,LandNode2,LandNode3,UnmanagedLandLeaf,LandLeaf,SRB_GCAME,Area_acres,Yield_perAcre,Price_perYield,Value,allocation,year.fillout,Root.logit.exponent,LandNode1.logit.exponent,LandNode2.logit.exponent,LandNode3.logit.exponent,unManagedLandValue,AgSupplySector,AgSupplySubsector,AgProductionTechnology,calOutputValue,share.weight.year,subs.share.weight,tech.share.weight,harvests.per.year -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,275426,190,5.27,96600000,1.11,2010,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,24.4293786,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,710713,26.7,2.02,38300000,2.88,2010,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,19.1210504,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Dry BeansSRB,Dry Beans,102971,19,27.2,53200000,0.42,2010,0,1,1.25,0.875,12872995,Dry Beans,Dry BeansSRB,Dry BeansSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,247345,136,2.72,91400000,1,2010,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,10.1022461,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OilCropSRB,OilCrop,6667,2.34,2.49,38900,0.03,2010,0,1,1.25,0.875,12872995,OilCrop,OilCropSRB,OilCropSRB,1.3157983,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,141012,33.5,57.3,271000000,0.57,2010,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,8.3242068,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,359175,17.8,0.82,5230000,1.45,2010,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,4.5277239,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OnionsSRB,Onions,21251,760,8.7,141000000,0.09,2010,0,1,1.25,0.875,12872995,Onions,OnionsSRB,OnionsSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,1142758,1.89,61.6,133000000,4.62,2010,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,17.0252987,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,12201,nan,nan,nan,0.05,2010,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,45.2040132,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,PeasSRB,Peas,11910,13.5,22.9,3680000,0.05,2010,0,1,1.25,0.875,12872995,Peas,PeasSRB,PeasSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,2407,7.98,2.82,54200,0.01,2010,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,OtherArableLandSRB,,OtherArableLand,153203,nan,nan,nan,0.62,2010,0,1,1.25,0.875,12872995,OtherArableLand,OtherArableLandSRB,OtherArableLandSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SodGrassSeedSRB,SodGrassSeed,2201,1,4930,10900000,0.01,2010,0,1,1.25,0.875,12872995,SodGrassSeed,SodGrassSeedSRB,SodGrassSeedSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AllPastureLandSRB,,,PastureSRB,Pasture,5799157,nan,nan,nan,23.47,2010,0,1,1.5,,12872995,Pasture,PastureSRB,PastureSRB,12.6584962,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,HopsSRB,Hops,1530,2130,3.89,12700000,0.01,2010,0,1,1.25,0.875,12872995,Hops,HopsSRB,HopsSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,UrbanLandSRB,,,UrbanLandSRB,,DevelopedLand_HighIntensity,3319,nan,nan,nan,0.01,2010,0,0,,,12872995,,,,,,,, -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,StonePomeFruitSRB,StonePomeFruit,1894,2320,58.4,257000000,0.01,2010,0,1,1.25,0.875,12872995,StonePomeFruit,StonePomeFruitSRB,StonePomeFruitSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,AllForestLandSRB,ForestSRB,,Forest,6310939,nan,nan,nan,25.54,2010,0,1,1.25,0.875,12872995,Forest,ForestSRB,ForestSRB,0.0170421,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,GrapesSRB,Grapes,302,7.47,542,1220000,0,2010,0,1,1.25,0.875,12872995,Grapes,GrapesSRB,GrapesSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,GrassShrubLandSRB,ShrublandSRB,,Shrubland,21666360,nan,nan,nan,87.68,2010,0,1,1.25,0.005,12872995,,,,,,,, -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MintSRB,Mint,474,108,17.4,888000,0,2010,0,1,1.25,0.875,12872995,Mint,MintSRB,MintSRB,7.6350689,2010,1,1,1 -USA,SnakeRiverBasin,root,RockIceDesertSRB,,,RockIceDesertSRB,,RockIceDesert,553830,nan,nan,nan,2.24,2010,0,0,,,12872995,,,,,,,, -USA,SnakeRiverBasin,root,UrbanLandSRB,,,UrbanLandSRB,,DevelopedLand_MedIntensity,34216,nan,nan,nan,0.14,2010,0,0,,,12872995,,,,,,,, -USA,SnakeRiverBasin,root,UrbanLandSRB,,,UrbanLandSRB,,DevelopedLand_LowIntensity,131752,nan,nan,nan,0.53,2010,0,0,,,12872995,,,,,,,, -USA,SnakeRiverBasin,root,UrbanLandSRB,,,UrbanLandSRB,,DevelopedLand_OpenSpace,385894,nan,nan,nan,1.56,2010,0,0,,,12872995,,,,,,,, \ No newline at end of file +region,subregion,LandAllocatorRoot,LandNode1,LandNode2,LandNode3,UnmanagedLandLeaf,LandLeaf,SRB_GCAME,Area_acres,Yield_TonperAcre,allocation,year.fillout,Root.logit.exponent,LandNode1.logit.exponent,LandNode2.logit.exponent,LandNode3.logit.exponent,unManagedLandValue,AgSupplySector,AgSupplySubsector,AgProductionTechnology,calOutputValue,share.weight.year,subs.share.weight,tech.share.weight,harvests.per.year +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,750900,1.15,3.04,1975,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,0.86516325,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,121300,2.32,0.49,1975,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,0.281916638,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,94539,19.72,0.38,1975,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,1.8647317,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,864660,1.24,3.5,1975,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,1.0764525,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,321500,12.2,1.3,1975,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,3.921875,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,236600,0.85,0.96,1975,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.200962125,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,661000,1.68,2.67,1990,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,1.108323,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,97700,3.64,0.4,1990,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,0.355640766,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,892000,4.02,3.61,1990,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,3.58263,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,186000,25.98,0.75,1990,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,4.8317,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,273000,0.89,1.1,1990,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.2439208,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,965000,2.14,3.91,1990,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.064603,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,402600,14.77,1.63,1990,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.94554,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,560000,2.01,2.27,2005,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,1.122804,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,229600,4.76,0.93,2005,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,1.093791095,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1037000,4.33,4.2,2005,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.48586,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,167000,27.13,0.68,2005,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,4.53,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,780000,2.67,3.16,2005,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.079099,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,205397,0.83,0.83,2005,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.169925081,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,322800,18.31,1.31,2005,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.909,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,448000,2.03,1.81,2010,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,0.9091152,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,315000,5.32,1.27,2010,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,1.6758,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1068000,4.31,4.32,2010,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.60005,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,170000,31,0.69,2010,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,5.27,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,868500,2.59,3.51,2010,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.25141255,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,294000,19.22,1.19,2010,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.65035,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,204192,0.93,0.83,2010,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.189114428,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,2010,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,1975,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,1990,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,2005,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,892000,4.016401345,3.61,1975,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,3.58263,1975,1,1,1 \ No newline at end of file diff --git a/man/AgProductionTechnology_setup.Rd b/man/AgProductionTechnology_setup.Rd index 96a9e99..858a203 100644 --- a/man/AgProductionTechnology_setup.Rd +++ b/man/AgProductionTechnology_setup.Rd @@ -4,9 +4,12 @@ \alias{AgProductionTechnology_setup} \title{AgProductionTechnology_setup} \usage{ -AgProductionTechnology_setup(aLandLeaf, aAgData, aScenarioInfo) +AgProductionTechnology_setup(aLandAllocator, aLandLeaf, aAgData, + aScenarioInfo) } \arguments{ +\item{aLandAllocator}{LandAllocator that needs set up} + \item{aLandLeaf}{Land leaf} \item{aAgData}{Agricultural technology data} diff --git a/man/LandAllocator_calcFinalLandAllocation.Rd b/man/LandAllocator_calcFinalLandAllocation.Rd index 069976f..a338b4a 100644 --- a/man/LandAllocator_calcFinalLandAllocation.Rd +++ b/man/LandAllocator_calcFinalLandAllocation.Rd @@ -4,7 +4,8 @@ \alias{LandAllocator_calcFinalLandAllocation} \title{LandAllocator_calcFinalLandAllocation} \usage{ -LandAllocator_calcFinalLandAllocation(aLandAllocator, aPeriod, aScenarioInfo) +LandAllocator_calcFinalLandAllocation(aLandAllocator, aPeriod, + aScenarioInfo) } \arguments{ \item{aLandAllocator}{Land allocator for this region.} diff --git a/man/LandAllocator_calculateShareWeights.Rd b/man/LandAllocator_calculateShareWeights.Rd index d2bcaf0..7ff79f0 100644 --- a/man/LandAllocator_calculateShareWeights.Rd +++ b/man/LandAllocator_calculateShareWeights.Rd @@ -4,8 +4,8 @@ \alias{LandAllocator_calculateShareWeights} \title{LandAllocator_calculateShareWeights} \usage{ -LandAllocator_calculateShareWeights(aLandAllocator, aChoiceFunction, aPeriod, - aScenarioInfo) +LandAllocator_calculateShareWeights(aLandAllocator, aChoiceFunction, + aPeriod, aScenarioInfo) } \arguments{ \item{aLandAllocator}{Land Allocator} diff --git a/man/LandAllocator_calibrateLandAllocator.Rd b/man/LandAllocator_calibrateLandAllocator.Rd index c5b38fc..de82e81 100644 --- a/man/LandAllocator_calibrateLandAllocator.Rd +++ b/man/LandAllocator_calibrateLandAllocator.Rd @@ -4,7 +4,8 @@ \alias{LandAllocator_calibrateLandAllocator} \title{LandAllocator_calibrateLandAllocator} \usage{ -LandAllocator_calibrateLandAllocator(aLandAllocator, aPeriod, aScenarioInfo) +LandAllocator_calibrateLandAllocator(aLandAllocator, aPeriod, + aScenarioInfo) } \arguments{ \item{aLandAllocator}{Land allocator for this region} diff --git a/man/LandAllocator_setUnmanagedLandProfitRate.Rd b/man/LandAllocator_setUnmanagedLandProfitRate.Rd index 17180c5..1eb8253 100644 --- a/man/LandAllocator_setUnmanagedLandProfitRate.Rd +++ b/man/LandAllocator_setUnmanagedLandProfitRate.Rd @@ -4,8 +4,8 @@ \alias{LandAllocator_setUnmanagedLandProfitRate} \title{LandAllocator_setUnmanagedLandProfitRate} \usage{ -LandAllocator_setUnmanagedLandProfitRate(aLandAllocator, aUnmanagedLandValue, - aPeriod) +LandAllocator_setUnmanagedLandProfitRate(aLandAllocator, + aUnmanagedLandValue, aPeriod) } \arguments{ \item{aLandAllocator}{Current land allocator} diff --git a/man/LandNode_setup.Rd b/man/LandNode_setup.Rd index f58c75e..b692cd0 100644 --- a/man/LandNode_setup.Rd +++ b/man/LandNode_setup.Rd @@ -4,8 +4,8 @@ \alias{LandNode_setup} \title{LandNode_setup} \usage{ -LandNode_setup(aLandAllocator, aRegionName, aData, aColumnName, aScenarioInfo, - aGhostShareData = NULL) +LandNode_setup(aLandAllocator, aRegionName, aData, aColumnName, + aScenarioInfo, aGhostShareData = NULL) } \arguments{ \item{aLandAllocator}{LandAllocator that needs set up} diff --git a/man/ReadData_LN1_LeafChildren.Rd b/man/ReadData_LN1_LeafChildren.Rd index 7a7e35e..baf73d7 100644 --- a/man/ReadData_LN1_LeafChildren.Rd +++ b/man/ReadData_LN1_LeafChildren.Rd @@ -4,7 +4,8 @@ \alias{ReadData_LN1_LeafChildren} \title{ReadData_LN1_LeafChildren} \usage{ -ReadData_LN1_LeafChildren(aRegionName, aSubRegion, subregionData, aScenarioInfo) +ReadData_LN1_LeafChildren(aRegionName, aSubRegion, subregionData, + aScenarioInfo) } \arguments{ \item{aRegionName}{Region to read data for} diff --git a/man/ReadData_LN2_LandLeaf.Rd b/man/ReadData_LN2_LandLeaf.Rd index 46460cb..25a2083 100644 --- a/man/ReadData_LN2_LandLeaf.Rd +++ b/man/ReadData_LN2_LandLeaf.Rd @@ -4,7 +4,8 @@ \alias{ReadData_LN2_LandLeaf} \title{ReadData_LN2_LandLeaf} \usage{ -ReadData_LN2_LandLeaf(aRegionName, aSubRegion, subregionData, aScenarioInfo) +ReadData_LN2_LandLeaf(aRegionName, aSubRegion, subregionData, + aScenarioInfo) } \arguments{ \item{aRegionName}{Region to read data for} diff --git a/man/ReadData_LN3_LandLeaf.Rd b/man/ReadData_LN3_LandLeaf.Rd index c2932c2..86f7797 100644 --- a/man/ReadData_LN3_LandLeaf.Rd +++ b/man/ReadData_LN3_LandLeaf.Rd @@ -4,7 +4,8 @@ \alias{ReadData_LN3_LandLeaf} \title{ReadData_LN3_LandLeaf} \usage{ -ReadData_LN3_LandLeaf(aRegionName, aSubRegion, subregionData, aScenarioInfo) +ReadData_LN3_LandLeaf(aRegionName, aSubRegion, subregionData, + aScenarioInfo) } \arguments{ \item{aRegionName}{Region to read data for} diff --git a/man/RelativeCostLogit_calcUnnormalizedShare.Rd b/man/RelativeCostLogit_calcUnnormalizedShare.Rd index 0c485d0..e410b01 100644 --- a/man/RelativeCostLogit_calcUnnormalizedShare.Rd +++ b/man/RelativeCostLogit_calcUnnormalizedShare.Rd @@ -4,8 +4,8 @@ \alias{RelativeCostLogit_calcUnnormalizedShare} \title{RelativeCostLogit_calcUnnormalizedShare} \usage{ -RelativeCostLogit_calcUnnormalizedShare(aChoiceFnAbove, aShareWeight, aProfit, - aPeriod) +RelativeCostLogit_calcUnnormalizedShare(aChoiceFnAbove, aShareWeight, + aProfit, aPeriod) } \arguments{ \item{aChoiceFnAbove}{Choice function (logit type and exponent from node above)} diff --git a/man/ScenarioInfo.Rd b/man/ScenarioInfo.Rd index 40ce2c4..5aec039 100644 --- a/man/ScenarioInfo.Rd +++ b/man/ScenarioInfo.Rd @@ -7,10 +7,10 @@ ScenarioInfo(aExpectationType = NULL, aLaggedShareOld = NA, aLinearYears = NA, aLogitUseDefault = TRUE, aLogitAgroForest = NA, aLogitAgroForest_NonPasture = NA, aLogitCropland = NA, - aUseZeroCost = FALSE, aCalibrateShareWt = TRUE, aShareWeights = NULL, - aScenarioType = DEFAULT.SCENARIO.TYPE, aScenarioName = NULL, - aFileName = NULL, aOutputDir = "./outputs", aSerialNum = NA, - aRegion = DEFAULT.REGION, aSubRegion = NULL) + aUseZeroCost = FALSE, aCalibrateShareWt = TRUE, + aShareWeights = NULL, aScenarioType = DEFAULT.SCENARIO.TYPE, + aScenarioName = NULL, aFileName = NULL, aOutputDir = "./outputs", + aSerialNum = NA, aRegion = DEFAULT.REGION, aSubRegion = NULL) } \arguments{ \item{aExpectationType}{Expectation type} diff --git a/man/calc_post.Rd b/man/calc_post.Rd index b46e380..4607517 100644 --- a/man/calc_post.Rd +++ b/man/calc_post.Rd @@ -4,7 +4,8 @@ \alias{calc_post} \title{Compute the log-likelihood and log-posteriors for a set of parameters} \usage{ -calc_post(aScenarioInfo, obs, model, lpdf, lprior, varlvls = seq(0.1, 1, 0.1)) +calc_post(aScenarioInfo, obs, model, lpdf, lprior, varlvls = seq(0.1, 1, + 0.1)) } \arguments{ \item{aScenarioInfo}{ScenarioInfo structure for the scenario} diff --git a/man/get_historical_land_data.Rd b/man/get_historical_land_data.Rd index f63a6e9..c0015a3 100644 --- a/man/get_historical_land_data.Rd +++ b/man/get_historical_land_data.Rd @@ -4,7 +4,8 @@ \alias{get_historical_land_data} \title{Get historical land use data} \usage{ -get_historical_land_data(regions = NULL, years = NULL, commodities = NULL) +get_historical_land_data(regions = NULL, years = NULL, + commodities = NULL) } \arguments{ \item{regions}{Regions to keep in filtered data. (Default is use all regions.)} diff --git a/man/printAllOutputs.Rd b/man/printAllOutputs.Rd index 3f7a0c3..9aae8f2 100644 --- a/man/printAllOutputs.Rd +++ b/man/printAllOutputs.Rd @@ -4,7 +4,8 @@ \alias{printAllOutputs} \title{printAllOutputs} \usage{ -printAllOutputs(aLandAllocator, aScenarioInfo, aNest, aFileOutput = FALSE) +printAllOutputs(aLandAllocator, aScenarioInfo, aNest, + aFileOutput = FALSE) } \arguments{ \item{aLandAllocator}{Land allocator} diff --git a/man/run_model.Rd b/man/run_model.Rd index 1925a1a..713b349 100644 --- a/man/run_model.Rd +++ b/man/run_model.Rd @@ -4,7 +4,8 @@ \alias{run_model} \title{Run the GCAM land model} \usage{ -run_model(aScenarioInfo, aPeriods = NULL, aVerbose = FALSE, agData = NULL) +run_model(aScenarioInfo, aPeriods = NULL, aVerbose = FALSE, + agData = NULL) } \arguments{ \item{aScenarioInfo}{A structure containing scenario-related information, diff --git a/man/update_scen_info.Rd b/man/update_scen_info.Rd index aa27e6e..26aa7f7 100644 --- a/man/update_scen_info.Rd +++ b/man/update_scen_info.Rd @@ -6,8 +6,8 @@ \usage{ update_scen_info(aName = NULL, aScenarioType = DEFAULT.SCENARIO.TYPE, aExpectationType = "Perfect", aLinearYears = NULL, - aLaggedShareOld = NULL, aUseZeroCost = FALSE, aCalibrateShareWt = TRUE, - aShareWts = NULL) + aLaggedShareOld = NULL, aUseZeroCost = FALSE, + aCalibrateShareWt = TRUE, aShareWts = NULL) } \arguments{ \item{aName}{New scenario name (default will generate this from other info)} diff --git a/tests/testthat/Rplots.pdf b/tests/testthat/Rplots.pdf index 02dfbc7ed719d3c0d6fe40b3d2ff42d80124adf6..b85680a1adcd85b64e63a8d5605fef5218e98b9b 100644 GIT binary patch delta 54 zcmdmbkZtQhwh5+chK7d5h89MahUS`F`o8%oE{P?n3K}j}Mh1qK2)V}St Date: Mon, 18 Nov 2019 15:51:33 -0800 Subject: [PATCH 2/5] Removed rows for repeating data for all hist years --- R/read_data.R | 65 --------------------------------------------------- 1 file changed, 65 deletions(-) diff --git a/R/read_data.R b/R/read_data.R index 45cbe56..e547d84 100644 --- a/R/read_data.R +++ b/R/read_data.R @@ -149,19 +149,6 @@ ReadData_LN1_LeafChildren <- function(aRegionName, aSubRegion, subregionData, aS group_by(region, subregion, LandAllocatorRoot, LandNode1, UnmanagedLandLeaf, year) %>% summarize(allocation = sum(allocation)) -> data - - # For the SubRegion if data not available for all historical years then repeat data for all historical years - if(nrow(data) != 0) { - if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ - data %>% - select(-year) %>% - mutate(UNIQUE_JOIN_FIELD = 1) %>% - full_join(mutate(tibble::tibble(year=TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS), UNIQUE_JOIN_FIELD = 1), by = "UNIQUE_JOIN_FIELD") %>% - select(-UNIQUE_JOIN_FIELD) -> - data - } - } - } else { # Read in calibration data @@ -262,19 +249,6 @@ ReadData_LN2_LandLeaf <- function(aRegionName, aSubRegion, subregionData, aScena group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, LandLeaf, year) %>% summarize(allocation = sum(allocation)) -> data - - # For the SubRegion if data not available for all historical years then repeat data for all historical years - if(nrow(data) != 0) { - if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ - data %>% - select(-year) %>% - mutate(UNIQUE_JOIN_FIELD = 1) %>% - full_join(mutate(tibble::tibble(year=TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS), UNIQUE_JOIN_FIELD = 1), by = "UNIQUE_JOIN_FIELD") %>% - select(-UNIQUE_JOIN_FIELD) -> - data - } - } - } else { # Read in calibration data @@ -325,19 +299,6 @@ ReadData_LN2_UnmanagedLandLeaf <- function(aRegionName, aSubRegion, subregionDat group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, UnmanagedLandLeaf, year) %>% summarize(allocation = sum(allocation)) -> data - - # For the SubRegion if data not available for all historical years then repeat data for all historical years - if(nrow(data) != 0) { - if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ - data %>% - select(-year) %>% - mutate(UNIQUE_JOIN_FIELD = 1) %>% - full_join(mutate(tibble::tibble(year=TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS), UNIQUE_JOIN_FIELD = 1), by = "UNIQUE_JOIN_FIELD") %>% - select(-UNIQUE_JOIN_FIELD) -> - data - } - } - } else { # Read in calibration data @@ -465,19 +426,6 @@ ReadData_LN3_LandLeaf <- function(aRegionName, aSubRegion, subregionData, aScena group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, LandNode3, LandLeaf, year) %>% summarize(allocation = sum(allocation)) -> data - - # For the SubRegion if data not available for all historical years then repeat data for all historical years - if(nrow(data) != 0) { - if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ - data %>% - select(-year) %>% - mutate(UNIQUE_JOIN_FIELD = 1) %>% - full_join(mutate(tibble::tibble(year=TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS), UNIQUE_JOIN_FIELD = 1), by = "UNIQUE_JOIN_FIELD") %>% - select(-UNIQUE_JOIN_FIELD) -> - data - } - } - } else { # Read in calibration data @@ -531,19 +479,6 @@ ReadData_LN3_UnmanagedLandLeaf <- function(aRegionName, aSubRegion, subregionDat group_by(region, subregion, LandAllocatorRoot, LandNode1, LandNode2, LandNode3, UnmanagedLandLeaf, year) %>% summarize(allocation = sum(allocation)) -> data - - # For the SubRegion if data not available for all historical years then repeat data for all historical years - if(nrow(data) != 0) { - if (! identical(unique(data$year) , TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS) ){ - data %>% - select(-year) %>% - mutate(UNIQUE_JOIN_FIELD = 1) %>% - full_join(mutate(tibble::tibble(year=TIME.PARAMS[[aScenarioInfo$mScenarioType]]$HISTORY.YEARS), UNIQUE_JOIN_FIELD = 1), by = "UNIQUE_JOIN_FIELD") %>% - select(-UNIQUE_JOIN_FIELD) -> - data - } - } - } else { # Read in calibration data From e3bd0efa03ff71c91815a849b5d79a4ab636c5ae Mon Sep 17 00:00:00 2001 From: Eva Sinha Date: Thu, 5 Dec 2019 09:59:18 -0800 Subject: [PATCH 3/5] Updated SRB land allocation and price historical data --- inst/extdata/scenario-data/AgPrices_SRB_Reference.csv | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 inst/extdata/scenario-data/AgPrices_SRB_Reference.csv diff --git a/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv b/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv new file mode 100644 index 0000000..21c379c --- /dev/null +++ b/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv @@ -0,0 +1,9 @@ +scenario,region,subregion,sector,1975,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units +ConstantPrice,USA,SnakeRiverBasin,OtherGrain,0.1110,0.1268,0.1454,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,$/kg +ConstantPrice,USA,SnakeRiverBasin,Corn,0.0300,0.0326,0.0275,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,$/kg +ConstantPrice,USA,SnakeRiverBasin,FodderHerb,0.0507,0.0926,0.1235,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,$/kg +ConstantPrice,USA,SnakeRiverBasin,SugarCrop,0.0304,0.0460,0.0489,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,$/kg +ConstantPrice,USA,SnakeRiverBasin,Wheat,0.1249,0.0930,0.1216,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,$/kg +ConstantPrice,USA,SnakeRiverBasin,Root_Tuber,0.0827,0.1102,0.1257,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,$/kg +ConstantPrice,USA,SnakeRiverBasin,MiscCrop,1.3803,4.7386,2.7531,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,$/kg +ConstantPrice,USA,SnakeRiverBasin,FodderGrass,0.0661,0.0755,0.0893,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,$/kg \ No newline at end of file From b520b350c7433b5e98f0ae316bfb636acb37cc00 Mon Sep 17 00:00:00 2001 From: Eva Sinha Date: Mon, 9 Dec 2019 12:19:49 -0800 Subject: [PATCH 4/5] Updated SRB land allocation --- .../LandUse_Nesting_SRB.csv | 32 ++++++++++++------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv b/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv index ce4fa96..5f5b57c 100644 --- a/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv +++ b/inst/extdata/initialization-data/LandUse_Nesting_SRB.csv @@ -1,33 +1,41 @@ -region,subregion,LandAllocatorRoot,LandNode1,LandNode2,LandNode3,UnmanagedLandLeaf,LandLeaf,SRB_GCAME,Area_acres,Yield_TonperAcre,allocation,year.fillout,Root.logit.exponent,LandNode1.logit.exponent,LandNode2.logit.exponent,LandNode3.logit.exponent,unManagedLandValue,AgSupplySector,AgSupplySubsector,AgProductionTechnology,calOutputValue,share.weight.year,subs.share.weight,tech.share.weight,harvests.per.year +region,subregion,LandAllocatorRoot,LandNode1,LandNode2,LandNode3,UnmanagedLandLeaf,LandLeaf,SRB_GCAME,Area_acres,Yield_TonperAcre,allocation,year.fillout,Root.logit.exponent,LandNode1.logit.exponent,LandNode2.logit.exponent,LandNode3.logit.exponent,unManagedLandValue,AgSupplySector,AgSupplySubsector,AgProductionTechnology,calOutputValue,share.weight.year,subs.share.weight,tech.share.weight,harvests.per.year USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,750900,1.15,3.04,1975,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,0.86516325,1975,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,121300,2.32,0.49,1975,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,0.281916638,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1030000,3.87,4.17,1975,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,3.9861,1975,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,94539,19.72,0.38,1975,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,1.8647317,1975,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,864660,1.24,3.5,1975,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,1.0764525,1975,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,321500,12.2,1.3,1975,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,3.921875,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,864660,1.24,3.50,1975,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,1.0764525,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,321500,12.20,1.30,1975,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,3.921875,1975,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,236600,0.85,0.96,1975,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.200962125,1975,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,300000,2.10,1.21,1975,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.63,1975,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,661000,1.68,2.67,1990,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,1.108323,1990,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,97700,3.64,0.4,1990,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,0.355640766,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,97700,3.64,0.40,1990,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,0.355640766,1990,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,892000,4.02,3.61,1990,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,3.58263,1990,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,186000,25.98,0.75,1990,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,4.8317,1990,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,273000,0.89,1.1,1990,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.2439208,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,273000,0.89,1.10,1990,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.2439208,1990,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,170000,3.61,0.69,1990,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.6137,1990,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,965000,2.14,3.91,1990,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.064603,1990,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,402600,14.77,1.63,1990,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.94554,1990,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,560000,2.01,2.27,2005,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,1.122804,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,229600,4.76,0.93,2005,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,1.093791095,2005,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1037000,4.33,4.2,2005,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.48586,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1037000,4.33,4.20,2005,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.48586,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,167000,27.13,0.68,2005,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,4.53,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,780000,2.67,3.16,2005,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.079099,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,205397,0.83,0.83,2005,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.169925081,2005,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,270000,3.81,1.09,2005,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,1.0287,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,322800,18.31,1.31,2005,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.909,2005,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,448000,2.03,1.81,2010,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,0.9091152,2010,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,315000,5.32,1.27,2010,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,1.6758,2010,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,1068000,4.31,4.32,2010,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.60005,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,170000,31,0.69,2010,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,5.27,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,170000,31.00,0.69,2010,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,5.27,2010,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,868500,2.59,3.51,2010,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,2.25141255,2010,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,294000,19.22,1.19,2010,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,5.65035,2010,1,1,1 USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,204192,0.93,0.83,2010,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.189114428,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,2010,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,2010,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,1975,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,1975,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,1990,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,1990,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.1,1.38,2005,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,2005,1,1,1 -USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,892000,4.016401345,3.61,1975,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,3.58263,1975,1,1,1 \ No newline at end of file +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,340000,2.10,1.38,2010,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.714,2010,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,OtherGrainSRB,OtherGrain,552000,2.25,2.23,2015,0,1,1.25,0.875,12872995,OtherGrain,OtherGrainSRB,OtherGrainSRB,1.2422385,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,CornSRB,Corn,275000,5.80,1.11,2015,0,1,1.25,0.875,12872995,Corn,CornSRB,CornSRB,1.5939,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderHerbSRB,FodderHerb,950000,4.31,3.84,2015,0,1,1.25,0.875,12872995,FodderHerb,FodderHerbSRB,FodderHerbSRB,4.0969,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,SugarCropSRB,SugarCrop,172000,38.29,0.70,2015,0,1,1.25,0.875,12872995,SugarCrop,SugarCropSRB,SugarCropSRB,6.5861,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,WheatSRB,Wheat,705100,2.64,2.85,2015,0,1,1.25,0.875,12872995,Wheat,WheatSRB,WheatSRB,1.8588564,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,Root_TuberSRB,Root_Tuber,236000,19.69,0.96,2015,0,1,1.25,0.875,12872995,Root_Tuber,Root_TuberSRB,Root_TuberSRB,4.646,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,MiscCropSRB,MiscCrop,219363,1.03,0.89,2015,0,1,1.25,0.875,12872995,MiscCrop,MiscCropSRB,MiscCropSRB,0.226399787,2015,1,1,1 +USA,SnakeRiverBasin,root,AgroForestLandSRB,AgroForest_NonPastureSRB,CropLandSRB,,FodderGrassSRB,FodderGrass,330000,2.29,1.34,2015,0,1,1.25,0.875,12872995,FodderGrass,FodderGrassSRB,FodderGrassSRB,0.7557,2015,1,1,1 \ No newline at end of file From f9f35b7b2915d7de17e1a22c53890a070e3872de Mon Sep 17 00:00:00 2001 From: Eva Sinha Date: Mon, 9 Dec 2019 14:12:11 -0800 Subject: [PATCH 5/5] Removed duplicate file for SRB prices --- inst/extdata/scenario-data/AgPrices_SRB_Reference.csv | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 inst/extdata/scenario-data/AgPrices_SRB_Reference.csv diff --git a/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv b/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv deleted file mode 100644 index 21c379c..0000000 --- a/inst/extdata/scenario-data/AgPrices_SRB_Reference.csv +++ /dev/null @@ -1,9 +0,0 @@ -scenario,region,subregion,sector,1975,1990,2005,2010,2015,2020,2025,2030,2035,2040,2045,2050,2055,2060,2065,2070,2075,2080,2085,2090,2095,2100,Units -ConstantPrice,USA,SnakeRiverBasin,OtherGrain,0.1110,0.1268,0.1454,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,0.1974,$/kg -ConstantPrice,USA,SnakeRiverBasin,Corn,0.0300,0.0326,0.0275,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,0.0725,$/kg -ConstantPrice,USA,SnakeRiverBasin,FodderHerb,0.0507,0.0926,0.1235,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,0.1400,$/kg -ConstantPrice,USA,SnakeRiverBasin,SugarCrop,0.0304,0.0460,0.0489,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,0.0632,$/kg -ConstantPrice,USA,SnakeRiverBasin,Wheat,0.1249,0.0930,0.1216,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,0.2223,$/kg -ConstantPrice,USA,SnakeRiverBasin,Root_Tuber,0.0827,0.1102,0.1257,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,0.1786,$/kg -ConstantPrice,USA,SnakeRiverBasin,MiscCrop,1.3803,4.7386,2.7531,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,3.9140,$/kg -ConstantPrice,USA,SnakeRiverBasin,FodderGrass,0.0661,0.0755,0.0893,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,0.1036,$/kg \ No newline at end of file