-
Notifications
You must be signed in to change notification settings - Fork 0
/
DgInShapefileAtt.h
165 lines (125 loc) · 4.96 KB
/
DgInShapefileAtt.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
////////////////////////////////////////////////////////////////////////////////
//
// DgInShapefileAtt.h: DgInShapefileAtt class definitions
//
// Version 6.1 - Kevin Sahr, 5/23/13
//
////////////////////////////////////////////////////////////////////////////////
#ifndef DGINSHAPEFILEATT_H
#define DGINSHAPEFILEATT_H
#include <string>
#include <set>
#include "shapefil.h"
#include "DgInShapefile.h"
using namespace std;
class DgLocList;
class DgLocVector;
class DgPolygon;
class DgLocation;
class DgCell;
class DgRFBase;
////////////////////////////////////////////////////////////////////////////////
class DgDBFfield {
public:
DgDBFfield (const string& fieldNameIn, DBFFieldType typeIn,
int fieldNumIn, int widthIn, int precisionIn)
: fieldName_(fieldNameIn), type_(typeIn), fieldNum_(fieldNumIn),
width_(widthIn), precision_(precisionIn)
{ }
const string& fieldName (void) const { return fieldName_; }
DBFFieldType type (void) const { return type_; }
int fieldNum (void) const { return fieldNum_; }
int width (void) const { return width_; }
int precision (void) const { return precision_; }
friend bool operator== (const DgDBFfield& f1, const DgDBFfield& f2);
friend bool operator!= (const DgDBFfield& f1, const DgDBFfield& f2);
friend bool operator< (const DgDBFfield& f1, const DgDBFfield& f2);
friend bool operator<= (const DgDBFfield& f1, const DgDBFfield& f2);
friend bool operator> (const DgDBFfield& f1, const DgDBFfield& f2);
friend bool operator>= (const DgDBFfield& f1, const DgDBFfield& f2);
friend ostream& operator<< (ostream& stream, const DgDBFfield& pt);
protected:
string fieldName_;
DBFFieldType type_;
int fieldNum_;
int width_;
int precision_;
};
////////////////////////////////////////////////////////////////////////////////
class DgInShapefileAtt : public DgInShapefile {
public:
DgInShapefileAtt (const DgGeoSphRF& geoRFIn,
const string* fileNameIn = NULL,
DgReportLevel failLevel = DgBase::Fatal);
virtual bool open (const string* fileName = NULL,
DgReportLevel failLevel = DgBase::Fatal);
virtual void close (void);
const set<DgDBFfield>& fields (void) const { return fields_; }
int numFields (void) const { return numFields_; }
const set<DgDBFfield>& curObjFields (void) const
{ return curObjFields_; }
protected:
virtual void getNextEntity (void);
DBFHandle dbfFile_;
int numFields_;
set<DgDBFfield> fields_;
set<DgDBFfield> curObjFields_; // non-null fields in the curShpObj_
};
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
inline bool
operator== (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) == 0);
} // bool operator==
////////////////////////////////////////////////////////////////////////////////
inline bool
operator!= (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) != 0);
} // bool operator!=
////////////////////////////////////////////////////////////////////////////////
inline bool
operator> (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) > 0);
} // bool operator>
////////////////////////////////////////////////////////////////////////////////
inline bool
operator>= (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) >= 0);
} // bool operator>=
////////////////////////////////////////////////////////////////////////////////
inline bool
operator< (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) < 0);
} // bool operator<
////////////////////////////////////////////////////////////////////////////////
inline bool
operator<= (const DgDBFfield& f1, const DgDBFfield& f2)
{
return (f1.fieldName().compare(f2.fieldName()) <= 0);
} // bool operator<=
////////////////////////////////////////////////////////////////////////////////
inline ostream&
operator<< (ostream& stream, const DgDBFfield& f)
{
stream << "field: " << f.fieldName();
char type;
switch (f.type())
{
case FTString: type = 'C'; break;
case FTInteger: type = 'I'; break;
case FTDouble: type = 'D'; break;
case FTLogical: type = 'B'; break;
case FTInvalid: type = 'X'; break;
default: type = 'X'; break;
}
return stream << " type: " << type << " #" << f.fieldNum()
<< " (" << f.width() << "" << f.precision() << ")";
} // ostream& operator<<
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
#endif