Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 799 Bytes

guide.adoc

File metadata and controls

39 lines (35 loc) · 799 Bytes

pythia User Guide

Table of Contents

pythia Stages

  1. Setup

  2. Execution

  3. Analysis

pythia Analysis

Below is a sample of the analysis sections of the pythia configuration file.

{
  "analysis_default": {
    "per_pixel_prefix": "pp"
  },
  "analysis": [
    {
      "title": "Yield without scaling",
      "filename_format": "yields-$run-$ts" // automatically append .tif
      "output_type": "tiff",
      "runs": ["each::", "combine::all_rf::a+b+c", "combine::all::a+b+c+d"],
      "timeseries": {
        "variable":"PDAT",
        "timestep":"Y" //Y=Yearly, M=Monthly, D=Daily
        "as": "year"
      },
      "variables": [
        {
          "variable": "HWAM",
          "as": "Yield"
        }
      ]
    }
  ]
}