source: trunk/SRC/Grid/n80gaussian.pro @ 103

Last change on this file since 103 was 103, checked in by pinsard, 18 years ago

start to modify headers of Grid .pro files for better idldoc output

  • Property svn:executable set to *
File size: 4.9 KB
Line 
1;+
2;
3; @file_comments compute the latitudes of the n80 gaussian grid. See:
4; http://www.ecmwf.int/products/data/technical/gaussian/n80FIS.html
5;
6; @categories grid
7;
8; @examples
9; IDL> lat=n80gaussian()
10;
11; @returns a 1d array
12;
13; @history
14;      Sebastien Masson (smasson\@lodyc.jussieu.fr)
15;      June 2004
16;-
17;
18FUNCTION n80gaussian
19;
20;          latitude   reduced     regular  latitude
21;           number     points      points
22;          -------    -------     -------  --------
23  n80 = [     1,         18,        320,  89.14152, $
24              2,         25,        320,  88.02943, $
25              3,         36,        320,  86.91077, $
26              4,         40,        320,  85.79063, $
27              5,         45,        320,  84.66992, $
28              6,         54,        320,  83.54895, $
29              7,         60,        320,  82.42782, $
30              8,         64,        320,  81.30659, $
31              9,         72,        320,  80.18531, $
32              10,         72,        320,  79.06398, $
33              11,         80,        320,  77.94262, $
34              12,         90,        320,  76.82124, $
35              13,         96,        320,  75.69984, $
36              14,        100,        320,  74.57843, $
37              15,        108,        320,  73.45701, $
38              16,        120,        320,  72.33558, $
39              17,        120,        320,  71.21414, $
40              18,        128,        320,  70.09269, $
41              19,        135,        320,  68.97124, $
42              20,        144,        320,  67.84978, $
43              21,        144,        320,  66.72833, $
44              22,        150,        320,  65.60686, $
45              23,        160,        320,  64.48540, $
46              24,        160,        320,  63.36393, $
47              25,        180,        320,  62.24246, $
48              26,        180,        320,  61.12099, $
49              27,        180,        320,  59.99952, $
50              28,        192,        320,  58.87804, $
51              29,        192,        320,  57.75657, $
52              30,        200,        320,  56.63509, $
53              31,        200,        320,  55.51361, $
54              32,        216,        320,  54.39214, $
55              33,        216,        320,  53.27066, $
56              34,        216,        320,  52.14917, $
57              35,        225,        320,  51.02769, $
58              36,        225,        320,  49.90621, $
59              37,        240,        320,  48.78473, $
60              38,        240,        320,  47.66325, $
61              39,        240,        320,  46.54176, $
62              40,        256,        320,  45.42028, $
63              41,        256,        320,  44.29879, $
64              42,        256,        320,  43.17731, $
65              43,        256,        320,  42.05582, $
66              44,        288,        320,  40.93434, $
67              45,        288,        320,  39.81285, $
68              46,        288,        320,  38.69137, $
69              47,        288,        320,  37.56988, $
70              48,        288,        320,  36.44839, $
71              49,        288,        320,  35.32691, $
72              50,        288,        320,  34.20542, $
73              51,        288,        320,  33.08393, $
74              52,        288,        320,  31.96244, $
75              53,        300,        320,  30.84096, $
76              54,        300,        320,  29.71947, $
77              55,        300,        320,  28.59798, $
78              56,        300,        320,  27.47649, $
79              57,        320,        320,  26.35500, $
80              58,        320,        320,  25.23351, $
81              59,        320,        320,  24.11203, $
82              60,        320,        320,  22.99054, $
83              61,        320,        320,  21.86905, $
84              62,        320,        320,  20.74756, $
85              63,        320,        320,  19.62607, $
86              64,        320,        320,  18.50458, $
87              65,        320,        320,  17.38309, $
88              66,        320,        320,  16.26160, $
89              67,        320,        320,  15.14011, $
90              68,        320,        320,  14.01862, $
91              69,        320,        320,  12.89713, $
92              70,        320,        320,  11.77564, $
93              71,        320,        320,  10.65415, $
94              72,        320,        320,   9.53266, $
95              73,        320,        320,   8.41117, $
96              74,        320,        320,   7.28968, $
97              75,        320,        320,   6.16819, $
98              76,        320,        320,   5.04670, $
99              77,        320,        320,   3.92521, $
100              78,        320,        320,   2.80372, $
101              79,        320,        320,   1.68223, $
102              80,        320,        320,   0.56074]
103;
104  n80 = reform(n80, 4, 80, /over)
105  n80 = reform(n80[3, *], /over)
106  n80 = [n80, -reverse(n80)]
107
108  return, n80
109end
Note: See TracBrowser for help on using the repository browser.