Ignore:
Timestamp:
09/25/07 12:51:30 (17 years ago)
Author:
pinsard
Message:

typo

Location:
trunk/SRC/ToBeReviewed/PLOTS
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/pltbase.pro

    r262 r296  
    33; @file_comments 
    44; Overlayer contour to trace a field which can be mask. 
    5 ; Elementary brick of plt, pltz et pltt. 
     5; Elementary brick of <pro>plt</pro>, <pro>pltz</pro> and <pro>pltt</pro>. 
    66; 
    77; @categories 
     
    6161; 
    6262; @keyword FORPLT 
    63 ; To activate if we want that the drawing of coast be realized by tracecote rather than tracemask. 
     63; To activate if we want that the drawing of coast be realized by <pro>tracecote</pro> rather than <pro>tracemask</pro>. 
    6464; 
    6565; @keyword I_COLORS {type=vector} 
     
    8787; 
    8888; @keyword CONTOUR 
    89 ; To be used since plt, pltz or pltt. (Have a look on these routines). 
     89; To be used since <pro>plt</pro>, <pro>pltz</pro> or <pro>pltt</pro>. (Have a look on these routines). 
    9090; 
    9191; @keyword _EXTRA 
     
    9696; 
    9797; @restrictions 
    98 ; In the case of z2d, x and y are arrays of same size, we hate to put them as vectors: z2d[*], x[*], y[*]. 
     98; In the case of z2d, x and y are arrays of same size, we have to put them as vectors: z2d[*], x[*], y[*]. 
    9999; 
    100100; @history 
     
    102102; ???? 
    103103; 8/2/2000 check if the tri array is not equal to 
    104 ; -1. allow contour with out using a triangulation. 
     104; -1. allow contour without using a triangulation. 
    105105; 
    106106; @version 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/sbar_plot.pro

    r295 r296  
    4949; 
    5050@common 
    51 ; 1) I reinitialize the graphic environment (variables !x, !y et !p): 
     51; 1) I reinitialize the graphic environment (variables !x, !y and !p): 
    5252   if NOT keyword_set(NOREINITPLT) then reinitplt, _extra = ex 
    5353; 2) I place the drawing on the screen like on the postscript 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/scontour.pro

    r295 r296  
    3636; 
    3737@common 
    38 ; 1) I reinitialize the graphic environment (variables !x, !y et !p): 
     38; 1) I reinitialize the graphic environment (variables !x, !y and !p): 
    3939  if NOT keyword_set(NOREINITPLT) then reinitplt, _extra = ex 
    4040; 2) i put the drawing on the screen like on the postscript 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/splot.pro

    r295 r296  
    4040; 
    4141@common 
    42 ; 1) I reinitialize the graphic environment (les variables !x, !y et !p): 
     42; 1) I reinitialize the graphic environment (variables !x, !y and !p): 
    4343   if NOT keyword_set(NOREINITPLT) then reinitplt, _extra = ex 
    4444; 2) i put the drawing on the screen like on the postscript 
  • trunk/SRC/ToBeReviewed/PLOTS/DESSINE/tvplus.pro

    r260 r296  
    104104  endif 
    105105;------------------------------------------------------------ 
    106 ; def of ncolmax, bottom, topcol et ncolors 
     106; def of ncolmax, bottom, topcol and ncolors 
    107107;------------------------------------------------------------ 
    108108  ncolmax = !d.n_colors < 256 
     
    201201    window, window, xsize = nx+marginpix[0]+marginpix[1] $ 
    202202            , ysize = ny+marginpix[2]+marginpix[3] 
    203 ; for 24 bits colors, make sure thate the background color is the good one... 
     203; for 24 bits colors, make sure that the background color is the good one... 
    204204    if !d.n_colors gt 256 then BEGIN 
    205205      device, decomposed = 1 
     
    243243; scrolling bar window case... 
    244244;------------------------------------------------------------ 
    245 ; for 24 bits colors, make sure thate the background color is the good one... 
     245; for 24 bits colors, make sure that the background color is the good one... 
    246246    if !d.n_colors gt 256 then begin 
    247247      window, /pixmap 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/checkfield.pro

    r238 r296  
    136136; 
    137137; @file_comments 
    138 ; In input of plt, pltz, pltt and plt1d, it check that the field give 
     138; In input of <pro>plt</pro>, <pro>pltz</pro>, <pro>pltt</pro> and <pro>plt1d</pro>, it check that the field give 
    139139; a size compatible with the domain and, if needed, average to give us 
    140140; a 2d array if we make a plot of the type: 'xy', 'xz', 'xt', 'yz', 'yt' 
  • trunk/SRC/ToBeReviewed/PLOTS/DIVERS/placedessin.pro

    r259 r296  
    225225      AND !d.name ne 'PS' AND !d.name ne 'Z':BEGIN 
    226226      if not keyword_set(window) then window = 0 
    227 ; For the using of \@ps,\@oups et de \@vzoom 
     227; For the using of \@ps,\@oups and \@vzoom 
    228228      if lmgr(/demo) EQ 0 then BEGIN ; Are we in the demo mode?? 
    229229        if !journal NE 0 then journal ; We close the journal if it is open 
  • trunk/SRC/ToBeReviewed/PLOTS/VECTEUR/ajoutvect.pro

    r241 r296  
    149149      endif 
    150150;----------------------------------------------------------- 
    151 ; We mask u and v et v the long of coasts (the place where we 
     151; We mask u and v the long of coasts (the place where we 
    152152; can not calculate the average) 
    153153;----------------------------------------------------------- 
  • trunk/SRC/ToBeReviewed/PLOTS/axe.pro

    r262 r296  
    22; 
    33; @file_comments 
    4 ; Manage axes for the different drawings created by plt, 
    5 ; pltz and pltt 
     4; Manage axes for the different drawings created by  
     5; <pro>plt</pro>, <pro>pltz</pro> and <pro>pltt</pro> 
    66; 
    77; @categories 
Note: See TracChangeset for help on using the changeset viewer.