source: trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltbase.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: 14.0 KB
Line 
1;+
2;
3; @file_comments
4; Overlayer contour to trace a field which can be mask.
5; Elementary brick of <pro>plt</pro>, <pro>pltz</pro> and <pro>pltt</pro>.
6;
7; @categories
8; Graphics
9;
10; @param Z2D {in}{required}
11; The table to trace
12;
13; @param X {in}{required}
14; Axis. Vector or array of the same size that z2d. This is the coordinate of z2d on x.
15;
16; @param Y {in}{required}
17; Axis. Vector or array of the same size that z2d. This is the coordinate of z2d on y.
18;
19; @param MASK {in}{required}{type=array}
20; It is the array who mask z2d (with 0s on points we want to mask and 1s on others).
21; If z2d is not masked, put this argument equal to 1.
22;
23; @param XM {in}{required}
24; Axis of the mask. Vector or array of the same size that mask.
25; This is the coordinate of mask on x.
26;
27; @param YM {in}{required}
28; Axis of the mask. Vector or array of the same size that mask.
29; This is the coordinate of mask on y.
30;
31; @param LEVELS {in}{optional}{type=vector}
32; Vectors which contain levels needed at the contour.
33; If it is not given, we take 20 levels between the min and the max.
34;
35; @param COLORS {in}{optional}{type=vector}
36; Vectors which contain colors needed at the contour.
37; If it is not given, we take 20 levels between the min and the max.
38;
39; @keyword COLORTRICHAMP
40; The color we want to use to draw the triangulation which is used to make contours of the field.
41;
42; @keyword COLORTRIMASK
43; The color we want to use to draw the triangulation which is used to make contours of the mask.
44;
45; @keyword COLOR_C
46; To draw the contour in color instead of in black
47; with filling in color
48;
49; @keyword CONT_NOFILL
50; Activate it not to fill the point mask to let them transparent!
51; Comment: Nevertheless, we trace mask's contour.
52;
53; @keyword CONT_COLOR {default= (!d.n_colors - 1) < 255 =>white}
54; The color of the continent.
55;
56; @keyword DESSTRICHAMP
57; To draw the triangulation which is used to make field's contours.
58;
59; @keyword DESSTRIMASK
60; To draw the triangulation which is used to make mask's contours.
61;
62; @keyword FORPLT
63; To activate if we want that the drawing of coast be realized by <pro>tracecote</pro> rather than <pro>tracemask</pro>.
64;
65; @keyword I_COLORS {type=vector}
66; It is a vector specifying the colors to use to trace contours.
67; It is the same thing that c_colors which act on contours.
68;
69; @keyword MORE {default=10}
70; Number to give to avoid style's bugs:
71;  % Out of range subscript encountered: <LONG      Array[38911]>.
72;  % Execution halted at:  PLTBASE           151
73;             If the bug still exist, increase the value of more!
74; (The explanation and the justification of this method do not have scientific bases yet...).
75;
76; @keyword NOFILL
77; To make just isolines with no filling
78;
79; @keyword NOCONTOUR
80; To make just colors.
81;
82; @keyword UNSUR2
83; To trace one isoline on two.
84;
85; @keyword UNLABSUR {type=integer}
86; I specify we only label one contour on two.
87;
88; @keyword CONTOUR
89; To be used since <pro>plt</pro>, <pro>pltz</pro> or <pro>pltt</pro>. (Have a look on these routines).
90;
91; @keyword _EXTRA
92; Used to pass keywords
93;
94; @uses
95; common.pro
96;
97; @restrictions
98; In the case of z2d, x and y are arrays of same size, we have to put them as vectors: z2d[*], x[*], y[*].
99;
100; @history
101;  Sebastien Masson (smasson\@lodyc.jussieu.fr)
102; ????
103; 8/2/2000 check if the tri array is not equal to
104; -1. allow contour without using a triangulation.
105;
106; @version
107; $Id$
108;
109; @todo seb L.172 à 173
110;
111;-
112PRO pltbase, z2d, x, y, mask, xm, ym, levels, colors, UNSUR2 = unsur2, CONTOUR = contour $
113             , NOCONTOUR = nocontour, NOFILL = nofill $
114             , TRICHAMP = trichamp, TRIMSK = trimsk $
115             , REALCONT = realcont, NAN = nan, USETRI = usetri $
116             , COLORTRICHAMP = colortrichamp, COLORTRIMASK = colortrimask $
117             , COLORTRINAN = colortrinan $
118             , COLORPOINTS = colorpoints, DRAWPOINTS = drawpoints $
119             , TH_TRICHAMP = th_trichamp, TH_TRIMASK = th_trimask $
120             , DESSTRICHAMP = desstrichamp, DESSTRIMASK = desstrimask $
121             , DESSTRINAN = desstrinan, COLOR_C = color_c $
122             , I_COLORS = i_colors,  CONT_COLOR = CONT_COLOR $
123             , CONT_NOFILL = cont_nofill, UNLABSUR = unlabsur $
124             , COINMONTEMASK = coinmontemask, COINDESCENDMASK = coindescendmask $
125             , COINMONTENAN = coinmontenan, COINDESCENDNAN = coindescendnan $
126             , INDICEZOOMMASK = indicezoommask, INDICEZOOMNAN = indicezoomnan $
127             , MASKORG = maskorg, MASKNAN = masknan, TRINAN = trinan $
128             , FORPLT = forplt, REALSECTION = realsection $
129             , MORE = more, EXCHANGE_XY = exchange_xy $
130             , _EXTRA = ex
131;
132  compile_opt idl2, strictarrsubs
133;
134@cm_4mesh
135  IF NOT keyword_set(key_forgetold) THEN BEGIN
136@updatenew
137@updatekwd
138  ENDIF
139;---------------------------------------------------------
140;
141; Explanation concerning contour. This keyword is activated when we trace a
142; colored contour different from the one with black trait.
143; If it is activated (case n_elements(contour) NE 0), we pass 2 time in pltbase:
144;   1) We trace colors then we leave, it is the case:
145;         n_elements(contour) NE 0 AND n_elements(contour) NE 4)
146;   2) We trace contours in traits then continents, it is the case:
147;         n_elements(contour) NE 0 AND n_elements(contour) EQ 4)
148;
149;------------------------------------------------------------
150  tempsun = systime(1)          ; To key_performance
151  if n_elements(mask) EQ 0 then mask = 1b
152  if n_elements(masknan) EQ 0 then masknan = 1b
153  IF total(mask) EQ n_elements(z2d) THEN mask = 1b
154;----------------------------------------------------------------------
155; If levels and colors aren't given
156;----------------------------------------------------------------------
157  if n_params() EQ 4 then $
158    label, 0, min(z2d*mask), max(z2d*mask), ncontour, levels, colors
159; attention bidouille inexplicable pour que tout se passe bien avec les
160; postcript ds pltz!!!
161  if n_elements(contour) LE 4 AND !x.type EQ 0 THEN $
162    plot, [0], [0], xstyle = 5, ystyle = 5, /nodata, /noerase, title = '', subtitle = ''
163;----------------------------------------------------------------------
164; Is cell_fill is a part of _extra, we desactive it if it is nt equal to 2
165;----------------------------------------------------------------------
166  IF chkstru(ex, 'CELL_FILL') THEN BEGIN
167    cell_fill = ex.CELL_FILL
168    if ex.CELL_FILL NE 2 then ex.CELL_FILL = 0
169  ENDIF ELSE cell_fill = 0      ;
170;----------------------------------------------------------------------
171; I) Filling of contours in palette colors
172;----------------------------------------------------------------------
173  if NOT keyword_set(more) then more = 10
174  if NOT keyword_set(nofill) AND NOT keyword_set(color_c) then begin
175    if n_elements(contour) NE 4 THEN BEGIN
176      if usetri EQ 2 then BEGIN
177        IF size(x, /n_dimensions) EQ 1 THEN x = x#replicate(1, (size(z2d))[2])
178        IF size(y, /n_dimensions) EQ 1 THEN y = replicate(1, (size(z2d))[1])#y
179        contour, [z2d[*], fltarr(more)], [x[*], fltarr(more)] $
180          , [y[*], fltarr(more)], levels = levels, c_color = colors $
181          , /noerase, /fill, TRIANGULATION = trichamp, _extra = ex
182        ENDIF ELSE BEGIN
183        IF size(x, /n_dimensions) EQ 2 THEN x = x[*, 0]
184        IF size(y, /n_dimensions) EQ 2 THEN y = reform(y[0, *])
185        contour, z2d, x, y, levels = levels, c_color = colors, /noerase $
186          , /fill, _extra = ex
187      ENDELSE
188    ENDIF
189  ENDIF
190  if n_elements(contour) NE 0 AND n_elements(contour) NE 4 THEN GOTO, fini
191  IF chkstru(ex, 'C_ORIENTATION') THEN ex = extractstru(ex, 'C_ORIENTATION')
192  IF chkstru(ex, 'C_SPACING') THEN ex = extractstru(ex, 'C_SPACING')
193  IF chkstru(ex, 'C_COLORS') THEN ex = extractstru(ex, 'C_COLORS')
194;------------------------------------------------------------
195; II) Drawing of contours in traits
196;------------------------------------------------------------
197  if n_elements(contour) EQ 4 OR n_elements(contour) EQ 0 THEN BEGIN
198;
199; we put the masked values to NaN
200;
201    IF (n_elements(mask) GT 1 OR n_elements(masknan) GT 1) $
202      AND NOT keyword_set(cont_nofill) THEN BEGIN
203      IF keyword_set(maskorg) THEN tonan = maskorg*masknan ELSE tonan = mask*masknan
204      tonan = where(remplit(tonan, nite = 1, mask = tonan $
205                            , /basique, fillval = 0 $
206                            , fillxdir = keyword_set(realsection)) EQ 0, count)
207      IF count NE 0 THEN z2d[temporary(tonan)] = !values.f_nan
208    ENDIF
209;
210; We do not pass if we have to make differents contours...
211; In the case of unsur2 is activated, we reduce levels
212    if NOT keyword_set(nocontour) then begin
213      IF keyword_set(unsur2) THEN levels = levels[where(zeroun(n_elements(levels) ) eq 1)]
214; Is unlabsur activated?  Does C_LABEL passed via _EXTRA?
215      if keyword_set(unlabsur) THEN IF chkstru(ex, 'C_LABELS') THEN $
216        ex.C_LABELS = 1-((indgen(n_elements(ex.C_LABELS)) MOD unlabsur) < 1)
217;
218; Not to fill when cell_fill is imposed...
219      IF chkstru(ex, 'CELL_FILL') THEN ex.CELL_FILL = 0
220;
221      CASE 1 OF
222        keyword_set(color_c):c_colors = colors
223        keyword_set(i_colors):c_colors = i_colors
224        ELSE:
225      ENDCASE
226;
227      IF usetri EQ 2 THEN BEGIN
228        IF size(x, /n_dimensions) EQ 1 THEN x = x#replicate(1, (size(z2d))[2])
229        IF size(y, /n_dimensions) EQ 1 THEN y = replicate(1, (size(z2d))[1])#y
230        contour, [z2d[*], fltarr(more)], [x[*], fltarr(more)] $
231          , [y[*], fltarr(more)], levels = levels $
232          , overplot = 1-keyword_set(nofill), noerase = keyword_set(nofill) $
233          , c_colors = c_colors, TRIANGULATION = trichamp, _extra = ex
234      ENDIF ELSE BEGIN
235        IF size(x, /n_dimensions) EQ 2 THEN x = x[*, 0]
236        IF size(y, /n_dimensions) EQ 2 THEN y = reform(y[0, *])
237        contour, z2d, x, y, levels = levels $
238          , overplot = 1-keyword_set(nofill), noerase = keyword_set(nofill) $
239          , c_colors = c_colors, _extra = ex
240      ENDELSE
241    ENDIF
242;----------------------------------------------------------------------
243; III) Filling of colored continents.
244;----------------------------------------------------------------------
245    IF chkstru(ex, 'CELL_FILL') THEN ex.CELL_FILL = cell_fill < 1
246    IF chkstru(ex, 'LEVELS') THEN ex = extractstru(ex, 'LEVELS')
247    IF chkstru(ex, 'NODATA') THEN ex = extractstru(ex, 'NODATA')
248    IF NOT keyword_set(cont_color) THEN cont_color = (!d.n_colors-1) <  255
249;
250; If there is points at NaN
251; We trace points in white at NaN before drawing coasts with a trait.
252;
253    if keyword_set(trinan) AND NOT keyword_set(nofill) THEN BEGIN
254      IF size(x, /n_dimensions) EQ 1 THEN x = x#replicate(1, (size(masknan))[2])
255      IF size(y, /n_dimensions) EQ 1 THEN y = replicate(1, (size(masknan))[1])#y
256      contour, [1b-masknan[*], fltarr(more)], [x[*], fltarr(more)] $
257        , [y[*], fltarr(more)], levels = 0.5, /overplot, /fill $
258        , c_colors = cont_color, TRIANGULATION = trinan, _extra = ex
259      IF keyword_set(forplt) THEN $
260        completecointerre, COINMONTE = coinmontenan $
261        , COINDESCEND = coindescendnan, INDICEZOOM = indicezoomnan $
262        , CONT_COLOR = cont_color, _EXTRA = ex $
263      ELSE fillcornermask, x[*, 0], y[0, *], COINMONTE = coinmontenan $
264        , COINDESCEND = coindescendnan, CONT_COLOR = cont_color, _extra = ex
265    ENDIF
266;
267; Filling of continents
268;
269    if keyword_set(realcont) then if realcont EQ 1 then mask = 1b
270    if n_elements(mask) NE 1 then BEGIN ; If mask=1 we gap it.
271;
272      if NOT keyword_set(cont_nofill) then BEGIN
273;
274; mask filling
275;
276        case 1 of
277          keyword_set(realsection):drawsectionbottom, mask, xm, ym $
278            , CONT_NOFILL = cont_nofill, CONT_COLOR = cont_color, _EXTRA = ex
279          usetri GE 1:BEGIN
280            if n_elements(trimsk) eq 0 then trimsk = trichamp
281            IF size(xm, /N_DIMENSIONS) EQ 1 THEN xm = xm#replicate(1, (size(mask))[2])
282            IF size(ym, /N_DIMENSIONS) EQ 1 THEN ym = replicate(1, (size(mask))[1])#ym
283            contour, [1b-mask[*], fltarr(more)], [xm[*], fltarr(more)] $
284              , [ym[*], fltarr(more)], LEVELS = 0.5, /OVERPLOT, /FILL $
285              , C_COLORS = cont_color, TRIANGULATION = trimsk, _extra = ex
286            IF keyword_set(forplt) THEN $
287              completecointerre, COINMONTE = coinmontemask $
288              , COINDESCEND = coindescendmask, INDICEZOOM = indicezoommask $
289              , CONT_COLOR = cont_color, _EXTRA = ex $
290            ELSE fillcornermask, xm[*, 0], ym[0, *], COINMONTE = coinmontemask $
291              , COINDESCEND = coindescendmask, CONT_COLOR = cont_color, _extra = ex
292          END
293          ELSE:BEGIN
294            IF size(xm, /n_dimensions) EQ 2 THEN xm = xm[*, 0]
295            IF size(ym, /n_dimensions) EQ 2 THEN ym = reform(ym[0, *])
296            contour, 1b-mask, xm, ym, LEVELS = 0.5, /OVERPLOT $
297              , /FILL, C_COLORS = cont_color, _EXTRA = ex
298          END
299        ENDCASE
300      ENDIF                     ; NOT keyword_set(cont_nofill)
301;------------------------------------------------------------
302; IV) Trace coast in traits
303;------------------------------------------------------------
304      case 1 of
305        keyword_set(realsection) AND NOT keyword_set(cont_nofill):
306        keyword_set(realsection) AND keyword_set(cont_nofill): $
307          drawsectionbottom, mask, xm, ym $
308          , CONT_NOFILL = cont_nofill, _extra = ex
309        (keyword_set(forplt) AND (!map.projection GT 0 OR key_irregular)) $
310          OR keyword_set(nan):tracecote, _extra = ex
311        ELSE:tracemask, mask, xm, ym, _extra = ex
312      endcase                   ;
313    ENDIF                       ; n_elements(mask) NE 1
314  ENDIF
315;------------------------------------------------------------
316; draw the triangulations
317;------------------------------------------------------------
318  if keyword_set(desstrichamp) then $
319    dessinetri, trichamp, x, y, color = colortrichamp, thick = th_trichamp
320  if keyword_set(desstrimask) then $
321    dessinetri, trimsk, xm, ym, color = colortrimask, thick = th_trimask
322  if keyword_set(desstrinan) then $
323    dessinetri, trinan, x, y, color = colortrinan
324  if keyword_set(drawpoints) then $
325    tracegrille, x, y, color = colorpoints
326;------------------------------------------------------------
327;
328fini:
329  IF keyword_set(key_performance) THEN print, 'temps pltbase', systime(1)-tempsun
330
331  return
332end
Note: See TracBrowser for help on using the repository browser.