]> git.mxchange.org Git - flightgear.git/blob - DemInfo/deminfo.cxx
Convert fgDEM to FGDem ...
[flightgear.git] / DemInfo / deminfo.cxx
1 // deminfo.cxx -- main loop
2 //
3 // Written by Curtis Olson, started June 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2 of the License, or
10 // (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23 //
24
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <string>
30
31 #include <DEM/dem.hxx>
32
33
34 // static float dem_data[DEM_SIZE_1][DEM_SIZE_1];
35 // static float output_data[DEM_SIZE_1][DEM_SIZE_1];
36
37
38 int main(int argc, char **argv) {
39     // DEM data
40     FGDem dem;
41     string filename;
42     double error;
43     int i, j;
44
45     if ( argc != 2 ) {
46         printf("Usage: %s <file.dem>\n", argv[0]);
47         exit(-1);
48     }
49
50     // set input dem file name
51     filename = argv[1];
52
53     dem.open(filename);
54
55     if ( dem.read_a_record() ) {
56         cout << "Results = " << filename << "  "
57              << dem.get_originx() / 3600.0 << " "
58              << dem.get_originy() / 3600.0 << "\n";
59     } else {
60         cout << "Error parsing DEM file.\n";
61     }
62
63     dem.close();
64
65     return(0);
66 }
67
68
69 // $Log$
70 // Revision 1.3  1999/03/12 22:54:04  curt
71 // Convert fgDEM to FGDem ...
72 //
73 // Revision 1.2  1998/09/19 18:01:22  curt
74 // Support for changes to libDEM.a
75 //
76 // Revision 1.1  1998/06/04 19:18:05  curt
77 // Initial revision.
78 //