source: trunk/SRC/ToBeReviewed/PLOTS/DIVERS/placedessin.pro @ 325

Last change on this file since 325 was 325, checked in by pinsard, 17 years ago

modification of some headers (+some corrections) to prepare usage of the new idldoc

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 10.2 KB
Line 
1;+
2;
3; @file_comments
4; Putting into place of the drawing/ opening of the window or of the PS
5;
6; @categories
7; Utilities
8;
9; @param TYPEDESSIN {type=string}
10; It specify what procedure is called by <pro>placedessin</pro> :
11; 'plt', 'pltz' or 'pltt'
12;
13; @param POSFENETRE {out}{type=vector}
14; It is a vector composed by 4 elements containing the position of the frame
15; containing captions and the graph in normalized coordinates.
16; Comment: To position the drawing; we have to do !p.position=posfenetre
17; after the call of the caliber
18;
19; @param POSBAR {out}{type=vector}
20; Like POSFENETRE but for the color bar.
21; Same comment to position the color bar, !p.position=posbar
22;
23; @param dtasize {in}{optional}{type=2 elements vector}
24; used by <pro>pltv</pro> to specify the size of the array that will be plotted
25; and therefore the default yxaspect to be used.
26;
27; @keyword LANDSCAPE
28; Force the page or the window on the screen to be in lengthened position.
29;
30; @keyword LCT {type=integer}
31; It designate the number of the palette of color we want to use for the plot.
32;       
33; @keyword MAP
34; We use it when we want to do a projection.
35; This keyword can be of two types:
36;     MAP=[P0lat,P0lon,Rot]. For the description of these 3 values (see the online help of MAP_SET).
37;     /MAP: In this case, map is automatically calculated have the value:
38;          map = [0, (lon1+lon2)/2., 0]
39; Comment 1: A good way to choose the type of the projection we want to do is to have a look at IDL demo:
40; IDL> demo
41; Then choose earth sciences and  mapping.
42; Comment 2: By default it is a cylindrical projection which is effectuated (with or without the keyword map).
43; If we want an other projection, MAP must be activated and we have to add the keyword: /nom_projection.
44; For example, for a polar projection centered on the south pole:
45; IDL> domdef,-180,180,-90,-45
46; IDL> plt, tab, /stereo,map=[-90,0,0]
47;       
48; @keyword NOCOLORBAR
49; We active it if we do not want the colorbar.
50
51; @keyword NOFILL
52; We active it if we only want contours in black and white with a white background.
53;
54; @keyword NOERASE
55; We active it to make a drawing without creating a new frame.
56;
57; @keyword SMALL
58; Vector composed of 3 or 4 elements, applied to make a drawing on a
59; small portion of a page or screen. It delimit the zone where the drawing will be done.
60;     If there is 4 elements:
61; then is constituted of coordinates (expressed in cm located from the up and
62; left corner of the page or the window (in portrait like in landscape) of the bottom
63; and left corner and of the up and right corner of the drawing zone.
64;     If there is 3 elements:
65; in this case, we divide the page or the screen in small[0] columns and in small[1] lines
66; the drawing made in the box numbered small[2]. The numerotation starting up and left by
67; the number 1 and then, following the writing direction.
68; By default, we make the largest drawing we can do, conserving the aspect rapport
69; (except when REMPLI is activated).
70;
71; @keyword PORTRAIT
72; Force the page or the window to be in standing position.
73;
74; @keyword POST
75; Make a postscript. Only works if we made one drawing on the page.
76; If we make several drawing, use \@<pro>ps</pro>.
77;
78; @keyword REMPLI
79; Force the drawing to occupy the whole space defined by small.
80;
81; @keyword WINDOW
82; Number of the window on which we want to do the graph (Allow to open several windows).
83; By default, we open 'IDL0'
84;
85; @keyword CB_TITLE
86; The colorbar's title
87;
88; @keyword CONTOUR
89; If we want to trace contours of a different field than the one
90; whose we have the colored drawing (by example E-P in color and QSR in contours).
91; It must be a field respecting same characteristics than the argument number
92; one of <pro>plt</pro>.
93;
94; @keyword ENDPOINTS
95; keyword specifying that we want to make a vertical cut in diagonal. Then coordinated of extremities
96; of these one are defined by the 4 elements of the vector ENDPOINTS: [x1,y1,x2,y2] which are
97; coordinates.
98;
99; @keyword VECTEUR {type=vector}
100; It is a structure composed by 2 elements containing the 2 fields U
101; and V of values of the zonal and meridian component of the vector of the fields
102; to draw. These fields can be an array or a structure.
103;       For example: vecteur={matriceu:lec('unsurface'),matricev:lec('vnsurface')}
104;       Comment: name of elements of vectors are inconsequential.
105;       vecteur={u:lec('unsurface'),v:lec('vnsurface')} is also appropriated.
106;
107; @keyword DIREC
108; 't' 'x' 'y' 'z' 'xys' 'xz' 'yz' 'xyz' 'xt' 'yt' 'zt' 'xyt'
109;       'xzt' 'yzt' 'xyzt' Direction on which do averages
110;
111; @keyword _EXTRA
112; Used to pass keywords
113;
114; @keyword COLOR_C
115; To draw the contour in color instead of in black
116; with filling in color
117;
118; @uses
119; common.pro
120;
121; @history
122; Sebastien Masson (smasson\@lodyc.jussieu.fr)
123;                       26/4/1999
124;
125; @version
126; $Id$
127;
128;-
129PRO placedessin, typedessin, posfenetre, posbar, dtasize, BARMARGES = barmarges $
130                 , NOCOLORBAR = nocolorbar, NOFILL = nofill, COLOR_c = color_c $
131                 , CONTOUR = contour $
132                 , VECTEUR = vecteur, PORTRAIT = portrait, LANDSCAPE = landscape $
133                 , SMALL = small, MARGES = marges, MAP = map $
134                 , REMPLI = REMPLI, POST = post, WINDOW = window $
135                 , ENDPOINTS = endpoints, TYPE = type, BASICMARGES = basicmarges $
136                 , NOERASE = noerase, LCT = lct, DIREC = direc, CB_TITLE = cb_title, _EXTRA = ex
137;
138  compile_opt idl2, strictarrsubs
139;
140@cm_4ps
141@cm_4mesh
142  IF NOT keyword_set(key_forgetold) THEN BEGIN
143@updatekwd
144  ENDIF
145;-------------------------------------------------------------
146; 1) Determination of the size of margins (unity=number of lines or columns)
147; to the left, to the right, up and down.
148; BEWARE in margebar, the last element is the right up corner
149; instead of the up margin
150;-------------------------------------------------------------
151  if n_elements(typedessin) EQ 0 then typedessin = 'autre'
152  if keyword_set(basicmarges) then begin
153    marge = 1.*[6, 2, 4, 3]
154    if keyword_set(marges) THEN marge = marge+marges
155    margebar = 1.*[marge[0]+1, marge[1]+1,  marge[2]-8,  marge[2]-6]
156    if keyword_set(barmarges) then margebar = margebar+barmarges
157  ENDIF ELSE BEGIN
158    nocolorbar = keyword_set(nocolorbar) + keyword_set(nofill) + keyword_set(color_c)
159    case typedessin of
160      'plt':marge = 1.*[6, 2, 4, 3]
161      'pltv':marge = 1.*[6, 2, 4, 3]
162      'pltt':marge = 1.*[6+4*(type EQ 'xt'), 2, 4, 4]
163      'pltz':marge = 1.*[6, 2, 4, 3]
164      else:marge = 1.*[6, 2, 4, 3]
165    ENDCASE
166    if keyword_set(marges) THEN marge = marge+marges
167    if NOT keyword_set(barmarges) then barmarges = replicate(0, 4)
168    barmarges[3] = -barmarges[3]
169    margebar = 1.*[marge[0]+1, marge[1]+1, 2, 4]+barmarges
170    marge = marge+[0, 0, 4, 0]*keyword_set(cb_title)
171    IF keyword_set(direc) THEN $
172      marge = marge+[0, 0, 2, 0]*(strlowcase(direc) NE 't')
173    marge = marge+[0, 0, 2, 0]*keyword_set(contour)
174    marge = marge+[0, 0, 2, 0]*keyword_set(vecteur)
175    if n_elements(lon1) NE 0 and n_elements(lon2) NE 0 $
176      and n_elements(lat1) NE 0 and n_elements(lat2) NE 0 then begin
177      if keyword_set(type) then $
178        marge = marge+[0, 3*(type EQ 'yt' AND lon1 NE lon2), 0 $
179                       , 2*(type NE 'yt' AND lat1 NE lat2)]*keyword_set(endpoints) $
180      ELSE marge = marge+[0, 0, 0, 2*(lat1 NE lat2)]*keyword_set(endpoints)
181    endif
182    marge = marge+[0, 0, 2+margebar[3], 0]*(1-keyword_set(nocolorbar))
183  ENDELSE
184;--------------------------------------------------------------
185; Portrait or landscape
186;--------------------------------------------------------------
187  IF NOT keyword_set(noerase) THEN BEGIN
188    CASE 1 OF
189      n_elements(portrait) NE 0:key_portrait = portrait
190      n_elements(landscape) NE 0:key_portrait = 1-landscape
191      ELSE:
192    ENDCASE
193  ENDIF
194;--------------------------------------------------------------
195; What type of aspect rapport (it will be crushed if YXASPECT exist)
196;--------------------------------------------------------------
197  case typedessin of
198    'plt':yaspect = 1.*(lat2-lat1)/(lon2-lon1)
199    'pltt':yaspect = 1.
200    'pltz':yaspect = .5
201    'pltv':yaspect = float(dtasize[1])/float(dtasize[0])
202    ELSE:yaspect = 1.
203  ENDCASE
204;-------------------------------------------------------------
205; 2) calculation of !p.position
206; see calibre.pro.
207;------------------------------------------------------------
208;
209  IF NOT keyword_set(small) then small = [1, 1, 1]
210;
211  if keyword_set(map) then rempli = 1
212;
213  calibre, yaspect, marge, margebar, small, posfenetre, posbar, REMPLI = rempli, _extra = ex
214;
215  !p.position = posfenetre
216;------------------------------------------------------------
217; 3) opening of the graphic window or of the postscript
218;------------------------------------------------------------
219  case 1 of
220; case of the first drawing on a postscript
221    keyword_set(post) AND !d.name ne 'PS':openps, _extra = ex
222; case of the first drawing on a screen
223    keyword_set(post) EQ 0 AND keyword_set(noerase) EQ 0 $
224      AND !d.name ne 'PS' AND !d.name ne 'Z':BEGIN
225      if not keyword_set(window) then window = 0
226; For the using of \@ps,\@oups and \@vzoom
227      if lmgr(/demo) EQ 0 then BEGIN ; Are we in the demo mode??
228        if !journal NE 0 then journal ; We close the journal if it is open
229        homedir = isadirectory(io = homedir, title = 'Bad definition of homedir')
230        def_myuniquetmpdir
231        journal, myuniquetmpdir+'idlsave.pro' ; We open a new one
232        help, /recall_commands, output = listecommande ; We recuperate the last command
233        listecommande = strmid(strcompress(listecommande[1]), 2)
234        journal, listecommande ; We write it in the journal
235      ENDIF
236      windsize = givewindowsize()
237      window, window, xsize = windsize[0], ysize = windsize[1],  retain = 2, _extra = ex
238; When we used colors which are coded on 24bit, we can not stipulate the background color
239; of a window thanks to !p.background, so we have to to this:
240;          if !d.n_colors gt 256 then begin
241;             device, decomposed=1
242;             !p.background='ffffff'x
243;             plot,[0],[0], /nodata, xstyle = 4, ystyle = 4
244;             device, decomposed=0
245;          endif
246    END
247    ELSE:
248  endcase
249;------------------------------------------------------------
250  if n_elements(lct) NE 0 then lct, lct, _extra = ex
251;------------------------------------------------------------
252
253  return
254end
Note: See TracBrowser for help on using the repository browser.