1 /*
2     SPDX-FileCopyrightText: 2008 Akarsh Simha <akarshsimha@gmail.com>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include <QtGlobal>
10 
11 /**
12  * @short  A 16-byte structure that holds star data for really faint stars.
13  *
14  * @author Akarsh Simha
15  * @version 1.0
16  */
17 struct DeepStarData
18 {
19     qint32 RA { 0 };  /**< Raw signed 32-bit RA value. Needs to be multiplied by the scale (1e6) */
20     qint32 Dec { 0 }; /**< Raw signed 32-bit DE value. Needs to be multiplied by the scale (1e6) */
21     qint16 dRA { 0 };
22     qint16 dDec { 0 };
23     qint16 B { 0 };
24     qint16 V { 0 };
25 };
26