Last change
on this file since 91 was
91,
checked in by aslmd, 14 years ago
|
mars: test outliers [dans initracer.F, commente] LMD_MM_MARS: modifications mineures [retrocompatibilite ancienne physique, callphys.def test pour nouvelle physique] PLOT: generalisation de la routine map_uvt pour pouvoir tracer des figures en projection polaire complete
|
File size:
1.6 KB
|
Line | |
---|
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 |
---|
34 | windowx = [30.,150.] |
---|
35 | windowy = [-15.,90.] |
---|
Note: See
TracBrowser
for help on using the repository browser.