source: trunk/MESOSCALE_DEV/PLOT/MINIMAL/example.pro @ 296

Last change on this file since 296 was 85, checked in by aslmd, 14 years ago

LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT

File size: 1.1 KB
Line 
1
2pro example
3
4name='example'
5PS_Start, filename=name+'.ps'
6!P.Charsize = 1.2
7
8restore, filename='example.idl'
9
10map_latlon, $
11            what_I_plot, $                        ; 2D field
12            x, $                                  ; 1D latitude
13            y, $                                  ; 1D longitude
14            minfield=0., $                        ; minimum value of plotted field (=0: calculate)
15            maxfield=0., $                        ; maximum value of plotted field (=0: calculate)
16            overcontour=overcontour, $            ; another 2D field to overplot with contour lines (=0: no)
17            overvector_x=overvector_x, $          ; wind vector - x component (=0: no)
18            overvector_y=overvector_y, $          ; wind vector - y component (=0: no)
19            ct=pal, $                             ; color table (33-rainbow is default)
20            colors=colors, $                      ; number of colors/levels (32 is default)
21            title=title, $                        ; title of the plot ('' is default)
22            format=format                         ; format of colorbar annotations ('(F6.2)' is default)
23
24PS_End, /PNG
25
26end
Note: See TracBrowser for help on using the repository browser.