1 | #************************************************************** |
---|
2 | # Author: Patrick Brockmann |
---|
3 | # Contact: Patrick.Brockmann@cea.fr |
---|
4 | # $Date: 2009/05/14 15:09:35 $ |
---|
5 | # $Name: ATLAS_608_1_5 $ |
---|
6 | # $Revision: 1.1.1.2 $ |
---|
7 | # History: |
---|
8 | # Modification: |
---|
9 | #************************************************************** |
---|
10 | |
---|
11 | ################################################################################################################## |
---|
12 | #----------------------------------------------------------------------------------------------------------------- |
---|
13 | # field | files patterns | files additionnal | operations | title | units | calcul of area |
---|
14 | #----------------------------------------------------------------------------------------------------------------- |
---|
15 | # |
---|
16 | # field = name of the field to monitore |
---|
17 | # files patterns = pattern of the files used to monitore the field (must be discriminant) |
---|
18 | # files additionnal = additionnal files accessible by $FER_DATA |
---|
19 | # operations = operations to calculate the field |
---|
20 | # title = variable title |
---|
21 | # units = variable units |
---|
22 | # calcul of area = expression to use for the weight average |
---|
23 | # |
---|
24 | # Notes: |
---|
25 | # - Comment lines begin by '#' character |
---|
26 | # - Separator between fields is '|' character |
---|
27 | # - Operations must use the ferret syntax, if several files are used precise with the syntax d=x to refer to the x dataset |
---|
28 | # - files patterns, operations,title,units must be enclosed with character '"' |
---|
29 | # - fields will be presented through an html page with thumbnails global, north, south, land, ocean. |
---|
30 | # Use a field name with one of these pattern to display it under the corresponding thumbnail. |
---|
31 | # |
---|
32 | ################################################################################################################## |
---|
33 | |
---|
34 | color=EEE8AA |
---|
35 | smooth=12 |
---|
36 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|
37 | # field | files patterns | files additionnal | operations | title | units | calcul of area |
---|
38 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|
39 | SOIL_CARB_lands | "TOTAL_SOIL_CARB VEGET_MAX CONTFRAC" | | "(TOTAL_SOIL_CARB[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Total Soil Carbon (LANDS)" | "gtC" | "2" |
---|
40 | BIOMASS_lands | "TOTAL_M VEGET_MAX CONTFRAC" | | "(TOTAL_M[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Total Biomass (LANDS)" | "gtC" | "2" |
---|
41 | LITTER_lands | "TOTAL_BM_LITTER VEGET_MAX CONTFRAC" | | "(TOTAL_BM_LITTER[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Total Litter (LANDS)" | "gtC" | "2" |
---|
42 | CO2FLUX_lands | "CO2FLUX_MONTHLY VEGET_MAX CONTFRAC" | | "(CO2FLUX_MONTHLY[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "NEE (LANDS)" | "GtC" | "2" |
---|
43 | NPP_lands | "NPP VEGET_MAX CONTFRAC" | | "(NPP[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Net Primary Produc (LANDS)" | "gtC" | "2" |
---|
44 | GPP_lands | "GPP VEGET_MAX CONTFRAC" | | "(GPP[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3]/1e15)" | "Gross Primary Produc (LANDS)" | "gtC" | "2" |
---|
45 | HET_RESP_lands | "HET_RESP VEGET_MAX CONTFRAC" | | "(HET_RESP[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3])" | "Heterotr. Resp. (LANDS)" | "gC" | "2" |
---|
46 | MAINT_RESP_lands | "MAINT_RESP VEGET_MAX CONTFRAC" | | "(MAINT_RESP[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3])" | "Maintenance Resp. (LANDS)" | "gC" | "2" |
---|
47 | GROWTH_RESP_lands| "GROWTH_RESP VEGET_MAX CONTFRAC" | | "(GROWTH_RESP[d=1]*VEGET_MAX[d=2]*AREAS[d=1]*CONTFRAC[d=3])" | "Growth Resp. (LANDS)" | "gC" | "2" |
---|
48 | #------------------------------------------------------------------------------------------------------------------------------------------------------ |
---|