Kstars

astrometryparser.h
1/*
2 SPDX-FileCopyrightText: 2012 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include <QObject>
10
11namespace Ekos
12{
13class Align;
14
15/**
16 * @class AstrometryParser
17 * AstrometryParser is an interface for online and offline astrometry parsers.
18 *
19 * @author Jasem Mutlaq
20 */
21
23{
25
26 public:
28 virtual ~AstrometryParser() = default;
29
30 virtual void setAlign(Align *align) = 0;
31 virtual bool init() = 0;
32 virtual void verifyIndexFiles(double fov_x, double fov_y) = 0;
33 virtual bool startSolver(const QString &filename, const QStringList &args, bool generated = true) = 0;
34 virtual bool stopSolver() = 0;
35
36 signals:
37 void solverFinished(double orientation, double ra, double dec, double pixscale, bool eastToTheRight);
38 void solverFailed();
39};
40}
Align class handles plate-solving and polar alignment measurement and correction using astrometry....
Definition align.h:74
AstrometryParser is an interface for online and offline astrometry parsers.
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:02 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.