Enroute Flight Navigation
A navigation app for VFR pilots
GeoTIFF.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 <QGeoRectangle>
24#include <QPointF>
25#include <QVariant>
26
27#include "TIFF.h"
28
29namespace FileFormats
30{
31
42
43class GeoTIFF : public TIFF
44{
45public:
53 GeoTIFF(const QString& fileName);
54
63 GeoTIFF(QIODevice& device);
64
65
66 //
67 // Getter Methods
68 //
69
74 [[nodiscard]] QGeoCoordinate bottomLeft() const { return m_bottomLeft; }
75
80 [[nodiscard]] QGeoCoordinate bottomRight() const { return m_bottomRight; }
81
86 [[nodiscard]] QString name() const { return m_name; }
87
92 [[nodiscard]] QGeoCoordinate topLeft() const { return m_topLeft; }
93
98 [[nodiscard]] QGeoCoordinate topRight() const { return m_topRight; }
99
100
101 //
102 // Static methods
103 //
104
109 [[nodiscard]] static QStringList mimeTypes() { return FileFormats::TIFF::mimeTypes(); }
110
111
112private:
113 struct Tiepoint
114 {
115 QPointF rasterCoordinate;
116 QGeoCoordinate geoCoordinate;
117 };
118
119 /* This method computes a 4x4 tranformation matrix that maps pixel coordinates to
120 * geographic coordinates.
121 *
122 * 1. First, the method uses readTransformation() to check if a matrix is specified
123 * within the GeoTIFF file. If so, that matrix is returned.
124 *
125 * 2. Second, the method uses readTiepoints() and readPixelSize() to generate a matrix.
126 * It assume at this point that the transformation is a simple scaling/translation,
127 * and does not involve any rotation orr shearing. If sufficient data is present to
128 * generate a transformation matrix, that matrix is returned.
129 *
130 * 3. An empty list is returned.
131 */
132 [[nodiscard]] static QList<double> getTransformation(const QMap<quint16, QVariantList> &TIFFFields);
133
134 /* This method interprets the TIFFFields and looks for the tag 33922, which is used to
135 * specify the tiepoints. Returns a list with the data retrieved, or an empty
136 * list on failure.
137 *
138 * An expection might be thrown if the tag exists, but contains invalid data.
139 */
140 [[nodiscard]] static QList<Tiepoint> readTiepoints(const QMap<quint16, QVariantList> &TIFFFields);
141
142 /* This method interprets the TIFFFields and looks for the tag 270, which is used to
143 * specify the image name. Returns a QString with the data retrieved, or an empty
144 * QString on failure.
145 *
146 * An expection might be thrown if the tag exists, but contains invalid data.
147 */
148 [[nodiscard]] static QString readName(const QMap<quint16, QVariantList>& TIFFFields);
149
150 /* This method interprets the TIFFFields and looks for the tag 33550, which is used to
151 * specify the geographic size of a pixel. Returns a QSizeF with the data retrieved,
152 * or an invalid QSizeF on failure.
153 *
154 * An expection might be thrown if the tag exists, but contains invalid data.
155 */
156 [[nodiscard]] static QSizeF readPixelSize(const QMap<quint16, QVariantList> &TIFFFields);
157
158 /* This method interprets the TIFFFields and looks for the tag 34264, which is used to
159 * specify a 4x4 transformation matrix. Returns a list of 16 doubles on success, in order
160 * (a00 a01 a02 a03 a10 ...). Returns an empty list on failure.
161 *
162 * An expection might be thrown if the tag exists, but contains invalid data.
163 */
164 [[nodiscard]] static QList<double> readTransformation(const QMap<quint16, QVariantList> &TIFFFields);
165
166 /* This methods interprets the data found in m_TIFFFields and writes to
167 * m_name and m_topLeft etc. On failure, it throws a QString with a human-readable,
168 * translated error message.
169 */
170 void interpretGeoData();
171
172 // Geographic coordinates for corner of raster image
173 QGeoCoordinate m_topLeft;
174 QGeoCoordinate m_topRight;
175 QGeoCoordinate m_bottomLeft;
176 QGeoCoordinate m_bottomRight;
177
178 // Name
179 QString m_name;
180};
181
182} // namespace FileFormats
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition GeoTIFF.h:109
QGeoCoordinate topRight() const
Geographic coordinate for corner of raster image.
Definition GeoTIFF.h:98
QGeoCoordinate bottomLeft() const
Geographic coordinate for corner of raster image.
Definition GeoTIFF.h:74
GeoTIFF(QIODevice &device)
Constructor.
GeoTIFF(const QString &fileName)
Constructor.
QString name() const
Name, as specified in the GeoTIFF file.
Definition GeoTIFF.h:86
QGeoCoordinate bottomRight() const
Geographic coordinate for corner of raster image.
Definition GeoTIFF.h:80
QGeoCoordinate topLeft() const
Geographic coordinate for corner of raster image.
Definition GeoTIFF.h:92
TIFF(const QString &fileName)
Constructor.
static QStringList mimeTypes()
Mime type for files that can be opened by this class.
Definition TIFF.h:90