-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAusgewertete_Messung_Nadir.h
77 lines (74 loc) · 2.58 KB
/
Ausgewertete_Messung_Nadir.h
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
67
68
69
70
71
72
73
74
75
76
77
/*
* Ausgewertete_Messung_Nadir.h
*
* Copyright (c) 2011-2017 Stefan Bender
* Copyright (c) 2010-2011 Martin Langowski
*
* Initial version created on: 30.04.2010
* Author: Martin Langowski
*
* This file is part of scia_retrieval_2d
*
* scia_retrieval_2d is free software: you can redistribute it or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
* See accompanying COPYING.GPL2 file or http://www.gnu.org/licenses/gpl-2.0.html.
*/
#ifndef AUSGEWERTETE_MESSUNG_NADIR_HH_
#define AUSGEWERTETE_MESSUNG_NADIR_HH_
#include <string>
#include <cstdio>
#include <iostream>
class Ausgewertete_Messung_Nadir
{
public:
inline void Ausgabe_auf_Bildschirm();
// Membervariablen
//Ergebnisse
double m_Zeilendichte;
double m_Fehler_Zeilendichten;
// Zwischenergebnisse
double m_Deklination;
double m_Sonnen_Longitude;
// Zusatzinformationen
double m_Wellenlaenge; //Übergangswellenlänge
double m_Wellenlaenge_abs; //Absorptionswellenlänge
// Datum
int m_Jahr;
int m_Monat;
int m_Tag;
int m_Stunde;
int m_Minute;
// Geolokationen
double m_Latitude_Sat;
double m_Longitude_Sat;
double m_Hoehe_Sat;
double m_Latitude_Ground;
double m_Longitude_Ground;
double m_Erdradius;
};
inline void Ausgewertete_Messung_Nadir::Ausgabe_auf_Bildschirm()
{
// Ergebnisse
std::cout << "m_Zeilendichte : " << "\t" << m_Zeilendichte << std::endl;
std::cout << "m_Fehler_Zeilendichten : " << "\t" << m_Fehler_Zeilendichten << std::endl;
// Zwischenergebnisse
std::cout << "m_Deklination : " << "\t" << m_Deklination << std::endl;
std::cout << "m_Sonnen_Longitude : " << "\t" << m_Sonnen_Longitude << std::endl;
// Zusatzinfo
std::cout << "Wellenlänge des Übergangs: " << "\t" << m_Wellenlaenge << std::endl;
// Datum
std::cout << "m_Jahr: " << "\t" << m_Jahr << std::endl;
std::cout << "m_Monat: " << "\t" << m_Monat << std::endl;
std::cout << "m_Tag: " << "\t" << m_Tag << std::endl;
std::cout << "m_Stunde: " << "\t" << m_Stunde << std::endl;
std::cout << "m_Minute: " << "\t" << m_Minute << std::endl;
// Geolokationen
std::cout << "m_Latitude_Sat: " << "\t" << m_Latitude_Sat << std::endl;
std::cout << "m_Longitude_Sat: " << "\t" << m_Longitude_Sat << std::endl;
std::cout << "m_Hoehe_Sat: " << "\t" << m_Hoehe_Sat << std::endl;
std::cout << "m_Latitude_Ground: " << "\t" << m_Latitude_Ground << std::endl;
std::cout << "m_Longitude_Ground: " << "\t" << m_Longitude_Ground << std::endl;
std::cout << "m_Erdradius: " << "\t" << m_Erdradius << std::endl;
}
#endif /* AUSGEWERTETE_MESSUNG_NADIR_HH_ */