Loading of landsat meta data file and coordinates, displays schematic cuboid
[tecorrec.git] / geo / tcSrtmData.h
blob85bcf6e2ff988b8da9e37ebd752e03aac559ce2d
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 length of each scan line.
67 int length() const;
69 /// Get the geographical coordinate of a pixel.
70 tcGeo pixelCoordinate(int line, int pixel) const;
72 /// Get the altitude at a pixel.
73 uint32_t pixelAltitude(int line, int pixel) const;
75 /// Get the altitude at a coordinate.
76 uint32_t pixelAltitude(const tcGeo& coord) const;
78 private:
81 * Variables
84 /// Longitude in degrees.
85 int m_lat;
87 /// Latitude in degrees.
88 int m_lon;
90 /** Fixed resolution elevation data.
91 * Indexed by scanline, pixel
93 uint16_t m_data[1201][1201];
96 #endif