Changes between Version 17 and Version 18 of Doc/Chap2


Ignore:
Timestamp:
01/22/08 14:42:52 (16 years ago)
Author:
kolasinski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Doc/Chap2

    v17 v18  
    157157}}} 
    158158 
     159[[Image(2L24_SST-SPECTRUM_T_NINO_3_1m@t412_100y.gif, 90%)]] 
     160 
     161 * 'timeave' : The time average defines the duration on which the files have been averaged. For instance, you will have '1m', '1mm', '1y', '32y'. You may add a trend to that : do you want to remove the seasonal cycle from the time series ? Thus the trend shoud be @t412. Or if you want to write data in another netcdf file, the trend should be @t9 (in that case, you will also have to define the 'out' parameter – see below). 
     162{{{ 
     163; timeave : <n>[m]<timeave>[@t<trend>] 
     164;            n: integer, timeave: of d(ay),m(onth),y(ear) 
     165;           [m] stands for mean <timeave> 
     166;               -> requires spec for date interval (of mean): 
     167;               [date_i]-[date_f] 
     168;           <trend> : time serie trend type (default = 0, in this 
     169;           case, use @t9 to 
     170;           activate data output writing - out=data) 
     171;           @t412: remove mean SC 
     172;           @t41: remove mean of time serie 
     173; 
     174}}} 
     175 
     176 * 'date1' : The name of the netcdf file should have some indications of dates (for instance, 2L24_1m_186001_195912_grid_T.nc). If you only want to visualize the monthly mean SST of May 1871, you will have to specify 187105 as the 'date1' parameter. It is not compulsory to specify any final date for the 'spec' parameter in that case : '-' will be enough. The dates specified in the name of the file and the dates specified in post_it.pro should be coherent since the netcdf file only contains time steps : in our example, May, 1871 should corresponds to the 137th time step in the file. Dates can go down to daily scales (18710510) and you can even specify seconds. 
     177{{{ 
     178; date1 : [yy..yyy][mm][dd]-[sssss][_<ave_period>] 
     179;         <ave_period> for mean <timeave> : date interval <date_i>-<date_f> 
     180; 
     181}}} 
     182 
     183 * 'spec' : This parameter has two meanings. It may define the ending date of a 1d plot (SST anomaly averaged over nino_3 region as a function of time). But it may set parameters for a to make differences between two plots : this is the second way to make differences. 
     184{{{ 
     185; spec  : time serie : date2 
     186;         difference : d:<exp>/<timeave>/<date1>[/<spec2>]         
     187  
     188  'votemper    1   CD2   T     xz_pac_eq300  100y   1870  d:2L24/100y/1860   1     1   v', $ 
     189}}} 
     190 
     191 * 'disp' : the kind of display is set with this parameter. You can specify if you want several plots on the same window and how they will be organised on it. By default, plots are carried out with a landscape view. For the example below, 'disp' is set to '2x2' and the plot would have been the same with '2x2L'. Please notice that you don't have to set 'on' to '1' at each line : the first line is enough ; post_it  understands that it has to consider four lines for the plot. 
     192{{{ 
     193; disp  : multi-window display n[x<m>][<orient>]  <orient> = P  (L is default) 
     194 
     195  'sosstsst   1    CD2  T       xy  100y   1870  d:2L24/100y/1860  2x2     1   v', $  
     196  'tsol       0    CD2  lmdzl   xy  100y   1870  d:2L24/100y/1860  1     1   v', $ 
     197  'sozotaux   0    CD2  U       xy  100y   1870  d:2L24/100y/1860  1     1   v', $ 
     198  'sometauy   0    CD2  V       xy  100y   1870  d:2L24/100y/1860  1     1   v', $ 
     199}}} 
     200