]> git.mxchange.org Git - flightgear.git/blob - DemInfo/deminfo.cxx
Initial revision.
[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
30 #include <DEM/dem.hxx>
31
32
33 // static float dem_data[DEM_SIZE_1][DEM_SIZE_1];
34 // static float output_data[DEM_SIZE_1][DEM_SIZE_1];
35
36
37 int main(int argc, char **argv) {
38     // DEM data
39     fgDEM dem;
40     char fg_root[256];
41     char filename[256];
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     strcpy(filename, argv[1]);
52
53     dem.open(filename);
54
55     if ( dem.read_a_record() ) {
56         printf("Results = %s  %.1f %.1f\n", 
57                filename, 
58                dem.info_originx() / 3600.0,
59                dem.info_originy() / 3600.0 ) ;
60     } else {
61         printf("Error parsing DEM file.\n");
62     }
63
64     dem.close();
65
66     return(0);
67 }
68
69
70 // $Log$
71 // Revision 1.1  1998/06/04 19:18:05  curt
72 // Initial revision.
73 //