source: trunk/SRC/Grid/n48gaussian.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:keywords set to Id
File size: 3.2 KB
Line 
1;+
2;
3; @file_comments
4; compute the latitudes of the n48 gaussian grid. See:
5; <a href="http://www.ecmwf.int/products/data/technical/gaussian/n48FIS.html">Gaussian 48</a>
6;
7; @categories
8; Grid
9;
10; @examples
11; IDL> lat=n48gaussian()
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 n48gaussian
25;
26  compile_opt idl2, strictarrsubs
27;
28;          latitude   reduced     regular  latitude
29;           number     points      points
30;          -------    -------     -------  --------
31  n48 = [     1,         20,        192,  88.57216, $
32              2,         25,        192,  86.72253, $
33              3,         36,        192,  84.86197, $
34              4,         40,        192,  82.99894, $
35              5,         45,        192,  81.13497, $
36              6,         50,        192,  79.27055, $
37              7,         60,        192,  77.40588, $
38              8,         60,        192,  75.54106, $
39              9,         72,        192,  73.67613, $
40              10,         75,        192,  71.81113, $
41              11,         80,        192,  69.94608, $
42              12,         90,        192,  68.08099, $
43              13,         96,        192,  66.21587, $
44              14,        100,        192,  64.35073, $
45              15,        108,        192,  62.48557, $
46              16,        120,        192,  60.62039, $
47              17,        120,        192,  58.75520, $
48              18,        120,        192,  56.89001, $
49              19,        128,        192,  55.02480, $
50              20,        135,        192,  53.15959, $
51              21,        144,        192,  51.29437, $
52              22,        144,        192,  49.42915, $
53              23,        160,        192,  47.56392, $
54              24,        160,        192,  45.69869, $
55              25,        160,        192,  43.83345, $
56              26,        160,        192,  41.96822, $
57              27,        160,        192,  40.10297, $
58              28,        180,        192,  38.23773, $
59              29,        180,        192,  36.37249, $
60              30,        180,        192,  34.50724, $
61              31,        180,        192,  32.64199, $
62              32,        180,        192,  30.77674, $
63              33,        192,        192,  28.91149, $
64              34,        192,        192,  27.04623, $
65              35,        192,        192,  25.18098, $
66              36,        192,        192,  23.31573, $
67              37,        192,        192,  21.45047, $
68              38,        192,        192,  19.58521, $
69              39,        192,        192,  17.71996, $
70              40,        192,        192,  15.85470, $
71              41,        192,        192,  13.98944, $
72              42,        192,        192,  12.12418, $
73              43,        192,        192,  10.25892, $
74              44,        192,        192,   8.39366, $
75              45,        192,        192,   6.52840, $
76              46,        192,        192,   4.66314, $
77              47,        192,        192,   2.79788, $
78              48,        192,        192,   0.93262]
79;
80  n48 = reform(n48, 4, 48, /over)
81  n48 = reform(n48[3, *], /over)
82  n48 = [n48, -reverse(n48)]
83
84  return, n48
85end
Note: See TracBrowser for help on using the repository browser.