Changeset 181


Ignore:
Timestamp:
09/15/06 10:24:36 (18 years ago)
Author:
smasson
Message:

bugfix tvplus + roms + xxx

Location:
trunk/SRC
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/Documentation/xmldoc/websaxo.html

    r180 r181  
    3737</div> 
    3838<div><span class="pubdate">svn Id of xml source file : $Id: 
    39 websaxo.xml 176 2006-09-13 14:17:41Z smasson $<br> 
     39websaxo.xml 180 2006-09-14 15:32:21Z smasson $<br> 
    4040<br></span></div> 
    4141<div> 
     
    8686<p>This page is a miror of <a href= 
    8787"http://forge.ipsl.jussieu.fr/saxo" target="_top">SAXO web page</a> 
    88 and allows you to browse IDL help pages in local.</p> 
     88and allows you to browse SAXO help pages in local.</p> 
    8989</div> 
    9090<div class="sect1" lang="en"> 
     
    189189<ul type="disc"> 
    190190<li> 
    191 <p>You like SAXO? please subscribe to SAXO <a href= 
     191<p>You like SAXO? Please subscribe to SAXO <a href= 
    192192"mailing.html?format=raw" target="_top">mailing lists</a> 
    193193(subscription and archives).</p> 
     
    195195<li> 
    196196<p><a href="http://forge.ipsl.jussieu.fr/saxo/report" target= 
    197 "_top">read</a> tickets. Because of abusive use of our tickets, 
     197"_top">Read</a> tickets. Because of abusive use of our tickets, 
    198198<a href="http://forge.ipsl.jussieu.fr/saxo/newticket" target= 
    199199"_top">sending tickets</a> is now limited to a registred login 
  • trunk/SRC/Documentation/xmldoc/websaxo.xml

    r180 r181  
    3535 
    3636  <note><para> 
    37 This page is a miror of <ulink url="http://forge.ipsl.jussieu.fr/saxo">SAXO web page</ulink> and allows you to browse IDL help pages in local. 
     37This page is a miror of <ulink url="http://forge.ipsl.jussieu.fr/saxo">SAXO web page</ulink> and allows you to browse SAXO help pages in local. 
    3838  </para></note> 
    3939 
     
    101101<listitem> 
    102102<para> 
    103 You like SAXO? please subscribe to SAXO <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">mailing lists</ulink> (subscription and archives). 
     103You like SAXO? Please subscribe to SAXO <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">mailing lists</ulink> (subscription and archives). 
    104104</para> 
    105105</listitem> 
    106106<listitem> 
    107107<para> 
    108 <ulink url="http://forge.ipsl.jussieu.fr/saxo/report">read</ulink> tickets. Because of abusive use of our tickets, <ulink url="http://forge.ipsl.jussieu.fr/saxo/newticket">sending tickets</ulink> is now limited to a registred login accessible if you subscribe to <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">SAXO mailing lists</ulink>. 
     108<ulink url="http://forge.ipsl.jussieu.fr/saxo/report">Read</ulink> tickets. Because of abusive use of our tickets, <ulink url="http://forge.ipsl.jussieu.fr/saxo/newticket">sending tickets</ulink> is now limited to a registred login accessible if you subscribe to <ulink url="../../saxo/browser/trunk/SRC/Documentation/xmldoc/mailing.html?format=raw">SAXO mailing lists</ulink>. 
    109109</para> 
    110110</listitem> 
  • trunk/SRC/ToBeReviewed/LECTURE/read_ncdf.pro

    r174 r181  
    561561      ncdf_attget, cdfid, 'hc', hc, /global 
    562562; look for all variables names 
    563       allvarnames = strarr(varcontient.nvars) 
    564       FOR i = 0, varcontient.nvars-1 DO BEGIN 
     563      allvarnames = strarr(contient.nvars) 
     564      FOR i = 0, contient.nvars-1 DO BEGIN 
    565565        tmp = ncdf_varinq( cdfid, i) 
    566566        allvarnames[i] = tmp.name 
     
    568568      CASE 1 OF 
    569569        keyword_set(hfilename):  $ 
    570            hroms = read_ncdf('h', 0, 0, FILENAME = hfile $ 
     570           hroms = read_ncdf('h', 0, 0, FILENAME = hfilename $ 
    571571                             , /TIMESTEP, /NOSTRUCT, CONT_NOFILL = CONT_NOFILL $ 
    572572                             , GRID = vargrid, /CALLITSELF, _EXTRA = ex) 
     
    583583                            , /TIMESTEP, /NOSTRUCT, CONT_NOFILL = CONT_NOFILL $ 
    584584                            , GRID = vargrid, /CALLITSELF, _EXTRA = ex) 
    585         (where(allvarnames EQ 'h'))[0] NE -1: $ 
     585        (where(allvarnames EQ 'zeta'))[0] NE -1: $ 
    586586           zeta = read_ncdf('zeta', firsttps, lasttps, FILENAME = filename $ 
    587587                            , /TIMESTEP, /NOSTRUCT, CONT_NOFILL = CONT_NOFILL $ 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltv.pro

    r163 r181  
    127127;------------------------------------------------------------ 
    128128  determineminmax, z2d, msk, truemin, truemax, MININ = min, MAXIN = max, NAN = nan 
     129  z2d = min > temporary(z2d) < max 
    129130;------------------------------------------------------------ 
    130131; apply other keywords (nointerp, c_nan, c_mask)  
     
    132133  IF NOT keyword_set(nointerp) THEN BEGIN 
    133134; interpolation between bottom and bottom+ncolors-1 
    134     m = 1.*(ncolors-1)/(truemax-truemin) 
    135     p = bottom - 1.*truemin*m 
     135    m = 1.*(ncolors-1)/(max-min) 
     136    p = bottom - 1.*min*m 
    136137    z2d = m * temporary(z2d) + p 
    137138  ENDIF 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/loadgrid.pro

    r150 r181  
    6464; add the arguments and keywords if necessary 
    6565  IF n_elements(meshfile) GT 1 AND strmid(listing, 0, 1) NE '@' THEN BEGIN  
    66     FOR i = 1+(filepro NE 'NOT FOUND'), n_elements(meshfile)-1 DO listing = listing + ', ' + meshfile[i] 
     66    FOR i = 1, n_elements(meshfile)-1 DO BEGIN 
     67      IF strpos(meshfile[i], '.') NE -1 THEN str = isnumber(meshfile[i]) ELSE str = createfunc('n_elements('+meshfile[i]+')') 
     68      IF str EQ 0 THEN listing = listing + ', ''' + meshfile[i] + '''' ELSE listing = listing + ', ' + meshfile[i] 
     69    ENDFOR 
    6770  ENDIF 
    6871 
    6972  IF strmid(listing, 0, 1) NE '@' THEN listing = listing + ', strcalling = ''' + meshfilein + ''', _extra = ex' 
     73 
     74print, listing 
     75 
    7076 
    7177  createpro, listing, filename = myuniquetmpdir +'for_createpro.pro', _extra = ex 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/scanfile.pro

    r172 r181  
    231231        dummy = report('the file '+fullname+' has no time axis.!C we create a fake calendar ...') 
    232232        fakecal = 1 
    233         time = date0fk + lindgen(jpt) 
     233        time = date0fk + lindgen(1>jpt) 
    234234      END 
    235235      invar.natts EQ 0:BEGIN  
    236236        dummy = report('the variable '+invar.name+' has no attribut.!C we create a fake calendar ...') 
    237237        fakecal = 1 
    238         time = date0fk + lindgen(jpt) 
     238        time = date0fk + lindgen(1>jpt) 
    239239      END 
    240240      ELSE:BEGIN 
     
    247247          dummy = report('Attribut ''units'' not found for the variable '+invar.name+'!C we create a fake calendar ...') 
    248248          fakecal = 1 
    249           time = date0fk + lindgen(jpt) 
     249          time = date0fk + lindgen(1>jpt) 
    250250        ENDIF ELSE BEGIN  
    251251; we read the time axis 
     
    271271            dummy = report('attribut units of time has not the good format: [^ ]* since ([0-9]){4}-([0-9]){2}-([0-9]){2}.*') 
    272272            fakecal = 1 
    273             time = date0fk + lindgen(jpt) 
     273            time = date0fk + lindgen(1>jpt) 
    274274          ENDIF ELSE BEGIN  
    275275            debut = str_sep(mots[2], '-') 
     
    325325            IF max(histogram([long(time-time[0])])) GT 1 THEN fakecal = 1 ELSE fakecal = 0 
    326326            date0fk = date2jul(19000101) 
    327             IF keyword_set(fakecal) THEN time = date0fk+lindgen(jpt) $ 
     327            IF keyword_set(fakecal) THEN time = date0fk+lindgen(1>jpt) $ 
    328328            ELSE time = long(time) 
    329329; 
  • trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/selectfile.pro

    r157 r181  
    258258  based = widget_base(base, /row, /align_center, uname = 'arg base', sensitive = 0) 
    259259  dummyid = widget_label(based, value = 'procedure arguments') 
    260   agrbase = widget_text(based, value = '', uvalue = {name:'argtxt'} $ 
     260  argbase = widget_text(based, value = '', uvalue = {name:'argtxt'} $ 
    261261                        , uname = 'argtxt', xsize = 45, /EDITABLE) 
    262262; keyword informations 
Note: See TracChangeset for help on using the changeset viewer.