Skip to content

Future Config

Scott Morken edited this page May 16, 2018 · 3 revisions

Future Config

Description

Contains future projection parameters, and file paths that are applicable to ALL sub-regions only.

The objective of this configuration is to store all user defined variables that are applicable to the futureprocessor command line tool.

Example

{
  "Start_Year": 2015,
  "End_Year": 2070,
  "Disturbance_Types": [
    {
      "Name": "fire",
      "Path_Format": "projected_fire_{}.tif"
    },
    {
      "Name": "harvest",
      "Path_Format": "projected_harvest_{}.tif"
    },
    {
      "Name": "slashburn",
      "Path_Format": "projected_slashburn_{}.tif"
    }
  ],
  "Scenarios": [
    {
      "Name": "SCEN_Base",
      "SHAScenarioName": "Base",
      "Activity_Start_Year": -1,
      "Slashburn_Percent": 50,
      "Slashburn_Activity_Percent": 50,
      "Harvest_Activity_Percent": 50,
      "CBM_Disturbance_Type_Map": {
        "fire": "Wild Fires",
        "harvest": "Base CC",
        "slashburn": "SlashBurning"
      }
    },
    {
      "Name": "SCEN_A",
      "SHAScenarioName": "More",
      "Activity_Start_Year": -1,
      "Slashburn_Percent": 51,
      "Slashburn_Activity_Percent": 50,
      "Harvest_Activity_Percent": 50,
      "CBM_Disturbance_Type_Map": {
        "fire": "Wild Fires",
        "harvest": "CBM_A CC",
        "slashburn": "SlashBurning"
      }
    }
  ]
}