Stellarium 0.15.2
StelLocation.hpp
1 /*
2  * Copyright (C) 2008 Fabien Chereau
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
17  */
18 
19 #ifndef _STELLOCATION_HPP_
20 #define _STELLOCATION_HPP_
21 
22 #include <QString>
23 #include <QMetaType>
24 
28 {
29 public:
30  StelLocation() : longitude(0.f), latitude(0.f), altitude(0), bortleScaleIndex(2.f), population(0.f), role('X'), isUserLocation(true) {;}
31 
33  QString getID() const;
34 
35  bool isValid() const {return role!='!';}
36 
38  QString serializeToLine() const;
39 
41  QString name;
43  QString country;
45  QString state;
47  QString planetName;
49  float longitude;
51  float latitude;
53  int altitude;
57  QString landscapeKey;
71  QChar role;
76  // See LP:1662132
77  // GZ renamed to more clearly indicate these are IANA names.
78  QString ianaTimeZone;
79 
81  static StelLocation createFromLine(const QString& line);
82 
84  static float distanceDegrees(const float long1, const float lat1, const float long2, const float lat2);
85 
88 
89  static const int DEFAULT_BORTLE_SCALE_INDEX;
90 private:
91  //Register with Qt
92  static int metaTypeId;
93  static int initMetaType();
94 };
95 
96 Q_DECLARE_METATYPE(StelLocation)
97 
98 QDataStream& operator<<(QDataStream& out, const StelLocation& loc);
101 QDataStream& operator>>(QDataStream& in, StelLocation& loc);
102 
103 #endif // _STELLOCATION_HPP_
Store the informations for a location on a planet.
QString landscapeKey
A hint for associating a landscape to the location.
bool isUserLocation
Used privately by the StelLocationMgr.
float longitude
Longitude in degree.
QString country
English country name or empty string.
QString state
State/region name (useful if 2 locations of the same country have the same name)
QString planetName
English planet name.
int altitude
Altitude in meter.
QString serializeToLine() const
Output the location as a string ready to be stored in the user_location file.
QChar role
Location role code.
static StelLocation createFromLine(const QString &line)
Parse a location from a line serialization.
static float distanceDegrees(const float long1, const float lat1, const float long2, const float lat2)
Compute great-circle distance between two locations.
float bortleScaleIndex
Light pollution index following Bortle scale.
QString getID() const
Return a short string which can be used in a list view.
int population
Population in number of inhabitants.
QString ianaTimeZone
IANA identificator of time zone.
float latitude
Latitude in degree.
QString name
Location/city name.