forked from ossimlabs/ossim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathossimNitfImageHeader.cpp
More file actions
419 lines (363 loc) · 10.7 KB
/
Copy pathossimNitfImageHeader.cpp
File metadata and controls
419 lines (363 loc) · 10.7 KB
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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
//*******************************************************************
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: Garrett Potts
//
// Description: Nitf support class
//
//********************************************************************
// $Id$
#include <ossim/support_data/ossimNitfImageHeader.h>
#include <ossim/base/ossimContainerProperty.h>
#include <ossim/base/ossimDrect.h>
#include <ossim/base/ossimIrect.h>
#include <ossim/base/ossimNotifyContext.h>
#include <cmath> /* for fmod */
#include <iomanip>
#include <ostream>
#include <sstream>
RTTI_DEF2(ossimNitfImageHeader,
"ossimNitfImageHeader",
ossimObject,
ossimPropertyInterface)
static const char* TAGS_KW = "tags";
ossimNitfImageHeader::ossimNitfImageHeader()
{
}
ossimNitfImageHeader::~ossimNitfImageHeader()
{
}
bool ossimNitfImageHeader::getTagInformation(ossimNitfTagInformation& tagInfo,
const ossimString& tagName)const
{
if(theTagList.size())
{
for(ossim_uint32 idx = 0; idx < theTagList.size(); ++idx)
{
if(theTagList[idx].getTagName() == tagName)
{
tagInfo = theTagList[idx];
return true;
}
}
}
return false;
}
bool ossimNitfImageHeader::getTagInformation(
ossimNitfTagInformation& tagInfo, ossim_uint32 idx) const
{
bool result = false;
if(idx < theTagList.size())
{
tagInfo = theTagList[idx];
result = true;
}
return result;
}
ossimRefPtr<ossimNitfRegisteredTag> ossimNitfImageHeader::getTagData(
const ossimString& tagName)
{
if(theTagList.size())
{
for(ossim_uint32 idx = 0; idx < theTagList.size(); ++idx)
{
if(theTagList[idx].getTagName() == tagName)
{
return theTagList[idx].getTagData();
}
}
}
return ossimRefPtr<ossimNitfRegisteredTag>();
}
const ossimRefPtr<ossimNitfRegisteredTag> ossimNitfImageHeader::getTagData(
const ossimString& tagName) const
{
if(theTagList.size())
{
for(ossim_uint32 idx = 0; idx < theTagList.size(); ++idx)
{
if(theTagList[idx].getTagName() == tagName)
{
return theTagList[idx].getTagData();
}
}
}
return ossimRefPtr<ossimNitfRegisteredTag>();
}
void ossimNitfImageHeader::getTagData(
const ossimString& tagName,
std::vector< const ossimNitfRegisteredTag* > &tags ) const
{
tags.clear();
if(theTagList.size())
{
for(ossim_uint32 idx = 0; idx < theTagList.size(); ++idx)
{
if(theTagList[idx].getTagName() == tagName)
{
tags.push_back( theTagList[idx].getTagData().get() );
}
}
}
}
ossim_uint32 ossimNitfImageHeader::getNumberOfTags()const
{
return static_cast<ossim_uint32>(theTagList.size());
}
void ossimNitfImageHeader::addTag(const ossimNitfTagInformation& tag, bool unique)
{
if(unique)
{
removeTag(tag.getTagName());
}
theTagList.push_back(tag);
}
void ossimNitfImageHeader::removeTag(const ossimString& tagName)
{
ossim_uint32 idx = 0;
for(idx = 0; idx < theTagList.size(); ++idx)
{
if(theTagList[idx].getTagName() == tagName)
{
theTagList.erase(theTagList.begin() + idx);
return;
}
}
}
bool ossimNitfImageHeader::isSameAs(const ossimNitfImageHeader* hdr) const
{
if (!hdr) return false;
return ( (isCompressed() == hdr->isCompressed()) &&
(getNumberOfRows() == hdr->getNumberOfRows()) &&
(getNumberOfBands() == hdr->getNumberOfBands()) &&
(getNumberOfCols() == hdr->getNumberOfCols()) &&
(getNumberOfBlocksPerRow() == hdr->getNumberOfBlocksPerRow()) &&
(getNumberOfBlocksPerCol() == hdr->getNumberOfBlocksPerCol()) &&
(getNumberOfPixelsPerBlockHoriz() ==
hdr->getNumberOfPixelsPerBlockHoriz()) &&
(getNumberOfPixelsPerBlockVert() ==
hdr->getNumberOfPixelsPerBlockVert()) &&
(getBitsPerPixelPerBand() == hdr->getBitsPerPixelPerBand()) &&
(getImageRect() == hdr->getImageRect()) &&
(getIMode() == hdr->getIMode()) &&
(getCoordinateSystem() == hdr->getCoordinateSystem()) &&
(getGeographicLocation() == hdr->getGeographicLocation()) );
}
void ossimNitfImageHeader::setProperty(ossimRefPtr<ossimProperty> /* property */)
{
}
ossimRefPtr<ossimProperty> ossimNitfImageHeader::getProperty(const ossimString& name)const
{
ossimProperty* result = 0;
if(name == TAGS_KW)
{
ossim_uint32 idxMax = getNumberOfTags();
if(idxMax > 0)
{
ossimContainerProperty* containerProperty = new ossimContainerProperty;
containerProperty->setName(name);
ossim_uint32 idx = 0;
result = containerProperty;
for(idx = 0; idx < idxMax; ++idx)
{
ossimNitfTagInformation tagInfo;
getTagInformation(tagInfo, idx);
const ossimRefPtr<ossimNitfRegisteredTag> tagData = tagInfo.getTagData();
if(tagData.valid())
{
ossimContainerProperty* containerPropertyTag = new ossimContainerProperty;
containerPropertyTag->setName(tagInfo.getTagName());
std::vector<ossimRefPtr<ossimProperty> > propertyList;
tagData->getPropertyList(propertyList);
containerPropertyTag->addChildren(propertyList);
containerProperty->addChild(containerPropertyTag);
}
else
{
containerProperty->addStringProperty(tagInfo.getTagName(), "", true);
}
}
}
}
return result;
}
void ossimNitfImageHeader::getPropertyNames(std::vector<ossimString>& propertyNames)const
{
propertyNames.push_back(TAGS_KW);
}
ossim_uint32 ossimNitfImageHeader::getTotalTagLength()const
{
ossim_uint32 tagLength = 0;
for(ossim_uint32 i = 0; i < theTagList.size(); ++i)
{
tagLength += theTagList[i].getTotalTagLength();
}
return tagLength;
}
std::ostream& ossimNitfImageHeader::printTags(std::ostream& out,
const std::string& prefix)const
{
for(ossim_uint32 i = 0; i < theTagList.size(); ++i)
{
ossimRefPtr<ossimNitfRegisteredTag> tag = theTagList[i].getTagData();
if (tag.valid())
{
tag->print(out, prefix);
}
}
return out;
}
void ossimNitfImageHeader::getMetadata(ossimKeywordlist& kwl,
const char* prefix) const
{
kwl.add(prefix, "source",
getImageSource().c_str(),
false);
kwl.add(prefix,
"image_date",
getAcquisitionDateMonthDayYear().c_str(),
false);
kwl.add(prefix,
"image_title",
getTitle().c_str(),
false);
}
bool ossimNitfImageHeader::hasLut() const
{
bool result = false;
const ossim_uint32 BANDS = static_cast<ossim_uint32>(getNumberOfBands());
for (ossim_uint32 band = 0; band < BANDS; ++band)
{
const ossimRefPtr<ossimNitfImageBand> imgBand = getBandInformation(band);
if(imgBand.valid())
{
ossim_uint32 luts = imgBand->getNumberOfLuts();
if(luts > 0)
{
if(imgBand->getLut(0).valid())
{
result = true;
break;
}
}
}
}
return result;
}
ossimRefPtr<ossimNBandLutDataObject> ossimNitfImageHeader::createLut(
ossim_uint32 bandIdx)const
{
ossimRefPtr<ossimNBandLutDataObject> result;
if(bandIdx < (ossim_uint32)getNumberOfBands())
{
const ossimRefPtr<ossimNitfImageBand> band = getBandInformation(bandIdx);
if(band.valid())
{
ossim_uint32 bands = band->getNumberOfLuts();
if(bands > 0)
{
if(band->getLut(0).valid())
{
ossim_uint32 entries = band->getLut(0)->getNumberOfEntries();
result = new ossimNBandLutDataObject();
result->create(entries, band->getNumberOfLuts());
ossim_uint32 bIdx;
ossim_uint32 entryIdx;
for(bIdx = 0; bIdx < bands; ++bIdx)
{
const ossimRefPtr<ossimNitfImageLut> lut = band->getLut(bIdx);
if(lut.valid())
{
for(entryIdx = 0; entryIdx < entries; ++entryIdx)
{
(*result)[entryIdx][bIdx] = (ossimNBandLutDataObject::LUT_ENTRY_TYPE)(lut->getValue(entryIdx));
}
}
}
}
}
}
}
return result;
}
void ossimNitfImageHeader::checkForGeographicTiePointTruncation(
const ossimDpt& tie) const
{
// One arc second in decimal degrees.
const ossim_float64 ARC_SECOND = 1.0/3600.0;
// Very small number.
const ossim_float64 FUDGE_FACTOR = 0.000000001;
// Remainder portion of latitude divided by an arc second.
ossim_float64 y = std::fmod(tie.y, ARC_SECOND);
// Remainder portion of longitue divided by an arc second.
ossim_float64 x = std::fmod(tie.x, ARC_SECOND);
if ( (std::fabs(y) > FUDGE_FACTOR) || (std::fabs(x) > FUDGE_FACTOR) )
{
ossimNotify(ossimNotifyLevel_WARN)
<< "ossimNitfImageHeader WARNING:\n"
<< "Tie point will be truncated in image header: "
<< tie
<< std::endl;
}
}
void ossimNitfImageHeader::getDecimationFactor(ossim_float64& result) const
{
//---
// Look for string like:
//
// "/2" = 1/2
// "/4 = 1/4
// ...
// "/16 = 1/16
//
// If it is full resolution it should be "1.0"
//
// or
//
// "0.5" which is the same as "/2"
// "0.25" which is the same as "/4"
//---
ossimString os = getImageMagnification();
// Spec says to fill with spaces so strip them.
os.trim(ossimString(" "));
if (os.size())
{
if ( os.contains("/") )
{
os = os.after("/");
result = os.toFloat64();
if (result)
{
result = 1.0 / result;
}
}
else
{
result = os.toFloat64();
}
}
else
{
result = ossim::nan();
}
}
bool ossimNitfImageHeader::saveState(ossimKeywordlist& kwl, const ossimString& prefix)const
{
if(!ossimObject::saveState(kwl, prefix)) return false;
ossimString tagsPrefix = prefix;
for(ossim_uint32 i = 0; i < theTagList.size(); ++i)
{
ossimRefPtr<ossimNitfRegisteredTag> tag = theTagList[i].getTagData();
if (tag.valid())
{
if(!tag->saveState(kwl, tagsPrefix))
{
return false;
}
}
}
return true;
}