source: trunk/SRC/ToBeReviewed/PLOTS/DESSINE/tvplus.pro @ 258

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

correction for links in documentations. cf 62

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 12.0 KB
RevLine 
[2]1;+
2;
[142]3; @file_comments
[236]4; Enhanced version of <proidl>tvscl</proidl>
[2]5;
[231]6; @categories
7; quick exploration of 2D arrays
[2]8;
[142]9; @param Z2D {in}{required}
10; 2D array to visualize
[2]11;
[163]12; @param CELLSIZE {in}{optional}
[142]13; This is the size (in pixel) of the square
14; representing 1 array element. By default, this size is computed
15; automatically in order that the size of the plotting window do
16; not exceed the screen size. If the user specify a large value
17; of cellsize that forces tvplus to create a window larger than
18; the screen, a "scrolling window" will be displayed instead of a
[226]19; regular window. Unfortunately the nice functionalities of tvplus
[142]20; are not coded for "scrolling window" case...
[35]21;
[152]22; @keyword BOTTOM {default=1}
23; The lowest color index of the colors to be used
[2]24;
[152]25; @keyword C_NAN {default=!d.n_colors < 255}
[142]26; The color number that should be used for the NaN values.
[2]27;
[152]28; @keyword C_MASK {default=0}
[142]29; The color number that should be used for the mask values.
[2]30;
[226]31; @keyword OFFSET
[163]32; 2 elements vector used by tvplus itself when showing zoom.
[142]33; It is used to shift the ranges of xaxis and yaxis.
[226]34; For example: tvplus,sst[x1:x2,y1:y2],offset=[x1,y1]
[2]35;
[226]36; @keyword MASK
[142]37; The mask value. Note that if abs(mask) < 1.e6, then the
38; exact value of the mask is used to find the maskwd point.
39; if abs(mask) > 1.e6, the test to find the masked value is ge
40; abs(mask)/10. This is necessary to avoid the rounding errors
[2]41;
[152]42; @keyword MIN
43; Scalar used to specify the min value to be drawn.
[2]44;
[142]45; @keyword MAX
[152]46; Scalar used to specify the max value to be drawn.
[2]47;
[152]48; @keyword NCOLORS {default=(d.n_colors < 256) - 1 - bottom}
49; number of colors to be used.
[2]50;
[142]51; @keyword NOINTERP
[163]52; Used this keyword if you don't want that the values
[152]53; are interpolated from BOTTOM using NCOLORS colors.
[163]54; This can be for example useful when working on byte type arrays.
[2]55;
[142]56; @keyword NOUSEINFOS
[163]57; Activate to suppress the printed message explaining how to use tvplus
[2]58;
[142]59; @keyword WINDOW
60; Number of the window used to display the array values.
61; default is window number 0.
[2]62;
[152]63; @keyword _EXTRA
[258]64; Used to pass keywords to <proidl>tv</proidl>,
65; <proidl>plot</proidl>,
66; <pro>colorbar</pro>
[226]67;
68; @restrictions
[35]69; use your mouse to scan the array values...
70;     left button  : mouse position and associated array value
71;     middle button: use it twice to define a zoom box
72;     right button : quit
[2]73;
[226]74; the nice functionalities of tvplus are not coded
[142]75; for "scrolling window" case...
[2]76;
[142]77; @examples
78; IDL> tvplus, dist(100)
[2]79;
[142]80; @history
[157]81; Sebastien Masson (smasson\@lodyc.jussieu.fr)
[2]82;                       18/12/98
[35]83; Aug 2005: quick cleaning + english
[142]84;
85; @version
86; $Id$
87;
[2]88;-
[231]89;
[35]90PRO tvplus, z2d, cellsize, BOTTOM = bottom, C_MASK = c_mask, C_NAN = c_nan, WINDOW = window $
91            , MIN = min, MAX = max, MASK = mask, OFFSET = offset, NOUSEINFOS = NOUSEINFOS $
[2]92            , NCOLORS = ncolors, NOINTERP = nointerp, _EXTRA = ex
93;
[114]94  compile_opt idl2, strictarrsubs
95;
[35]96  IF n_elements(z2d) EQ 0 THEN return
97  arr = reform(float(z2d))
[2]98;------------------------------------------------------------
[226]99; check the size of the input array
[2]100;------------------------------------------------------------
[35]101  if (size(arr))[0] NE 2 then begin
102    ras = report('Input array must have only 2 dimensions and not '+ strtrim(size(arr, /n_dimensions), 1))
103    return
104  endif
[2]105;------------------------------------------------------------
[35]106; def of ncolmax, bottom, topcol et ncolors
[2]107;------------------------------------------------------------
[35]108  ncolmax = !d.n_colors < 256
[152]109  IF N_ELEMENTS(bottom) EQ 0 THEN bottom = 1
110  if NOT keyword_set(ncolors) then ncolors = ncolmax - 1 - bottom
[35]111  topcol = (bottom+ncolors-1) < (ncolmax-1)
[2]112;------------------------------------------------------------
[35]113; get default values of !x, !y, !z
[2]114;------------------------------------------------------------
[35]115;   xenvsauve = !x & yenvsauve = !y & penvsauve = !p
116  reinitplt, /z, /invert
[2]117;------------------------------------------------------------
[35]118; Do we have NaN values in arr???
[2]119;------------------------------------------------------------
[35]120  nan = total(finite(z2d, /nan)) < 1
121  if keyword_set(nan) then begin
122    nanindex = where(finite(z2d, /nan) EQ 1)
123    arr[nanindex] = min(arr, /nan)
124  endif
[2]125;------------------------------------------------------------
[35]126; Compute the size (in pixel) of the square representing 1
[226]127; point of the input array
[2]128;------------------------------------------------------------
[35]129  dimensions = GET_SCREEN_SIZE()
[226]130  if n_elements(cellsize) EQ 0 then BEGIN
[35]131    cellsize = min(floor(dimensions/(size(z2d))[1: 2]*.75))
[226]132  ENDIF ELSE $
[35]133; we need to use a scrolling bar window
134  if cellsize GE min(floor(dimensions/(size(z2d))[1: 2]*.75)) then scrolling = 1
135  if cellsize LT 1 then begin
136    cellsize = 1
137    scrolling = 1
138  endif
[2]139;------------------------------------------------------------
[35]140; Change the value of the masked value for the min of the non-masked values
[2]141;------------------------------------------------------------
[226]142  if n_elements(mask) then BEGIN
143    if abs(mask) LT 1e6 then BEGIN
[35]144      masked = where(arr EQ mask)
[114]145      if masked[0] NE -1 then arr[masked] = min(arr[where(arr NE mask)])
[226]146    ENDIF ELSE BEGIN
[35]147      masked = where(abs(arr) GE abs(mask)/10.)
[114]148      if masked[0] NE -1 then arr[masked] = min(arr[where(abs(arr) LT abs(mask)/10.)])
[35]149    ENDELSE
150  ENDIF ELSE masked = -1
[2]151;------------------------------------------------------------
[35]152; apply min/max keywords
[2]153;------------------------------------------------------------
[226]154  if n_elements(min) NE 0 then BEGIN
[35]155    arr = min > arr
156    truemin = min
157  ENDIF ELSE truemin = min(arr)
[226]158  if n_elements(max) NE 0 then BEGIN
[35]159    arr = arr < max
160    truemax = max
161  ENDIF ELSE truemax = max(arr)
162;
163  IF truemin EQ truemax THEN BEGIN
164    dummy = report('constant value everywhere: '+ strtrim(truemin, 1))
165    return
166  ENDIF
[2]167;------------------------------------------------------------
[226]168; apply other keywords (nointerp, c_nan, c_mask)
[2]169;------------------------------------------------------------
[35]170  if NOT keyword_set(nointerp) then BEGIN
171; interpolation between bottom and bottom+ncolors-1
172    m = 1.*(ncolors-1)/(truemax-truemin)
173    p = bottom-1.*truemin*m
[226]174    arr = round(m*temporary(arr)+p)
[35]175  endif
[226]176; set c_nan for NaN values
[35]177  if keyword_set(nan) then begin
178    if n_elements(c_nan) NE 0 THEN arr[nanindex] = c_nan <  (ncolmax -1) $
179    ELSE arr[nanindex] = topcol
180  endif
181; c_mask for masked values
182  if n_elements(c_mask) NE 0 AND masked[0] NE -1 THEN $
183    arr[masked] = c_mask < (ncolmax -1)
184; use byte type to save memory
[152]185  arr = byte(temporary(arr))
[35]186; increase the size of the array in order to be displayed
[226]187; with the suitable size
[152]188  szarr = size(arr, /dimensions)
189  arr = congrid(temporary(arr), szarr[0]*cellsize, szarr[1]*cellsize)
[2]190;------------------------------------------------------------
[35]191; open a window with the correct size
[2]192;------------------------------------------------------------
[35]193  nx = (size(arr))[1]
194  ny = (size(arr))[2]
195; margin size (in pixel)
196  xyaspect = 1.*nx/ny
197  if xyaspect GE 1 THEN marginpix = 1.*[25, 25, 75, 25] ELSE marginpix = 1.*[25, 100, 25, 25]
[2]198;
[35]199  if n_elements(scrolling) EQ 0 then BEGIN ; open the regular window
200    if NOT keyword_set(window) then window = 0
201    window, window, xsize = nx+marginpix[0]+marginpix[1] $
[226]202            , ysize = ny+marginpix[2]+marginpix[3]
[35]203; for 24 bits colors, make sure thate the background color is the good one...
204    if !d.n_colors gt 256 then BEGIN
205      device, decomposed = 1
206      !p.background = 'ffffff'x
207      plot, [0], [0], xstyle = 5, ystyle = 5
208      device, decomposed = 0
209    endif
210    tv, arr, marginpix[0], marginpix[2], _EXTRA = ex
[2]211;
[226]212; axis and plot frame
[2]213;
[35]214; get the normalized position of the tv (we just done above)
215; to know where the frame should be drawn
216    poscadre = fltarr(4)
217    poscadre[0] = marginpix[0]/!d.x_size
218    poscadre[2] = 1.-marginpix[1]/!d.x_size
219    poscadre[1] = marginpix[2]/!d.y_size
220    poscadre[3] = 1-marginpix[3]/!d.y_size
221; Use plot to draw the frame
222    if NOT keyword_set(offset) then offset = [0, 0]
223    !p.position = poscadre
224    plot, [0], [0], /nodata, /noerase, position = poscadre, color = 0 $
225          , xstyle = 1, ystyle = 1, xticklen = 1, yticklen = 1 $
[69]226          , xrange = 1.*[0, nx]/cellsize-.5+offset[0] $
227          , yrange = 1.*[0, ny]/cellsize-.5+offset[1], _extra = ex
[35]228    xenvsauve = !x & yenvsauve = !y & penvsauve = !p
[2]229;
[226]230; draw the colorbar
[2]231;
[35]232    IF truemin ne truemax THEN BEGIN
233      if xyaspect ge 1 then $
234        posbar = [25./!d.x_size, 25./!d.y_size, 1-25./!d.x_size, 50./!d.y_size] $
235        ELSE posbar = [1-75./!d.x_size, 25./!d.y_size, 1-50./!d.x_size, 1-25./!d.y_size]
236    if keyword_set(nointerp) then BEGIN & truemin = 0 & truemax = ncolmax & endif
237      colorbar, min = truemin, max = truemax, division = 10, cb_color = 0, position = posbar $
238                , vertical = xyaspect lt 1, /right, BOTTOM = bottom, NCOLORS = ncolors, _EXTRA = ex
239    ENDIF
240;      !p.position = poscadre
[226]241  ENDIF ELSE BEGIN
[2]242;------------------------------------------------------------
[35]243; scrolling bar window case...
[2]244;------------------------------------------------------------
[35]245; for 24 bits colors, make sure thate the background color is the good one...
246    if !d.n_colors gt 256 then begin
247      window, /pixmap
248      device, decomposed = 1
249      !p.background = 'ffffff'x
250      plot, [0], [0]
251      device, decomposed = 0
252    endif
[142]253    slide_image, arr $          ; We draw it in a window with a scrolling bar
[35]254                 , xsize = nx, ysize = ny $
255                 , xvisible = round(.7*dimensions[0]) < (size(arr))[1] $
256                 , yvisible = round(.7*dimensions[1]) < (size(arr))[2], /register, congrid = 0, show_full = 0
257    return
[226]258  ENDELSE
[2]259;------------------------------------------------------------
[35]260; Use the mouse to get nice functionalities
[2]261;------------------------------------------------------------
[35]262; format to print the mouse position
263  CASE 1 OF
264    nx LT 10:fmt1 = '(i1)'
265    nx LT 100:fmt1 = '(i2)'
266    nx LT 1000:fmt1 = '(i3)'
267    nx LT 10000:fmt1 = '(i4)'
268    ELSE:fmt1 = ''
269  ENDCASE
270  CASE 1 OF
271    ny LT 10:fmt2 = '(i1)'
272    ny LT 100:fmt2 = '(i2)'
273    ny LT 1000:fmt2 = '(i3)'
274    ny LT 10000:fmt2 = '(i4)'
275    ELSE:fmt2 = ''
276  ENDCASE
277;
278  if NOT keyword_set(nouseinfos) then begin
279    print, 'left button  : mouse position and associated array value'
280    print, 'middle button: use it twice to define a zoom box'
281    print, 'right button : quit'
282  endif
283  cursor, x, y, /device, /down
284  x = x-marginpix[0] & x = 0 > floor(x/cellsize) < ((size(arr))[1]/cellsize-1)
285  y = y-marginpix[2] & y = 0 > floor(y/cellsize) < ((size(arr))[2]/cellsize-1)
286  while (!mouse.button ne 4) do BEGIN
287    case !mouse.button of
288      0:return
289      1:BEGIN                   ; get value
290        if x LE nx/cellsize AND y LE ny/cellsize then begin
291          print, '(x, y) = (' + string(x+offset[0], format = fmt1) $
292                 + ', ' + string(y+offset[1], format = fmt2) $
293                 + '), value = '+strtrim(float((reform(z2d))[x, y]), 1)
294        ENDIF
295        cursor, x, y, /device, /down
296        x = x-marginpix[0] & x = 0 > floor(x/cellsize) < ((size(arr))[1]/cellsize-1)
297        y = y-marginpix[2] & y = 0 > floor(y/cellsize) < ((size(arr))[2]/cellsize-1)
298      END
299      2:BEGIN                   ; zoom
300        cursor, x2, y2, /device, /down
301        x2 = x2-marginpix[0] & x2 =  0 > floor(x2/cellsize) < ((size(arr))[1]/cellsize-1)
302        y2 = y2-marginpix[2] & y2 =  0 > floor(y2/cellsize) < ((size(arr))[2]/cellsize-1)
303        x =  [x, x2] & x =  x[sort(x)]
304        y =  [y, y2] & y =  y[sort(y)]
305        IF keyword_set(OFFSET) THEN offset = [x[0], y[0]]+offset ELSE offset = [x[0], y[0]]
306        tvplus, z2d[x[0]:x[1], y[0]:y[1] ], WINDOW = window, MIN = min, MAX = max $
307                , MASK = mask, C_MASK = c_mask, C_NAN = c_nan, /NOUSEINFOS, OFFSET = OFFSET $
308                , NCOLORS = ncolors, NOINTERP = nointerp, BOTTOM = bottom, _EXTRA = ex
309        return
310      END
311      ELSE:
312    endcase
313  ENDWHILE
[2]314;------------------------------------------------------------
[35]315  !x = xenvsauve & !y = yenvsauve & !p = penvsauve
316  !x.range = 1.*[0, nx]/cellsize-.5+offset[0]
317  !y.range = 1.*[0, ny]/cellsize-.5+offset[1]
[2]318;------------------------------------------------------------
[35]319  return
[2]320end
Note: See TracBrowser for help on using the repository browser.