Kstars

deepstardata.h
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 */
17struct 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};
A 16-byte structure that holds star data for really faint stars.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:04 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.