FFSM++  1.1.0
French Forest Sector Model ++
merge_example.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 
4 from merge_lib import *
5 
6 forIFiles = [
7  'results/forestData_default.csv',
8 ]
9 prdIFiles = [
10  'results/productData_default.csv',
11 ]
12 carbonIFiles = [
13  'results/carbonBalance_default.csv',
14 ]
15 scenarios = [
16  'default',
17 ]
18 
19 forOFilename = 'results/forestData_merged.csv'
20 prdOFilename = 'results/productData_merged.csv'
21 carbonOFilename = 'results/carbonBalance_merged.csv'
22 
23 merge(forIFiles,prdIFiles,carbonIFiles,scenarios,forOFilename,prdOFilename,carbonOFilename)
def merge(forIFiles_h=[], prdIFiles_h=[], carbonIFiles_h=[], scenarios_h=[], forOFilename_h="", prdOFilename_h="", carbonOFilename_h="", variables_h=[], regions_h=[], years_h=[])
Definition: merge_lib.py:5