Enroute Flight Navigation
A navigation app for VFR pilots
TripKit.h
1/***************************************************************************
2 * Copyright (C) 2023-2024 by Stefan Kebekus *
3 * stefan.kebekus@gmail.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20
21#pragma once
22
23#include <QGeoCoordinate>
24#include <QJsonArray>
25
26#include "fileFormats/ZipFile.h"
27#include "geomaps/VAC.h"
28
29namespace FileFormats
30{
31
47class TripKit : public DataFileAbstract
48{
49public:
56 TripKit(const QString& fileName);
57
58 // Destructor
59 ~TripKit() = default;
60
61
62
63 //
64 // Getter Methods
65 //
66
71 [[nodiscard]] QString name() const { return m_name; }
72
77 [[nodiscard]] qsizetype numCharts() const { return m_entries.size(); }
78
79
80
81 //
82 // Methods
83 //
84
100 [[nodiscard]] GeoMaps::VAC extract(const QString& directoryPath, qsizetype index);
101
102
103 //
104 // Static methods
105 //
106
111 [[nodiscard]] static QStringList mimeTypes() { return FileFormats::ZipFile::mimeTypes(); }
112
113private:
114 Q_DISABLE_COPY_MOVE(TripKit)
115
116 // Fills the list m_entries, returns an error message or an empty string.
117 QString readTripKitData();
118
119 // Check if the ZIP file contains image file with coordinates in the file name
120 void readVACs();
121
122 struct chartEntry
123 {
124 QString name; // Name of the chart e.g. "EDTF"
125 QString ending; // file path ending e.g. "webp" or "tiff". Will be in lower case, might be empty
126 QString path; // Path of the chart within the ZIP file
127 QGeoCoordinate topLeft;
128 QGeoCoordinate topRight;
129 QGeoCoordinate bottomLeft;
130 QGeoCoordinate bottomRight;
131 };
132 QList<TripKit::chartEntry> m_entries;
133
135 QString m_name;
136
137 // Some trip kits contain the content top-level, other trip kits hide the content ina top-level
138 // directory. This string is either empty or of the form "topLevelDirName/".
139 QString m_prefix;
140};
141
142} // namespace FileFormats
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition TripKit.h:111
qsizetype numCharts() const
Number of VACs in this trip kit.
Definition TripKit.h:77
GeoMaps::VAC extract(const QString &directoryPath, qsizetype index)
Extract visual approach chart.
TripKit(const QString &fileName)
Constructor.
QString name() const
Name of the trip kit, as specified in the JSON file.
Definition TripKit.h:71
ZIP Archive.
Definition ZipFile.h:36
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition ZipFile.h:92
Visual approach chart.
Definition VAC.h:45