Ignore:
Timestamp:
08/22/07 16:30:29 (17 years ago)
Author:
pinsard
Message:

typo in some pro files

File:
1 edited

Legend:

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

    r254 r264  
    22; 
    33; @file_comments 
    4 ; Draw horizontal graph (map) with CONTOUR procedure 
     4; Draw horizontal graph (map) with <proidl>CONTOUR</proidl> procedure 
    55; 
    66; @categories 
     
    3535; 6 elements: The extraction is made on Boxzoom 
    3636; 
    37 ; Where lon1, lon2,lat1,lat2 are global variables defined at the last  
     37; Where lon1, lon2, lat1, lat2 are global variables defined at the last 
    3838; <pro>domdef</pro> ! 
    3939; 
    4040; @keyword REALCONT 
    41 ; Allow to draw continents defined in IDL. REALCONT can have 2 form: 
     41; Allow to draw continents defined in IDL. REALCONT can have 2 forms: 
    4242;           /REALCONT: we draw continents in place of the mask 
    4343;           REALCONT=2 we draw continent's contour over the mask (this allows 
     
    6666; 
    6767; @keyword CONTNLEVEL {default=20} 
    68 ; When  CONTOUR is activated, it is the number of contours 
     68; When CONTOUR is activated, it is the number of contours 
    6969; traced by a trait for drawing (active if 
    7070; CONTLABEL=0) 
     
    7373; If we want to trace contours of a different field than the one 
    7474; whose we have the colored drawing (by example E-P in color and QSR in contours). 
    75 ; It must be a field respecting same characteristics than the argument number one of plt. 
    76 ; 
    77 ; @keyword GRIDTYPE 'U','T','V','W' or 'F' to specify possibly the grid on which the field is joined. 
     75; It must be a field respecting same characteristics than the argument number one of <pro>plt</pro>. 
     76; 
     77; @keyword GRIDTYPE 
     78; 'U','T','V','W' or 'F' 
     79; to specify possibly the grid on which the field is joined. 
    7880; Comment: In this case, we should use a structure like field. 
    7981; 
    8082; @keyword INTERVALLE 
    81 ; Value of an internal between to isoline. If there is none specified min, 
    82 ; we choose a min contour which goes well with the specified interval!. If this keyword is not 
    83 ; specified, we trace 20 isoline from the min to the max. Comment: When CONTOUR is activated, 
    84 ; INTERVALLE only specify the interval between 2 colored isoline. To specify the interval 
     83; Value of an interval between to isoline. If there is none specified min, 
     84; we choose a min contour which goes well with the specified interval! 
     85; If this keyword is not specified, we trace 20 isolines from the min 
     86; to the max. 
     87; Comment: When CONTOUR is activated, INTERVALLE only specify the interval 
     88; between 2 colored isolines. To specify the interval 
    8589; between 2 isolines traced by a trait, use CONTINTERVALLE. 
    8690; 
     
    98102; We use it when we want to do a projection. 
    99103; This keyword can be of two types: 
    100 ;     MAP=[P0lat,P0lon,Rot]. For the description of these 3 values (see the online help of MAP_SET). 
     104;     MAP=[P0lat,P0lon,Rot]. For the description of these 3 values (see the online help of <proidl>MAP_SET</proidl>). 
    101105;     /MAP: In this case, map is automatically calculated have the value: 
    102106;          map = [0, (lon1+lon2)/2., 0] 
    103107; Comment: A good way to choose the type of the projection we want to do is to have a look at IDL demo: 
    104108; IDL> demo 
    105 ; Then choose earth sciences and  mapping. 
    106 ; Comment2: By default it is a cylindrical projection which is effectuated (with or without the keyword map). 
     109; Then choose "earth sciences and mappinA"g 
     110; Comment2: By default it is a cylindrical projection which is done (with or without the keyword map). 
    107111; If we want an other projection, MAP must be activated and we have to add the keyword: /nom_projection. 
    108112; For example, for a polar projection centered on the south pole: 
     
    111115; 
    112116; @keyword LABMAP {default=labmap=1} 
    113 ; Corresponds to label keywords of map_set. 
     117; Corresponds to LABEL keyword of <proidl>MAP_SET</proidl>. 
    114118; 
    115119; @keyword MAXIN 
     
    124128; 
    125129; @keyword NLEVEL {default=20} 
    126 ; Number of contour to draw by default =20. active if 
    127 ; LABEL=0 or is not specified. 
     130; Number of contour to draw. Active if LABEL=0 or is not specified. 
    128131; 
    129132; @keyword NOFILL 
     
    152155; @keyword VECTEUR {type=struct} 
    153156; It is a structure composed by 2 elements containing the 2 fields U 
    154 ; and V of values of the zonal and meridian component of the vector of the fields 
     157; and V of values of the zonal and meridian components of the vector of the fields 
    155158; to draw. These fields can be an array or a structure. 
    156159;       For example: vecteur={matriceu:lec('unsurface'),matricev:lec('vnsurface')} 
     
    271274  IF  strupcase(vargrid) EQ 'W' THEN profond = firstzw NE 0 $ 
    272275  ELSE profond = firstzt NE 0 
    273 ; do we need to extract now the triangulation that will be use for 
     276; do we need to extract now the triangulation that will be used for 
    274277; contouring the field? 
    275278  if keyword_set(profond) $ 
Note: See TracChangeset for help on using the changeset viewer.