Ignore:
Timestamp:
05/23/06 15:45:47 (18 years ago)
Author:
smasson
Message:

debug xxx and cie + clean data file + rm perldoc_idl

Location:
trunk/SRC/ToBeReviewed/PLOTS/DESSINE
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/.idlwave_catalog

    r69 r74  
    22;; IDLWAVE catalog for library saxo 
    33;; Automatically Generated -- do not edit. 
    4 ;; Created by idlwave_catalog on Thu May  4 08:42:55 2006 
     4;; Created by idlwave_catalog on Tue May 23 15:31:07 2006 
    55;; 
    66(setq idlwave-library-catalog-libname "saxo") 
     
    1313   ("pltt" pro nil (lib "pltt.pro" nil "saxo") "%s, tab, giventype, givenmin, givenmax, datmin, datmax" (nil ("_extra") ("BOXZOOM") ("COL1D") ("CONTINTERVALLE") ("CONTLABEL") ("CONTMAX") ("CONTMIN") ("CONTNLEVEL") ("CONTOUR") ("ENDPOINTS") ("EXCHANGE_XY") ("FILTER") ("INTERVALLE") ("INV") ("LABEL") ("MAXIN") ("MININ") ("NLEVEL") ("OV1D") ("OVERPLOT") ("REPEAT_C") ("STRICTFILL") ("STY1D") ("STYLE") ("TREND_TYPE") ("TT") ("TYPEIN") ("XT") ("YT") ("ZT"))) 
    1414   ("pltz" pro nil (lib "pltz.pro" nil "saxo") "%s, tab, giventype, givenmin, givenmax" (nil ("_EXTRA") ("BOXZOOM") ("CONTINTERVALLE") ("CONTLABEL") ("CONTMAX") ("CONTMIN") ("CONTNLEVEL") ("CONTOUR") ("ENDPOINTS") ("FILLXDIR") ("INTERVALLE") ("INV") ("LABEL") ("MASKFILL") ("MAXIN") ("MININ") ("NLEVEL") ("NOTRI") ("OVERPLOT") ("REALSECTION") ("SIN") ("STRICTFILL") ("STYLE") ("TYPEIN") ("USETRI") ("WDEPTH") ("XZ") ("YZ") ("ZOOM") ("ZRATIO"))) 
    15    ("sbar_plot" pro nil (lib "sbar_plot.pro" nil "saxo") "%s, Values" (nil ("_extra") ("COLOR") ("NOREINITPLT"))) 
     15   ("sbar_plot" pro nil (lib "sbar_plot.pro" nil "saxo") "%s, Values" (nil ("_extra") ("COLORS") ("NOREINITPLT"))) 
    1616   ("scontour" pro nil (lib "scontour.pro" nil "saxo") "%s, x, y, z" (nil ("_EXTRA") ("NOREINITPLT"))) 
    1717   ("splot" pro nil (lib "splot.pro" nil "saxo") "%s, x, y" (nil ("_EXTRA") ("NOREINITPLT"))) 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/plt1d.pro

    r35 r74  
    265265    'y': begin 
    266266      yy = z1d 
    267       if (size(gphi))[0] EQ 1 then xx = gphi ELSE xx = reform(gphi[0, *]) 
     267      IF (size(gphi))[0] EQ 1 then xx = gphi ELSE BEGIN  
     268        IF keyword_set(key_irregular) THEN BEGIN  
     269          cln = (where(gphi EQ max(gphi)))[0] 
     270          xx = reform(gphi[cln MOD nx, *]) 
     271        ENDIF ELSE xx = reform(gphi[0, *]) 
     272      ENDELSE 
    268273      if keyword_set(sin) then xx = sin(!pi/180.*xx) 
    269274      min0 = lat1 & max0 = lat2 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltt.pro

    r69 r74  
    499499            end 
    500500            type eq 'yt' : begin 
    501                IF (size(gphi))[0] EQ 1 then yy = gphi ELSE yy = reform(gphi[0, *]) 
     501               IF (size(gphi))[0] EQ 1 then yy = gphi ELSE BEGIN  
     502                 IF keyword_set(key_irregular) THEN BEGIN  
     503                   cln = (where(gphi EQ max(gphi)))[0] 
     504                   yy = reform(gphi[cln MOD nx, *]) 
     505                 ENDIF ELSE yy = reform(gphi[0, *]) 
     506               ENDELSE 
    502507               xx = temps-tempsmin 
    503508               z2d = transpose(z2d) 
Note: See TracChangeset for help on using the changeset viewer.