]> git.mxchange.org Git - flightgear.git/blob - DEM/dem.hxx
Added zlib support.
[flightgear.git] / DEM / dem.hxx
1 // -*- Mode: C++ -*-
2 //
3 // dem.h -- DEM management class
4 //
5 // Written by Curtis Olson, started March 1998.
6 //
7 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
8 //
9 // This program is free software; you can redistribute it and/or
10 // modify it under the terms of the GNU General Public License as
11 // published by the Free Software Foundation; either version 2 of the
12 // License, or (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful, but
15 // WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 // General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24 // (Log is kept at end of this file)
25
26
27 #ifndef _DEM_H
28 #define _DEM_H
29
30
31 #include <stdio.h>
32
33 #include <Bucket/bucketutils.h>
34 #include <zlib/zlib.h>
35
36
37 #define DEM_SIZE 1200
38 #define DEM_SIZE_1 1201
39
40
41 class fgDEM {
42     // file pointer for input
43     gzFile *fd;
44
45     // coordinates (in arc seconds) of south west corner
46     double originx, originy;
47     
48     // number of columns and rows
49     int cols, rows;
50     
51     // Distance between column and row data points (in arc seconds)
52     double col_step, row_step;
53     
54     // pointers to the actual mesh data allocated here
55     float (*dem_data)[DEM_SIZE_1];
56     float (*output_data)[DEM_SIZE_1];
57
58     // Current "A" Record Information
59     char dem_description[80], dem_quadrangle[80];
60     double dem_x1, dem_y1, dem_x2, dem_y2, dem_x3, dem_y3, dem_x4, dem_y4;
61     double dem_z1, dem_z2;
62     int dem_resolution, dem_num_profiles;
63   
64     // Current "B" Record Information
65     int prof_col, prof_row;
66     int prof_num_cols, prof_num_rows;
67     double prof_x1, prof_y1;
68     int prof_data;
69
70     // temporary values for the class to use
71     char option_name[32];
72     int do_data;
73     int cur_col, cur_row;
74
75 public:
76
77     // Constructor (opens a DEM file)
78     fgDEM( void );
79
80     // open a DEM file (use "-" if input is coming from stdin)
81     int open ( char *file );
82
83     // close a DEM file
84     int close ( void );
85
86     // parse a DEM file
87     int parse( void );
88
89     // read and parse DEM "A" record
90     void read_a_record( void );
91
92     // read and parse DEM "B" record
93     void read_b_record( void );
94
95     // Informational methods
96     double info_originx( void ) { return(originx); }
97     double info_originy( void ) { return(originy); }
98
99     // return the current altitude based on mesh data.  We should
100     // rewrite this to interpolate exact values, but for now this is
101     // good enough
102     double interpolate_altitude( double lon, double lat );
103
104     // Use least squares to fit a simpler data set to dem data
105     void fit( char *fg_root, double error, struct fgBUCKET *p );
106
107     // Initialize output mesh structure
108     void outputmesh_init( void );
109
110     // Get the value of a mesh node
111     double outputmesh_get_pt( int i, int j );
112
113     // Set the value of a mesh node
114     void outputmesh_set_pt( int i, int j, double value );
115
116     // Write out a node file that can be used by the "triangle" program
117     void outputmesh_output_nodes( char *fg_root, struct fgBUCKET *p );
118
119     // Destructor
120     ~fgDEM( void );
121 };
122
123
124 #endif // _DEM_H
125
126
127 // $Log$
128 // Revision 1.3  1998/04/18 03:53:06  curt
129 // Added zlib support.
130 //
131 // Revision 1.2  1998/04/14 02:43:28  curt
132 // Used "new" to auto-allocate large DEM parsing arrays in class constructor.
133 //
134 // Revision 1.1  1998/04/08 22:57:23  curt
135 // Adopted Gnu automake/autoconf system.
136 //
137 // Revision 1.2  1998/03/23 20:35:42  curt
138 // Updated to use FG_EPSILON
139 //
140 // Revision 1.1  1998/03/19 02:54:47  curt
141 // Reorganized into a class lib called fgDEM.
142 //
143 // Revision 1.1  1998/03/19 01:46:29  curt
144 // Initial revision.
145 //