]> git.mxchange.org Git - flightgear.git/blob - ShapeFile/names.hxx
Additional progress.
[flightgear.git] / ShapeFile / names.hxx
1 // names.hxx -- process shapefiles names
2 //
3 // Written by Curtis Olson, started February 1999.
4 //
5 // Copyright (C) 1999  Curtis L. Olson  - curt@flightgear.org
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 #ifndef _NAMES_HXX
26 #define _NAMES_HXX
27
28
29 // libgfc.a includes need this bit o' strangeness
30 #if defined ( linux )
31 #  define _LINUX_
32 #endif
33 #include <gfc/gadt_polygon.h>
34 #include <gfc/gdbf.h>
35 #undef E
36 #undef DEG_TO_RAD
37 #undef RAD_TO_DEG
38
39
40 // Posible shape file types
41 enum AreaType {
42     MarshArea = 0,
43     OceanArea = 1,
44     LakeArea = 2,
45     DryLakeArea = 3,
46     IntLakeArea = 4,
47     ReservoirArea = 5,
48     IntReservoirArea = 6,
49     StreamArea = 7,
50     CanalArea = 8,
51     GlacierArea = 9,
52     VoidArea = 9997,
53     NullArea = 9998,
54     UnknownArea = 9999
55 };
56
57
58 // return the type of the shapefile record
59 AreaType get_area_type(GDBFile *dbf, int rec);
60
61
62 #endif // _NAMES_HXX
63
64
65 // $Log$
66 // Revision 1.1  1999/02/23 01:29:05  curt
67 // Additional progress.
68 //