-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathObservatoryInfo.cpp
66 lines (45 loc) · 1.3 KB
/
ObservatoryInfo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "StdAfx.h"
#include "observatoryinfo.h"
// The global database of observatories
CObservatoryInfo g_observatories;
CObservatoryInfo::CObservatoryInfo()
{
// Setting up the information about the observatories
int index = 0;
m_name[index].Format("bira_iasb"); // 0
++index;
m_name[index].Format("chalmers"); // 1
++index;
m_name[index].Format("ifm_geomar"); // 2
++index;
m_name[index].Format("igepn"); // 3
++index;
m_name[index].Format("ineter"); // 4
++index;
m_name[index].Format("ingeominas"); // 5
++index;
m_name[index].Format("ingv_ct"); // 6
++index;
m_name[index].Format("ingv_pa"); // 7
++index;
m_name[index].Format("insivumeh"); // 8
++index;
m_name[index].Format("ipgp"); // 9
++index;
m_name[index].Format("mit"); // 10
++index;
m_name[index].Format("ovg"); // 11
++index;
m_name[index].Format("ovsicori"); // 12
++index;
m_name[index].Format("snet"); // 13
++index;
m_name[index].Format("ucam"); // 14
++index;
m_name[index].Format("uhei"); // 15
++index;
m_name[index].Format("umbc"); // 16
++index;
m_name[index].Format("unam"); // 17
m_observatoryNum = index + 1;
}