File indexing completed on 2024-03-24 15:17:51

0001 /*
0002     SPDX-FileCopyrightText: 2008 Akarsh Simha <akarshsimha@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <QtGlobal>
0010 
0011 /**
0012  * @short  A 16-byte structure that holds star data for really faint stars.
0013  *
0014  * @author Akarsh Simha
0015  * @version 1.0
0016  */
0017 struct DeepStarData
0018 {
0019     qint32 RA { 0 };  /**< Raw signed 32-bit RA value. Needs to be multiplied by the scale (1e6) */
0020     qint32 Dec { 0 }; /**< Raw signed 32-bit DE value. Needs to be multiplied by the scale (1e6) */
0021     qint16 dRA { 0 };
0022     qint16 dDec { 0 };
0023     qint16 B { 0 };
0024     qint16 V { 0 };
0025 };