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

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

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

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