Last change
on this file since 112 was
112,
checked in by aslmd, 14 years ago
|
LMD_MM_MARS et LMD_LES_MARS: fichiers pour graphiques et MAJ notes
|
File size:
1.8 KB
|
Rev | Line | |
---|
[91] | 1 | ;;;;;*************************************** PLOT TITLES |
---|
| 2 | title_user = 'Water vapor column [precip. microns]' |
---|
| 3 | title_axis = ['L!DS!N','North Latitude'] |
---|
| 4 | |
---|
| 5 | ;;;;;*************************************** COLOR TABLES |
---|
| 6 | flag_cb = 'true' |
---|
| 7 | poscb = 0.75 |
---|
| 8 | format = '(I0)' |
---|
| 9 | colors = 32 |
---|
| 10 | pal = 22;4;33 ;; GOOD: 4, 18, 22, 16, 37, 33, 39, 6, 11 |
---|
| 11 | |
---|
| 12 | ;;;;;*************************************** FILL LIMITS |
---|
| 13 | minfield_init = 0. |
---|
| 14 | maxfield_init = 65. |
---|
| 15 | ndiv = 13 |
---|
| 16 | |
---|
| 17 | ;;;;;*************************************** LIMIT TRICKS |
---|
| 18 | ;;;;;********************* must always follow FILL LIMITS |
---|
| 19 | missing_value=1.e30 |
---|
| 20 | lim_max = maxfield_init & w=where((what_I_plot ge lim_max) and (what_I_plot le 1e9)) & if (w[0] ne -1) then what_I_plot[w]=lim_max |
---|
| 21 | lim_min = minfield_init & w=where(what_I_plot le lim_min) & if (w[0] ne -1) then what_I_plot[w]=lim_min |
---|
| 22 | ;lim_blank = 0.1 & w=where(abs(what_I_plot) le lim_blank) & if (w[0] ne -1) then what_I_plot[w]=missing_value |
---|
| 23 | |
---|
| 24 | ;;;;;*************************************** CONTOUR |
---|
| 25 | overcontour = overcontour |
---|
| 26 | lev = minfield_init + (maxfield_init - minfield_init)*findgen(ndiv+1)/float(ndiv) |
---|
| 27 | |
---|
| 28 | ;;;;;*************************************** AXIS |
---|
| 29 | isotropic = 'true' |
---|
| 30 | intervalx = 15.0 |
---|
| 31 | intervaly = 15.0 |
---|
| 32 | |
---|
| 33 | ;;;;;*************************************** MAP LIMITS |
---|
[112] | 34 | windowx = [30.,150.] |
---|
| 35 | windowx = [30.,1500.] |
---|
[91] | 36 | windowy = [-15.,90.] |
---|
[112] | 37 | |
---|
| 38 | ;;;;; MULTIYEAR |
---|
| 39 | isotropic = 'false' |
---|
| 40 | windowx = [1500.,4000.] |
---|
| 41 | intervalx = 500.0 |
---|
| 42 | windowy = [-90.,90.] |
---|
| 43 | intervaly = 30.0 |
---|
| 44 | lev = [100.] |
---|
Note: See
TracBrowser
for help on using the repository browser.