source: trunk/SRC/ToBeReviewed/PLOTS/DIVERS/meridienparallele.pro @ 325

Last change on this file since 325 was 325, checked in by pinsard, 17 years ago

modification of some headers (+some corrections) to prepare usage of the new idldoc

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 873 bytes
Line 
1;+
2;
3; @file_comments
4; Trace some meridians or parallel
5;
6; @categories
7; Graphics
8;
9; @param COUPE
10; The type of drawing we treat
11;
12; @uses
13; common.pro
14;
15; @history
16; Sebastien Masson (smasson\@lodyc.jussieu.fr)
17;                       11/12/98
18;
19; @version
20; $Id$
21;
22;-
23PRO meridienparallele, coupe
24;
25  compile_opt idl2, strictarrsubs
26;
27@common
28;------------------------------------------------------------
29   case coupe of
30      'xy':BEGIN
31         if lon1 lt 180 and lon2 gt 180 then $
32          plot, [180,180],[lat1,lat2],/noerase,color=0
33         if lon1 lt 0 and lon2 gt 0 then $
34          plot, [0,0],[lat1,lat2],/noerase,color=0
35         if lon1 lt 360 and lon2 gt 360 then $
36          plot, [360,360],[lat1,lat2],/noerase,color=0
37         if lat1 lt 0 and lat2 gt 0 then $
38          plot, [lon1,lon2],[0,0],/noerase,color=0
39      END
40
41   endcase
42
43   return
44end
Note: See TracBrowser for help on using the repository browser.