-
Notifications
You must be signed in to change notification settings - Fork 0
/
LasFile.cs
341 lines (289 loc) · 11.7 KB
/
LasFile.cs
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
using System;
using System.Collections.Generic;
using System.Linq;
using System.IO;
using System.Text;
using System.Threading.Tasks;
namespace LasHelper
{
/// <summary>
/// Class to hold las data
/// </summary>
[Serializable]
public sealed class LasFile
{
#region Properties
/// <summary>
/// Gets the file headers
/// </summary>
public readonly List<string> Headers = new List<string>();
/// <summary>
/// Gets the records in the file
/// </summary>
public readonly LasRecords Records = new LasRecords();
/// <summary>
/// Gets the header count
/// </summary>
public int HeaderCount
{
get
{
return Headers.Count;
}
}
/// <summary>
/// Gets the record count
/// </summary>
public int RecordCount
{
get
{
return Records.Count;
}
}
#endregion Properties
#region Indexers
/// <summary>
/// Gets a record at the specified index
/// </summary>
/// <param name="recordIndex">Record index</param>
/// <returns>LasRecord</returns>
public LasRecord this[int recordIndex]
{
get
{
if (recordIndex > (Records.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no record at index {0}.", recordIndex));
return Records[recordIndex];
}
}
/// <summary>
/// Gets the field value at the specified record and field index
/// </summary>
/// <param name="recordIndex">Record index</param>
/// <param name="fieldIndex">Field index</param>
/// <returns></returns>
public string this[int recordIndex, int fieldIndex]
{
get
{
if (recordIndex > (Records.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no record at index {0}.", recordIndex));
LasRecord record = Records[recordIndex];
if (fieldIndex > (record.Fields.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no field at index {0} in record {1}.", fieldIndex, recordIndex));
return record.Fields[fieldIndex];
}
set
{
if (recordIndex > (Records.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no record at index {0}.", recordIndex));
LasRecord record = Records[recordIndex];
if (fieldIndex > (record.Fields.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no field at index {0}.", fieldIndex));
record.Fields[fieldIndex] = value;
}
}
/// <summary>
/// Gets the field value at the specified record index for the supplied field name
/// </summary>
/// <param name="recordIndex">Record index</param>
/// <param name="fieldName">Field name</param>
/// <returns></returns>
public string this[int recordIndex, string fieldName]
{
get
{
if (recordIndex > (Records.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no record at index {0}.", recordIndex));
LasRecord record = Records[recordIndex];
int fieldIndex = -1;
for (int i = 0; i < Headers.Count; i++)
{
if (string.Compare(Headers[i], fieldName) != 0)
continue;
fieldIndex = i;
break;
}
if (fieldIndex == -1)
throw new ArgumentException(string.Format("There is no field header with the name '{0}'", fieldName));
if (fieldIndex > (record.Fields.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no field at index {0} in record {1}.", fieldIndex, recordIndex));
return record.Fields[fieldIndex];
}
set
{
if (recordIndex > (Records.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no record at index {0}.", recordIndex));
LasRecord record = Records[recordIndex];
int fieldIndex = -1;
for (int i = 0; i < Headers.Count; i++)
{
if (string.Compare(Headers[i], fieldName) != 0)
continue;
fieldIndex = i;
break;
}
if (fieldIndex == -1)
throw new ArgumentException(string.Format("There is no field header with the name '{0}'", fieldName));
if (fieldIndex > (record.Fields.Count - 1))
throw new IndexOutOfRangeException(string.Format("There is no field at index {0} in record {1}.", fieldIndex, recordIndex));
record.Fields[fieldIndex] = value;
}
}
#endregion Indexers
#region Methods
/// <summary>
/// Populates the current instance from the specified file
/// </summary>
/// <param name="filePath">File path</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
public void Populate(string filePath, bool hasHeaderRow)
{
Populate(filePath, null, hasHeaderRow, false);
}
/// <summary>
/// Populates the current instance from the specified file
/// </summary>
/// <param name="filePath">File path</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(string filePath, bool hasHeaderRow, bool trimColumns)
{
Populate(filePath, null, hasHeaderRow, trimColumns);
}
/// <summary>
/// Populates the current instance from the specified file
/// </summary>
/// <param name="filePath">File path</param>
/// <param name="encoding">Encoding</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(string filePath, Encoding encoding, bool hasHeaderRow, bool trimColumns)
{
using (LasReader reader = new LasReader(filePath, encoding) { HasHeaderRow = hasHeaderRow, TrimColumns = trimColumns })
{
PopulateLasFile(reader);
}
}
/// <summary>
/// Populates the current instance from a stream
/// </summary>
/// <param name="stream">Stream</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
public void Populate(Stream stream, bool hasHeaderRow)
{
Populate(stream, null, hasHeaderRow, false);
}
/// <summary>
/// Populates the current instance from a stream
/// </summary>
/// <param name="stream">Stream</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(Stream stream, bool hasHeaderRow, bool trimColumns)
{
Populate(stream, null, hasHeaderRow, trimColumns);
}
/// <summary>
/// Populates the current instance from a stream
/// </summary>
/// <param name="stream">Stream</param>
/// <param name="encoding">Encoding</param>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(Stream stream, Encoding encoding, bool hasHeaderRow, bool trimColumns)
{
using (LasReader reader = new LasReader(stream, encoding) { HasHeaderRow = hasHeaderRow, TrimColumns = trimColumns })
{
PopulateLasFile(reader);
}
}
/// <summary>
/// Populates the current instance from a string
/// </summary>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="LasContent">Las text</param>
public void Populate(bool hasHeaderRow, string LasContent)
{
Populate(hasHeaderRow, LasContent, null, false);
}
/// <summary>
/// Populates the current instance from a string
/// </summary>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="LasContent">Las text</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(bool hasHeaderRow, string LasContent, bool trimColumns)
{
Populate(hasHeaderRow, LasContent, null, trimColumns);
}
/// <summary>
/// Populates the current instance from a string
/// </summary>
/// <param name="hasHeaderRow">True if the file has a header row, otherwise false</param>
/// <param name="LasContent">Las text</param>
/// <param name="encoding">Encoding</param>
/// <param name="trimColumns">True if column values should be trimmed, otherwise false</param>
public void Populate(bool hasHeaderRow, string LasContent, Encoding encoding, bool trimColumns)
{
using (LasReader reader = new LasReader(encoding, LasContent) { HasHeaderRow = hasHeaderRow, TrimColumns = trimColumns })
{
PopulateLasFile(reader);
}
}
/// <summary>
/// Populates the current instance using the LasReader object
/// </summary>
/// <param name="reader">LasReader</param>
private void PopulateLasFile(LasReader reader)
{
Headers.Clear();
Records.Clear();
bool addedHeader = false;
while (reader.ReadNextRecord())
{
if (reader.HasHeaderRow && !addedHeader)
{
reader.Fields.ForEach(field => Headers.Add(field));
addedHeader = true;
continue;
}
LasRecord record = new LasRecord();
reader.Fields.ForEach(field => record.Fields.Add(field));
Records.Add(record);
}
}
#endregion Methods
}
/// <summary>
/// Class for a collection of LasRecord objects
/// </summary>
[Serializable]
public sealed class LasRecords : List<LasRecord>
{
}
/// <summary>
/// Las record class
/// </summary>
[Serializable]
public sealed class LasRecord
{
#region Properties
/// <summary>
/// Gets the Fields in the record
/// </summary>
public readonly List<string> Fields = new List<string>();
/// <summary>
/// Gets the number of fields in the record
/// </summary>
public int FieldCount
{
get
{
return Fields.Count;
}
}
#endregion Properties
}
}