]> git.mxchange.org Git - flightgear.git/blob - Polygon/names.cxx
Make 0 the default area type since this corresponds well with the conventions
[flightgear.git] / Polygon / names.cxx
1 // names.cxx -- 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 #include <Include/compiler.h>
25
26 #include STL_STRING
27
28 #include "names.hxx"
29
30
31 // return area type from text name
32 AreaType get_area_type( string area ) {
33     if ( area == "Default" ) {
34         return DefaultArea;
35     } else if ( area == "AirportKeep" ) {
36         return AirportKeepArea;
37     } else if ( area == "AirportIgnore" ) {
38         return AirportIgnoreArea;
39     } else if ( (area == "Swamp or Marsh")
40                 || (area == "Marsh") ) {
41         return MarshArea;
42     } else if ( (area == "Bay  Estuary or Ocean")
43                 || (area == "Ocean") ) {
44         return OceanArea;
45     } else if ( area == "Lake" ) {
46         return LakeArea;
47     } else if ( (area == "Lake   Dry")
48                 || (area == "DryLake") ) {
49         return DryLakeArea;
50     } else if ( (area == "Lake   Intermittent")
51                 || (area == "IntermittentLake") ) {
52         return IntLakeArea;
53     } else if ( area == "Reservoir" ) {
54         return ReservoirArea;
55     } else if ( area == "Reservoir   Intermittent" ) {
56         return IntReservoirArea;
57     } else if ( area == "Stream" ) {
58         return StreamArea;
59     } else if ( area == "Canal" ) {
60         return CanalArea;
61     } else if ( area == "Glacier" ) {
62         return GlacierArea;
63     } else if ( area == "Void Area" ) {
64         return VoidArea;
65     } else if ( area == "Null" ) {
66         return NullArea;
67     } else {
68         cout << "unknown area = '" << area << "'" << endl;
69         // cout << "area = " << area << endl;
70         // for ( int i = 0; i < area.length(); i++ ) {
71         //  cout << i << ") " << (int)area[i] << endl;
72         // }
73         return UnknownArea;
74     }
75 }
76
77
78 // return text from of area name
79 string get_area_name( AreaType area ) {
80     if ( area == DefaultArea ) {
81         return "Default";
82     } else if ( area == AirportKeepArea ) {
83         return "AirportKeep";
84     } else if ( area == AirportIgnoreArea ) {
85         return "AirportIgnore";
86     } else if ( area == MarshArea ) {
87         return "Marsh";
88     } else if ( area == OceanArea ) {
89         return "Ocean";
90     } else if ( area == LakeArea ) {
91         return "Lake";
92     } else if ( area == DryLakeArea ) {
93         return "DryLake";
94     } else if ( area == IntLakeArea ) {
95         return "IntermittentLake";
96     } else if ( area == ReservoirArea ) {
97         return "Reservoir";
98     } else if ( area == IntReservoirArea ) {
99         return "IntermittentReservoir";
100     } else if ( area == StreamArea ) {
101         return "Stream";
102     } else if ( area == CanalArea ) {
103         return "Canal";
104     } else if ( area == GlacierArea ) {
105         return "Glacier";
106     } else if ( area == VoidArea ) {
107         return "VoidArea";
108     } else if ( area == NullArea ) {
109         return "Null";
110     } else {
111         cout << "unknown area code = " << (int)area << endl;
112         return "Unknown";
113     }
114 }
115
116
117 // $Log$
118 // Revision 1.6  1999/03/27 05:31:24  curt
119 // Make 0 the default area type since this corresponds well with the conventions
120 //   used by the triangulator.
121 //
122 // Revision 1.5  1999/03/22 23:49:29  curt
123 // Moved AreaType get_shapefile_type(GDBFile *dbf, int rec) to where it
124 // belongs in ShapeFile/
125 //
126 // Revision 1.4  1999/03/13 18:47:04  curt
127 // Removed an unused variable.
128 //
129 // Revision 1.3  1999/03/02 01:03:58  curt
130 // Added more reverse lookup support.
131 //
132 // Revision 1.2  1999/03/01 15:35:52  curt
133 // Generalized the routines a bit to make them more useful.
134 //
135 // Revision 1.1  1999/02/25 21:30:24  curt
136 // Initial revision.
137 //
138 // Revision 1.1  1999/02/23 01:29:05  curt
139 // Additional progress.
140 //