Line data Source code
1 : /******************************************************************************
2 : * Purpose: ASRP/USRP Reader
3 : * Author: Frank Warmerdam (warmerdam@pobox.com)
4 : *
5 : * Derived from ADRG driver by Even Rouault, even.rouault at spatialys.com.
6 : *
7 : ******************************************************************************
8 : * Copyright (c) 2009-2013, Even Rouault <even dot rouault at spatialys.com>
9 : * Copyright (c) 2009, Frank Warmerdam
10 : *
11 : * SPDX-License-Identifier: MIT
12 : ****************************************************************************/
13 :
14 : #include "cpl_string.h"
15 : #include "gdal_pam.h"
16 : #include "gdal_frmts.h"
17 : #include "iso8211.h"
18 : #include "ogr_spatialref.h"
19 :
20 : #include <cstdlib>
21 : #include <algorithm>
22 : #include <limits>
23 :
24 : // Uncomment to recognize also .gen files in addition to .img files
25 : // #define OPEN_GEN
26 :
27 : class SRPDataset final : public GDALPamDataset
28 : {
29 : friend class SRPRasterBand;
30 :
31 : static CPLString ResetTo01(const char *str);
32 :
33 : VSILFILE *fdIMG;
34 : int *TILEINDEX;
35 : int offsetInIMG;
36 : CPLString osProduct;
37 : OGRSpatialReference m_oSRS{};
38 : CPLString osGENFileName;
39 : CPLString osQALFileName;
40 : CPLString osIMGFileName;
41 : int NFC;
42 : int NFL;
43 : int ZNA;
44 : double LSO;
45 : double PSO;
46 : double LOD;
47 : double LAD;
48 : int ARV;
49 : int BRV;
50 : int PCB;
51 : int PVB;
52 :
53 : char **papszSubDatasets;
54 :
55 : GDALColorTable oCT;
56 :
57 : static char **GetGENListFromTHF(const char *pszFileName);
58 : static char **GetIMGListFromGEN(const char *pszFileName,
59 : int *pnRecordIndex = nullptr);
60 : static SRPDataset *OpenDataset(const char *pszGENFileName,
61 : const char *pszIMGFileName,
62 : DDFRecord *record = nullptr);
63 : static DDFRecord *FindRecordInGENForIMG(DDFModule &module,
64 : const char *pszGENFileName,
65 : const char *pszIMGFileName);
66 :
67 : public:
68 : SRPDataset();
69 : ~SRPDataset() override;
70 :
71 : const OGRSpatialReference *GetSpatialRef() const override;
72 : CPLErr GetGeoTransform(double *padfGeoTransform) override;
73 :
74 : char **GetMetadata(const char *pszDomain = "") override;
75 :
76 : char **GetFileList() override;
77 :
78 : bool GetFromRecord(const char *pszFileName, DDFRecord *record);
79 : void AddSubDataset(const char *pszGENFileName, const char *pszIMGFileName);
80 : void AddMetadatafromFromTHF(const char *pszFileName);
81 :
82 : static GDALDataset *Open(GDALOpenInfo *);
83 : };
84 :
85 : /************************************************************************/
86 : /* ==================================================================== */
87 : /* SRPRasterBand */
88 : /* ==================================================================== */
89 : /************************************************************************/
90 :
91 : class SRPRasterBand final : public GDALPamRasterBand
92 : {
93 : friend class SRPDataset;
94 :
95 : public:
96 : SRPRasterBand(SRPDataset *, int);
97 :
98 : CPLErr IReadBlock(int, int, void *) override;
99 :
100 : double GetNoDataValue(int *pbSuccess = nullptr) override;
101 :
102 : GDALColorInterp GetColorInterpretation() override;
103 : GDALColorTable *GetColorTable() override;
104 : };
105 :
106 : /************************************************************************/
107 : /* SRPRasterBand() */
108 : /************************************************************************/
109 :
110 12 : SRPRasterBand::SRPRasterBand(SRPDataset *poDSIn, int nBandIn)
111 :
112 : {
113 12 : poDS = poDSIn;
114 12 : nBand = nBandIn;
115 :
116 12 : eDataType = GDT_Byte;
117 :
118 12 : nBlockXSize = 128;
119 12 : nBlockYSize = 128;
120 12 : }
121 :
122 : /************************************************************************/
123 : /* GetNoDataValue() */
124 : /************************************************************************/
125 :
126 0 : double SRPRasterBand::GetNoDataValue(int *pbSuccess)
127 : {
128 0 : if (pbSuccess)
129 0 : *pbSuccess = TRUE;
130 :
131 0 : return 0;
132 : }
133 :
134 : /************************************************************************/
135 : /* GetColorInterpretation() */
136 : /************************************************************************/
137 :
138 3 : GDALColorInterp SRPRasterBand::GetColorInterpretation()
139 :
140 : {
141 3 : SRPDataset *l_poDS = (SRPDataset *)this->poDS;
142 :
143 3 : if (l_poDS->oCT.GetColorEntryCount() > 0)
144 3 : return GCI_PaletteIndex;
145 : else
146 0 : return GCI_GrayIndex;
147 : }
148 :
149 : /************************************************************************/
150 : /* GetColorTable() */
151 : /************************************************************************/
152 :
153 3 : GDALColorTable *SRPRasterBand::GetColorTable()
154 :
155 : {
156 3 : SRPDataset *l_poDS = (SRPDataset *)this->poDS;
157 :
158 3 : if (l_poDS->oCT.GetColorEntryCount() > 0)
159 3 : return &(l_poDS->oCT);
160 : else
161 0 : return nullptr;
162 : }
163 :
164 : /************************************************************************/
165 : /* IReadBlock() */
166 : /************************************************************************/
167 :
168 5 : CPLErr SRPRasterBand::IReadBlock(int nBlockXOff, int nBlockYOff, void *pImage)
169 :
170 : {
171 5 : SRPDataset *l_poDS = (SRPDataset *)this->poDS;
172 : vsi_l_offset offset;
173 5 : int nBlock = nBlockYOff * l_poDS->NFC + nBlockXOff;
174 5 : if (nBlockXOff >= l_poDS->NFC || nBlockYOff >= l_poDS->NFL)
175 : {
176 0 : CPLError(CE_Failure, CPLE_AppDefined,
177 : "nBlockXOff=%d, NFC=%d, nBlockYOff=%d, NFL=%d", nBlockXOff,
178 : l_poDS->NFC, nBlockYOff, l_poDS->NFL);
179 0 : return CE_Failure;
180 : }
181 :
182 : /* -------------------------------------------------------------------- */
183 : /* Is this a null block? */
184 : /* -------------------------------------------------------------------- */
185 5 : if (l_poDS->TILEINDEX && l_poDS->TILEINDEX[nBlock] <= 0)
186 : {
187 0 : memset(pImage, 0, 128 * 128);
188 0 : return CE_None;
189 : }
190 :
191 : /* -------------------------------------------------------------------- */
192 : /* Compute the offset to the block. */
193 : /* -------------------------------------------------------------------- */
194 5 : if (l_poDS->TILEINDEX)
195 : {
196 3 : if (l_poDS->PCB == 0) // uncompressed
197 0 : offset = l_poDS->offsetInIMG +
198 0 : static_cast<vsi_l_offset>(l_poDS->TILEINDEX[nBlock] - 1) *
199 0 : 128 * 128;
200 : else // compressed
201 3 : offset = l_poDS->offsetInIMG +
202 3 : static_cast<vsi_l_offset>(l_poDS->TILEINDEX[nBlock] - 1);
203 : }
204 : else
205 2 : offset =
206 2 : l_poDS->offsetInIMG + static_cast<vsi_l_offset>(nBlock) * 128 * 128;
207 :
208 : /* -------------------------------------------------------------------- */
209 : /* Seek to target location. */
210 : /* -------------------------------------------------------------------- */
211 5 : if (VSIFSeekL(l_poDS->fdIMG, offset, SEEK_SET) != 0)
212 : {
213 0 : CPLError(CE_Failure, CPLE_FileIO,
214 : "Cannot seek to offset " CPL_FRMT_GUIB, offset);
215 0 : return CE_Failure;
216 : }
217 :
218 : /* -------------------------------------------------------------------- */
219 : /* For uncompressed case we read the 128x128 and return with no */
220 : /* further processing. */
221 : /* -------------------------------------------------------------------- */
222 5 : if (l_poDS->PCB == 0)
223 : {
224 2 : if (VSIFReadL(pImage, 1, 128 * 128, l_poDS->fdIMG) != 128 * 128)
225 : {
226 0 : CPLError(CE_Failure, CPLE_FileIO,
227 : "Cannot read data at offset " CPL_FRMT_GUIB, offset);
228 0 : return CE_Failure;
229 : }
230 : }
231 :
232 : /* -------------------------------------------------------------------- */
233 : /* If this is compressed data, we read a goodly chunk of data */
234 : /* and then decode it. */
235 : /* -------------------------------------------------------------------- */
236 : else
237 : {
238 3 : const int nBufSize = 128 * 128 * 2;
239 3 : GByte *pabyCData = (GByte *)CPLCalloc(nBufSize, 1);
240 :
241 : const int nBytesRead =
242 3 : static_cast<int>(VSIFReadL(pabyCData, 1, nBufSize, l_poDS->fdIMG));
243 3 : if (nBytesRead == 0)
244 : {
245 0 : CPLError(CE_Failure, CPLE_FileIO,
246 : "Cannot read data at offset " CPL_FRMT_GUIB, offset);
247 0 : CPLFree(pabyCData);
248 0 : return CE_Failure;
249 : }
250 :
251 3 : CPLAssert(l_poDS->PVB == 8);
252 3 : CPLAssert(l_poDS->PCB == 4 || l_poDS->PCB == 8);
253 :
254 3 : bool bHalfByteUsed = false;
255 3201 : for (int iSrc = 0, iPixel = 0; iPixel < 128 * 128;)
256 : {
257 3198 : if (iSrc + 2 > nBytesRead)
258 : {
259 0 : CPLFree(pabyCData);
260 0 : CPLError(CE_Failure, CPLE_AppDefined,
261 : "Out of data decoding image block, only %d available.",
262 : iSrc);
263 0 : return CE_Failure;
264 : }
265 :
266 3198 : int nCount = 0;
267 3198 : int nValue = 0;
268 :
269 3198 : if (l_poDS->PCB == 8)
270 : {
271 640 : nCount = pabyCData[iSrc++];
272 640 : nValue = pabyCData[iSrc++];
273 : }
274 2558 : else if (l_poDS->PCB == 4)
275 : {
276 2558 : if ((iPixel % 128) == 0 && bHalfByteUsed)
277 : {
278 254 : iSrc++;
279 254 : bHalfByteUsed = false;
280 254 : continue;
281 : }
282 :
283 2304 : if (bHalfByteUsed)
284 : {
285 1024 : nCount = pabyCData[iSrc++] & 0xf;
286 1024 : nValue = pabyCData[iSrc++];
287 1024 : bHalfByteUsed = false;
288 : }
289 : else
290 : {
291 1280 : nCount = pabyCData[iSrc] >> 4;
292 1280 : nValue = ((pabyCData[iSrc] & 0xf) << 4) +
293 1280 : (pabyCData[iSrc + 1] >> 4);
294 1280 : bHalfByteUsed = true;
295 1280 : iSrc++;
296 : }
297 : }
298 :
299 2944 : if (iPixel + nCount > 128 * 128)
300 : {
301 0 : CPLFree(pabyCData);
302 0 : CPLError(CE_Failure, CPLE_AppDefined,
303 : "Too much data decoding image block, likely corrupt.");
304 0 : return CE_Failure;
305 : }
306 :
307 52096 : while (nCount > 0)
308 : {
309 49152 : ((GByte *)pImage)[iPixel++] = (GByte)nValue;
310 49152 : nCount--;
311 : }
312 : }
313 :
314 3 : CPLFree(pabyCData);
315 : }
316 :
317 5 : return CE_None;
318 : }
319 :
320 : /************************************************************************/
321 : /* SRPDataset() */
322 : /************************************************************************/
323 :
324 13 : SRPDataset::SRPDataset()
325 : : fdIMG(nullptr), TILEINDEX(nullptr), offsetInIMG(0), NFC(0), NFL(0),
326 : ZNA(0), LSO(0.0), PSO(0.0), LOD(0.0), LAD(0.0), ARV(0), BRV(0), PCB(0),
327 13 : PVB(0), papszSubDatasets(nullptr)
328 : {
329 13 : m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
330 13 : }
331 :
332 : /************************************************************************/
333 : /* ~SRPDataset() */
334 : /************************************************************************/
335 :
336 26 : SRPDataset::~SRPDataset()
337 : {
338 13 : CSLDestroy(papszSubDatasets);
339 :
340 13 : if (fdIMG)
341 : {
342 12 : VSIFCloseL(fdIMG);
343 : }
344 :
345 13 : if (TILEINDEX)
346 : {
347 7 : delete[] TILEINDEX;
348 : }
349 26 : }
350 :
351 : /************************************************************************/
352 : /* ResetTo01() */
353 : /* Replace the DD in ZZZZZZDD.XXX with 01. */
354 : /************************************************************************/
355 :
356 9 : CPLString SRPDataset::ResetTo01(const char *str)
357 : {
358 9 : CPLString osResult = str;
359 :
360 9 : osResult[6] = '0';
361 9 : osResult[7] = '1';
362 :
363 9 : return osResult;
364 : }
365 :
366 : /************************************************************************/
367 : /* GetSpatialRef() */
368 : /************************************************************************/
369 :
370 3 : const OGRSpatialReference *SRPDataset::GetSpatialRef() const
371 : {
372 3 : return m_oSRS.IsEmpty() ? nullptr : &m_oSRS;
373 : }
374 :
375 : /************************************************************************/
376 : /* GetGeoTransform() */
377 : /************************************************************************/
378 :
379 3 : CPLErr SRPDataset::GetGeoTransform(double *padfGeoTransform)
380 : {
381 3 : if (EQUAL(osProduct, "ASRP"))
382 : {
383 0 : if (ARV == 0)
384 0 : return CE_Failure;
385 0 : if (ZNA == 9)
386 : {
387 : // North Polar Case
388 0 : padfGeoTransform[0] = 111319.4907933 * (90.0 - PSO / 3600.0) *
389 0 : sin(LSO * M_PI / 648000.0);
390 0 : padfGeoTransform[1] = 40075016.68558 / ARV;
391 0 : padfGeoTransform[2] = 0.0;
392 0 : padfGeoTransform[3] = -111319.4907933 * (90.0 - PSO / 3600.0) *
393 0 : cos(LSO * M_PI / 648000.0);
394 0 : padfGeoTransform[4] = 0.0;
395 0 : padfGeoTransform[5] = -40075016.68558 / ARV;
396 : }
397 0 : else if (ZNA == 18)
398 : {
399 : // South Polar Case
400 0 : padfGeoTransform[0] = 111319.4907933 * (90.0 + PSO / 3600.0) *
401 0 : sin(LSO * M_PI / 648000.0);
402 0 : padfGeoTransform[1] = 40075016.68558 / ARV;
403 0 : padfGeoTransform[2] = 0.0;
404 0 : padfGeoTransform[3] = 111319.4907933 * (90.0 + PSO / 3600.0) *
405 0 : cos(LSO * M_PI / 648000.0);
406 0 : padfGeoTransform[4] = 0.0;
407 0 : padfGeoTransform[5] = -40075016.68558 / ARV;
408 : }
409 : else
410 : {
411 0 : if (BRV == 0)
412 0 : return CE_Failure;
413 0 : padfGeoTransform[0] = LSO / 3600.0;
414 0 : padfGeoTransform[1] = 360. / ARV;
415 0 : padfGeoTransform[2] = 0.0;
416 0 : padfGeoTransform[3] = PSO / 3600.0;
417 0 : padfGeoTransform[4] = 0.0;
418 0 : padfGeoTransform[5] = -360. / BRV;
419 : }
420 :
421 0 : return CE_None;
422 : }
423 3 : else if (EQUAL(osProduct, "USRP"))
424 : {
425 3 : padfGeoTransform[0] = LSO;
426 3 : padfGeoTransform[1] = LOD;
427 3 : padfGeoTransform[2] = 0.0;
428 3 : padfGeoTransform[3] = PSO;
429 3 : padfGeoTransform[4] = 0.0;
430 3 : padfGeoTransform[5] = -LAD;
431 3 : return CE_None;
432 : }
433 :
434 0 : return CE_Failure;
435 : }
436 :
437 : /************************************************************************/
438 : /* GetFromRecord() */
439 : /************************************************************************/
440 :
441 12 : bool SRPDataset::GetFromRecord(const char *pszFileName, DDFRecord *record)
442 : {
443 : int bSuccess;
444 :
445 : /* -------------------------------------------------------------------- */
446 : /* Read a variety of header fields of interest from the .GEN */
447 : /* file. */
448 : /* -------------------------------------------------------------------- */
449 12 : const int nSTR = record->GetIntSubfield("GEN", 0, "STR", 0, &bSuccess);
450 12 : if (!bSuccess || nSTR != 4)
451 : {
452 0 : CPLDebug("SRP", "Failed to extract STR, or not 4.");
453 0 : return false;
454 : }
455 :
456 12 : const int SCA = record->GetIntSubfield("GEN", 0, "SCA", 0, &bSuccess);
457 12 : CPLDebug("SRP", "SCA=%d", SCA);
458 :
459 12 : ZNA = record->GetIntSubfield("GEN", 0, "ZNA", 0, &bSuccess);
460 12 : CPLDebug("SRP", "ZNA=%d", ZNA);
461 :
462 12 : const double PSP = record->GetFloatSubfield("GEN", 0, "PSP", 0, &bSuccess);
463 12 : CPLDebug("SRP", "PSP=%f", PSP);
464 :
465 12 : ARV = record->GetIntSubfield("GEN", 0, "ARV", 0, &bSuccess);
466 12 : CPLDebug("SRP", "ARV=%d", ARV);
467 :
468 12 : BRV = record->GetIntSubfield("GEN", 0, "BRV", 0, &bSuccess);
469 12 : CPLDebug("SRP", "BRV=%d", BRV);
470 :
471 12 : LSO = record->GetFloatSubfield("GEN", 0, "LSO", 0, &bSuccess);
472 12 : CPLDebug("SRP", "LSO=%f", LSO);
473 :
474 12 : PSO = record->GetFloatSubfield("GEN", 0, "PSO", 0, &bSuccess);
475 12 : CPLDebug("SRP", "PSO=%f", PSO);
476 :
477 12 : LAD = record->GetFloatSubfield("GEN", 0, "LAD", 0);
478 12 : LOD = record->GetFloatSubfield("GEN", 0, "LOD", 0);
479 :
480 12 : NFL = record->GetIntSubfield("SPR", 0, "NFL", 0, &bSuccess);
481 12 : CPLDebug("SRP", "NFL=%d", NFL);
482 :
483 12 : NFC = record->GetIntSubfield("SPR", 0, "NFC", 0, &bSuccess);
484 12 : CPLDebug("SRP", "NFC=%d", NFC);
485 :
486 12 : const auto knIntMax = std::numeric_limits<int>::max();
487 12 : if (NFL <= 0 || NFC <= 0 || NFL > knIntMax / 128 || NFC > knIntMax / 128 ||
488 12 : NFL > knIntMax / NFC)
489 : {
490 0 : CPLError(CE_Failure, CPLE_AppDefined, "Invalid NFL / NFC values");
491 0 : return false;
492 : }
493 :
494 12 : const int PNC = record->GetIntSubfield("SPR", 0, "PNC", 0, &bSuccess);
495 12 : CPLDebug("SRP", "PNC=%d", PNC);
496 :
497 12 : const int PNL = record->GetIntSubfield("SPR", 0, "PNL", 0, &bSuccess);
498 12 : CPLDebug("SRP", "PNL=%d", PNL);
499 :
500 12 : if (PNL != 128 || PNC != 128)
501 : {
502 0 : CPLError(CE_Failure, CPLE_AppDefined, "Unsupported PNL or PNC value.");
503 0 : return false;
504 : }
505 :
506 12 : PCB = record->GetIntSubfield("SPR", 0, "PCB", 0);
507 12 : PVB = record->GetIntSubfield("SPR", 0, "PVB", 0);
508 12 : if ((PCB != 8 && PCB != 4 && PCB != 0) || PVB != 8)
509 : {
510 0 : CPLError(CE_Failure, CPLE_AppDefined,
511 : "PCB(%d) or PVB(%d) value unsupported.", PCB, PVB);
512 0 : return false;
513 : }
514 :
515 : const char *pszBAD =
516 12 : record->GetStringSubfield("SPR", 0, "BAD", 0, &bSuccess);
517 12 : if (pszBAD == nullptr)
518 0 : return false;
519 24 : const CPLString osBAD = pszBAD;
520 : {
521 12 : char *c = (char *)strchr(osBAD, ' ');
522 12 : if (c)
523 0 : *c = 0;
524 : }
525 12 : CPLDebug("SRP", "BAD=%s", osBAD.c_str());
526 :
527 : /* -------------------------------------------------------------------- */
528 : /* Read the tile map if available. */
529 : /* -------------------------------------------------------------------- */
530 12 : const char *pszTIF = record->GetStringSubfield("SPR", 0, "TIF", 0);
531 12 : const bool TIF = pszTIF != nullptr && EQUAL(pszTIF, "Y");
532 12 : CPLDebug("SRP", "TIF=%s", TIF ? "true" : "false");
533 :
534 12 : if (TIF)
535 : {
536 7 : DDFField *field = record->FindField("TIM");
537 7 : if (field == nullptr)
538 0 : return false;
539 :
540 7 : DDFFieldDefn *fieldDefn = field->GetFieldDefn();
541 7 : DDFSubfieldDefn *subfieldDefn = fieldDefn->FindSubfieldDefn("TSI");
542 7 : if (subfieldDefn == nullptr)
543 0 : return false;
544 :
545 7 : const int nIndexValueWidth = subfieldDefn->GetWidth();
546 :
547 7 : char offset[30] = {0};
548 : /* Should be strict comparison, but apparently a few datasets */
549 : /* have GetDataSize() greater than the required minimum (#3862) */
550 14 : if (nIndexValueWidth <= 0 ||
551 7 : static_cast<size_t>(nIndexValueWidth) >= sizeof(offset) ||
552 21 : nIndexValueWidth > (INT_MAX - 1) / (NFL * NFC) ||
553 7 : field->GetDataSize() < nIndexValueWidth * NFL * NFC + 1)
554 : {
555 0 : return false;
556 : }
557 :
558 : try
559 : {
560 7 : TILEINDEX = new int[NFL * NFC];
561 : }
562 0 : catch (const std::exception &)
563 : {
564 0 : return false;
565 : }
566 7 : const char *ptr = field->GetData();
567 7 : offset[nIndexValueWidth] = '\0';
568 :
569 14 : for (int i = 0; i < NFL * NFC; i++)
570 : {
571 7 : strncpy(offset, ptr, nIndexValueWidth);
572 7 : ptr += nIndexValueWidth;
573 7 : TILEINDEX[i] = atoi(offset);
574 : // CPLDebug("SRP", "TSI[%d]=%d", i, TILEINDEX[i]);
575 : }
576 : }
577 :
578 : /* -------------------------------------------------------------------- */
579 : /* Open the .IMG file. Try to recover gracefully if the case */
580 : /* of the filename is wrong. */
581 : /* -------------------------------------------------------------------- */
582 24 : const CPLString osDirname = CPLGetDirnameSafe(pszFileName);
583 : const CPLString osImgName =
584 24 : CPLFormCIFilenameSafe(osDirname, osBAD, nullptr);
585 :
586 12 : fdIMG = VSIFOpenL(osImgName, "rb");
587 12 : if (fdIMG == nullptr)
588 : {
589 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find %s",
590 : osImgName.c_str());
591 0 : return false;
592 : }
593 :
594 : /* -------------------------------------------------------------------- */
595 : /* Establish the offset to the first byte of actual image data */
596 : /* in the IMG file, skipping the ISO8211 header. */
597 : /* */
598 : /* This code is awfully fragile! */
599 : /* -------------------------------------------------------------------- */
600 : char c;
601 12 : if (VSIFReadL(&c, 1, 1, fdIMG) != 1)
602 : {
603 0 : return false;
604 : }
605 2604 : while (!VSIFEofL(fdIMG))
606 : {
607 2604 : if (c == 30)
608 : {
609 72 : char recordName[3] = {};
610 72 : if (VSIFReadL(recordName, 1, 3, fdIMG) != 3)
611 : {
612 0 : return false;
613 : }
614 72 : offsetInIMG += 3;
615 72 : if (STARTS_WITH(recordName, "IMG"))
616 : {
617 12 : offsetInIMG += 4;
618 12 : if (VSIFSeekL(fdIMG, 3, SEEK_CUR) != 0)
619 : {
620 0 : return false;
621 : }
622 12 : if (VSIFReadL(&c, 1, 1, fdIMG) != 1)
623 : {
624 0 : return false;
625 : }
626 46296 : while (c != 30)
627 : {
628 46284 : offsetInIMG++;
629 46284 : if (VSIFReadL(&c, 1, 1, fdIMG) != 1)
630 : {
631 0 : return false;
632 : }
633 : }
634 12 : offsetInIMG++;
635 12 : break;
636 : }
637 : }
638 :
639 2592 : offsetInIMG++;
640 2592 : if (VSIFReadL(&c, 1, 1, fdIMG) != 1)
641 : {
642 0 : return false;
643 : }
644 : }
645 :
646 12 : if (VSIFEofL(fdIMG))
647 : {
648 0 : return false;
649 : }
650 :
651 12 : CPLDebug("SRP", "Img offset data = %d", offsetInIMG);
652 :
653 : /* -------------------------------------------------------------------- */
654 : /* Establish the SRP Dataset. */
655 : /* -------------------------------------------------------------------- */
656 12 : nRasterXSize = NFC * 128;
657 12 : nRasterYSize = NFL * 128;
658 :
659 12 : char szValue[32] = {};
660 12 : snprintf(szValue, sizeof(szValue), "%d", SCA);
661 12 : SetMetadataItem("SRP_SCA", szValue);
662 :
663 : // PSP Pixel Spacing, Microns at capture stage {000.0 - 100.0}
664 12 : snprintf(szValue, sizeof(szValue), "%3.1f", PSP);
665 12 : SetMetadataItem("SRP_PSP", szValue);
666 :
667 12 : nBands = 1;
668 24 : for (int i = 0; i < nBands; i++)
669 12 : SetBand(i + 1, new SRPRasterBand(this, i + 1));
670 :
671 : /* -------------------------------------------------------------------- */
672 : /* Try to collect a color map from the .QAL file. */
673 : /* -------------------------------------------------------------------- */
674 24 : const CPLString osBasename = CPLGetBasenameSafe(pszFileName);
675 12 : osQALFileName = CPLFormCIFilenameSafe(osDirname, osBasename, "QAL");
676 :
677 12 : DDFModule oQALModule;
678 :
679 12 : if (oQALModule.Open(osQALFileName, TRUE))
680 : {
681 48 : while ((record = oQALModule.ReadRecord()) != nullptr)
682 : {
683 36 : if (record->FindField("COL") != nullptr)
684 : {
685 : const int nColorCount =
686 12 : std::min(256, record->FindField("COL")->GetRepeatCount());
687 :
688 60 : for (int iColor = 0; iColor < nColorCount; iColor++)
689 : {
690 48 : const int nCCD = record->GetIntSubfield("COL", 0, "CCD",
691 : iColor, &bSuccess);
692 48 : if (!bSuccess || nCCD < 0 || nCCD > 255)
693 : break;
694 :
695 48 : int nNSR = record->GetIntSubfield("COL", 0, "NSR", iColor);
696 48 : int nNSG = record->GetIntSubfield("COL", 0, "NSG", iColor);
697 48 : int nNSB = record->GetIntSubfield("COL", 0, "NSB", iColor);
698 :
699 48 : GDALColorEntry sEntry = {static_cast<short>(nNSR),
700 : static_cast<short>(nNSG),
701 48 : static_cast<short>(nNSB), 255};
702 :
703 48 : oCT.SetColorEntry(nCCD, &sEntry);
704 : }
705 : }
706 :
707 36 : if (record->FindField("QUV") != nullptr)
708 : {
709 : // TODO: Translate to English or state why this should not be in
710 : // English.
711 : // Date de production du produit : QAL.QUV.DAT1
712 : // Numero d'edition du produit : QAL.QUV.EDN
713 :
714 : const int EDN =
715 12 : record->GetIntSubfield("QUV", 0, "EDN", 0, &bSuccess);
716 12 : if (bSuccess)
717 : {
718 12 : CPLDebug("SRP", "EDN=%d", EDN);
719 12 : snprintf(szValue, sizeof(szValue), "%d", EDN);
720 12 : SetMetadataItem("SRP_EDN", szValue);
721 : }
722 :
723 : const char *pszCDV07 =
724 12 : record->GetStringSubfield("QUV", 0, "CDV07", 0);
725 12 : if (pszCDV07 != nullptr)
726 0 : SetMetadataItem("SRP_CREATIONDATE", pszCDV07);
727 : else
728 : { /*USRP1.2*/
729 : const char *pszDAT =
730 12 : record->GetStringSubfield("QUV", 0, "DAT1", 0);
731 12 : if (pszDAT != nullptr && strlen(pszDAT) >= 12)
732 : {
733 : char dat[9];
734 12 : strncpy(dat, pszDAT + 4, 8);
735 12 : dat[8] = '\0';
736 12 : CPLDebug("SRP", "Record DAT %s", dat);
737 12 : SetMetadataItem("SRP_CREATIONDATE", dat);
738 : }
739 : }
740 :
741 : const char *pszCDV24 =
742 12 : record->GetStringSubfield("QUV", 0, "CDV24", 0);
743 12 : if (pszCDV24 != nullptr)
744 : {
745 0 : SetMetadataItem("SRP_REVISIONDATE", pszCDV24);
746 : }
747 : else
748 : { /*USRP1.2*/
749 : const char *pszDAT =
750 12 : record->GetStringSubfield("QUV", 0, "DAT2", 0);
751 12 : if (pszDAT != nullptr && strlen(pszDAT) >= 12)
752 : {
753 : char dat[9];
754 12 : strncpy(dat, pszDAT + 4, 8);
755 12 : dat[8] = '\0';
756 12 : CPLDebug("SRP", "Record DAT %s", dat);
757 12 : SetMetadataItem("SRP_REVISIONDATE", dat);
758 : }
759 : }
760 :
761 : const char *pszQSS =
762 12 : record->GetStringSubfield("QSR", 0, "QSS", 0);
763 12 : if (pszQSS != nullptr)
764 12 : SetMetadataItem("SRP_CLASSIFICATION", pszQSS);
765 : }
766 : }
767 : }
768 : else
769 : {
770 0 : osQALFileName = "";
771 0 : CPLError(CE_Warning, CPLE_AppDefined,
772 : "Unable to find .QAL file, no color table applied.");
773 : }
774 :
775 : /* -------------------------------------------------------------------- */
776 : /* Derive the coordinate system. */
777 : /* -------------------------------------------------------------------- */
778 12 : if (EQUAL(osProduct, "ASRP"))
779 : {
780 0 : m_oSRS.importFromWkt(SRS_WKT_WGS84_LAT_LONG);
781 :
782 0 : if (ZNA == 9)
783 : {
784 0 : m_oSRS.importFromWkt(
785 : "PROJCS[\"ARC_System_Zone_09\",GEOGCS[\"GCS_Sphere\","
786 : "DATUM[\"D_Sphere\",SPHEROID[\"Sphere\",6378137.0,0.0]],"
787 : "PRIMEM[\"Greenwich\",0],UNIT[\"degree\",0.0174532925199433]],"
788 : "PROJECTION[\"Azimuthal_Equidistant\"],"
789 : "PARAMETER[\"latitude_of_center\",90],"
790 : "PARAMETER[\"longitude_of_center\",0],"
791 : "PARAMETER[\"false_easting\",0],"
792 : "PARAMETER[\"false_northing\",0],"
793 : "UNIT[\"metre\",1]]");
794 : }
795 :
796 0 : if (ZNA == 18)
797 : {
798 0 : m_oSRS.importFromWkt(
799 : "PROJCS[\"ARC_System_Zone_18\",GEOGCS[\"GCS_Sphere\","
800 : "DATUM[\"D_Sphere\",SPHEROID[\"Sphere\",6378137.0,0.0]],"
801 : "PRIMEM[\"Greenwich\",0],UNIT[\"degree\",0.0174532925199433]],"
802 : "PROJECTION[\"Azimuthal_Equidistant\"],"
803 : "PARAMETER[\"latitude_of_center\",-90],"
804 : "PARAMETER[\"longitude_of_center\",0],"
805 : "PARAMETER[\"false_easting\",0],"
806 : "PARAMETER[\"false_northing\",0],"
807 : "UNIT[\"metre\",1]]");
808 : }
809 : }
810 : else
811 : {
812 12 : if (ZNA >= -60 && ZNA <= 60 && ZNA != 0)
813 : {
814 12 : m_oSRS.SetUTM(std::abs(ZNA), ZNA > 0);
815 12 : m_oSRS.SetWellKnownGeogCS("WGS84");
816 : }
817 0 : else if (ZNA == 61)
818 : {
819 0 : m_oSRS.importFromEPSG(32661); // WGS84 UPS North
820 : }
821 0 : else if (ZNA == -61)
822 : {
823 0 : m_oSRS.importFromEPSG(32761); // WGS84 UPS South
824 : }
825 : }
826 :
827 12 : snprintf(szValue, sizeof(szValue), "%d", ZNA);
828 12 : SetMetadataItem("SRP_ZNA", szValue);
829 :
830 12 : return true;
831 : }
832 :
833 : /************************************************************************/
834 : /* GetFileList() */
835 : /************************************************************************/
836 :
837 5 : char **SRPDataset::GetFileList()
838 :
839 : {
840 5 : char **papszFileList = GDALPamDataset::GetFileList();
841 5 : if (!osGENFileName.empty() && !osIMGFileName.empty())
842 : {
843 10 : CPLString osMainFilename = GetDescription();
844 : VSIStatBufL sStat;
845 :
846 5 : const bool bMainFileReal = VSIStatL(osMainFilename, &sStat) == 0;
847 5 : if (bMainFileReal)
848 : {
849 8 : CPLString osShortMainFilename = CPLGetFilename(osMainFilename);
850 8 : CPLString osShortGENFileName = CPLGetFilename(osGENFileName);
851 4 : if (!EQUAL(osShortMainFilename.c_str(), osShortGENFileName.c_str()))
852 : papszFileList =
853 4 : CSLAddString(papszFileList, osGENFileName.c_str());
854 : }
855 : else
856 : {
857 1 : papszFileList = CSLAddString(papszFileList, osGENFileName.c_str());
858 : }
859 :
860 5 : papszFileList = CSLAddString(papszFileList, osIMGFileName.c_str());
861 :
862 5 : if (!osQALFileName.empty())
863 5 : papszFileList = CSLAddString(papszFileList, osQALFileName);
864 : }
865 5 : return papszFileList;
866 : }
867 :
868 : /************************************************************************/
869 : /* AddSubDataset() */
870 : /************************************************************************/
871 :
872 1 : void SRPDataset::AddSubDataset(const char *pszGENFileName,
873 : const char *pszIMGFileName)
874 : {
875 1 : const int nCount = CSLCount(papszSubDatasets) / 2;
876 :
877 1 : CPLString osSubDatasetName = "SRP:";
878 1 : osSubDatasetName += pszGENFileName;
879 1 : osSubDatasetName += ",";
880 1 : osSubDatasetName += pszIMGFileName;
881 :
882 : char szName[80];
883 1 : snprintf(szName, sizeof(szName), "SUBDATASET_%d_NAME", nCount + 1);
884 1 : papszSubDatasets =
885 1 : CSLSetNameValue(papszSubDatasets, szName, osSubDatasetName);
886 :
887 1 : snprintf(szName, sizeof(szName), "SUBDATASET_%d_DESC", nCount + 1);
888 1 : papszSubDatasets =
889 1 : CSLSetNameValue(papszSubDatasets, szName, osSubDatasetName);
890 1 : }
891 :
892 : /************************************************************************/
893 : /* GetMetadata() */
894 : /************************************************************************/
895 :
896 5 : char **SRPDataset::GetMetadata(const char *pszDomain)
897 :
898 : {
899 5 : if (pszDomain != nullptr && EQUAL(pszDomain, "SUBDATASETS"))
900 1 : return papszSubDatasets;
901 :
902 4 : return GDALPamDataset::GetMetadata(pszDomain);
903 : }
904 :
905 : /************************************************************************/
906 : /* FindRecordInGENForIMG() */
907 : /************************************************************************/
908 :
909 3 : DDFRecord *SRPDataset::FindRecordInGENForIMG(DDFModule &module,
910 : const char *pszGENFileName,
911 : const char *pszIMGFileName)
912 : {
913 : /* Finds the GEN file corresponding to the IMG file */
914 3 : if (!module.Open(pszGENFileName, TRUE))
915 0 : return nullptr;
916 :
917 6 : CPLString osShortIMGFilename = CPLGetFilename(pszIMGFileName);
918 :
919 3 : DDFField *field = nullptr;
920 3 : DDFFieldDefn *fieldDefn = nullptr;
921 :
922 : // Now finds the record.
923 : while (true)
924 : {
925 3 : CPLPushErrorHandler(CPLQuietErrorHandler);
926 3 : DDFRecord *record = module.ReadRecord();
927 3 : CPLPopErrorHandler();
928 3 : CPLErrorReset();
929 3 : if (record == nullptr)
930 0 : return nullptr;
931 :
932 3 : if (record->GetFieldCount() >= 5)
933 : {
934 3 : field = record->GetField(0);
935 3 : fieldDefn = field->GetFieldDefn();
936 6 : if (!(strcmp(fieldDefn->GetName(), "001") == 0 &&
937 3 : fieldDefn->GetSubfieldCount() == 2))
938 : {
939 0 : continue;
940 : }
941 :
942 3 : const char *RTY = record->GetStringSubfield("001", 0, "RTY", 0);
943 3 : if (RTY == nullptr)
944 0 : continue;
945 : /* Ignore overviews */
946 3 : if (strcmp(RTY, "OVV") == 0)
947 0 : continue;
948 :
949 3 : if (strcmp(RTY, "GIN") != 0)
950 0 : continue;
951 :
952 3 : field = record->GetField(3);
953 3 : fieldDefn = field->GetFieldDefn();
954 :
955 6 : if (!(strcmp(fieldDefn->GetName(), "SPR") == 0 &&
956 3 : fieldDefn->GetSubfieldCount() == 15))
957 : {
958 0 : continue;
959 : }
960 :
961 3 : const char *pszBAD = record->GetStringSubfield("SPR", 0, "BAD", 0);
962 3 : if (pszBAD == nullptr || strlen(pszBAD) != 12)
963 0 : continue;
964 3 : const CPLString osBAD = pszBAD;
965 : {
966 3 : char *c = (char *)strchr(osBAD.c_str(), ' ');
967 3 : if (c)
968 0 : *c = 0;
969 : }
970 :
971 3 : if (EQUAL(osShortIMGFilename.c_str(), osBAD.c_str()))
972 : {
973 3 : return record;
974 : }
975 : }
976 0 : }
977 : }
978 :
979 : /************************************************************************/
980 : /* OpenDataset() */
981 : /************************************************************************/
982 :
983 12 : SRPDataset *SRPDataset::OpenDataset(const char *pszGENFileName,
984 : const char *pszIMGFileName,
985 : DDFRecord *record)
986 : {
987 24 : DDFModule module; // Don't move this line as it holds ownership of record.
988 :
989 12 : if (record == nullptr)
990 : {
991 3 : record = FindRecordInGENForIMG(module, pszGENFileName, pszIMGFileName);
992 3 : if (record == nullptr)
993 0 : return nullptr;
994 : }
995 :
996 12 : DDFField *field = record->GetField(1);
997 12 : if (field == nullptr)
998 0 : return nullptr;
999 12 : DDFFieldDefn *fieldDefn = field->GetFieldDefn();
1000 :
1001 24 : if (!(strcmp(fieldDefn->GetName(), "DSI") == 0 &&
1002 12 : fieldDefn->GetSubfieldCount() == 2))
1003 : {
1004 0 : return nullptr;
1005 : }
1006 :
1007 12 : const char *pszPRT = record->GetStringSubfield("DSI", 0, "PRT", 0);
1008 12 : if (pszPRT == nullptr)
1009 0 : return nullptr;
1010 :
1011 24 : CPLString osPRT = pszPRT;
1012 12 : osPRT.resize(4);
1013 12 : CPLDebug("SRP", "osPRT=%s", osPRT.c_str());
1014 12 : if (!EQUAL(osPRT, "ASRP") && !EQUAL(osPRT, "USRP"))
1015 0 : return nullptr;
1016 :
1017 12 : const char *pszNAM = record->GetStringSubfield("DSI", 0, "NAM", 0);
1018 12 : if (pszNAM == nullptr)
1019 0 : return nullptr;
1020 :
1021 24 : const CPLString osNAM = pszNAM;
1022 12 : CPLDebug("SRP", "osNAM=%s", osNAM.c_str());
1023 12 : if (strlen(pszNAM) != 8)
1024 : {
1025 12 : CPLDebug("SRP", "Name Size=%d", (int)strlen(pszNAM));
1026 : }
1027 :
1028 12 : SRPDataset *poDS = new SRPDataset();
1029 :
1030 12 : poDS->osProduct = osPRT;
1031 12 : poDS->osGENFileName = pszGENFileName;
1032 12 : poDS->osIMGFileName = pszIMGFileName;
1033 :
1034 12 : poDS->SetMetadataItem("SRP_NAM", osNAM);
1035 12 : poDS->SetMetadataItem("SRP_PRODUCT", osPRT);
1036 :
1037 12 : if (!poDS->GetFromRecord(pszGENFileName, record))
1038 : {
1039 0 : delete poDS;
1040 0 : return nullptr;
1041 : }
1042 :
1043 12 : return poDS;
1044 : }
1045 :
1046 : /************************************************************************/
1047 : /* GetGENListFromTHF() */
1048 : /************************************************************************/
1049 :
1050 4 : char **SRPDataset::GetGENListFromTHF(const char *pszFileName)
1051 : {
1052 8 : DDFModule module;
1053 4 : DDFRecord *record = nullptr;
1054 4 : DDFField *field = nullptr;
1055 4 : DDFFieldDefn *fieldDefn = nullptr;
1056 4 : int nFilenames = 0;
1057 :
1058 4 : char **papszFileNames = nullptr;
1059 4 : if (!module.Open(pszFileName, TRUE))
1060 0 : return papszFileNames;
1061 :
1062 8 : CPLString osDirName(CPLGetDirnameSafe(pszFileName));
1063 :
1064 : while (true)
1065 : {
1066 14 : CPLPushErrorHandler(CPLQuietErrorHandler);
1067 14 : record = module.ReadRecord();
1068 14 : CPLPopErrorHandler();
1069 14 : CPLErrorReset();
1070 14 : if (record == nullptr)
1071 4 : break;
1072 10 : if (record->GetFieldCount() > 2)
1073 : {
1074 10 : field = record->GetField(0);
1075 10 : fieldDefn = field->GetFieldDefn();
1076 20 : if (!(strcmp(fieldDefn->GetName(), "001") == 0 &&
1077 10 : fieldDefn->GetSubfieldCount() == 2))
1078 : {
1079 0 : continue;
1080 : }
1081 :
1082 10 : const char *RTY = record->GetStringSubfield("001", 0, "RTY", 0);
1083 10 : if (RTY == nullptr)
1084 : {
1085 0 : continue;
1086 : }
1087 :
1088 10 : if (strcmp(RTY, "THF") == 0)
1089 : {
1090 3 : field = record->GetField(1);
1091 3 : fieldDefn = field->GetFieldDefn();
1092 6 : if (!(strcmp(fieldDefn->GetName(), "VDR") == 0 &&
1093 3 : fieldDefn->GetSubfieldCount() == 8))
1094 : {
1095 0 : continue;
1096 : }
1097 :
1098 3 : int iFDRFieldInstance = 0;
1099 6 : for (int i = 2; i < record->GetFieldCount(); i++)
1100 : {
1101 3 : field = record->GetField(i);
1102 3 : fieldDefn = field->GetFieldDefn();
1103 :
1104 6 : if (!(strcmp(fieldDefn->GetName(), "FDR") == 0 &&
1105 3 : fieldDefn->GetSubfieldCount() == 7))
1106 : {
1107 0 : CPLDebug("SRP", "Record FDR %d",
1108 : fieldDefn->GetSubfieldCount());
1109 0 : continue;
1110 : }
1111 :
1112 3 : const char *pszNAM = record->GetStringSubfield(
1113 : "FDR", iFDRFieldInstance++, "NAM", 0);
1114 3 : if (pszNAM == nullptr)
1115 0 : continue;
1116 :
1117 6 : CPLString osName = CPLString(pszNAM);
1118 :
1119 : /* Define a subdirectory from Dataset but with only 6
1120 : * characters */
1121 6 : CPLString osDirDataset = pszNAM;
1122 3 : osDirDataset.resize(6);
1123 3 : CPLString osDatasetDir = CPLFormFilenameSafe(
1124 6 : osDirName.c_str(), osDirDataset.c_str(), nullptr);
1125 :
1126 6 : CPLString osGENFileName = "";
1127 :
1128 3 : int bFound = 0;
1129 :
1130 : {
1131 : char **papszDirContent =
1132 3 : VSIReadDir(osDatasetDir.c_str());
1133 3 : char **ptrDir = papszDirContent;
1134 3 : if (ptrDir)
1135 : {
1136 0 : while (*ptrDir)
1137 : {
1138 0 : if (EQUAL(CPLGetExtensionSafe(*ptrDir).c_str(),
1139 : "GEN"))
1140 : {
1141 0 : bFound = 1;
1142 0 : osGENFileName = CPLFormFilenameSafe(
1143 0 : osDatasetDir.c_str(), *ptrDir, nullptr);
1144 0 : CPLDebug("SRP",
1145 : "Building GEN full file name : %s",
1146 : osGENFileName.c_str());
1147 0 : break;
1148 : }
1149 0 : ptrDir++;
1150 : }
1151 0 : CSLDestroy(papszDirContent);
1152 : }
1153 : }
1154 :
1155 : /* If not found in sub directory then search in the same
1156 : * directory of the THF file */
1157 3 : if (bFound == 0)
1158 : {
1159 3 : char **papszDirContent = VSIReadDir(osDirName.c_str());
1160 3 : char **ptrDir = papszDirContent;
1161 3 : if (ptrDir)
1162 : {
1163 7 : while (*ptrDir)
1164 : {
1165 7 : if (EQUAL(CPLGetExtensionSafe(*ptrDir).c_str(),
1166 10 : "GEN") &&
1167 10 : EQUALN(CPLGetBasenameSafe(*ptrDir).c_str(),
1168 : osName, 6))
1169 : {
1170 3 : bFound = 1;
1171 3 : osGENFileName = CPLFormFilenameSafe(
1172 3 : osDirName.c_str(), *ptrDir, nullptr);
1173 3 : CPLDebug("SRP",
1174 : "Building GEN full file name : %s",
1175 : osGENFileName.c_str());
1176 3 : break;
1177 : }
1178 4 : ptrDir++;
1179 : }
1180 3 : CSLDestroy(papszDirContent);
1181 : }
1182 : }
1183 :
1184 3 : if (bFound == 1)
1185 : {
1186 6 : papszFileNames = (char **)CPLRealloc(
1187 3 : papszFileNames, sizeof(char *) * (nFilenames + 2));
1188 6 : papszFileNames[nFilenames] =
1189 3 : CPLStrdup(osGENFileName.c_str());
1190 3 : papszFileNames[nFilenames + 1] = nullptr;
1191 3 : nFilenames++;
1192 : }
1193 : }
1194 : }
1195 : }
1196 10 : }
1197 4 : return papszFileNames;
1198 : }
1199 :
1200 : /************************************************************************/
1201 : /* AddMetadatafromFromTHF() */
1202 : /************************************************************************/
1203 :
1204 1 : void SRPDataset::AddMetadatafromFromTHF(const char *pszFileName)
1205 : {
1206 1 : DDFModule module;
1207 1 : DDFRecord *record = nullptr;
1208 1 : DDFField *field = nullptr;
1209 1 : DDFFieldDefn *fieldDefn = nullptr;
1210 :
1211 1 : int bSuccess = 0;
1212 1 : if (!module.Open(pszFileName, TRUE))
1213 0 : return;
1214 :
1215 : while (true)
1216 : {
1217 3 : CPLPushErrorHandler(CPLQuietErrorHandler);
1218 3 : record = module.ReadRecord();
1219 3 : CPLPopErrorHandler();
1220 3 : CPLErrorReset();
1221 3 : if (record == nullptr || record->GetFieldCount() <= 2)
1222 1 : break;
1223 :
1224 2 : field = record->GetField(0);
1225 2 : fieldDefn = field->GetFieldDefn();
1226 4 : if (!(strcmp(fieldDefn->GetName(), "001") == 0) ||
1227 2 : fieldDefn->GetSubfieldCount() != 2)
1228 0 : break;
1229 :
1230 2 : const char *RTY = record->GetStringSubfield("001", 0, "RTY", 0);
1231 2 : if (RTY != nullptr && strcmp(RTY, "THF") == 0)
1232 : {
1233 1 : field = record->GetField(1);
1234 1 : fieldDefn = field->GetFieldDefn();
1235 2 : if ((strcmp(fieldDefn->GetName(), "VDR") == 0 &&
1236 1 : fieldDefn->GetSubfieldCount() == 8))
1237 : {
1238 :
1239 : const char *pszVOO =
1240 1 : record->GetStringSubfield("VDR", 0, "VOO", 0);
1241 1 : if (pszVOO != nullptr)
1242 : {
1243 1 : CPLDebug("SRP", "Record VOO %s", pszVOO);
1244 1 : SetMetadataItem("SRP_VOO", pszVOO);
1245 : }
1246 :
1247 1 : int EDN = record->GetIntSubfield("VDR", 0, "EDN", 0, &bSuccess);
1248 1 : if (bSuccess)
1249 : {
1250 1 : CPLDebug("SRP", "Record EDN %d", EDN);
1251 : char szValue[5];
1252 1 : snprintf(szValue, sizeof(szValue), "%d", EDN);
1253 1 : SetMetadataItem("SRP_EDN", szValue);
1254 : }
1255 :
1256 : const char *pszCDV07 =
1257 1 : record->GetStringSubfield("VDR", 0, "CDV07", 0);
1258 1 : if (pszCDV07 != nullptr)
1259 : {
1260 0 : CPLDebug("SRP", "Record pszCDV07 %s", pszCDV07);
1261 0 : SetMetadataItem("SRP_CREATIONDATE", pszCDV07);
1262 : }
1263 : else
1264 : { /*USRP1.2*/
1265 : const char *pszDAT =
1266 1 : record->GetStringSubfield("VDR", 0, "DAT", 0);
1267 1 : if (pszDAT != nullptr)
1268 : {
1269 : char dat[9];
1270 1 : strncpy(dat, pszDAT + 4, 8);
1271 1 : dat[8] = '\0';
1272 1 : CPLDebug("SRP", "Record DAT %s", dat);
1273 1 : SetMetadataItem("SRP_CREATIONDATE", dat);
1274 : }
1275 : }
1276 : }
1277 : } /* End of THF part */
1278 :
1279 2 : if (RTY != nullptr && strcmp(RTY, "LCF") == 0)
1280 : {
1281 1 : field = record->GetField(1);
1282 1 : fieldDefn = field->GetFieldDefn();
1283 2 : if ((strcmp(fieldDefn->GetName(), "QSR") == 0 &&
1284 1 : fieldDefn->GetSubfieldCount() == 4))
1285 : {
1286 :
1287 : const char *pszQSS =
1288 1 : record->GetStringSubfield("QSR", 0, "QSS", 0);
1289 1 : if (pszQSS != nullptr)
1290 : {
1291 1 : CPLDebug("SRP", "Record Classification %s", pszQSS);
1292 1 : SetMetadataItem("SRP_CLASSIFICATION", pszQSS);
1293 : }
1294 : }
1295 :
1296 1 : field = record->GetField(2);
1297 1 : fieldDefn = field->GetFieldDefn();
1298 2 : if ((strcmp(fieldDefn->GetName(), "QUV") == 0 &&
1299 1 : fieldDefn->GetSubfieldCount() == 6))
1300 : {
1301 : const char *pszSRC2 =
1302 0 : record->GetStringSubfield("QUV", 0, "SRC1", 0);
1303 0 : if (pszSRC2 != nullptr)
1304 : {
1305 0 : SetMetadataItem("SRP_PRODUCTVERSION", pszSRC2);
1306 : }
1307 : else
1308 : {
1309 : const char *pszSRC =
1310 0 : record->GetStringSubfield("QUV", 0, "SRC", 0);
1311 0 : if (pszSRC != nullptr)
1312 : {
1313 0 : SetMetadataItem("SRP_PRODUCTVERSION", pszSRC);
1314 : }
1315 : }
1316 : }
1317 : } /* End of LCF part */
1318 2 : }
1319 : }
1320 :
1321 : /************************************************************************/
1322 : /* GetIMGListFromGEN() */
1323 : /************************************************************************/
1324 :
1325 3 : char **SRPDataset::GetIMGListFromGEN(const char *pszFileName,
1326 : int *pnRecordIndex)
1327 : {
1328 3 : DDFRecord *record = nullptr;
1329 3 : DDFField *field = nullptr;
1330 3 : DDFFieldDefn *fieldDefn = nullptr;
1331 3 : int nFilenames = 0;
1332 3 : char **papszFileNames = nullptr;
1333 3 : int nRecordIndex = -1;
1334 :
1335 3 : if (pnRecordIndex)
1336 2 : *pnRecordIndex = -1;
1337 :
1338 6 : DDFModule module;
1339 3 : if (!module.Open(pszFileName, TRUE))
1340 0 : return nullptr;
1341 :
1342 : while (true)
1343 : {
1344 9 : nRecordIndex++;
1345 :
1346 9 : CPLPushErrorHandler(CPLQuietErrorHandler);
1347 9 : record = module.ReadRecord();
1348 9 : CPLPopErrorHandler();
1349 9 : CPLErrorReset();
1350 9 : if (record == nullptr)
1351 3 : break;
1352 :
1353 6 : if (record->GetFieldCount() >= 5)
1354 : {
1355 3 : field = record->GetField(0);
1356 3 : fieldDefn = field->GetFieldDefn();
1357 6 : if (!(strcmp(fieldDefn->GetName(), "001") == 0 &&
1358 3 : fieldDefn->GetSubfieldCount() == 2))
1359 : {
1360 0 : continue;
1361 : }
1362 :
1363 3 : const char *RTY = record->GetStringSubfield("001", 0, "RTY", 0);
1364 3 : if (RTY == nullptr)
1365 0 : continue;
1366 : /* Ignore overviews */
1367 3 : if (strcmp(RTY, "OVV") == 0)
1368 0 : continue;
1369 :
1370 3 : if (strcmp(RTY, "GIN") != 0)
1371 0 : continue;
1372 :
1373 : /* make sure that the GEN file is part of a SRP dataset, not an ADRG
1374 : * dataset, by checking that the GEN field does not contain a NOW
1375 : * subfield */
1376 3 : const char *NWO = record->GetStringSubfield("GEN", 0, "NWO", 0);
1377 3 : if (NWO)
1378 : {
1379 0 : CSLDestroy(papszFileNames);
1380 0 : return nullptr;
1381 : }
1382 :
1383 3 : field = record->GetField(3);
1384 3 : if (field == nullptr)
1385 0 : continue;
1386 3 : fieldDefn = field->GetFieldDefn();
1387 :
1388 6 : if (!(strcmp(fieldDefn->GetName(), "SPR") == 0 &&
1389 3 : fieldDefn->GetSubfieldCount() == 15))
1390 : {
1391 0 : continue;
1392 : }
1393 :
1394 3 : const char *pszBAD = record->GetStringSubfield("SPR", 0, "BAD", 0);
1395 3 : if (pszBAD == nullptr || strlen(pszBAD) != 12)
1396 0 : continue;
1397 6 : CPLString osBAD = pszBAD;
1398 : {
1399 3 : char *c = (char *)strchr(osBAD.c_str(), ' ');
1400 3 : if (c)
1401 0 : *c = 0;
1402 : }
1403 3 : CPLDebug("SRP", "BAD=%s", osBAD.c_str());
1404 :
1405 : /* Build full IMG file name from BAD value */
1406 6 : const CPLString osGENDir(CPLGetDirnameSafe(pszFileName));
1407 :
1408 : const CPLString osFileName =
1409 3 : CPLFormFilenameSafe(osGENDir.c_str(), osBAD.c_str(), nullptr);
1410 : VSIStatBufL sStatBuf;
1411 3 : if (VSIStatL(osFileName, &sStatBuf) == 0)
1412 : {
1413 3 : osBAD = osFileName;
1414 3 : CPLDebug("SRP", "Building IMG full file name : %s",
1415 : osBAD.c_str());
1416 : }
1417 : else
1418 : {
1419 0 : char **papszDirContent = nullptr;
1420 0 : if (strcmp(osGENDir.c_str(), "/vsimem") == 0)
1421 : {
1422 0 : CPLString osTmp = osGENDir + "/";
1423 0 : papszDirContent = VSIReadDir(osTmp);
1424 : }
1425 : else
1426 0 : papszDirContent = VSIReadDir(osGENDir);
1427 0 : char **ptrDir = papszDirContent;
1428 0 : while (ptrDir && *ptrDir)
1429 : {
1430 0 : if (EQUAL(*ptrDir, osBAD.c_str()))
1431 : {
1432 0 : osBAD = CPLFormFilenameSafe(osGENDir.c_str(), *ptrDir,
1433 0 : nullptr);
1434 0 : CPLDebug("SRP", "Building IMG full file name : %s",
1435 : osBAD.c_str());
1436 0 : break;
1437 : }
1438 0 : ptrDir++;
1439 : }
1440 0 : CSLDestroy(papszDirContent);
1441 : }
1442 :
1443 3 : if (nFilenames == 0 && pnRecordIndex)
1444 2 : *pnRecordIndex = nRecordIndex;
1445 :
1446 6 : papszFileNames = (char **)CPLRealloc(
1447 3 : papszFileNames, sizeof(char *) * (nFilenames + 2));
1448 3 : papszFileNames[nFilenames] = CPLStrdup(osBAD.c_str());
1449 3 : papszFileNames[nFilenames + 1] = nullptr;
1450 3 : nFilenames++;
1451 : }
1452 6 : }
1453 :
1454 3 : return papszFileNames;
1455 : }
1456 :
1457 : /************************************************************************/
1458 : /* Open() */
1459 : /************************************************************************/
1460 :
1461 30186 : GDALDataset *SRPDataset::Open(GDALOpenInfo *poOpenInfo)
1462 : {
1463 30186 : int nRecordIndex = -1;
1464 60362 : CPLString osGENFileName;
1465 60356 : CPLString osIMGFileName;
1466 30176 : int bFromSubdataset = FALSE;
1467 30176 : int bTHFWithSingleGEN = FALSE;
1468 :
1469 30176 : if (STARTS_WITH_CI(poOpenInfo->pszFilename, "SRP:"))
1470 : {
1471 : char **papszTokens =
1472 1 : CSLTokenizeString2(poOpenInfo->pszFilename + 4, ",", 0);
1473 1 : if (CSLCount(papszTokens) == 2)
1474 : {
1475 1 : osGENFileName = papszTokens[0];
1476 1 : osIMGFileName = papszTokens[1];
1477 1 : bFromSubdataset = TRUE;
1478 : }
1479 1 : CSLDestroy(papszTokens);
1480 : }
1481 : else
1482 : {
1483 30175 : if (poOpenInfo->nHeaderBytes < 500)
1484 28162 : return nullptr;
1485 2055 : CPLString osFileName(poOpenInfo->pszFilename);
1486 :
1487 2055 : if (EQUAL(CPLGetExtensionSafe(osFileName.c_str()).c_str(), "THF"))
1488 : {
1489 :
1490 4 : CPLDebug("SRP", "Read THF");
1491 :
1492 4 : char **papszFileNames = GetGENListFromTHF(osFileName.c_str());
1493 4 : if (papszFileNames == nullptr)
1494 1 : return nullptr;
1495 6 : if (papszFileNames[1] == nullptr &&
1496 3 : CPLTestBool(CPLGetConfigOption(
1497 : "SRP_SINGLE_GEN_IN_THF_AS_DATASET", "TRUE")))
1498 : {
1499 2 : osFileName = papszFileNames[0];
1500 2 : CSLDestroy(papszFileNames);
1501 2 : bTHFWithSingleGEN = TRUE;
1502 : }
1503 : else
1504 : {
1505 1 : char **ptr = papszFileNames;
1506 1 : SRPDataset *poDS = new SRPDataset();
1507 1 : poDS->AddMetadatafromFromTHF(osFileName.c_str());
1508 2 : while (*ptr)
1509 : {
1510 1 : char **papszIMGFileNames = GetIMGListFromGEN(*ptr);
1511 1 : char **papszIMGIter = papszIMGFileNames;
1512 2 : while (papszIMGIter && *papszIMGIter)
1513 : {
1514 1 : poDS->AddSubDataset(*ptr, *papszIMGIter);
1515 1 : papszIMGIter++;
1516 : }
1517 1 : CSLDestroy(papszIMGFileNames);
1518 :
1519 1 : ptr++;
1520 : }
1521 1 : CSLDestroy(papszFileNames);
1522 1 : return poDS;
1523 : }
1524 : }
1525 :
1526 2053 : if (bTHFWithSingleGEN
1527 : #ifdef OPEN_GEN
1528 : || EQUAL(CPLGetExtensionSafe(osFileName.c_str()).c_str(), "GEN")
1529 : #endif
1530 : )
1531 : {
1532 2 : osGENFileName = osFileName;
1533 :
1534 : char **papszFileNames =
1535 2 : GetIMGListFromGEN(osFileName.c_str(), &nRecordIndex);
1536 2 : if (papszFileNames == nullptr)
1537 0 : return nullptr;
1538 2 : if (papszFileNames[1] == nullptr)
1539 : {
1540 2 : osIMGFileName = papszFileNames[0];
1541 2 : CSLDestroy(papszFileNames);
1542 : }
1543 : else
1544 : {
1545 0 : char **ptr = papszFileNames;
1546 0 : SRPDataset *poDS = new SRPDataset();
1547 0 : while (*ptr)
1548 : {
1549 0 : poDS->AddSubDataset(osFileName.c_str(), *ptr);
1550 0 : ptr++;
1551 : }
1552 0 : CSLDestroy(papszFileNames);
1553 0 : return poDS;
1554 : }
1555 : }
1556 :
1557 2053 : if (EQUAL(CPLGetExtensionSafe(osFileName.c_str()).c_str(), "IMG"))
1558 : {
1559 :
1560 49 : osIMGFileName = osFileName;
1561 :
1562 49 : constexpr int nLeaderSize = 24;
1563 :
1564 49 : int i = 0; // Used after for.
1565 511 : for (; i < nLeaderSize; i++)
1566 : {
1567 498 : if (poOpenInfo->pabyHeader[i] < 32 ||
1568 472 : poOpenInfo->pabyHeader[i] > 126)
1569 40 : return nullptr;
1570 : }
1571 :
1572 13 : if (poOpenInfo->pabyHeader[5] != '1' &&
1573 13 : poOpenInfo->pabyHeader[5] != '2' &&
1574 4 : poOpenInfo->pabyHeader[5] != '3')
1575 4 : return nullptr;
1576 :
1577 9 : if (poOpenInfo->pabyHeader[6] != 'L')
1578 0 : return nullptr;
1579 9 : if (poOpenInfo->pabyHeader[8] != '1' &&
1580 9 : poOpenInfo->pabyHeader[8] != ' ')
1581 0 : return nullptr;
1582 :
1583 : // --------------------------------------------------------------------
1584 : // Find and open the .GEN file.
1585 : // --------------------------------------------------------------------
1586 : VSIStatBufL sStatBuf;
1587 :
1588 9 : CPLString basename = CPLGetBasenameSafe(osFileName);
1589 9 : if (basename.size() != 8)
1590 : {
1591 0 : CPLDebug("SRP", "Invalid basename file");
1592 0 : return nullptr;
1593 : }
1594 :
1595 9 : nRecordIndex = static_cast<int>(CPLScanLong(basename + 6, 2));
1596 :
1597 9 : CPLString path = CPLGetDirnameSafe(osFileName);
1598 9 : CPLString basename01 = ResetTo01(basename);
1599 9 : osFileName = CPLFormFilenameSafe(path, basename01, ".IMG");
1600 :
1601 9 : osFileName = CPLResetExtensionSafe(osFileName, "GEN");
1602 9 : if (VSIStatL(osFileName, &sStatBuf) != 0)
1603 : {
1604 0 : osFileName = CPLResetExtensionSafe(osFileName, "gen");
1605 0 : if (VSIStatL(osFileName, &sStatBuf) != 0)
1606 0 : return nullptr;
1607 : }
1608 :
1609 9 : osGENFileName = std::move(osFileName);
1610 : }
1611 : }
1612 :
1613 2014 : if (!osGENFileName.empty() && !osIMGFileName.empty())
1614 : {
1615 :
1616 12 : if (poOpenInfo->eAccess == GA_Update)
1617 : {
1618 0 : CPLError(CE_Failure, CPLE_NotSupported,
1619 : "The SRP driver does not support update access to existing"
1620 : " datasets.\n");
1621 12 : return nullptr;
1622 : }
1623 :
1624 12 : DDFModule module;
1625 12 : DDFRecord *record = nullptr;
1626 12 : if (nRecordIndex >= 0 && module.Open(osGENFileName.c_str(), TRUE))
1627 : {
1628 20 : for (int i = 0; i < nRecordIndex; i++)
1629 : {
1630 9 : CPLPushErrorHandler(CPLQuietErrorHandler);
1631 9 : record = module.ReadRecord();
1632 9 : CPLPopErrorHandler();
1633 9 : CPLErrorReset();
1634 9 : if (record == nullptr)
1635 0 : break;
1636 : }
1637 : }
1638 : SRPDataset *poDS =
1639 12 : OpenDataset(osGENFileName.c_str(), osIMGFileName.c_str(), record);
1640 :
1641 12 : if (poDS)
1642 : {
1643 : /* ---------------------------------------------------------- */
1644 : /* Initialize any PAM information. */
1645 : /* ---------------------------------------------------------- */
1646 12 : poDS->SetDescription(poOpenInfo->pszFilename);
1647 12 : poDS->TryLoadXML();
1648 :
1649 : /* ---------------------------------------------------------- */
1650 : /* Check for external overviews. */
1651 : /* ---------------------------------------------------------- */
1652 12 : if (bFromSubdataset)
1653 1 : poDS->oOvManager.Initialize(poDS, osIMGFileName.c_str());
1654 : else
1655 11 : poDS->oOvManager.Initialize(poDS, poOpenInfo->pszFilename);
1656 :
1657 12 : return poDS;
1658 : }
1659 : }
1660 :
1661 2002 : return nullptr;
1662 : }
1663 :
1664 : /************************************************************************/
1665 : /* GDALRegister_SRP() */
1666 : /************************************************************************/
1667 :
1668 1682 : void GDALRegister_SRP()
1669 :
1670 : {
1671 1682 : if (GDALGetDriverByName("SRP") != nullptr)
1672 301 : return;
1673 :
1674 1381 : GDALDriver *poDriver = new GDALDriver();
1675 :
1676 1381 : poDriver->SetDescription("SRP");
1677 1381 : poDriver->SetMetadataItem(GDAL_DCAP_RASTER, "YES");
1678 1381 : poDriver->SetMetadataItem(GDAL_DMD_LONGNAME,
1679 1381 : "Standard Raster Product (ASRP/USRP)");
1680 1381 : poDriver->SetMetadataItem(GDAL_DMD_HELPTOPIC, "drivers/raster/srp.html");
1681 1381 : poDriver->SetMetadataItem(GDAL_DMD_EXTENSION, "img");
1682 1381 : poDriver->SetMetadataItem(GDAL_DMD_SUBDATASETS, "YES");
1683 1381 : poDriver->SetMetadataItem(GDAL_DCAP_VIRTUALIO, "YES");
1684 :
1685 1381 : poDriver->pfnOpen = SRPDataset::Open;
1686 :
1687 1381 : GetGDALDriverManager()->RegisterDriver(poDriver);
1688 : }
|