source: trunk/SRC/ToBeReviewed/WIDGET/AUTOUR_de_XXX/read_vermair.pro @ 367

Last change on this file since 367 was 327, checked in by pinsard, 16 years ago

modification of headers : mainly blanks around = sign for keywords in declaration of function and pro

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.4 KB
Line 
1;+
2;
3; @file_comments
4;
5; @categories
6;
7; @param NAME
8;
9; @param DEBUT
10;
11; @param FIN
12;
13; @param NOMEXP
14;
15; @keyword PARENT
16; same as DIALOG_PARENT de dialog_message.pro
17;
18; @keyword BOXZOOM
19; Vector indicating the geographic zone on which we want to cut the map.
20; If BOXZOOM has :
21;   1 element : The extraction is made on [lon1, lon2, lat1, lat2, 0.,boxzoom[0]]
22;   2 elements: The extraction is made on [lon1, lon2, lat1, lat2, boxzoom[0],boxzoom[1]]
23;   4 elements: The extraction is made on [Boxzoom, 0, max([gdept, gdepw])]
24;   5 elements: The extraction is made on [Boxzoom[0:3], 0, Boxzoom[4]]
25;   6 elements: The extraction is made on Boxzoom
26; Where lon1, lon2,lat1,lat2 are global variables defined at the last
27; <pro>domdef</pro> !
28;
29; @keyword _EXTRA
30; Used to pass keywords
31;
32; @returns
33;
34; @uses
35;
36; @restrictions
37;
38; @examples
39;
40; @history
41;
42; @version
43; $Id$
44;
45; @todo
46; seb
47;
48;-
49FUNCTION read_vermair, name, debut, fin, nomexp $
50                     , PARENT=parent, BOXZOOM=boxzoom, _EXTRA=ex
51;
52  compile_opt idl2, strictarrsubs
53;
54@common
55   if name EQ 'un' then name = 'vozocrtx'
56   if name EQ 'vn' then name = 'vomecrty'
57   if debut EQ fin then begin
58      res = lec(name,debut,nomexp, BOXZOOM=boxzoom, _EXTRA = ex)
59   ENDIF ELSE res = lect(name,debut,fin, nomexp, BOXZOOM=boxzoom, _EXTRA = ex)
60;------------------------------------------------------------
61   return, {tab:res, grille:vargrid, unite:'', experience:varexp, nom:varname}
62end
Note: See TracBrowser for help on using the repository browser.