Remove elevation model. implemented correction adjustment using gui
[tecorrec.git] / geo / tcSrtmData.h
blob339cc6243f4b0c1b69645cbba8e676eca89c64c6
1 /***************************************************************************
2 * This file is part of Tecorrec. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * Tecorrec 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 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * Tecorrec 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 Tecorrec. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _tcSrtmData_h_
21 #define _tcSrtmData_h_
23 /**
24 * @file tcSrtmData.h
25 * @brief Block of raw SRTM elevation data.
28 #include "tcGeo.h"
30 #include <inttypes.h>
32 class QFile;
34 /// Block of raw SRTM elevation data.
35 class tcSrtmData
37 public:
40 * Constructors + destructor
43 /** Load SRTM data.
44 * @param lon Longitude in degrees.
45 * @param lat Latitude in degrees.
46 * @param file File to read data from.
48 tcSrtmData(int lon, int lat, QFile& file);
50 /// Destructor.
51 virtual ~tcSrtmData();
54 * Accessors
57 /// Get the longitude in degrees.
58 int lon() const;
60 /// Get the latitude in degrees.
61 int lat() const;
63 /// Get the number of scan lines.
64 int lines() const;
66 /// Get the number of samples in each scan line.
67 int samples() const;
69 /// Get the geographical coordinate of a sample.
70 tcGeo sampleCoordinate(int line, int sample) const;
72 /// Does data exist for a sample?
73 bool sampleExists(int line, int sample) const;
75 /// Get the altitude at a sample (interpolating gaps).
76 uint16_t sampleAltitude(int line, int sample, bool corrected = false, bool* exists = 0) const;
78 /// Get the altitude at a coordinate.
79 uint16_t sampleAltitude(const tcGeo& coord, bool corrected = false, bool* exists = 0) const;
82 * Mutators
85 /// Correct the altitude at a sample.
86 void setSampleAltitude(int line, int sample, uint16_t altitude);
88 private:
91 * Variables
94 /// Longitude in degrees.
95 int m_lat;
97 /// Latitude in degrees.
98 int m_lon;
100 /** Fixed resolution elevation data.
101 * Indexed by correction, scanline, sample.
102 * Most significant bit means that original data is missing.
104 uint16_t m_data[2][1201][1201];
107 #endif