[777] | 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.1 $ |
---|
| 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 | |
---|
[875] | 34 | color=D4E3E6 |
---|
[777] | 35 | smooth=12 |
---|
| 36 | #----------------------------------------------------------------------------------------------------------------- |
---|
| 37 | # field | files patterns | files additionnal | operations | title | units | calcul of area |
---|
| 38 | #----------------------------------------------------------------------------------------------------------------- |
---|
[873] | 39 | iicethic_north | "iicethic ileadfra" | ORCA2.3_grid.nc | "(iicethic[d=1])" | "Ice thickness (NORTH)" | "m" | "if lat[d=3] ge 0 and ileadfra[d=2] ne 0 then ileadfra[d=2]*mask[k=1,d=3]*area[d=3]" |
---|
| 40 | iicethic_south | "iicethic ileadfra" | ORCA2.3_grid.nc | "(iicethic[d=1])" | "Ice thickness (SOUTH)" | "m" | "if lat[d=3] le 0 and ileadfra[d=2] ne 0 then ileadfra[d=2]*mask[k=1,d=3]*area[d=3]" |
---|
| 41 | isnowthi_north | "isnowthi ileadfra" | ORCA2.3_grid.nc | "(isnowthi[d=1])" | "Snow thickness (NORTH)" | "m" | "if lat[d=3] ge 0 and ileadfra[d=2] ne 0 then ileadfra[d=2]*mask[k=1,d=3]*area[d=3]" |
---|
| 42 | isnowthi_south | "isnowthi ileadfra" | ORCA2.3_grid.nc | "(isnowthi[d=1])" | "Snow thickness (SOUTH)" | "m" | "if lat[d=3] le 0 and ileadfra[d=2] ne 0 then ileadfra[d=2]*mask[k=1,d=3]*area[d=3]" |
---|
| 43 | icesurf_north | "ileadfra" | ORCA2.3_grid.nc | "(if lat[d=2] gt 0 then ileadfra[d=1]*area[d=2]*mask[k=1,d=2])" | "Ice surface (NORTH)" | "m2" | "2" |
---|
| 44 | icesurf_south | "ileadfra" | ORCA2.3_grid.nc | "(if lat[d=2] lt 0 then ileadfra[d=1]*area[d=2]*mask[k=1,d=2])" | "Ice surface (SOUTH)" | "m2" | "2" |
---|
| 45 | icevol_north | "ileadfra iicethic" | ORCA2.3_grid.nc | "(if lat[d=3] gt 0 then ileadfra[d=1]*iicethic[d=2]*area[d=3]*mask[k=1,d=3])" | "Ice volume (NORTH)" | "m3" | "2" |
---|
| 46 | icevol_south | "ileadfra iicethic" | ORCA2.3_grid.nc | "(if lat[d=3] lt 0 then ileadfra[d=1]*iicethic[d=2]*area[d=3]*mask[k=1,d=3])" | "Ice volume (SOUTH)" | "m3" | "2" |
---|
| 47 | snowvol_north | "ileadfra isnowthi" | ORCA2.3_grid.nc | "(if lat[d=3] gt 0 then ileadfra[d=1]*isnowthi[d=2]*area[d=3]*mask[k=1,d=3])" | "Snow volume (NORTH)" | "m3" | "2" |
---|
| 48 | snowvol_south | "ileadfra isnowthi" | ORCA2.3_grid.nc | "(if lat[d=3] lt 0 then ileadfra[d=1]*isnowthi[d=2]*area[d=3]*mask[k=1,d=3])" | "Snow volume (SOUTH)" | "m3" | "2" |
---|
[777] | 49 | #----------------------------------------------------------------------------------------------------------------- |
---|
[873] | 50 | |
---|