Line data Source code
1 : /******************************************************************************
2 : *
3 : * Project: ISIS Version 3 Driver
4 : * Purpose: Implementation of ISIS3Dataset
5 : * Author: Trent Hare (thare@usgs.gov)
6 : * Frank Warmerdam (warmerdam@pobox.com)
7 : * Even Rouault (even.rouault at spatialys.com)
8 : *
9 : * NOTE: Original code authored by Trent and placed in the public domain as
10 : * per US government policy. I have (within my rights) appropriated it and
11 : * placed it under the following license. This is not intended to diminish
12 : * Trents contribution.
13 : ******************************************************************************
14 : * Copyright (c) 2007, Frank Warmerdam <warmerdam@pobox.com>
15 : * Copyright (c) 2009-2010, Even Rouault <even.rouault at spatialys.com>
16 : * Copyright (c) 2017 Hobu Inc
17 : * Copyright (c) 2017, Dmitry Baryshnikov <polimax@mail.ru>
18 : * Copyright (c) 2017, NextGIS <info@nextgis.com>
19 : *
20 : * SPDX-License-Identifier: MIT
21 : ****************************************************************************/
22 :
23 : #include "cpl_json.h"
24 : #include "cpl_string.h"
25 : #include "cpl_time.h"
26 : #include "cpl_vsi_error.h"
27 : #include "gdal_frmts.h"
28 : #include "gdal_proxy.h"
29 : #include "nasakeywordhandler.h"
30 : #include "ogrgeojsonreader.h"
31 : #include "ogr_spatialref.h"
32 : #include "rawdataset.h"
33 : #include "vrtdataset.h"
34 : #include "cpl_safemaths.hpp"
35 : #include "pdsdrivercore.h"
36 : #include "json_utils.h"
37 :
38 : // For gethostname()
39 : #ifdef _WIN32
40 : #include <winsock2.h>
41 : #else
42 : #include <unistd.h>
43 : #endif
44 :
45 : #include <algorithm>
46 : #include <map>
47 : #include <utility> // pair
48 : #include <vector>
49 :
50 : // Constants coming from ISIS3 source code
51 : // in isis/src/base/objs/SpecialPixel/SpecialPixel.h
52 :
53 : // There are several types of special pixels
54 : // * Isis::Null Pixel has no data available
55 : // * Isis::Lis Pixel was saturated on the instrument
56 : // * Isis::His Pixel was saturated on the instrument
57 : // * Isis::Lrs Pixel was saturated during a computation
58 : // * Isis::Hrs Pixel was saturated during a computation
59 :
60 : // 1-byte special pixel values
61 : const unsigned char ISIS3_NULL1 = 0;
62 : const unsigned char LOW_REPR_SAT1 = 0;
63 : const unsigned char LOW_INSTR_SAT1 = 0;
64 : const unsigned char HIGH_INSTR_SAT1 = 255;
65 : const unsigned char HIGH_REPR_SAT1 = 255;
66 :
67 : // 2-byte unsigned special pixel values
68 : const unsigned short ISIS3_NULLU2 = 0;
69 : const unsigned short LOW_REPR_SATU2 = 1;
70 : const unsigned short LOW_INSTR_SATU2 = 2;
71 : const unsigned short HIGH_INSTR_SATU2 = 65534;
72 : const unsigned short HIGH_REPR_SATU2 = 65535;
73 :
74 : // 2-byte signed special pixel values
75 : const short ISIS3_NULL2 = -32768;
76 : const short LOW_REPR_SAT2 = -32767;
77 : const short LOW_INSTR_SAT2 = -32766;
78 : const short HIGH_INSTR_SAT2 = -32765;
79 : const short HIGH_REPR_SAT2 = -32764;
80 :
81 : // Define 4-byte special pixel values for IEEE floating point
82 : const float ISIS3_NULL4 = -3.4028226550889045e+38f; // 0xFF7FFFFB;
83 : const float LOW_REPR_SAT4 = -3.4028228579130005e+38f; // 0xFF7FFFFC;
84 : const float LOW_INSTR_SAT4 = -3.4028230607370965e+38f; // 0xFF7FFFFD;
85 : const float HIGH_INSTR_SAT4 = -3.4028232635611926e+38f; // 0xFF7FFFFE;
86 : const float HIGH_REPR_SAT4 = -3.4028234663852886e+38f; // 0xFF7FFFFF;
87 :
88 : // Must be large enough to hold an integer
89 : static const char *const pszSTARTBYTE_PLACEHOLDER = "!*^STARTBYTE^*!";
90 : // Must be large enough to hold an integer
91 : static const char *const pszLABEL_BYTES_PLACEHOLDER = "!*^LABEL_BYTES^*!";
92 : // Must be large enough to hold an integer
93 : static const char *const pszHISTORY_STARTBYTE_PLACEHOLDER =
94 : "!*^HISTORY_STARTBYTE^*!";
95 :
96 : /************************************************************************/
97 : /* ==================================================================== */
98 : /* ISISDataset */
99 : /* ==================================================================== */
100 : /************************************************************************/
101 :
102 : class ISIS3Dataset final : public RawDataset
103 : {
104 : friend class ISIS3RawRasterBand;
105 : friend class ISISTiledBand;
106 : friend class ISIS3WrapperRasterBand;
107 :
108 : class NonPixelSection
109 : {
110 : public:
111 : CPLString osSrcFilename;
112 : CPLString osDstFilename; // empty for same file
113 : vsi_l_offset nSrcOffset;
114 : vsi_l_offset nSize;
115 : CPLString osPlaceHolder; // empty if not same file
116 : };
117 :
118 : VSILFILE *m_fpLabel; // label file (only used for writing)
119 : VSILFILE *m_fpImage; // image data file. May be == fpLabel
120 : GDALDataset *m_poExternalDS; // external dataset (GeoTIFF)
121 : bool m_bGeoTIFFAsRegularExternal; // creation only
122 : bool m_bGeoTIFFInitDone; // creation only
123 :
124 : CPLString m_osExternalFilename;
125 : bool m_bIsLabelWritten; // creation only
126 :
127 : bool m_bIsTiled;
128 : bool m_bInitToNodata; // creation only
129 :
130 : NASAKeywordHandler m_oKeywords;
131 :
132 : bool m_bGotTransform;
133 : double m_adfGeoTransform[6];
134 :
135 : bool m_bHasSrcNoData; // creation only
136 : double m_dfSrcNoData; // creation only
137 :
138 : OGRSpatialReference m_oSRS;
139 :
140 : // creation only variables
141 : CPLString m_osComment;
142 : CPLString m_osLatitudeType;
143 : CPLString m_osLongitudeDirection;
144 : CPLString m_osTargetName;
145 : bool m_bForce360;
146 : bool m_bWriteBoundingDegrees;
147 : CPLString m_osBoundingDegrees;
148 :
149 : CPLJSONObject m_oJSonLabel;
150 : CPLString m_osHistory; // creation only
151 : bool m_bUseSrcLabel; // creation only
152 : bool m_bUseSrcMapping; // creation only
153 : bool m_bUseSrcHistory; // creation only
154 : bool m_bAddGDALHistory; // creation only
155 : CPLString m_osGDALHistory; // creation only
156 : std::vector<NonPixelSection> m_aoNonPixelSections; // creation only
157 : CPLJSONObject m_oSrcJSonLabel; // creation only
158 : CPLStringList m_aosISIS3MD;
159 : CPLStringList m_aosAdditionalFiles;
160 : CPLString m_osFromFilename; // creation only
161 :
162 : RawBinaryLayout m_sLayout{};
163 :
164 : const char *GetKeyword(const char *pszPath, const char *pszDefault = "");
165 :
166 : double FixLong(double dfLong);
167 : void BuildLabel();
168 : void BuildHistory();
169 : void WriteLabel();
170 : void InvalidateLabel();
171 :
172 : static CPLString SerializeAsPDL(const CPLJSONObject &oObj);
173 : static void SerializeAsPDL(VSILFILE *fp, const CPLJSONObject &oObj,
174 : int nDepth = 0);
175 :
176 : protected:
177 : CPLErr Close() override;
178 :
179 : public:
180 : ISIS3Dataset();
181 : virtual ~ISIS3Dataset();
182 :
183 : virtual int CloseDependentDatasets() override;
184 :
185 : virtual CPLErr GetGeoTransform(double *padfTransform) override;
186 : virtual CPLErr SetGeoTransform(double *padfTransform) override;
187 :
188 : const OGRSpatialReference *GetSpatialRef() const override;
189 : CPLErr SetSpatialRef(const OGRSpatialReference *poSRS) override;
190 :
191 : virtual char **GetFileList() override;
192 :
193 : virtual char **GetMetadataDomainList() override;
194 : virtual char **GetMetadata(const char *pszDomain = "") override;
195 : virtual CPLErr SetMetadata(char **papszMD,
196 : const char *pszDomain = "") override;
197 :
198 : bool GetRawBinaryLayout(GDALDataset::RawBinaryLayout &) override;
199 :
200 : static GDALDataset *Open(GDALOpenInfo *);
201 : static GDALDataset *Create(const char *pszFilename, int nXSize, int nYSize,
202 : int nBandsIn, GDALDataType eType,
203 : char **papszOptions);
204 : static GDALDataset *CreateCopy(const char *pszFilename,
205 : GDALDataset *poSrcDS, int bStrict,
206 : char **papszOptions,
207 : GDALProgressFunc pfnProgress,
208 : void *pProgressData);
209 : };
210 :
211 : /************************************************************************/
212 : /* ==================================================================== */
213 : /* ISISTiledBand */
214 : /* ==================================================================== */
215 : /************************************************************************/
216 :
217 : class ISISTiledBand final : public GDALPamRasterBand
218 : {
219 : friend class ISIS3Dataset;
220 :
221 : VSILFILE *m_fpVSIL;
222 : GIntBig m_nFirstTileOffset;
223 : GIntBig m_nXTileOffset;
224 : GIntBig m_nYTileOffset;
225 : int m_bNativeOrder;
226 : bool m_bHasOffset;
227 : bool m_bHasScale;
228 : double m_dfOffset;
229 : double m_dfScale;
230 : double m_dfNoData;
231 : bool m_bValid = false;
232 :
233 : public:
234 : ISISTiledBand(GDALDataset *poDS, VSILFILE *fpVSIL, int nBand,
235 : GDALDataType eDT, int nTileXSize, int nTileYSize,
236 : GIntBig nFirstTileOffset, GIntBig nXTileOffset,
237 : GIntBig nYTileOffset, int bNativeOrder);
238 :
239 102 : virtual ~ISISTiledBand()
240 51 : {
241 102 : }
242 :
243 41 : bool IsValid() const
244 : {
245 41 : return m_bValid;
246 : }
247 :
248 : virtual CPLErr IReadBlock(int, int, void *) override;
249 : virtual CPLErr IWriteBlock(int, int, void *) override;
250 :
251 : virtual double GetOffset(int *pbSuccess = nullptr) override;
252 : virtual double GetScale(int *pbSuccess = nullptr) override;
253 : virtual CPLErr SetOffset(double dfNewOffset) override;
254 : virtual CPLErr SetScale(double dfNewScale) override;
255 : virtual double GetNoDataValue(int *pbSuccess = nullptr) override;
256 : virtual CPLErr SetNoDataValue(double dfNewNoData) override;
257 :
258 : void SetMaskBand(GDALRasterBand *poMaskBand);
259 : };
260 :
261 : /************************************************************************/
262 : /* ==================================================================== */
263 : /* ISIS3RawRasterBand */
264 : /* ==================================================================== */
265 : /************************************************************************/
266 :
267 : class ISIS3RawRasterBand final : public RawRasterBand
268 : {
269 : friend class ISIS3Dataset;
270 :
271 : bool m_bHasOffset;
272 : bool m_bHasScale;
273 : double m_dfOffset;
274 : double m_dfScale;
275 : double m_dfNoData;
276 :
277 : public:
278 : ISIS3RawRasterBand(GDALDataset *l_poDS, int l_nBand, VSILFILE *l_fpRaw,
279 : vsi_l_offset l_nImgOffset, int l_nPixelOffset,
280 : int l_nLineOffset, GDALDataType l_eDataType,
281 : int l_bNativeOrder);
282 :
283 732 : virtual ~ISIS3RawRasterBand()
284 366 : {
285 732 : }
286 :
287 : virtual CPLErr IReadBlock(int, int, void *) override;
288 : virtual CPLErr IWriteBlock(int, int, void *) override;
289 :
290 : virtual CPLErr IRasterIO(GDALRWFlag, int, int, int, int, void *, int, int,
291 : GDALDataType, GSpacing nPixelSpace,
292 : GSpacing nLineSpace,
293 : GDALRasterIOExtraArg *psExtraArg) override;
294 :
295 : virtual double GetOffset(int *pbSuccess = nullptr) override;
296 : virtual double GetScale(int *pbSuccess = nullptr) override;
297 : virtual CPLErr SetOffset(double dfNewOffset) override;
298 : virtual CPLErr SetScale(double dfNewScale) override;
299 : virtual double GetNoDataValue(int *pbSuccess = nullptr) override;
300 : virtual CPLErr SetNoDataValue(double dfNewNoData) override;
301 :
302 : void SetMaskBand(GDALRasterBand *poMaskBand);
303 : };
304 :
305 : /************************************************************************/
306 : /* ==================================================================== */
307 : /* ISIS3WrapperRasterBand */
308 : /* */
309 : /* proxy for bands stored in other formats. */
310 : /* ==================================================================== */
311 : /************************************************************************/
312 : class ISIS3WrapperRasterBand final : public GDALProxyRasterBand
313 : {
314 : friend class ISIS3Dataset;
315 :
316 : GDALRasterBand *m_poBaseBand;
317 : bool m_bHasOffset;
318 : bool m_bHasScale;
319 : double m_dfOffset;
320 : double m_dfScale;
321 : double m_dfNoData;
322 :
323 : protected:
324 : virtual GDALRasterBand *
325 127 : RefUnderlyingRasterBand(bool /* bForceOpen */) const override
326 : {
327 127 : return m_poBaseBand;
328 : }
329 :
330 : public:
331 : explicit ISIS3WrapperRasterBand(GDALRasterBand *poBaseBandIn);
332 :
333 90 : ~ISIS3WrapperRasterBand()
334 45 : {
335 90 : }
336 :
337 : void InitFile();
338 :
339 : virtual CPLErr Fill(double dfRealValue,
340 : double dfImaginaryValue = 0) override;
341 : virtual CPLErr IWriteBlock(int, int, void *) override;
342 :
343 : virtual CPLErr IRasterIO(GDALRWFlag, int, int, int, int, void *, int, int,
344 : GDALDataType, GSpacing nPixelSpace,
345 : GSpacing nLineSpace,
346 : GDALRasterIOExtraArg *psExtraArg) override;
347 :
348 : virtual double GetOffset(int *pbSuccess = nullptr) override;
349 : virtual double GetScale(int *pbSuccess = nullptr) override;
350 : virtual CPLErr SetOffset(double dfNewOffset) override;
351 : virtual CPLErr SetScale(double dfNewScale) override;
352 : virtual double GetNoDataValue(int *pbSuccess = nullptr) override;
353 : virtual CPLErr SetNoDataValue(double dfNewNoData) override;
354 :
355 4 : int GetMaskFlags() override
356 : {
357 4 : return nMaskFlags;
358 : }
359 :
360 4 : GDALRasterBand *GetMaskBand() override
361 : {
362 4 : return poMask;
363 : }
364 :
365 : void SetMaskBand(GDALRasterBand *poMaskBand);
366 : };
367 :
368 : /************************************************************************/
369 : /* ==================================================================== */
370 : /* ISISMaskBand */
371 : /* ==================================================================== */
372 :
373 : class ISISMaskBand final : public GDALRasterBand
374 : {
375 : GDALRasterBand *m_poBaseBand;
376 : void *m_pBuffer;
377 :
378 : public:
379 : explicit ISISMaskBand(GDALRasterBand *poBaseBand);
380 : ~ISISMaskBand();
381 :
382 : virtual CPLErr IReadBlock(int, int, void *) override;
383 : };
384 :
385 : /************************************************************************/
386 : /* ISISTiledBand() */
387 : /************************************************************************/
388 :
389 51 : ISISTiledBand::ISISTiledBand(GDALDataset *poDSIn, VSILFILE *fpVSILIn,
390 : int nBandIn, GDALDataType eDT, int nTileXSize,
391 : int nTileYSize, GIntBig nFirstTileOffsetIn,
392 : GIntBig nXTileOffsetIn, GIntBig nYTileOffsetIn,
393 51 : int bNativeOrderIn)
394 : : m_fpVSIL(fpVSILIn), m_nFirstTileOffset(0), m_nXTileOffset(nXTileOffsetIn),
395 : m_nYTileOffset(nYTileOffsetIn), m_bNativeOrder(bNativeOrderIn),
396 : m_bHasOffset(false), m_bHasScale(false), m_dfOffset(0.0), m_dfScale(1.0),
397 51 : m_dfNoData(0.0)
398 : {
399 51 : poDS = poDSIn;
400 51 : nBand = nBandIn;
401 51 : eDataType = eDT;
402 51 : nBlockXSize = nTileXSize;
403 51 : nBlockYSize = nTileYSize;
404 51 : nRasterXSize = poDSIn->GetRasterXSize();
405 51 : nRasterYSize = poDSIn->GetRasterYSize();
406 :
407 51 : const int l_nBlocksPerRow = DIV_ROUND_UP(nRasterXSize, nBlockXSize);
408 51 : const int l_nBlocksPerColumn = DIV_ROUND_UP(nRasterYSize, nBlockYSize);
409 :
410 51 : if (m_nXTileOffset == 0 && m_nYTileOffset == 0)
411 : {
412 51 : m_nXTileOffset =
413 51 : static_cast<GIntBig>(GDALGetDataTypeSizeBytes(eDT)) * nTileXSize;
414 51 : if (m_nXTileOffset > GINTBIG_MAX / nTileYSize)
415 : {
416 0 : CPLError(CE_Failure, CPLE_AppDefined, "Integer overflow");
417 0 : return;
418 : }
419 51 : m_nXTileOffset *= nTileYSize;
420 :
421 51 : if (m_nXTileOffset > GINTBIG_MAX / l_nBlocksPerRow)
422 : {
423 0 : CPLError(CE_Failure, CPLE_AppDefined, "Integer overflow");
424 0 : return;
425 : }
426 51 : m_nYTileOffset = m_nXTileOffset * l_nBlocksPerRow;
427 : }
428 :
429 51 : m_nFirstTileOffset = nFirstTileOffsetIn;
430 51 : if (nBand > 1)
431 : {
432 19 : if (m_nYTileOffset > GINTBIG_MAX / (nBand - 1) ||
433 19 : (nBand - 1) * m_nYTileOffset > GINTBIG_MAX / l_nBlocksPerColumn ||
434 19 : m_nFirstTileOffset >
435 19 : GINTBIG_MAX - (nBand - 1) * m_nYTileOffset * l_nBlocksPerColumn)
436 : {
437 0 : CPLError(CE_Failure, CPLE_AppDefined, "Integer overflow");
438 0 : return;
439 : }
440 19 : m_nFirstTileOffset += (nBand - 1) * m_nYTileOffset * l_nBlocksPerColumn;
441 : }
442 51 : m_bValid = true;
443 : }
444 :
445 : /************************************************************************/
446 : /* IReadBlock() */
447 : /************************************************************************/
448 :
449 476 : CPLErr ISISTiledBand::IReadBlock(int nXBlock, int nYBlock, void *pImage)
450 :
451 : {
452 476 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
453 476 : if (poGDS->m_osExternalFilename.empty())
454 : {
455 232 : if (!poGDS->m_bIsLabelWritten)
456 2 : poGDS->WriteLabel();
457 : }
458 :
459 476 : const GIntBig nOffset = m_nFirstTileOffset + nXBlock * m_nXTileOffset +
460 476 : nYBlock * m_nYTileOffset;
461 476 : const int nDTSize = GDALGetDataTypeSizeBytes(eDataType);
462 476 : const size_t nBlockSize =
463 476 : static_cast<size_t>(nDTSize) * nBlockXSize * nBlockYSize;
464 :
465 476 : if (VSIFSeekL(m_fpVSIL, nOffset, SEEK_SET) != 0)
466 : {
467 0 : CPLError(CE_Failure, CPLE_FileIO,
468 : "Failed to seek to offset %d to read tile %d,%d.",
469 : static_cast<int>(nOffset), nXBlock, nYBlock);
470 0 : return CE_Failure;
471 : }
472 :
473 476 : if (VSIFReadL(pImage, 1, nBlockSize, m_fpVSIL) != nBlockSize)
474 : {
475 0 : CPLError(CE_Failure, CPLE_FileIO,
476 : "Failed to read %d bytes for tile %d,%d.",
477 : static_cast<int>(nBlockSize), nXBlock, nYBlock);
478 0 : return CE_Failure;
479 : }
480 :
481 476 : if (!m_bNativeOrder && eDataType != GDT_Byte)
482 0 : GDALSwapWords(pImage, nDTSize, nBlockXSize * nBlockYSize, nDTSize);
483 :
484 476 : return CE_None;
485 : }
486 :
487 : /************************************************************************/
488 : /* RemapNoDataT() */
489 : /************************************************************************/
490 :
491 : template <class T>
492 6 : static void RemapNoDataT(T *pBuffer, int nItems, T srcNoData, T dstNoData)
493 : {
494 67542 : for (int i = 0; i < nItems; i++)
495 : {
496 67536 : if (pBuffer[i] == srcNoData)
497 6 : pBuffer[i] = dstNoData;
498 : }
499 6 : }
500 :
501 : /************************************************************************/
502 : /* RemapNoData() */
503 : /************************************************************************/
504 :
505 6 : static void RemapNoData(GDALDataType eDataType, void *pBuffer, int nItems,
506 : double dfSrcNoData, double dfDstNoData)
507 : {
508 6 : if (eDataType == GDT_Byte)
509 : {
510 3 : RemapNoDataT(reinterpret_cast<GByte *>(pBuffer), nItems,
511 3 : static_cast<GByte>(dfSrcNoData),
512 3 : static_cast<GByte>(dfDstNoData));
513 : }
514 3 : else if (eDataType == GDT_UInt16)
515 : {
516 1 : RemapNoDataT(reinterpret_cast<GUInt16 *>(pBuffer), nItems,
517 1 : static_cast<GUInt16>(dfSrcNoData),
518 1 : static_cast<GUInt16>(dfDstNoData));
519 : }
520 2 : else if (eDataType == GDT_Int16)
521 : {
522 1 : RemapNoDataT(reinterpret_cast<GInt16 *>(pBuffer), nItems,
523 1 : static_cast<GInt16>(dfSrcNoData),
524 1 : static_cast<GInt16>(dfDstNoData));
525 : }
526 : else
527 : {
528 1 : CPLAssert(eDataType == GDT_Float32);
529 1 : RemapNoDataT(reinterpret_cast<float *>(pBuffer), nItems,
530 : static_cast<float>(dfSrcNoData),
531 : static_cast<float>(dfDstNoData));
532 : }
533 6 : }
534 :
535 : /************************************************************************/
536 : /* IReadBlock() */
537 : /************************************************************************/
538 :
539 225 : CPLErr ISISTiledBand::IWriteBlock(int nXBlock, int nYBlock, void *pImage)
540 :
541 : {
542 225 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
543 225 : if (poGDS->m_osExternalFilename.empty())
544 : {
545 223 : if (!poGDS->m_bIsLabelWritten)
546 2 : poGDS->WriteLabel();
547 : }
548 :
549 225 : if (poGDS->m_bHasSrcNoData && poGDS->m_dfSrcNoData != m_dfNoData)
550 : {
551 1 : RemapNoData(eDataType, pImage, nBlockXSize * nBlockYSize,
552 : poGDS->m_dfSrcNoData, m_dfNoData);
553 : }
554 :
555 225 : const GIntBig nOffset = m_nFirstTileOffset + nXBlock * m_nXTileOffset +
556 225 : nYBlock * m_nYTileOffset;
557 225 : const int nDTSize = GDALGetDataTypeSizeBytes(eDataType);
558 225 : const size_t nBlockSize =
559 225 : static_cast<size_t>(nDTSize) * nBlockXSize * nBlockYSize;
560 :
561 225 : const int l_nBlocksPerRow = DIV_ROUND_UP(nRasterXSize, nBlockXSize);
562 225 : const int l_nBlocksPerColumn = DIV_ROUND_UP(nRasterYSize, nBlockYSize);
563 :
564 : // Pad partial blocks to nodata value
565 225 : if (nXBlock == l_nBlocksPerRow - 1 && (nRasterXSize % nBlockXSize) != 0)
566 : {
567 24 : GByte *pabyImage = static_cast<GByte *>(pImage);
568 24 : int nXStart = nRasterXSize % nBlockXSize;
569 1688 : for (int iY = 0; iY < nBlockYSize; iY++)
570 : {
571 1664 : GDALCopyWords(&m_dfNoData, GDT_Float64, 0,
572 1664 : pabyImage + (iY * nBlockXSize + nXStart) * nDTSize,
573 1664 : eDataType, nDTSize, nBlockXSize - nXStart);
574 : }
575 : }
576 225 : if (nYBlock == l_nBlocksPerColumn - 1 && (nRasterYSize % nBlockYSize) != 0)
577 : {
578 49 : GByte *pabyImage = static_cast<GByte *>(pImage);
579 1685 : for (int iY = nRasterYSize % nBlockYSize; iY < nBlockYSize; iY++)
580 : {
581 1636 : GDALCopyWords(&m_dfNoData, GDT_Float64, 0,
582 1636 : pabyImage + iY * nBlockXSize * nDTSize, eDataType,
583 : nDTSize, nBlockXSize);
584 : }
585 : }
586 :
587 225 : if (VSIFSeekL(m_fpVSIL, nOffset, SEEK_SET) != 0)
588 : {
589 0 : CPLError(CE_Failure, CPLE_FileIO,
590 : "Failed to seek to offset %d to read tile %d,%d.",
591 : static_cast<int>(nOffset), nXBlock, nYBlock);
592 0 : return CE_Failure;
593 : }
594 :
595 225 : if (!m_bNativeOrder && eDataType != GDT_Byte)
596 0 : GDALSwapWords(pImage, nDTSize, nBlockXSize * nBlockYSize, nDTSize);
597 :
598 225 : if (VSIFWriteL(pImage, 1, nBlockSize, m_fpVSIL) != nBlockSize)
599 : {
600 0 : CPLError(CE_Failure, CPLE_FileIO,
601 : "Failed to write %d bytes for tile %d,%d.",
602 : static_cast<int>(nBlockSize), nXBlock, nYBlock);
603 0 : return CE_Failure;
604 : }
605 :
606 225 : if (!m_bNativeOrder && eDataType != GDT_Byte)
607 0 : GDALSwapWords(pImage, nDTSize, nBlockXSize * nBlockYSize, nDTSize);
608 :
609 225 : return CE_None;
610 : }
611 :
612 : /************************************************************************/
613 : /* SetMaskBand() */
614 : /************************************************************************/
615 :
616 41 : void ISISTiledBand::SetMaskBand(GDALRasterBand *poMaskBand)
617 : {
618 41 : poMask.reset(poMaskBand, true);
619 41 : nMaskFlags = 0;
620 41 : }
621 :
622 : /************************************************************************/
623 : /* GetOffset() */
624 : /************************************************************************/
625 :
626 14 : double ISISTiledBand::GetOffset(int *pbSuccess)
627 : {
628 14 : if (pbSuccess)
629 4 : *pbSuccess = m_bHasOffset;
630 14 : return m_dfOffset;
631 : }
632 :
633 : /************************************************************************/
634 : /* GetScale() */
635 : /************************************************************************/
636 :
637 14 : double ISISTiledBand::GetScale(int *pbSuccess)
638 : {
639 14 : if (pbSuccess)
640 4 : *pbSuccess = m_bHasScale;
641 14 : return m_dfScale;
642 : }
643 :
644 : /************************************************************************/
645 : /* SetOffset() */
646 : /************************************************************************/
647 :
648 14 : CPLErr ISISTiledBand::SetOffset(double dfNewOffset)
649 : {
650 14 : m_dfOffset = dfNewOffset;
651 14 : m_bHasOffset = true;
652 14 : return CE_None;
653 : }
654 :
655 : /************************************************************************/
656 : /* SetScale() */
657 : /************************************************************************/
658 :
659 14 : CPLErr ISISTiledBand::SetScale(double dfNewScale)
660 : {
661 14 : m_dfScale = dfNewScale;
662 14 : m_bHasScale = true;
663 14 : return CE_None;
664 : }
665 :
666 : /************************************************************************/
667 : /* GetNoDataValue() */
668 : /************************************************************************/
669 :
670 12 : double ISISTiledBand::GetNoDataValue(int *pbSuccess)
671 : {
672 12 : if (pbSuccess)
673 8 : *pbSuccess = true;
674 12 : return m_dfNoData;
675 : }
676 :
677 : /************************************************************************/
678 : /* SetNoDataValue() */
679 : /************************************************************************/
680 :
681 51 : CPLErr ISISTiledBand::SetNoDataValue(double dfNewNoData)
682 : {
683 51 : m_dfNoData = dfNewNoData;
684 51 : return CE_None;
685 : }
686 :
687 : /************************************************************************/
688 : /* ISIS3RawRasterBand() */
689 : /************************************************************************/
690 :
691 366 : ISIS3RawRasterBand::ISIS3RawRasterBand(GDALDataset *l_poDS, int l_nBand,
692 : VSILFILE *l_fpRaw,
693 : vsi_l_offset l_nImgOffset,
694 : int l_nPixelOffset, int l_nLineOffset,
695 : GDALDataType l_eDataType,
696 366 : int l_bNativeOrder)
697 : : RawRasterBand(l_poDS, l_nBand, l_fpRaw, l_nImgOffset, l_nPixelOffset,
698 : l_nLineOffset, l_eDataType, l_bNativeOrder,
699 : RawRasterBand::OwnFP::NO),
700 : m_bHasOffset(false), m_bHasScale(false), m_dfOffset(0.0), m_dfScale(1.0),
701 366 : m_dfNoData(0.0)
702 : {
703 366 : }
704 :
705 : /************************************************************************/
706 : /* IReadBlock() */
707 : /************************************************************************/
708 :
709 2071 : CPLErr ISIS3RawRasterBand::IReadBlock(int nXBlock, int nYBlock, void *pImage)
710 :
711 : {
712 2071 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
713 2071 : if (poGDS->m_osExternalFilename.empty())
714 : {
715 930 : if (!poGDS->m_bIsLabelWritten)
716 0 : poGDS->WriteLabel();
717 : }
718 2071 : return RawRasterBand::IReadBlock(nXBlock, nYBlock, pImage);
719 : }
720 :
721 : /************************************************************************/
722 : /* IWriteBlock() */
723 : /************************************************************************/
724 :
725 856 : CPLErr ISIS3RawRasterBand::IWriteBlock(int nXBlock, int nYBlock, void *pImage)
726 :
727 : {
728 856 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
729 856 : if (poGDS->m_osExternalFilename.empty())
730 : {
731 796 : if (!poGDS->m_bIsLabelWritten)
732 0 : poGDS->WriteLabel();
733 : }
734 :
735 856 : if (poGDS->m_bHasSrcNoData && poGDS->m_dfSrcNoData != m_dfNoData)
736 : {
737 0 : RemapNoData(eDataType, pImage, nBlockXSize * nBlockYSize,
738 : poGDS->m_dfSrcNoData, m_dfNoData);
739 : }
740 :
741 856 : return RawRasterBand::IWriteBlock(nXBlock, nYBlock, pImage);
742 : }
743 :
744 : /************************************************************************/
745 : /* IRasterIO() */
746 : /************************************************************************/
747 :
748 1939 : CPLErr ISIS3RawRasterBand::IRasterIO(GDALRWFlag eRWFlag, int nXOff, int nYOff,
749 : int nXSize, int nYSize, void *pData,
750 : int nBufXSize, int nBufYSize,
751 : GDALDataType eBufType,
752 : GSpacing nPixelSpace, GSpacing nLineSpace,
753 : GDALRasterIOExtraArg *psExtraArg)
754 :
755 : {
756 1939 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
757 1939 : if (poGDS->m_osExternalFilename.empty())
758 : {
759 1136 : if (!poGDS->m_bIsLabelWritten)
760 49 : poGDS->WriteLabel();
761 : }
762 1939 : if (eRWFlag == GF_Write && poGDS->m_bHasSrcNoData &&
763 27 : poGDS->m_dfSrcNoData != m_dfNoData)
764 : {
765 4 : const int nDTSize = GDALGetDataTypeSizeBytes(eDataType);
766 4 : if (eBufType == eDataType && nPixelSpace == nDTSize &&
767 4 : nLineSpace == nPixelSpace * nBufXSize)
768 : {
769 4 : RemapNoData(eDataType, pData, nBufXSize * nBufYSize,
770 : poGDS->m_dfSrcNoData, m_dfNoData);
771 : }
772 : else
773 : {
774 0 : const GByte *pabySrc = reinterpret_cast<GByte *>(pData);
775 : GByte *pabyTemp = reinterpret_cast<GByte *>(
776 0 : VSI_MALLOC3_VERBOSE(nDTSize, nBufXSize, nBufYSize));
777 0 : for (int i = 0; i < nBufYSize; i++)
778 : {
779 0 : GDALCopyWords(pabySrc + i * nLineSpace, eBufType,
780 : static_cast<int>(nPixelSpace),
781 0 : pabyTemp + i * nBufXSize * nDTSize, eDataType,
782 : nDTSize, nBufXSize);
783 : }
784 0 : RemapNoData(eDataType, pabyTemp, nBufXSize * nBufYSize,
785 : poGDS->m_dfSrcNoData, m_dfNoData);
786 0 : CPLErr eErr = RawRasterBand::IRasterIO(
787 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pabyTemp, nBufXSize,
788 : nBufYSize, eDataType, nDTSize,
789 0 : static_cast<GSpacing>(nDTSize) * nBufXSize, psExtraArg);
790 0 : VSIFree(pabyTemp);
791 0 : return eErr;
792 : }
793 : }
794 1939 : return RawRasterBand::IRasterIO(eRWFlag, nXOff, nYOff, nXSize, nYSize,
795 : pData, nBufXSize, nBufYSize, eBufType,
796 1939 : nPixelSpace, nLineSpace, psExtraArg);
797 : }
798 :
799 : /************************************************************************/
800 : /* SetMaskBand() */
801 : /************************************************************************/
802 :
803 234 : void ISIS3RawRasterBand::SetMaskBand(GDALRasterBand *poMaskBand)
804 : {
805 234 : poMask.reset(poMaskBand, true);
806 234 : nMaskFlags = 0;
807 234 : }
808 :
809 : /************************************************************************/
810 : /* GetOffset() */
811 : /************************************************************************/
812 :
813 157 : double ISIS3RawRasterBand::GetOffset(int *pbSuccess)
814 : {
815 157 : if (pbSuccess)
816 24 : *pbSuccess = m_bHasOffset;
817 157 : return m_dfOffset;
818 : }
819 :
820 : /************************************************************************/
821 : /* GetScale() */
822 : /************************************************************************/
823 :
824 157 : double ISIS3RawRasterBand::GetScale(int *pbSuccess)
825 : {
826 157 : if (pbSuccess)
827 24 : *pbSuccess = m_bHasScale;
828 157 : return m_dfScale;
829 : }
830 :
831 : /************************************************************************/
832 : /* SetOffset() */
833 : /************************************************************************/
834 :
835 51 : CPLErr ISIS3RawRasterBand::SetOffset(double dfNewOffset)
836 : {
837 51 : m_dfOffset = dfNewOffset;
838 51 : m_bHasOffset = true;
839 51 : return CE_None;
840 : }
841 :
842 : /************************************************************************/
843 : /* SetScale() */
844 : /************************************************************************/
845 :
846 51 : CPLErr ISIS3RawRasterBand::SetScale(double dfNewScale)
847 : {
848 51 : m_dfScale = dfNewScale;
849 51 : m_bHasScale = true;
850 51 : return CE_None;
851 : }
852 :
853 : /************************************************************************/
854 : /* GetNoDataValue() */
855 : /************************************************************************/
856 :
857 134 : double ISIS3RawRasterBand::GetNoDataValue(int *pbSuccess)
858 : {
859 134 : if (pbSuccess)
860 83 : *pbSuccess = true;
861 134 : return m_dfNoData;
862 : }
863 :
864 : /************************************************************************/
865 : /* SetNoDataValue() */
866 : /************************************************************************/
867 :
868 367 : CPLErr ISIS3RawRasterBand::SetNoDataValue(double dfNewNoData)
869 : {
870 367 : m_dfNoData = dfNewNoData;
871 367 : return CE_None;
872 : }
873 :
874 : /************************************************************************/
875 : /* ISIS3WrapperRasterBand() */
876 : /************************************************************************/
877 :
878 45 : ISIS3WrapperRasterBand::ISIS3WrapperRasterBand(GDALRasterBand *poBaseBandIn)
879 : : m_poBaseBand(poBaseBandIn), m_bHasOffset(false), m_bHasScale(false),
880 45 : m_dfOffset(0.0), m_dfScale(1.0), m_dfNoData(0.0)
881 : {
882 45 : eDataType = m_poBaseBand->GetRasterDataType();
883 45 : m_poBaseBand->GetBlockSize(&nBlockXSize, &nBlockYSize);
884 45 : }
885 :
886 : /************************************************************************/
887 : /* SetMaskBand() */
888 : /************************************************************************/
889 :
890 21 : void ISIS3WrapperRasterBand::SetMaskBand(GDALRasterBand *poMaskBand)
891 : {
892 21 : poMask.reset(poMaskBand, true);
893 21 : nMaskFlags = 0;
894 21 : }
895 :
896 : /************************************************************************/
897 : /* GetOffset() */
898 : /************************************************************************/
899 :
900 22 : double ISIS3WrapperRasterBand::GetOffset(int *pbSuccess)
901 : {
902 22 : if (pbSuccess)
903 4 : *pbSuccess = m_bHasOffset;
904 22 : return m_dfOffset;
905 : }
906 :
907 : /************************************************************************/
908 : /* GetScale() */
909 : /************************************************************************/
910 :
911 22 : double ISIS3WrapperRasterBand::GetScale(int *pbSuccess)
912 : {
913 22 : if (pbSuccess)
914 4 : *pbSuccess = m_bHasScale;
915 22 : return m_dfScale;
916 : }
917 :
918 : /************************************************************************/
919 : /* SetOffset() */
920 : /************************************************************************/
921 :
922 12 : CPLErr ISIS3WrapperRasterBand::SetOffset(double dfNewOffset)
923 : {
924 12 : m_dfOffset = dfNewOffset;
925 12 : m_bHasOffset = true;
926 :
927 12 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
928 12 : if (poGDS->m_poExternalDS && eAccess == GA_Update)
929 4 : poGDS->m_poExternalDS->GetRasterBand(nBand)->SetOffset(dfNewOffset);
930 :
931 12 : return CE_None;
932 : }
933 :
934 : /************************************************************************/
935 : /* SetScale() */
936 : /************************************************************************/
937 :
938 12 : CPLErr ISIS3WrapperRasterBand::SetScale(double dfNewScale)
939 : {
940 12 : m_dfScale = dfNewScale;
941 12 : m_bHasScale = true;
942 :
943 12 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
944 12 : if (poGDS->m_poExternalDS && eAccess == GA_Update)
945 4 : poGDS->m_poExternalDS->GetRasterBand(nBand)->SetScale(dfNewScale);
946 :
947 12 : return CE_None;
948 : }
949 :
950 : /************************************************************************/
951 : /* GetNoDataValue() */
952 : /************************************************************************/
953 :
954 4 : double ISIS3WrapperRasterBand::GetNoDataValue(int *pbSuccess)
955 : {
956 4 : if (pbSuccess)
957 4 : *pbSuccess = true;
958 4 : return m_dfNoData;
959 : }
960 :
961 : /************************************************************************/
962 : /* SetNoDataValue() */
963 : /************************************************************************/
964 :
965 45 : CPLErr ISIS3WrapperRasterBand::SetNoDataValue(double dfNewNoData)
966 : {
967 45 : m_dfNoData = dfNewNoData;
968 :
969 45 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
970 45 : if (poGDS->m_poExternalDS && eAccess == GA_Update)
971 25 : poGDS->m_poExternalDS->GetRasterBand(nBand)->SetNoDataValue(
972 25 : dfNewNoData);
973 :
974 45 : return CE_None;
975 : }
976 :
977 : /************************************************************************/
978 : /* InitFile() */
979 : /************************************************************************/
980 :
981 8 : void ISIS3WrapperRasterBand::InitFile()
982 : {
983 8 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
984 8 : if (poGDS->m_bGeoTIFFAsRegularExternal && !poGDS->m_bGeoTIFFInitDone)
985 : {
986 8 : poGDS->m_bGeoTIFFInitDone = true;
987 :
988 8 : const int nBands = poGDS->GetRasterCount();
989 : // We need to make sure that blocks are written in the right order
990 22 : for (int i = 0; i < nBands; i++)
991 : {
992 14 : poGDS->m_poExternalDS->GetRasterBand(i + 1)->Fill(m_dfNoData);
993 : }
994 8 : poGDS->m_poExternalDS->FlushCache(false);
995 :
996 : // Check that blocks are effectively written in expected order.
997 : const int nBlockSizeBytes =
998 8 : nBlockXSize * nBlockYSize * GDALGetDataTypeSizeBytes(eDataType);
999 :
1000 8 : GIntBig nLastOffset = 0;
1001 8 : bool bGoOn = true;
1002 8 : const int l_nBlocksPerRow = DIV_ROUND_UP(nRasterXSize, nBlockXSize);
1003 8 : const int l_nBlocksPerColumn = DIV_ROUND_UP(nRasterYSize, nBlockYSize);
1004 22 : for (int i = 0; i < nBands && bGoOn; i++)
1005 : {
1006 641 : for (int y = 0; y < l_nBlocksPerColumn && bGoOn; y++)
1007 : {
1008 1473 : for (int x = 0; x < l_nBlocksPerRow && bGoOn; x++)
1009 : {
1010 : const char *pszBlockOffset =
1011 846 : poGDS->m_poExternalDS->GetRasterBand(i + 1)
1012 846 : ->GetMetadataItem(
1013 846 : CPLSPrintf("BLOCK_OFFSET_%d_%d", x, y), "TIFF");
1014 846 : if (pszBlockOffset)
1015 : {
1016 846 : GIntBig nOffset = CPLAtoGIntBig(pszBlockOffset);
1017 846 : if (i != 0 || x != 0 || y != 0)
1018 : {
1019 838 : if (nOffset != nLastOffset + nBlockSizeBytes)
1020 : {
1021 0 : CPLError(CE_Warning, CPLE_AppDefined,
1022 : "Block %d,%d band %d not at expected "
1023 : "offset",
1024 : x, y, i + 1);
1025 0 : bGoOn = false;
1026 0 : poGDS->m_bGeoTIFFAsRegularExternal = false;
1027 : }
1028 : }
1029 846 : nLastOffset = nOffset;
1030 : }
1031 : else
1032 : {
1033 0 : CPLError(CE_Warning, CPLE_AppDefined,
1034 : "Block %d,%d band %d not at expected "
1035 : "offset",
1036 : x, y, i + 1);
1037 0 : bGoOn = false;
1038 0 : poGDS->m_bGeoTIFFAsRegularExternal = false;
1039 : }
1040 : }
1041 : }
1042 : }
1043 : }
1044 8 : }
1045 :
1046 : /************************************************************************/
1047 : /* Fill() */
1048 : /************************************************************************/
1049 :
1050 4 : CPLErr ISIS3WrapperRasterBand::Fill(double dfRealValue, double dfImaginaryValue)
1051 : {
1052 4 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
1053 4 : if (poGDS->m_bHasSrcNoData && poGDS->m_dfSrcNoData == dfRealValue)
1054 : {
1055 0 : dfRealValue = m_dfNoData;
1056 : }
1057 4 : if (poGDS->m_bGeoTIFFAsRegularExternal && !poGDS->m_bGeoTIFFInitDone)
1058 : {
1059 1 : InitFile();
1060 : }
1061 :
1062 4 : return GDALProxyRasterBand::Fill(dfRealValue, dfImaginaryValue);
1063 : }
1064 :
1065 : /************************************************************************/
1066 : /* IWriteBlock() */
1067 : /************************************************************************/
1068 :
1069 0 : CPLErr ISIS3WrapperRasterBand::IWriteBlock(int nXBlock, int nYBlock,
1070 : void *pImage)
1071 :
1072 : {
1073 0 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
1074 0 : if (poGDS->m_bHasSrcNoData && poGDS->m_dfSrcNoData != m_dfNoData)
1075 : {
1076 0 : RemapNoData(eDataType, pImage, nBlockXSize * nBlockYSize,
1077 : poGDS->m_dfSrcNoData, m_dfNoData);
1078 : }
1079 0 : if (poGDS->m_bGeoTIFFAsRegularExternal && !poGDS->m_bGeoTIFFInitDone)
1080 : {
1081 0 : InitFile();
1082 : }
1083 :
1084 0 : return GDALProxyRasterBand::IWriteBlock(nXBlock, nYBlock, pImage);
1085 : }
1086 :
1087 : /************************************************************************/
1088 : /* IRasterIO() */
1089 : /************************************************************************/
1090 :
1091 46 : CPLErr ISIS3WrapperRasterBand::IRasterIO(
1092 : GDALRWFlag eRWFlag, int nXOff, int nYOff, int nXSize, int nYSize,
1093 : void *pData, int nBufXSize, int nBufYSize, GDALDataType eBufType,
1094 : GSpacing nPixelSpace, GSpacing nLineSpace, GDALRasterIOExtraArg *psExtraArg)
1095 :
1096 : {
1097 46 : ISIS3Dataset *poGDS = reinterpret_cast<ISIS3Dataset *>(poDS);
1098 46 : if (eRWFlag == GF_Write && poGDS->m_bGeoTIFFAsRegularExternal &&
1099 17 : !poGDS->m_bGeoTIFFInitDone)
1100 : {
1101 6 : InitFile();
1102 : }
1103 46 : if (eRWFlag == GF_Write && poGDS->m_bHasSrcNoData &&
1104 9 : poGDS->m_dfSrcNoData != m_dfNoData)
1105 : {
1106 1 : const int nDTSize = GDALGetDataTypeSizeBytes(eDataType);
1107 1 : if (eBufType == eDataType && nPixelSpace == nDTSize &&
1108 1 : nLineSpace == nPixelSpace * nBufXSize)
1109 : {
1110 1 : RemapNoData(eDataType, pData, nBufXSize * nBufYSize,
1111 : poGDS->m_dfSrcNoData, m_dfNoData);
1112 : }
1113 : else
1114 : {
1115 0 : const GByte *pabySrc = reinterpret_cast<GByte *>(pData);
1116 : GByte *pabyTemp = reinterpret_cast<GByte *>(
1117 0 : VSI_MALLOC3_VERBOSE(nDTSize, nBufXSize, nBufYSize));
1118 0 : for (int i = 0; i < nBufYSize; i++)
1119 : {
1120 0 : GDALCopyWords(pabySrc + i * nLineSpace, eBufType,
1121 : static_cast<int>(nPixelSpace),
1122 0 : pabyTemp + i * nBufXSize * nDTSize, eDataType,
1123 : nDTSize, nBufXSize);
1124 : }
1125 0 : RemapNoData(eDataType, pabyTemp, nBufXSize * nBufYSize,
1126 : poGDS->m_dfSrcNoData, m_dfNoData);
1127 0 : CPLErr eErr = GDALProxyRasterBand::IRasterIO(
1128 : eRWFlag, nXOff, nYOff, nXSize, nYSize, pabyTemp, nBufXSize,
1129 : nBufYSize, eDataType, nDTSize,
1130 0 : static_cast<GSpacing>(nDTSize) * nBufXSize, psExtraArg);
1131 0 : VSIFree(pabyTemp);
1132 0 : return eErr;
1133 : }
1134 : }
1135 46 : return GDALProxyRasterBand::IRasterIO(eRWFlag, nXOff, nYOff, nXSize, nYSize,
1136 : pData, nBufXSize, nBufYSize, eBufType,
1137 46 : nPixelSpace, nLineSpace, psExtraArg);
1138 : }
1139 :
1140 : /************************************************************************/
1141 : /* ISISMaskBand() */
1142 : /************************************************************************/
1143 :
1144 296 : ISISMaskBand::ISISMaskBand(GDALRasterBand *poBaseBand)
1145 296 : : m_poBaseBand(poBaseBand), m_pBuffer(nullptr)
1146 : {
1147 296 : eDataType = GDT_Byte;
1148 296 : poBaseBand->GetBlockSize(&nBlockXSize, &nBlockYSize);
1149 296 : nRasterXSize = poBaseBand->GetXSize();
1150 296 : nRasterYSize = poBaseBand->GetYSize();
1151 296 : }
1152 :
1153 : /************************************************************************/
1154 : /* ~ISISMaskBand() */
1155 : /************************************************************************/
1156 :
1157 592 : ISISMaskBand::~ISISMaskBand()
1158 : {
1159 296 : VSIFree(m_pBuffer);
1160 592 : }
1161 :
1162 : /************************************************************************/
1163 : /* FillMask() */
1164 : /************************************************************************/
1165 :
1166 : template <class T>
1167 68 : static void FillMask(void *pvBuffer, GByte *pabyDst, int nReqXSize,
1168 : int nReqYSize, int nBlockXSize, T NULL_VAL, T LOW_REPR_SAT,
1169 : T LOW_INSTR_SAT, T HIGH_INSTR_SAT, T HIGH_REPR_SAT)
1170 : {
1171 68 : const T *pSrc = static_cast<T *>(pvBuffer);
1172 140 : for (int y = 0; y < nReqYSize; y++)
1173 : {
1174 9624 : for (int x = 0; x < nReqXSize; x++)
1175 : {
1176 9552 : const T nSrc = pSrc[y * nBlockXSize + x];
1177 9552 : if (nSrc == NULL_VAL || nSrc == LOW_REPR_SAT ||
1178 6338 : nSrc == LOW_INSTR_SAT || nSrc == HIGH_INSTR_SAT ||
1179 : nSrc == HIGH_REPR_SAT)
1180 : {
1181 3214 : pabyDst[y * nBlockXSize + x] = 0;
1182 : }
1183 : else
1184 : {
1185 6338 : pabyDst[y * nBlockXSize + x] = 255;
1186 : }
1187 : }
1188 : }
1189 68 : }
1190 :
1191 : /************************************************************************/
1192 : /* IReadBlock() */
1193 : /************************************************************************/
1194 :
1195 68 : CPLErr ISISMaskBand::IReadBlock(int nXBlock, int nYBlock, void *pImage)
1196 :
1197 : {
1198 68 : const GDALDataType eSrcDT = m_poBaseBand->GetRasterDataType();
1199 68 : const int nSrcDTSize = GDALGetDataTypeSizeBytes(eSrcDT);
1200 68 : if (m_pBuffer == nullptr)
1201 : {
1202 23 : m_pBuffer = VSI_MALLOC3_VERBOSE(nBlockXSize, nBlockYSize, nSrcDTSize);
1203 23 : if (m_pBuffer == nullptr)
1204 0 : return CE_Failure;
1205 : }
1206 :
1207 68 : int nXOff = nXBlock * nBlockXSize;
1208 68 : int nReqXSize = nBlockXSize;
1209 68 : if (nXOff + nReqXSize > nRasterXSize)
1210 4 : nReqXSize = nRasterXSize - nXOff;
1211 68 : int nYOff = nYBlock * nBlockYSize;
1212 68 : int nReqYSize = nBlockYSize;
1213 68 : if (nYOff + nReqYSize > nRasterYSize)
1214 4 : nReqYSize = nRasterYSize - nYOff;
1215 :
1216 136 : if (m_poBaseBand->RasterIO(GF_Read, nXOff, nYOff, nReqXSize, nReqYSize,
1217 : m_pBuffer, nReqXSize, nReqYSize, eSrcDT,
1218 : nSrcDTSize,
1219 68 : static_cast<GSpacing>(nSrcDTSize) * nBlockXSize,
1220 68 : nullptr) != CE_None)
1221 : {
1222 0 : return CE_Failure;
1223 : }
1224 :
1225 68 : GByte *pabyDst = static_cast<GByte *>(pImage);
1226 68 : if (eSrcDT == GDT_Byte)
1227 : {
1228 44 : FillMask<GByte>(m_pBuffer, pabyDst, nReqXSize, nReqYSize, nBlockXSize,
1229 : ISIS3_NULL1, LOW_REPR_SAT1, LOW_INSTR_SAT1,
1230 : HIGH_INSTR_SAT1, HIGH_REPR_SAT1);
1231 : }
1232 24 : else if (eSrcDT == GDT_UInt16)
1233 : {
1234 8 : FillMask<GUInt16>(m_pBuffer, pabyDst, nReqXSize, nReqYSize, nBlockXSize,
1235 : ISIS3_NULLU2, LOW_REPR_SATU2, LOW_INSTR_SATU2,
1236 : HIGH_INSTR_SATU2, HIGH_REPR_SATU2);
1237 : }
1238 16 : else if (eSrcDT == GDT_Int16)
1239 : {
1240 8 : FillMask<GInt16>(m_pBuffer, pabyDst, nReqXSize, nReqYSize, nBlockXSize,
1241 : ISIS3_NULL2, LOW_REPR_SAT2, LOW_INSTR_SAT2,
1242 : HIGH_INSTR_SAT2, HIGH_REPR_SAT2);
1243 : }
1244 : else
1245 : {
1246 8 : CPLAssert(eSrcDT == GDT_Float32);
1247 8 : FillMask<float>(m_pBuffer, pabyDst, nReqXSize, nReqYSize, nBlockXSize,
1248 : ISIS3_NULL4, LOW_REPR_SAT4, LOW_INSTR_SAT4,
1249 : HIGH_INSTR_SAT4, HIGH_REPR_SAT4);
1250 : }
1251 :
1252 68 : return CE_None;
1253 : }
1254 :
1255 : /************************************************************************/
1256 : /* ISIS3Dataset() */
1257 : /************************************************************************/
1258 :
1259 385 : ISIS3Dataset::ISIS3Dataset()
1260 : : m_fpLabel(nullptr), m_fpImage(nullptr), m_poExternalDS(nullptr),
1261 : m_bGeoTIFFAsRegularExternal(false), m_bGeoTIFFInitDone(true),
1262 : m_bIsLabelWritten(true), m_bIsTiled(false), m_bInitToNodata(false),
1263 : m_bGotTransform(false), m_bHasSrcNoData(false), m_dfSrcNoData(0.0),
1264 : m_bForce360(false), m_bWriteBoundingDegrees(true), m_bUseSrcLabel(true),
1265 385 : m_bUseSrcMapping(false), m_bUseSrcHistory(true), m_bAddGDALHistory(true)
1266 : {
1267 385 : m_oKeywords.SetStripSurroundingQuotes(true);
1268 385 : m_adfGeoTransform[0] = 0.0;
1269 385 : m_adfGeoTransform[1] = 1.0;
1270 385 : m_adfGeoTransform[2] = 0.0;
1271 385 : m_adfGeoTransform[3] = 0.0;
1272 385 : m_adfGeoTransform[4] = 0.0;
1273 385 : m_adfGeoTransform[5] = 1.0;
1274 :
1275 : // Deinit JSON objects
1276 385 : m_oJSonLabel.Deinit();
1277 385 : m_oSrcJSonLabel.Deinit();
1278 385 : }
1279 :
1280 : /************************************************************************/
1281 : /* ~ISIS3Dataset() */
1282 : /************************************************************************/
1283 :
1284 770 : ISIS3Dataset::~ISIS3Dataset()
1285 :
1286 : {
1287 385 : ISIS3Dataset::Close();
1288 770 : }
1289 :
1290 : /************************************************************************/
1291 : /* Close() */
1292 : /************************************************************************/
1293 :
1294 745 : CPLErr ISIS3Dataset::Close()
1295 : {
1296 745 : CPLErr eErr = CE_None;
1297 745 : if (nOpenFlags != OPEN_FLAGS_CLOSED)
1298 : {
1299 385 : if (!m_bIsLabelWritten)
1300 72 : WriteLabel();
1301 385 : if (m_poExternalDS && m_bGeoTIFFAsRegularExternal &&
1302 8 : !m_bGeoTIFFInitDone)
1303 : {
1304 0 : reinterpret_cast<ISIS3WrapperRasterBand *>(GetRasterBand(1))
1305 0 : ->InitFile();
1306 : }
1307 385 : if (ISIS3Dataset::FlushCache(true) != CE_None)
1308 0 : eErr = CE_Failure;
1309 385 : if (m_fpLabel)
1310 : {
1311 125 : if (VSIFCloseL(m_fpLabel) != 0)
1312 0 : eErr = CE_Failure;
1313 : }
1314 385 : if (m_fpImage && m_fpImage != m_fpLabel)
1315 : {
1316 238 : if (VSIFCloseL(m_fpImage) != 0)
1317 0 : eErr = CE_Failure;
1318 : }
1319 :
1320 385 : ISIS3Dataset::CloseDependentDatasets();
1321 385 : if (GDALPamDataset::Close() != CE_None)
1322 0 : eErr = CE_Failure;
1323 : }
1324 745 : return eErr;
1325 : }
1326 :
1327 : /************************************************************************/
1328 : /* CloseDependentDatasets() */
1329 : /************************************************************************/
1330 :
1331 385 : int ISIS3Dataset::CloseDependentDatasets()
1332 : {
1333 385 : int bHasDroppedRef = GDALPamDataset::CloseDependentDatasets();
1334 :
1335 385 : if (m_poExternalDS)
1336 : {
1337 43 : bHasDroppedRef = FALSE;
1338 43 : delete m_poExternalDS;
1339 43 : m_poExternalDS = nullptr;
1340 : }
1341 :
1342 847 : for (int iBand = 0; iBand < nBands; iBand++)
1343 : {
1344 462 : delete papoBands[iBand];
1345 : }
1346 385 : nBands = 0;
1347 :
1348 385 : return bHasDroppedRef;
1349 : }
1350 :
1351 : /************************************************************************/
1352 : /* GetFileList() */
1353 : /************************************************************************/
1354 :
1355 97 : char **ISIS3Dataset::GetFileList()
1356 :
1357 : {
1358 97 : char **papszFileList = GDALPamDataset::GetFileList();
1359 :
1360 97 : if (!m_osExternalFilename.empty())
1361 31 : papszFileList = CSLAddString(papszFileList, m_osExternalFilename);
1362 127 : for (int i = 0; i < m_aosAdditionalFiles.Count(); ++i)
1363 : {
1364 30 : if (CSLFindString(papszFileList, m_aosAdditionalFiles[i]) < 0)
1365 : {
1366 : papszFileList =
1367 30 : CSLAddString(papszFileList, m_aosAdditionalFiles[i]);
1368 : }
1369 : }
1370 :
1371 97 : return papszFileList;
1372 : }
1373 :
1374 : /************************************************************************/
1375 : /* GetSpatialRef() */
1376 : /************************************************************************/
1377 :
1378 59 : const OGRSpatialReference *ISIS3Dataset::GetSpatialRef() const
1379 :
1380 : {
1381 59 : if (!m_oSRS.IsEmpty())
1382 39 : return &m_oSRS;
1383 :
1384 20 : return GDALPamDataset::GetSpatialRef();
1385 : }
1386 :
1387 : /************************************************************************/
1388 : /* SetSpatialRef() */
1389 : /************************************************************************/
1390 :
1391 61 : CPLErr ISIS3Dataset::SetSpatialRef(const OGRSpatialReference *poSRS)
1392 : {
1393 61 : if (eAccess == GA_ReadOnly)
1394 0 : return GDALPamDataset::SetSpatialRef(poSRS);
1395 61 : if (poSRS)
1396 61 : m_oSRS = *poSRS;
1397 : else
1398 0 : m_oSRS.Clear();
1399 61 : if (m_poExternalDS)
1400 6 : m_poExternalDS->SetSpatialRef(poSRS);
1401 61 : InvalidateLabel();
1402 61 : return CE_None;
1403 : }
1404 :
1405 : /************************************************************************/
1406 : /* GetGeoTransform() */
1407 : /************************************************************************/
1408 :
1409 78 : CPLErr ISIS3Dataset::GetGeoTransform(double *padfTransform)
1410 :
1411 : {
1412 78 : if (m_bGotTransform)
1413 : {
1414 59 : memcpy(padfTransform, m_adfGeoTransform, sizeof(double) * 6);
1415 59 : return CE_None;
1416 : }
1417 :
1418 19 : return GDALPamDataset::GetGeoTransform(padfTransform);
1419 : }
1420 :
1421 : /************************************************************************/
1422 : /* SetGeoTransform() */
1423 : /************************************************************************/
1424 :
1425 53 : CPLErr ISIS3Dataset::SetGeoTransform(double *padfTransform)
1426 :
1427 : {
1428 53 : if (eAccess == GA_ReadOnly)
1429 0 : return GDALPamDataset::SetGeoTransform(padfTransform);
1430 53 : if (padfTransform[1] <= 0.0 || padfTransform[1] != -padfTransform[5] ||
1431 53 : padfTransform[2] != 0.0 || padfTransform[4] != 0.0)
1432 : {
1433 0 : CPLError(CE_Failure, CPLE_NotSupported,
1434 : "Only north-up geotransform with square pixels supported");
1435 0 : return CE_Failure;
1436 : }
1437 53 : m_bGotTransform = true;
1438 53 : memcpy(m_adfGeoTransform, padfTransform, sizeof(double) * 6);
1439 53 : if (m_poExternalDS)
1440 6 : m_poExternalDS->SetGeoTransform(padfTransform);
1441 53 : InvalidateLabel();
1442 53 : return CE_None;
1443 : }
1444 :
1445 : /************************************************************************/
1446 : /* GetMetadataDomainList() */
1447 : /************************************************************************/
1448 :
1449 1 : char **ISIS3Dataset::GetMetadataDomainList()
1450 : {
1451 1 : return BuildMetadataDomainList(nullptr, FALSE, "", "json:ISIS3", nullptr);
1452 : }
1453 :
1454 : /************************************************************************/
1455 : /* GetMetadata() */
1456 : /************************************************************************/
1457 :
1458 105 : char **ISIS3Dataset::GetMetadata(const char *pszDomain)
1459 : {
1460 105 : if (pszDomain != nullptr && EQUAL(pszDomain, "json:ISIS3"))
1461 : {
1462 53 : if (m_aosISIS3MD.empty())
1463 : {
1464 48 : if (eAccess == GA_Update && !m_oJSonLabel.IsValid())
1465 : {
1466 1 : BuildLabel();
1467 : }
1468 48 : CPLAssert(m_oJSonLabel.IsValid());
1469 : const CPLString osJson =
1470 96 : m_oJSonLabel.Format(CPLJSONObject::PrettyFormat::Pretty);
1471 48 : m_aosISIS3MD.InsertString(0, osJson.c_str());
1472 : }
1473 53 : return m_aosISIS3MD.List();
1474 : }
1475 52 : return GDALPamDataset::GetMetadata(pszDomain);
1476 : }
1477 :
1478 : /************************************************************************/
1479 : /* InvalidateLabel() */
1480 : /************************************************************************/
1481 :
1482 139 : void ISIS3Dataset::InvalidateLabel()
1483 : {
1484 139 : m_oJSonLabel.Deinit();
1485 139 : m_aosISIS3MD.Clear();
1486 139 : }
1487 :
1488 : /************************************************************************/
1489 : /* SetMetadata() */
1490 : /************************************************************************/
1491 :
1492 25 : CPLErr ISIS3Dataset::SetMetadata(char **papszMD, const char *pszDomain)
1493 : {
1494 25 : if (m_bUseSrcLabel && eAccess == GA_Update && pszDomain != nullptr &&
1495 25 : EQUAL(pszDomain, "json:ISIS3"))
1496 : {
1497 25 : m_oSrcJSonLabel.Deinit();
1498 25 : InvalidateLabel();
1499 25 : if (papszMD != nullptr && papszMD[0] != nullptr)
1500 : {
1501 25 : CPLJSONDocument oJSONDocument;
1502 25 : const GByte *pabyData = reinterpret_cast<const GByte *>(papszMD[0]);
1503 25 : if (!oJSONDocument.LoadMemory(pabyData))
1504 : {
1505 1 : return CE_Failure;
1506 : }
1507 :
1508 24 : m_oSrcJSonLabel = oJSONDocument.GetRoot();
1509 24 : if (!m_oSrcJSonLabel.IsValid())
1510 : {
1511 0 : return CE_Failure;
1512 : }
1513 : }
1514 24 : return CE_None;
1515 : }
1516 0 : return GDALPamDataset::SetMetadata(papszMD, pszDomain);
1517 : }
1518 :
1519 : /************************************************************************/
1520 : /* GetRawBinaryLayout() */
1521 : /************************************************************************/
1522 :
1523 2 : bool ISIS3Dataset::GetRawBinaryLayout(GDALDataset::RawBinaryLayout &sLayout)
1524 : {
1525 2 : if (m_sLayout.osRawFilename.empty())
1526 0 : return false;
1527 2 : sLayout = m_sLayout;
1528 2 : return true;
1529 : }
1530 :
1531 : /************************************************************************/
1532 : /* GetValueAndUnits() */
1533 : /************************************************************************/
1534 :
1535 50 : static void GetValueAndUnits(const CPLJSONObject &obj,
1536 : std::vector<double> &adfValues,
1537 : std::vector<std::string> &aosUnits,
1538 : int nExpectedVals)
1539 : {
1540 100 : if (obj.GetType() == CPLJSONObject::Type::Integer ||
1541 50 : obj.GetType() == CPLJSONObject::Type::Double)
1542 : {
1543 32 : adfValues.push_back(obj.ToDouble());
1544 : }
1545 18 : else if (obj.GetType() == CPLJSONObject::Type::Object)
1546 : {
1547 24 : auto oValue = obj.GetObj("value");
1548 24 : auto oUnit = obj.GetObj("unit");
1549 8 : if (oValue.IsValid() &&
1550 8 : (oValue.GetType() == CPLJSONObject::Type::Integer ||
1551 2 : oValue.GetType() == CPLJSONObject::Type::Double ||
1552 2 : oValue.GetType() == CPLJSONObject::Type::Array) &&
1553 16 : oUnit.IsValid() && oUnit.GetType() == CPLJSONObject::Type::String)
1554 : {
1555 8 : if (oValue.GetType() == CPLJSONObject::Type::Array)
1556 : {
1557 2 : GetValueAndUnits(oValue, adfValues, aosUnits, nExpectedVals);
1558 : }
1559 : else
1560 : {
1561 6 : adfValues.push_back(oValue.ToDouble());
1562 : }
1563 8 : aosUnits.push_back(oUnit.ToString());
1564 : }
1565 : }
1566 10 : else if (obj.GetType() == CPLJSONObject::Type::Array)
1567 : {
1568 10 : auto oArray = obj.ToArray();
1569 10 : if (oArray.Size() == nExpectedVals)
1570 : {
1571 34 : for (int i = 0; i < nExpectedVals; i++)
1572 : {
1573 60 : if (oArray[i].GetType() == CPLJSONObject::Type::Integer ||
1574 36 : oArray[i].GetType() == CPLJSONObject::Type::Double)
1575 : {
1576 24 : adfValues.push_back(oArray[i].ToDouble());
1577 : }
1578 : else
1579 : {
1580 0 : adfValues.clear();
1581 0 : return;
1582 : }
1583 : }
1584 : }
1585 : }
1586 : }
1587 :
1588 : /************************************************************************/
1589 : /* Open() */
1590 : /************************************************************************/
1591 :
1592 260 : GDALDataset *ISIS3Dataset::Open(GDALOpenInfo *poOpenInfo)
1593 :
1594 : {
1595 : /* -------------------------------------------------------------------- */
1596 : /* Does this look like a CUBE dataset? */
1597 : /* -------------------------------------------------------------------- */
1598 260 : if (!ISIS3DriverIdentify(poOpenInfo))
1599 0 : return nullptr;
1600 :
1601 : /* -------------------------------------------------------------------- */
1602 : /* Open the file using the large file API. */
1603 : /* -------------------------------------------------------------------- */
1604 520 : auto poDS = std::make_unique<ISIS3Dataset>();
1605 :
1606 260 : if (!poDS->m_oKeywords.Ingest(poOpenInfo->fpL, 0))
1607 : {
1608 1 : VSIFCloseL(poOpenInfo->fpL);
1609 1 : poOpenInfo->fpL = nullptr;
1610 1 : return nullptr;
1611 : }
1612 259 : poDS->m_oJSonLabel = poDS->m_oKeywords.GetJsonObject();
1613 259 : poDS->m_oJSonLabel.Add("_filename", poOpenInfo->pszFilename);
1614 :
1615 : // Find additional files from the label
1616 1292 : for (const CPLJSONObject &oObj : poDS->m_oJSonLabel.GetChildren())
1617 : {
1618 1033 : if (oObj.GetType() == CPLJSONObject::Type::Object)
1619 : {
1620 1548 : CPLString osContainerName = oObj.GetName();
1621 2322 : CPLJSONObject oContainerName = oObj.GetObj("_container_name");
1622 774 : if (oContainerName.GetType() == CPLJSONObject::Type::String)
1623 : {
1624 24 : osContainerName = oContainerName.ToString();
1625 : }
1626 :
1627 1548 : CPLJSONObject oFilename = oObj.GetObj("^" + osContainerName);
1628 774 : if (oFilename.GetType() == CPLJSONObject::Type::String)
1629 : {
1630 : VSIStatBufL sStat;
1631 : CPLString osFilename(
1632 119 : CPLFormFilename(CPLGetPath(poOpenInfo->pszFilename),
1633 357 : oFilename.ToString().c_str(), nullptr));
1634 119 : if (VSIStatL(osFilename, &sStat) == 0)
1635 : {
1636 81 : poDS->m_aosAdditionalFiles.AddString(osFilename);
1637 : }
1638 : else
1639 : {
1640 38 : CPLDebug("ISIS3", "File %s referenced but not foud",
1641 : osFilename.c_str());
1642 : }
1643 : }
1644 : }
1645 : }
1646 :
1647 259 : VSIFCloseL(poOpenInfo->fpL);
1648 259 : poOpenInfo->fpL = nullptr;
1649 :
1650 : /* -------------------------------------------------------------------- */
1651 : /* Assume user is pointing to label (i.e. .lbl) file for detached option */
1652 : /* -------------------------------------------------------------------- */
1653 : // Image can be inline or detached and point to an image name
1654 : // the Format can be Tiled or Raw
1655 : // Object = Core
1656 : // StartByte = 65537
1657 : // Format = Tile
1658 : // TileSamples = 128
1659 : // TileLines = 128
1660 : // OR-----
1661 : // Object = Core
1662 : // StartByte = 1
1663 : // ^Core = r0200357_detatched.cub
1664 : // Format = BandSequential
1665 : // OR-----
1666 : // Object = Core
1667 : // StartByte = 1
1668 : // ^Core = r0200357_detached_tiled.cub
1669 : // Format = Tile
1670 : // TileSamples = 128
1671 : // TileLines = 128
1672 : // OR-----
1673 : // Object = Core
1674 : // StartByte = 1
1675 : // ^Core = some.tif
1676 : // Format = GeoTIFF
1677 :
1678 : /* -------------------------------------------------------------------- */
1679 : /* What file contains the actual data? */
1680 : /* -------------------------------------------------------------------- */
1681 259 : const char *pszCore = poDS->GetKeyword("IsisCube.Core.^Core");
1682 : const CPLString osQubeFile(
1683 259 : EQUAL(pszCore, "")
1684 : ? poOpenInfo->pszFilename
1685 97 : : CPLFormFilename(CPLGetPath(poOpenInfo->pszFilename), pszCore,
1686 615 : nullptr));
1687 259 : if (!EQUAL(pszCore, ""))
1688 : {
1689 97 : poDS->m_osExternalFilename = osQubeFile;
1690 : }
1691 :
1692 : /* -------------------------------------------------------------------- */
1693 : /* Check if file an ISIS3 header file? Read a few lines of text */
1694 : /* searching for something starting with nrows or ncols. */
1695 : /* -------------------------------------------------------------------- */
1696 :
1697 : /************* Skipbytes *****************************/
1698 259 : int nSkipBytes = atoi(poDS->GetKeyword("IsisCube.Core.StartByte", "1"));
1699 259 : if (nSkipBytes <= 1)
1700 91 : nSkipBytes = 0;
1701 : else
1702 168 : nSkipBytes -= 1;
1703 :
1704 : /******* Grab format type (BandSequential, Tiled) *******/
1705 518 : CPLString osFormat = poDS->GetKeyword("IsisCube.Core.Format");
1706 :
1707 259 : int tileSizeX = 0;
1708 259 : int tileSizeY = 0;
1709 :
1710 259 : if (EQUAL(osFormat, "Tile"))
1711 : {
1712 26 : poDS->m_bIsTiled = true;
1713 : /******* Get Tile Sizes *********/
1714 26 : tileSizeX = atoi(poDS->GetKeyword("IsisCube.Core.TileSamples"));
1715 26 : tileSizeY = atoi(poDS->GetKeyword("IsisCube.Core.TileLines"));
1716 26 : if (tileSizeX <= 0 || tileSizeY <= 0)
1717 : {
1718 1 : CPLError(CE_Failure, CPLE_OpenFailed,
1719 : "Wrong tile dimensions : %d x %d", tileSizeX, tileSizeY);
1720 1 : return nullptr;
1721 : }
1722 : }
1723 233 : else if (!EQUAL(osFormat, "BandSequential") && !EQUAL(osFormat, "GeoTIFF"))
1724 : {
1725 1 : CPLError(CE_Failure, CPLE_OpenFailed, "%s format not supported.",
1726 : osFormat.c_str());
1727 1 : return nullptr;
1728 : }
1729 :
1730 : /*********** Grab samples lines band ************/
1731 : const int nCols =
1732 257 : atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Samples"));
1733 257 : const int nRows = atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Lines"));
1734 257 : const int nBands = atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Bands"));
1735 :
1736 : /****** Grab format type - ISIS3 only supports 8,U16,S16,32 *****/
1737 257 : GDALDataType eDataType = GDT_Byte;
1738 257 : double dfNoData = 0.0;
1739 :
1740 257 : const char *itype = poDS->GetKeyword("IsisCube.Core.Pixels.Type");
1741 257 : if (EQUAL(itype, "UnsignedByte"))
1742 : {
1743 209 : eDataType = GDT_Byte;
1744 209 : dfNoData = ISIS3_NULL1;
1745 : }
1746 48 : else if (EQUAL(itype, "UnsignedWord"))
1747 : {
1748 14 : eDataType = GDT_UInt16;
1749 14 : dfNoData = ISIS3_NULLU2;
1750 : }
1751 34 : else if (EQUAL(itype, "SignedWord"))
1752 : {
1753 14 : eDataType = GDT_Int16;
1754 14 : dfNoData = ISIS3_NULL2;
1755 : }
1756 20 : else if (EQUAL(itype, "Real") || EQUAL(itype, ""))
1757 : {
1758 19 : eDataType = GDT_Float32;
1759 19 : dfNoData = ISIS3_NULL4;
1760 : }
1761 : else
1762 : {
1763 1 : CPLError(CE_Failure, CPLE_OpenFailed, "%s pixel type not supported.",
1764 : itype);
1765 1 : return nullptr;
1766 : }
1767 :
1768 : /*********** Grab samples lines band ************/
1769 :
1770 : // default to MSB
1771 : const bool bIsLSB =
1772 256 : EQUAL(poDS->GetKeyword("IsisCube.Core.Pixels.ByteOrder"), "Lsb");
1773 :
1774 : /*********** Grab Cellsize ************/
1775 256 : double dfXDim = 1.0;
1776 256 : double dfYDim = 1.0;
1777 :
1778 256 : const char *pszRes = poDS->GetKeyword("IsisCube.Mapping.PixelResolution");
1779 256 : if (strlen(pszRes) > 0)
1780 : {
1781 97 : dfXDim = CPLAtof(pszRes); /* values are in meters */
1782 97 : dfYDim = -CPLAtof(pszRes);
1783 : }
1784 :
1785 : /*********** Grab UpperLeftCornerY ************/
1786 256 : double dfULYMap = 0.5;
1787 :
1788 256 : const char *pszULY = poDS->GetKeyword("IsisCube.Mapping.UpperLeftCornerY");
1789 256 : if (strlen(pszULY) > 0)
1790 : {
1791 97 : dfULYMap = CPLAtof(pszULY);
1792 : }
1793 :
1794 : /*********** Grab UpperLeftCornerX ************/
1795 256 : double dfULXMap = 0.5;
1796 :
1797 256 : const char *pszULX = poDS->GetKeyword("IsisCube.Mapping.UpperLeftCornerX");
1798 256 : if (strlen(pszULX) > 0)
1799 : {
1800 97 : dfULXMap = CPLAtof(pszULX);
1801 : }
1802 :
1803 : /*********** Grab TARGET_NAME ************/
1804 : /**** This is the planets name i.e. Mars ***/
1805 256 : const char *target_name = poDS->GetKeyword("IsisCube.Mapping.TargetName");
1806 :
1807 : #ifdef notdef
1808 : const double dfLongitudeMulFactor =
1809 : EQUAL(poDS->GetKeyword("IsisCube.Mapping.LongitudeDirection",
1810 : "PositiveEast"),
1811 : "PositiveEast")
1812 : ? 1
1813 : : -1;
1814 : #else
1815 256 : const double dfLongitudeMulFactor = 1;
1816 : #endif
1817 :
1818 : /*********** Grab MAP_PROJECTION_TYPE ************/
1819 : const char *map_proj_name =
1820 256 : poDS->GetKeyword("IsisCube.Mapping.ProjectionName");
1821 :
1822 : /*********** Grab SEMI-MAJOR ************/
1823 : const double semi_major =
1824 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.EquatorialRadius"));
1825 :
1826 : /*********** Grab semi-minor ************/
1827 : const double semi_minor =
1828 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PolarRadius"));
1829 :
1830 : /*********** Grab CENTER_LAT ************/
1831 : const double center_lat =
1832 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.CenterLatitude"));
1833 :
1834 : /*********** Grab CENTER_LON ************/
1835 : const double center_lon =
1836 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.CenterLongitude")) *
1837 : dfLongitudeMulFactor;
1838 :
1839 : /*********** Grab 1st std parallel ************/
1840 : const double first_std_parallel =
1841 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.FirstStandardParallel"));
1842 :
1843 : /*********** Grab 2nd std parallel ************/
1844 : const double second_std_parallel =
1845 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.SecondStandardParallel"));
1846 :
1847 : /*********** Grab scaleFactor ************/
1848 : const double scaleFactor =
1849 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.scaleFactor", "1.0"));
1850 :
1851 : /*** grab LatitudeType = Planetographic ****/
1852 : // Need to further study how ocentric/ographic will effect the gdal library
1853 : // So far we will use this fact to define a sphere or ellipse for some
1854 : // projections
1855 :
1856 : // Frank - may need to talk this over
1857 256 : bool bIsGeographic = true;
1858 256 : if (EQUAL(poDS->GetKeyword("IsisCube.Mapping.LatitudeType"),
1859 : "Planetocentric"))
1860 87 : bIsGeographic = false;
1861 :
1862 : // Set oSRS projection and parameters
1863 : // ############################################################
1864 : // ISIS3 Projection types
1865 : // Equirectangular
1866 : // LambertConformal
1867 : // Mercator
1868 : // ObliqueCylindrical
1869 : // Orthographic
1870 : // PolarStereographic
1871 : // SimpleCylindrical
1872 : // Sinusoidal
1873 : // TransverseMercator
1874 :
1875 : #ifdef DEBUG
1876 256 : CPLDebug("ISIS3", "using projection %s", map_proj_name);
1877 : #endif
1878 :
1879 512 : OGRSpatialReference oSRS;
1880 256 : bool bProjectionSet = true;
1881 :
1882 256 : if ((EQUAL(map_proj_name, "Equirectangular")) ||
1883 189 : (EQUAL(map_proj_name, "SimpleCylindrical")))
1884 : {
1885 82 : oSRS.SetEquirectangular2(0.0, center_lon, center_lat, 0, 0);
1886 : }
1887 174 : else if (EQUAL(map_proj_name, "Orthographic"))
1888 : {
1889 2 : oSRS.SetOrthographic(center_lat, center_lon, 0, 0);
1890 : }
1891 172 : else if (EQUAL(map_proj_name, "Sinusoidal"))
1892 : {
1893 2 : oSRS.SetSinusoidal(center_lon, 0, 0);
1894 : }
1895 170 : else if (EQUAL(map_proj_name, "Mercator"))
1896 : {
1897 2 : oSRS.SetMercator(center_lat, center_lon, scaleFactor, 0, 0);
1898 : }
1899 168 : else if (EQUAL(map_proj_name, "PolarStereographic"))
1900 : {
1901 2 : oSRS.SetPS(center_lat, center_lon, scaleFactor, 0, 0);
1902 : }
1903 166 : else if (EQUAL(map_proj_name, "TransverseMercator"))
1904 : {
1905 16 : oSRS.SetTM(center_lat, center_lon, scaleFactor, 0, 0);
1906 : }
1907 150 : else if (EQUAL(map_proj_name, "LambertConformal"))
1908 : {
1909 2 : oSRS.SetLCC(first_std_parallel, second_std_parallel, center_lat,
1910 : center_lon, 0, 0);
1911 : }
1912 148 : else if (EQUAL(map_proj_name, "PointPerspective"))
1913 : {
1914 : // Distance parameter is the distance to the center of the body, and is
1915 : // given in km
1916 : const double distance =
1917 1 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.Distance")) * 1000.0;
1918 1 : const double height_above_ground = distance - semi_major;
1919 1 : oSRS.SetVerticalPerspective(center_lat, center_lon, 0,
1920 : height_above_ground, 0, 0);
1921 : }
1922 147 : else if (EQUAL(map_proj_name, "ObliqueCylindrical"))
1923 : {
1924 : const double poleLatitude =
1925 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleLatitude"));
1926 : const double poleLongitude =
1927 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleLongitude")) *
1928 : dfLongitudeMulFactor;
1929 : const double poleRotation =
1930 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleRotation"));
1931 8 : CPLString oProj4String;
1932 : // ISIS3 rotated pole doesn't use the same conventions than PROJ ob_tran
1933 : // Compare the sign difference in
1934 : // https://github.com/USGS-Astrogeology/ISIS3/blob/3.8.0/isis/src/base/objs/ObliqueCylindrical/ObliqueCylindrical.cpp#L244
1935 : // and
1936 : // https://github.com/OSGeo/PROJ/blob/6.2/src/projections/ob_tran.cpp#L34
1937 : // They can be compensated by modifying the poleLatitude to
1938 : // 180-poleLatitude There's also a sign difference for the poleRotation
1939 : // parameter The existence of those different conventions is
1940 : // acknowledged in
1941 : // https://pds-imaging.jpl.nasa.gov/documentation/Cassini_BIDRSIS.PDF in
1942 : // the middle of page 10
1943 : oProj4String.Printf("+proj=ob_tran +o_proj=eqc +o_lon_p=%.17g "
1944 : "+o_lat_p=%.17g +lon_0=%.17g",
1945 4 : -poleRotation, 180 - poleLatitude, poleLongitude);
1946 4 : oSRS.SetFromUserInput(oProj4String);
1947 : }
1948 : else
1949 : {
1950 143 : CPLDebug("ISIS3",
1951 : "Dataset projection %s is not supported. Continuing...",
1952 : map_proj_name);
1953 143 : bProjectionSet = false;
1954 : }
1955 :
1956 256 : if (bProjectionSet)
1957 : {
1958 : // Create projection name, i.e. MERCATOR MARS and set as ProjCS keyword
1959 226 : CPLString osProjTargetName(map_proj_name);
1960 113 : osProjTargetName += " ";
1961 113 : osProjTargetName += target_name;
1962 113 : oSRS.SetProjCS(osProjTargetName); // set ProjCS keyword
1963 :
1964 : // The geographic/geocentric name will be the same basic name as the
1965 : // body name 'GCS' = Geographic/Geocentric Coordinate System
1966 226 : CPLString osGeogName("GCS_");
1967 113 : osGeogName += target_name;
1968 :
1969 : // The datum name will be the same basic name as the planet
1970 226 : CPLString osDatumName("D_");
1971 113 : osDatumName += target_name;
1972 :
1973 226 : CPLString osSphereName(target_name);
1974 : // strcat(osSphereName, "_IAU_IAG"); //Might not be IAU defined so
1975 : // don't add
1976 :
1977 : // calculate inverse flattening from major and minor axis: 1/f = a/(a-b)
1978 113 : double iflattening = 0.0;
1979 113 : if ((semi_major - semi_minor) < 0.0000001)
1980 38 : iflattening = 0;
1981 : else
1982 75 : iflattening = semi_major / (semi_major - semi_minor);
1983 :
1984 : // Set the body size but take into consideration which proj is being
1985 : // used to help w/ proj4 compatibility The use of a Sphere, polar radius
1986 : // or ellipse here is based on how ISIS does it internally
1987 113 : if (((EQUAL(map_proj_name, "Stereographic") &&
1988 0 : (fabs(center_lat) == 90))) ||
1989 113 : (EQUAL(map_proj_name, "PolarStereographic")))
1990 : {
1991 2 : if (bIsGeographic)
1992 : {
1993 : // Geograpraphic, so set an ellipse
1994 0 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
1995 : semi_major, iflattening, "Reference_Meridian",
1996 : 0.0);
1997 : }
1998 : else
1999 : {
2000 : // Geocentric, so force a sphere using the semi-minor axis. I
2001 : // hope...
2002 2 : osSphereName += "_polarRadius";
2003 2 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2004 : semi_minor, 0.0, "Reference_Meridian", 0.0);
2005 : }
2006 : }
2007 111 : else if ((EQUAL(map_proj_name, "SimpleCylindrical")) ||
2008 96 : (EQUAL(map_proj_name, "Orthographic")) ||
2009 94 : (EQUAL(map_proj_name, "Stereographic")) ||
2010 94 : (EQUAL(map_proj_name, "Sinusoidal")) ||
2011 92 : (EQUAL(map_proj_name, "PointPerspective")))
2012 : {
2013 : // ISIS uses the spherical equation for these projections
2014 : // so force a sphere.
2015 20 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName, semi_major,
2016 : 0.0, "Reference_Meridian", 0.0);
2017 : }
2018 91 : else if (EQUAL(map_proj_name, "Equirectangular"))
2019 : {
2020 : // Calculate localRadius using ISIS3 simple elliptical method
2021 : // not the more standard Radius of Curvature method
2022 : // PI = 4 * atan(1);
2023 67 : const double radLat = center_lat * M_PI / 180; // in radians
2024 67 : const double meanRadius = sqrt(pow(semi_minor * cos(radLat), 2) +
2025 67 : pow(semi_major * sin(radLat), 2));
2026 67 : const double localRadius =
2027 67 : (meanRadius == 0.0) ? 0.0
2028 67 : : semi_major * semi_minor / meanRadius;
2029 67 : osSphereName += "_localRadius";
2030 67 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName, localRadius,
2031 : 0.0, "Reference_Meridian", 0.0);
2032 : }
2033 : else
2034 : {
2035 : // All other projections: Mercator, Transverse Mercator, Lambert
2036 : // Conformal, etc. Geographic, so set an ellipse
2037 24 : if (bIsGeographic)
2038 : {
2039 0 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2040 : semi_major, iflattening, "Reference_Meridian",
2041 : 0.0);
2042 : }
2043 : else
2044 : {
2045 : // Geocentric, so force a sphere. I hope...
2046 24 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2047 : semi_major, 0.0, "Reference_Meridian", 0.0);
2048 : }
2049 : }
2050 :
2051 : // translate back into a projection string.
2052 113 : poDS->m_oSRS = std::move(oSRS);
2053 113 : poDS->m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2054 : }
2055 :
2056 : /* END ISIS3 Label Read */
2057 : /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
2058 :
2059 : /* -------------------------------------------------------------------- */
2060 : /* Did we get the required keywords? If not we return with */
2061 : /* this never having been considered to be a match. This isn't */
2062 : /* an error! */
2063 : /* -------------------------------------------------------------------- */
2064 511 : if (!GDALCheckDatasetDimensions(nCols, nRows) ||
2065 255 : !GDALCheckBandCount(nBands, false))
2066 : {
2067 2 : return nullptr;
2068 : }
2069 :
2070 : /* -------------------------------------------------------------------- */
2071 : /* Capture some information from the file that is of interest. */
2072 : /* -------------------------------------------------------------------- */
2073 254 : poDS->nRasterXSize = nCols;
2074 254 : poDS->nRasterYSize = nRows;
2075 :
2076 : /* -------------------------------------------------------------------- */
2077 : /* Open target binary file. */
2078 : /* -------------------------------------------------------------------- */
2079 254 : if (EQUAL(osFormat, "GeoTIFF"))
2080 : {
2081 27 : if (nSkipBytes != 0)
2082 : {
2083 2 : CPLError(CE_Warning, CPLE_NotSupported,
2084 : "Ignoring StartByte=%d for format=GeoTIFF",
2085 : 1 + nSkipBytes);
2086 : }
2087 27 : if (osQubeFile == poOpenInfo->pszFilename)
2088 : {
2089 0 : CPLError(CE_Failure, CPLE_AppDefined, "A ^Core file must be set");
2090 0 : return nullptr;
2091 : }
2092 27 : poDS->m_poExternalDS =
2093 27 : GDALDataset::FromHandle(GDALOpen(osQubeFile, poOpenInfo->eAccess));
2094 27 : if (poDS->m_poExternalDS == nullptr)
2095 : {
2096 2 : return nullptr;
2097 : }
2098 25 : if (poDS->m_poExternalDS->GetRasterXSize() != poDS->nRasterXSize ||
2099 24 : poDS->m_poExternalDS->GetRasterYSize() != poDS->nRasterYSize ||
2100 71 : poDS->m_poExternalDS->GetRasterCount() != nBands ||
2101 22 : poDS->m_poExternalDS->GetRasterBand(1)->GetRasterDataType() !=
2102 : eDataType)
2103 : {
2104 4 : CPLError(CE_Failure, CPLE_AppDefined,
2105 : "%s has incompatible characteristics with the ones "
2106 : "declared in the label.",
2107 : osQubeFile.c_str());
2108 4 : return nullptr;
2109 : }
2110 : }
2111 : else
2112 : {
2113 227 : if (poOpenInfo->eAccess == GA_ReadOnly)
2114 225 : poDS->m_fpImage = VSIFOpenL(osQubeFile, "r");
2115 : else
2116 2 : poDS->m_fpImage = VSIFOpenL(osQubeFile, "r+");
2117 :
2118 227 : if (poDS->m_fpImage == nullptr)
2119 : {
2120 2 : CPLError(CE_Failure, CPLE_OpenFailed, "Failed to open %s: %s.",
2121 2 : osQubeFile.c_str(), VSIStrerror(errno));
2122 2 : return nullptr;
2123 : }
2124 :
2125 : // Sanity checks in case the external raw file appears to be a
2126 : // TIFF file
2127 225 : if (EQUAL(CPLGetExtension(osQubeFile), "tif"))
2128 : {
2129 : GDALDataset *poTIF_DS =
2130 23 : GDALDataset::FromHandle(GDALOpen(osQubeFile, GA_ReadOnly));
2131 23 : if (poTIF_DS)
2132 : {
2133 23 : bool bWarned = false;
2134 23 : if (poTIF_DS->GetRasterXSize() != poDS->nRasterXSize ||
2135 22 : poTIF_DS->GetRasterYSize() != poDS->nRasterYSize ||
2136 21 : poTIF_DS->GetRasterCount() != nBands ||
2137 20 : poTIF_DS->GetRasterBand(1)->GetRasterDataType() !=
2138 45 : eDataType ||
2139 19 : poTIF_DS->GetMetadataItem("COMPRESSION",
2140 19 : "IMAGE_STRUCTURE") != nullptr)
2141 : {
2142 5 : bWarned = true;
2143 5 : CPLError(
2144 : CE_Warning, CPLE_AppDefined,
2145 : "%s has incompatible characteristics with the ones "
2146 : "declared in the label.",
2147 : osQubeFile.c_str());
2148 : }
2149 23 : int nBlockXSize = 1, nBlockYSize = 1;
2150 23 : poTIF_DS->GetRasterBand(1)->GetBlockSize(&nBlockXSize,
2151 : &nBlockYSize);
2152 23 : if ((poDS->m_bIsTiled &&
2153 46 : (nBlockXSize != tileSizeX || nBlockYSize != tileSizeY)) ||
2154 23 : (!poDS->m_bIsTiled && (nBlockXSize != nCols ||
2155 2 : (nBands > 1 && nBlockYSize != 1))))
2156 : {
2157 2 : if (!bWarned)
2158 : {
2159 1 : bWarned = true;
2160 1 : CPLError(
2161 : CE_Warning, CPLE_AppDefined,
2162 : "%s has incompatible characteristics with the ones "
2163 : "declared in the label.",
2164 : osQubeFile.c_str());
2165 : }
2166 : }
2167 : // to please Clang Static Analyzer
2168 23 : nBlockXSize = std::max(1, nBlockXSize);
2169 23 : nBlockYSize = std::max(1, nBlockYSize);
2170 :
2171 : // Check that blocks are effectively written in expected order.
2172 23 : const int nBlockSizeBytes = nBlockXSize * nBlockYSize *
2173 23 : GDALGetDataTypeSizeBytes(eDataType);
2174 23 : bool bGoOn = !bWarned;
2175 23 : const int l_nBlocksPerRow = DIV_ROUND_UP(nCols, nBlockXSize);
2176 23 : const int l_nBlocksPerColumn = DIV_ROUND_UP(nRows, nBlockYSize);
2177 23 : int nBlockNo = 0;
2178 52 : for (int i = 0; i < nBands && bGoOn; i++)
2179 : {
2180 1285 : for (int y = 0; y < l_nBlocksPerColumn && bGoOn; y++)
2181 : {
2182 2950 : for (int x = 0; x < l_nBlocksPerRow && bGoOn; x++)
2183 : {
2184 : const char *pszBlockOffset =
2185 3388 : poTIF_DS->GetRasterBand(i + 1)->GetMetadataItem(
2186 : CPLSPrintf("BLOCK_OFFSET_%d_%d", x, y),
2187 1694 : "TIFF");
2188 1694 : if (pszBlockOffset)
2189 : {
2190 1694 : GIntBig nOffset = CPLAtoGIntBig(pszBlockOffset);
2191 1694 : if (nOffset !=
2192 1694 : nSkipBytes + nBlockNo * nBlockSizeBytes)
2193 : {
2194 : // bWarned = true;
2195 2 : CPLError(CE_Warning, CPLE_AppDefined,
2196 : "%s has incompatible "
2197 : "characteristics with the ones "
2198 : "declared in the label.",
2199 : osQubeFile.c_str());
2200 2 : bGoOn = false;
2201 : }
2202 : }
2203 1694 : nBlockNo++;
2204 : }
2205 : }
2206 : }
2207 :
2208 23 : delete poTIF_DS;
2209 : }
2210 : }
2211 : }
2212 :
2213 246 : poDS->eAccess = poOpenInfo->eAccess;
2214 :
2215 : /* -------------------------------------------------------------------- */
2216 : /* Compute the line offset. */
2217 : /* -------------------------------------------------------------------- */
2218 246 : int nLineOffset = 0;
2219 246 : int nPixelOffset = 0;
2220 246 : vsi_l_offset nBandOffset = 0;
2221 :
2222 246 : if (EQUAL(osFormat, "BandSequential"))
2223 : {
2224 200 : const int nItemSize = GDALGetDataTypeSizeBytes(eDataType);
2225 200 : nPixelOffset = nItemSize;
2226 : try
2227 : {
2228 200 : nLineOffset = (CPLSM(nPixelOffset) * CPLSM(nCols)).v();
2229 : }
2230 0 : catch (const CPLSafeIntOverflow &)
2231 : {
2232 0 : return nullptr;
2233 : }
2234 200 : nBandOffset = static_cast<vsi_l_offset>(nLineOffset) * nRows;
2235 :
2236 200 : poDS->m_sLayout.osRawFilename = osQubeFile;
2237 200 : if (nBands > 1)
2238 16 : poDS->m_sLayout.eInterleaving = RawBinaryLayout::Interleaving::BSQ;
2239 200 : poDS->m_sLayout.eDataType = eDataType;
2240 200 : poDS->m_sLayout.bLittleEndianOrder = bIsLSB;
2241 200 : poDS->m_sLayout.nImageOffset = nSkipBytes;
2242 200 : poDS->m_sLayout.nPixelOffset = nPixelOffset;
2243 200 : poDS->m_sLayout.nLineOffset = nLineOffset;
2244 200 : poDS->m_sLayout.nBandOffset = static_cast<GIntBig>(nBandOffset);
2245 : }
2246 : /* else Tiled or external */
2247 :
2248 : /* -------------------------------------------------------------------- */
2249 : /* Extract BandBin info. */
2250 : /* -------------------------------------------------------------------- */
2251 492 : std::vector<std::string> aosBandNames;
2252 492 : std::vector<std::string> aosBandUnits;
2253 492 : std::vector<double> adfWavelengths;
2254 492 : std::vector<std::string> aosWavelengthsUnit;
2255 492 : std::vector<double> adfBandwidth;
2256 492 : std::vector<std::string> aosBandwidthUnit;
2257 738 : const auto oBandBin = poDS->m_oJSonLabel.GetObj("IsisCube/BandBin");
2258 246 : if (oBandBin.IsValid() && oBandBin.GetType() == CPLJSONObject::Type::Object)
2259 : {
2260 184 : for (const auto &child : oBandBin.GetChildren())
2261 : {
2262 143 : if (CPLString(child.GetName()).ifind("name") != std::string::npos)
2263 : {
2264 : // Use "name" in priority
2265 12 : if (EQUAL(child.GetName().c_str(), "name"))
2266 : {
2267 5 : aosBandNames.clear();
2268 : }
2269 7 : else if (!aosBandNames.empty())
2270 : {
2271 0 : continue;
2272 : }
2273 :
2274 12 : if (child.GetType() == CPLJSONObject::Type::String &&
2275 : nBands == 1)
2276 : {
2277 4 : aosBandNames.push_back(child.ToString());
2278 : }
2279 8 : else if (child.GetType() == CPLJSONObject::Type::Array)
2280 : {
2281 16 : auto oArray = child.ToArray();
2282 8 : if (oArray.Size() == nBands)
2283 : {
2284 28 : for (int i = 0; i < nBands; i++)
2285 : {
2286 20 : if (oArray[i].GetType() ==
2287 : CPLJSONObject::Type::String)
2288 : {
2289 20 : aosBandNames.push_back(oArray[i].ToString());
2290 : }
2291 : else
2292 : {
2293 0 : aosBandNames.clear();
2294 0 : break;
2295 : }
2296 : }
2297 : }
2298 : }
2299 : }
2300 135 : else if (EQUAL(child.GetName().c_str(), "BandSuffixUnit") &&
2301 4 : child.GetType() == CPLJSONObject::Type::Array)
2302 : {
2303 8 : auto oArray = child.ToArray();
2304 4 : if (oArray.Size() == nBands)
2305 : {
2306 12 : for (int i = 0; i < nBands; i++)
2307 : {
2308 8 : if (oArray[i].GetType() == CPLJSONObject::Type::String)
2309 : {
2310 8 : aosBandUnits.push_back(oArray[i].ToString());
2311 : }
2312 : else
2313 : {
2314 0 : aosBandUnits.clear();
2315 0 : break;
2316 : }
2317 : }
2318 : }
2319 : }
2320 377 : else if (EQUAL(child.GetName().c_str(), "BandBinCenter") ||
2321 250 : EQUAL(child.GetName().c_str(), "Center"))
2322 : {
2323 41 : GetValueAndUnits(child, adfWavelengths, aosWavelengthsUnit,
2324 : nBands);
2325 : }
2326 90 : else if (EQUAL(child.GetName().c_str(), "BandBinUnit") &&
2327 4 : child.GetType() == CPLJSONObject::Type::String)
2328 : {
2329 12 : CPLString unit(child.ToString());
2330 4 : if (STARTS_WITH_CI(unit, "micromet") || EQUAL(unit, "um") ||
2331 4 : STARTS_WITH_CI(unit, "nanomet") || EQUAL(unit, "nm"))
2332 : {
2333 4 : aosWavelengthsUnit.push_back(child.ToString());
2334 : }
2335 : }
2336 82 : else if (EQUAL(child.GetName().c_str(), "Width"))
2337 : {
2338 7 : GetValueAndUnits(child, adfBandwidth, aosBandwidthUnit, nBands);
2339 : }
2340 : }
2341 :
2342 41 : if (!adfWavelengths.empty() && aosWavelengthsUnit.size() == 1)
2343 : {
2344 11 : for (int i = 1; i < nBands; i++)
2345 : {
2346 4 : aosWavelengthsUnit.push_back(aosWavelengthsUnit[0]);
2347 : }
2348 : }
2349 41 : if (!adfBandwidth.empty() && aosBandwidthUnit.size() == 1)
2350 : {
2351 7 : for (int i = 1; i < nBands; i++)
2352 : {
2353 2 : aosBandwidthUnit.push_back(aosBandwidthUnit[0]);
2354 : }
2355 : }
2356 : }
2357 :
2358 : /* -------------------------------------------------------------------- */
2359 : /* Create band information objects. */
2360 : /* -------------------------------------------------------------------- */
2361 : #ifdef CPL_LSB
2362 246 : const bool bNativeOrder = bIsLSB;
2363 : #else
2364 : const bool bNativeOrder = !bIsLSB;
2365 : #endif
2366 :
2367 542 : for (int i = 0; i < nBands; i++)
2368 : {
2369 : GDALRasterBand *poBand;
2370 :
2371 296 : if (poDS->m_poExternalDS != nullptr)
2372 : {
2373 : auto poISISBand = std::make_unique<ISIS3WrapperRasterBand>(
2374 21 : poDS->m_poExternalDS->GetRasterBand(i + 1));
2375 21 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2376 21 : poDS->SetBand(i + 1, std::move(poISISBand));
2377 21 : poBand = poDS->GetRasterBand(i + 1);
2378 : }
2379 275 : else if (poDS->m_bIsTiled)
2380 : {
2381 : auto poISISBand = std::make_unique<ISISTiledBand>(
2382 41 : poDS.get(), poDS->m_fpImage, i + 1, eDataType, tileSizeX,
2383 82 : tileSizeY, nSkipBytes, 0, 0, bNativeOrder);
2384 41 : if (!poISISBand->IsValid())
2385 : {
2386 0 : return nullptr;
2387 : }
2388 41 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2389 41 : poDS->SetBand(i + 1, std::move(poISISBand));
2390 41 : poBand = poDS->GetRasterBand(i + 1);
2391 : }
2392 : else
2393 : {
2394 : auto poISISBand = std::make_unique<ISIS3RawRasterBand>(
2395 234 : poDS.get(), i + 1, poDS->m_fpImage,
2396 234 : nSkipBytes + nBandOffset * i, nPixelOffset, nLineOffset,
2397 234 : eDataType, bNativeOrder);
2398 234 : if (!poISISBand->IsValid())
2399 : {
2400 0 : return nullptr;
2401 : }
2402 234 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2403 234 : poDS->SetBand(i + 1, std::move(poISISBand));
2404 234 : poBand = poDS->GetRasterBand(i + 1);
2405 : }
2406 :
2407 296 : if (i < static_cast<int>(aosBandNames.size()))
2408 : {
2409 17 : poBand->SetDescription(aosBandNames[i].c_str());
2410 : }
2411 345 : if (i < static_cast<int>(adfWavelengths.size()) &&
2412 49 : i < static_cast<int>(aosWavelengthsUnit.size()))
2413 : {
2414 11 : poBand->SetMetadataItem("WAVELENGTH",
2415 11 : CPLSPrintf("%f", adfWavelengths[i]));
2416 11 : poBand->SetMetadataItem("WAVELENGTH_UNIT",
2417 11 : aosWavelengthsUnit[i].c_str());
2418 18 : if (i < static_cast<int>(adfBandwidth.size()) &&
2419 7 : i < static_cast<int>(aosBandwidthUnit.size()))
2420 : {
2421 7 : poBand->SetMetadataItem("BANDWIDTH",
2422 7 : CPLSPrintf("%f", adfBandwidth[i]));
2423 7 : poBand->SetMetadataItem("BANDWIDTH_UNIT",
2424 7 : aosBandwidthUnit[i].c_str());
2425 : }
2426 : }
2427 296 : if (i < static_cast<int>(aosBandUnits.size()))
2428 : {
2429 8 : poBand->SetUnitType(aosBandUnits[i].c_str());
2430 : }
2431 :
2432 296 : poBand->SetNoDataValue(dfNoData);
2433 :
2434 : // Set offset/scale values.
2435 : const double dfOffset =
2436 296 : CPLAtofM(poDS->GetKeyword("IsisCube.Core.Pixels.Base", "0.0"));
2437 296 : const double dfScale = CPLAtofM(
2438 : poDS->GetKeyword("IsisCube.Core.Pixels.Multiplier", "1.0"));
2439 296 : if (dfOffset != 0.0 || dfScale != 1.0)
2440 : {
2441 52 : poBand->SetOffset(dfOffset);
2442 52 : poBand->SetScale(dfScale);
2443 : }
2444 : }
2445 :
2446 : /* -------------------------------------------------------------------- */
2447 : /* Check for a .prj file. For ISIS3 I would like to keep this in */
2448 : /* -------------------------------------------------------------------- */
2449 492 : const CPLString osPath = CPLGetPath(poOpenInfo->pszFilename);
2450 492 : const CPLString osName = CPLGetBasename(poOpenInfo->pszFilename);
2451 246 : const char *pszPrjFile = CPLFormCIFilename(osPath, osName, "prj");
2452 :
2453 246 : VSILFILE *fp = VSIFOpenL(pszPrjFile, "r");
2454 246 : if (fp != nullptr)
2455 : {
2456 0 : VSIFCloseL(fp);
2457 :
2458 0 : char **papszLines = CSLLoad(pszPrjFile);
2459 :
2460 0 : OGRSpatialReference oSRS2;
2461 0 : if (oSRS2.importFromESRI(papszLines) == OGRERR_NONE)
2462 : {
2463 0 : poDS->m_aosAdditionalFiles.AddString(pszPrjFile);
2464 0 : poDS->m_oSRS = std::move(oSRS2);
2465 0 : poDS->m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2466 : }
2467 :
2468 0 : CSLDestroy(papszLines);
2469 : }
2470 :
2471 246 : if (dfULXMap != 0.5 || dfULYMap != 0.5 || dfXDim != 1.0 || dfYDim != 1.0)
2472 : {
2473 94 : poDS->m_bGotTransform = true;
2474 94 : poDS->m_adfGeoTransform[0] = dfULXMap;
2475 94 : poDS->m_adfGeoTransform[1] = dfXDim;
2476 94 : poDS->m_adfGeoTransform[2] = 0.0;
2477 94 : poDS->m_adfGeoTransform[3] = dfULYMap;
2478 94 : poDS->m_adfGeoTransform[4] = 0.0;
2479 94 : poDS->m_adfGeoTransform[5] = dfYDim;
2480 : }
2481 :
2482 246 : if (!poDS->m_bGotTransform)
2483 : {
2484 152 : poDS->m_bGotTransform = CPL_TO_BOOL(GDALReadWorldFile(
2485 152 : poOpenInfo->pszFilename, "cbw", poDS->m_adfGeoTransform));
2486 152 : if (poDS->m_bGotTransform)
2487 : {
2488 0 : poDS->m_aosAdditionalFiles.AddString(
2489 0 : CPLResetExtension(poOpenInfo->pszFilename, "cbw"));
2490 : }
2491 : }
2492 :
2493 246 : if (!poDS->m_bGotTransform)
2494 : {
2495 152 : poDS->m_bGotTransform = CPL_TO_BOOL(GDALReadWorldFile(
2496 152 : poOpenInfo->pszFilename, "wld", poDS->m_adfGeoTransform));
2497 152 : if (poDS->m_bGotTransform)
2498 : {
2499 0 : poDS->m_aosAdditionalFiles.AddString(
2500 0 : CPLResetExtension(poOpenInfo->pszFilename, "wld"));
2501 : }
2502 : }
2503 :
2504 : /* -------------------------------------------------------------------- */
2505 : /* Initialize any PAM information. */
2506 : /* -------------------------------------------------------------------- */
2507 246 : poDS->SetDescription(poOpenInfo->pszFilename);
2508 246 : poDS->TryLoadXML();
2509 :
2510 : /* -------------------------------------------------------------------- */
2511 : /* Check for overviews. */
2512 : /* -------------------------------------------------------------------- */
2513 246 : poDS->oOvManager.Initialize(poDS.get(), poOpenInfo->pszFilename);
2514 :
2515 246 : return poDS.release();
2516 : }
2517 :
2518 : /************************************************************************/
2519 : /* GetKeyword() */
2520 : /************************************************************************/
2521 :
2522 6046 : const char *ISIS3Dataset::GetKeyword(const char *pszPath,
2523 : const char *pszDefault)
2524 :
2525 : {
2526 6046 : return m_oKeywords.GetKeyword(pszPath, pszDefault);
2527 : }
2528 :
2529 : /************************************************************************/
2530 : /* FixLong() */
2531 : /************************************************************************/
2532 :
2533 232 : double ISIS3Dataset::FixLong(double dfLong)
2534 : {
2535 232 : if (m_osLongitudeDirection == "PositiveWest")
2536 4 : dfLong = -dfLong;
2537 232 : if (m_bForce360 && dfLong < 0)
2538 2 : dfLong += 360.0;
2539 232 : return dfLong;
2540 : }
2541 :
2542 : /************************************************************************/
2543 : /* BuildLabel() */
2544 : /************************************************************************/
2545 :
2546 126 : void ISIS3Dataset::BuildLabel()
2547 : {
2548 252 : CPLJSONObject oLabel = m_oSrcJSonLabel;
2549 126 : if (!oLabel.IsValid())
2550 : {
2551 102 : oLabel = CPLJSONObject();
2552 : }
2553 : // If we have a source label, then edit it directly
2554 378 : CPLJSONObject oIsisCube = GetOrCreateJSONObject(oLabel, "IsisCube");
2555 126 : oIsisCube.Set("_type", "object");
2556 :
2557 126 : if (!m_osComment.empty())
2558 1 : oIsisCube.Set("_comment", m_osComment);
2559 :
2560 378 : CPLJSONObject oCore = GetOrCreateJSONObject(oIsisCube, "Core");
2561 126 : if (oCore.GetType() != CPLJSONObject::Type::Object)
2562 : {
2563 0 : oIsisCube.Delete("Core");
2564 0 : oCore = CPLJSONObject();
2565 0 : oIsisCube.Add("Core", oCore);
2566 : }
2567 126 : oCore.Set("_type", "object");
2568 :
2569 126 : if (!m_osExternalFilename.empty())
2570 : {
2571 31 : if (m_poExternalDS && m_bGeoTIFFAsRegularExternal)
2572 : {
2573 8 : if (!m_bGeoTIFFInitDone)
2574 : {
2575 1 : reinterpret_cast<ISIS3WrapperRasterBand *>(GetRasterBand(1))
2576 1 : ->InitFile();
2577 : }
2578 :
2579 : const char *pszOffset =
2580 8 : m_poExternalDS->GetRasterBand(1)->GetMetadataItem(
2581 8 : "BLOCK_OFFSET_0_0", "TIFF");
2582 8 : if (pszOffset)
2583 : {
2584 8 : oCore.Set("StartByte", 1 + atoi(pszOffset));
2585 : }
2586 : else
2587 : {
2588 : // Shouldn't happen normally
2589 0 : CPLError(CE_Warning, CPLE_AppDefined,
2590 : "Missing BLOCK_OFFSET_0_0");
2591 0 : m_bGeoTIFFAsRegularExternal = false;
2592 0 : oCore.Set("StartByte", 1);
2593 8 : }
2594 : }
2595 : else
2596 : {
2597 23 : oCore.Set("StartByte", 1);
2598 : }
2599 31 : if (!m_osExternalFilename.empty())
2600 : {
2601 : const CPLString osExternalFilename =
2602 31 : CPLGetFilename(m_osExternalFilename);
2603 31 : oCore.Set("^Core", osExternalFilename);
2604 : }
2605 : }
2606 : else
2607 : {
2608 95 : oCore.Set("StartByte", pszSTARTBYTE_PLACEHOLDER);
2609 95 : oCore.Delete("^Core");
2610 : }
2611 :
2612 126 : if (m_poExternalDS && !m_bGeoTIFFAsRegularExternal)
2613 : {
2614 10 : oCore.Set("Format", "GeoTIFF");
2615 10 : oCore.Delete("TileSamples");
2616 10 : oCore.Delete("TileLines");
2617 : }
2618 116 : else if (m_bIsTiled)
2619 : {
2620 9 : oCore.Set("Format", "Tile");
2621 9 : int nBlockXSize = 1, nBlockYSize = 1;
2622 9 : GetRasterBand(1)->GetBlockSize(&nBlockXSize, &nBlockYSize);
2623 9 : oCore.Set("TileSamples", nBlockXSize);
2624 9 : oCore.Set("TileLines", nBlockYSize);
2625 : }
2626 : else
2627 : {
2628 107 : oCore.Set("Format", "BandSequential");
2629 107 : oCore.Delete("TileSamples");
2630 107 : oCore.Delete("TileLines");
2631 : }
2632 :
2633 378 : CPLJSONObject oDimensions = GetOrCreateJSONObject(oCore, "Dimensions");
2634 126 : oDimensions.Set("_type", "group");
2635 126 : oDimensions.Set("Samples", nRasterXSize);
2636 126 : oDimensions.Set("Lines", nRasterYSize);
2637 126 : oDimensions.Set("Bands", nBands);
2638 :
2639 378 : CPLJSONObject oPixels = GetOrCreateJSONObject(oCore, "Pixels");
2640 126 : oPixels.Set("_type", "group");
2641 126 : const GDALDataType eDT = GetRasterBand(1)->GetRasterDataType();
2642 152 : oPixels.Set("Type", (eDT == GDT_Byte) ? "UnsignedByte"
2643 43 : : (eDT == GDT_UInt16) ? "UnsignedWord"
2644 17 : : (eDT == GDT_Int16) ? "SignedWord"
2645 : : "Real");
2646 :
2647 126 : oPixels.Set("ByteOrder", "Lsb");
2648 126 : oPixels.Set("Base", GetRasterBand(1)->GetOffset());
2649 126 : oPixels.Set("Multiplier", GetRasterBand(1)->GetScale());
2650 :
2651 126 : const OGRSpatialReference &oSRS = m_oSRS;
2652 :
2653 126 : if (!m_bUseSrcMapping)
2654 : {
2655 124 : oIsisCube.Delete("Mapping");
2656 : }
2657 :
2658 378 : CPLJSONObject oMapping = GetOrCreateJSONObject(oIsisCube, "Mapping");
2659 128 : if (m_bUseSrcMapping && oMapping.IsValid() &&
2660 2 : oMapping.GetType() == CPLJSONObject::Type::Object)
2661 : {
2662 2 : if (!m_osTargetName.empty())
2663 1 : oMapping.Set("TargetName", m_osTargetName);
2664 2 : if (!m_osLatitudeType.empty())
2665 1 : oMapping.Set("LatitudeType", m_osLatitudeType);
2666 2 : if (!m_osLongitudeDirection.empty())
2667 1 : oMapping.Set("LongitudeDirection", m_osLongitudeDirection);
2668 : }
2669 124 : else if (!m_bUseSrcMapping && !m_oSRS.IsEmpty())
2670 : {
2671 59 : oMapping.Add("_type", "group");
2672 :
2673 59 : if (oSRS.IsProjected() || oSRS.IsGeographic())
2674 : {
2675 59 : const char *pszDatum = oSRS.GetAttrValue("DATUM");
2676 118 : CPLString osTargetName(m_osTargetName);
2677 59 : if (osTargetName.empty())
2678 : {
2679 58 : if (pszDatum && STARTS_WITH(pszDatum, "D_"))
2680 : {
2681 24 : osTargetName = pszDatum + 2;
2682 : }
2683 34 : else if (pszDatum)
2684 : {
2685 34 : osTargetName = pszDatum;
2686 : }
2687 : }
2688 59 : if (!osTargetName.empty())
2689 59 : oMapping.Add("TargetName", osTargetName);
2690 :
2691 59 : oMapping.Add("EquatorialRadius/value", oSRS.GetSemiMajor());
2692 59 : oMapping.Add("EquatorialRadius/unit", "meters");
2693 59 : oMapping.Add("PolarRadius/value", oSRS.GetSemiMinor());
2694 59 : oMapping.Add("PolarRadius/unit", "meters");
2695 :
2696 59 : if (!m_osLatitudeType.empty())
2697 1 : oMapping.Add("LatitudeType", m_osLatitudeType);
2698 : else
2699 58 : oMapping.Add("LatitudeType", "Planetocentric");
2700 :
2701 59 : if (!m_osLongitudeDirection.empty())
2702 1 : oMapping.Add("LongitudeDirection", m_osLongitudeDirection);
2703 : else
2704 58 : oMapping.Add("LongitudeDirection", "PositiveEast");
2705 :
2706 59 : double adfX[4] = {0};
2707 59 : double adfY[4] = {0};
2708 59 : bool bLongLatCorners = false;
2709 59 : if (m_bGotTransform)
2710 : {
2711 255 : for (int i = 0; i < 4; i++)
2712 : {
2713 204 : adfX[i] = m_adfGeoTransform[0] +
2714 204 : (i % 2) * nRasterXSize * m_adfGeoTransform[1];
2715 408 : adfY[i] = m_adfGeoTransform[3] +
2716 204 : ((i == 0 || i == 3) ? 0 : 1) * nRasterYSize *
2717 204 : m_adfGeoTransform[5];
2718 : }
2719 51 : if (oSRS.IsGeographic())
2720 : {
2721 31 : bLongLatCorners = true;
2722 : }
2723 : else
2724 : {
2725 20 : OGRSpatialReference *poSRSLongLat = oSRS.CloneGeogCS();
2726 20 : if (poSRSLongLat)
2727 : {
2728 20 : poSRSLongLat->SetAxisMappingStrategy(
2729 : OAMS_TRADITIONAL_GIS_ORDER);
2730 : OGRCoordinateTransformation *poCT =
2731 20 : OGRCreateCoordinateTransformation(&oSRS,
2732 : poSRSLongLat);
2733 20 : if (poCT)
2734 : {
2735 20 : if (poCT->Transform(4, adfX, adfY))
2736 : {
2737 20 : bLongLatCorners = true;
2738 : }
2739 20 : delete poCT;
2740 : }
2741 20 : delete poSRSLongLat;
2742 : }
2743 : }
2744 : }
2745 59 : if (bLongLatCorners)
2746 : {
2747 255 : for (int i = 0; i < 4; i++)
2748 : {
2749 204 : adfX[i] = FixLong(adfX[i]);
2750 : }
2751 : }
2752 :
2753 59 : if (bLongLatCorners &&
2754 51 : (m_bForce360 || adfX[0] < -180.0 || adfX[3] > 180.0))
2755 : {
2756 1 : oMapping.Add("LongitudeDomain", 360);
2757 : }
2758 : else
2759 : {
2760 58 : oMapping.Add("LongitudeDomain", 180);
2761 : }
2762 :
2763 59 : if (m_bWriteBoundingDegrees && !m_osBoundingDegrees.empty())
2764 : {
2765 : char **papszTokens =
2766 1 : CSLTokenizeString2(m_osBoundingDegrees, ",", 0);
2767 1 : if (CSLCount(papszTokens) == 4)
2768 : {
2769 1 : oMapping.Add("MinimumLatitude", CPLAtof(papszTokens[1]));
2770 1 : oMapping.Add("MinimumLongitude", CPLAtof(papszTokens[0]));
2771 1 : oMapping.Add("MaximumLatitude", CPLAtof(papszTokens[3]));
2772 1 : oMapping.Add("MaximumLongitude", CPLAtof(papszTokens[2]));
2773 : }
2774 1 : CSLDestroy(papszTokens);
2775 : }
2776 58 : else if (m_bWriteBoundingDegrees && bLongLatCorners)
2777 : {
2778 49 : oMapping.Add("MinimumLatitude",
2779 : std::min(std::min(adfY[0], adfY[1]),
2780 49 : std::min(adfY[2], adfY[3])));
2781 49 : oMapping.Add("MinimumLongitude",
2782 : std::min(std::min(adfX[0], adfX[1]),
2783 49 : std::min(adfX[2], adfX[3])));
2784 49 : oMapping.Add("MaximumLatitude",
2785 : std::max(std::max(adfY[0], adfY[1]),
2786 49 : std::max(adfY[2], adfY[3])));
2787 49 : oMapping.Add("MaximumLongitude",
2788 : std::max(std::max(adfX[0], adfX[1]),
2789 49 : std::max(adfX[2], adfX[3])));
2790 : }
2791 :
2792 59 : const char *pszProjection = oSRS.GetAttrValue("PROJECTION");
2793 59 : if (pszProjection == nullptr)
2794 : {
2795 31 : oMapping.Add("ProjectionName", "SimpleCylindrical");
2796 31 : oMapping.Add("CenterLongitude", 0.0);
2797 31 : oMapping.Add("CenterLatitude", 0.0);
2798 31 : oMapping.Add("CenterLatitudeRadius", oSRS.GetSemiMajor());
2799 : }
2800 28 : else if (EQUAL(pszProjection, SRS_PT_EQUIRECTANGULAR))
2801 : {
2802 14 : oMapping.Add("ProjectionName", "Equirectangular");
2803 14 : if (oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0) != 0.0)
2804 : {
2805 1 : CPLError(CE_Warning, CPLE_NotSupported,
2806 : "Ignoring %s. Only 0 value supported",
2807 : SRS_PP_LATITUDE_OF_ORIGIN);
2808 : }
2809 14 : oMapping.Add("CenterLongitude",
2810 : FixLong(oSRS.GetNormProjParm(
2811 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2812 : const double dfCenterLat =
2813 14 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_1, 0.0);
2814 14 : oMapping.Add("CenterLatitude", dfCenterLat);
2815 :
2816 : // in radians
2817 14 : const double radLat = dfCenterLat * M_PI / 180;
2818 14 : const double semi_major = oSRS.GetSemiMajor();
2819 14 : const double semi_minor = oSRS.GetSemiMinor();
2820 : const double localRadius =
2821 14 : semi_major * semi_minor /
2822 14 : sqrt(pow(semi_minor * cos(radLat), 2) +
2823 14 : pow(semi_major * sin(radLat), 2));
2824 14 : oMapping.Add("CenterLatitudeRadius", localRadius);
2825 : }
2826 :
2827 14 : else if (EQUAL(pszProjection, SRS_PT_ORTHOGRAPHIC))
2828 : {
2829 1 : oMapping.Add("ProjectionName", "Orthographic");
2830 1 : oMapping.Add("CenterLongitude",
2831 : FixLong(oSRS.GetNormProjParm(
2832 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2833 1 : oMapping.Add(
2834 : "CenterLatitude",
2835 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2836 : }
2837 :
2838 13 : else if (EQUAL(pszProjection, SRS_PT_SINUSOIDAL))
2839 : {
2840 1 : oMapping.Add("ProjectionName", "Sinusoidal");
2841 1 : oMapping.Add("CenterLongitude",
2842 : FixLong(oSRS.GetNormProjParm(
2843 : SRS_PP_LONGITUDE_OF_CENTER, 0.0)));
2844 : }
2845 :
2846 12 : else if (EQUAL(pszProjection, SRS_PT_MERCATOR_1SP))
2847 : {
2848 1 : oMapping.Add("ProjectionName", "Mercator");
2849 1 : oMapping.Add("CenterLongitude",
2850 : FixLong(oSRS.GetNormProjParm(
2851 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2852 1 : oMapping.Add(
2853 : "CenterLatitude",
2854 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2855 1 : oMapping.Add("scaleFactor",
2856 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2857 : }
2858 :
2859 11 : else if (EQUAL(pszProjection, SRS_PT_POLAR_STEREOGRAPHIC))
2860 : {
2861 1 : oMapping.Add("ProjectionName", "PolarStereographic");
2862 1 : oMapping.Add("CenterLongitude",
2863 : FixLong(oSRS.GetNormProjParm(
2864 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2865 1 : oMapping.Add(
2866 : "CenterLatitude",
2867 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2868 1 : oMapping.Add("scaleFactor",
2869 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2870 : }
2871 :
2872 10 : else if (EQUAL(pszProjection, SRS_PT_TRANSVERSE_MERCATOR))
2873 : {
2874 8 : oMapping.Add("ProjectionName", "TransverseMercator");
2875 8 : oMapping.Add("CenterLongitude",
2876 : FixLong(oSRS.GetNormProjParm(
2877 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2878 8 : oMapping.Add(
2879 : "CenterLatitude",
2880 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2881 8 : oMapping.Add("scaleFactor",
2882 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2883 : }
2884 :
2885 2 : else if (EQUAL(pszProjection, SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP))
2886 : {
2887 1 : oMapping.Add("ProjectionName", "LambertConformal");
2888 1 : oMapping.Add("CenterLongitude",
2889 : FixLong(oSRS.GetNormProjParm(
2890 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2891 1 : oMapping.Add(
2892 : "CenterLatitude",
2893 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2894 1 : oMapping.Add(
2895 : "FirstStandardParallel",
2896 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_1, 0.0));
2897 1 : oMapping.Add(
2898 : "SecondStandardParallel",
2899 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_2, 0.0));
2900 : }
2901 :
2902 1 : else if (EQUAL(pszProjection,
2903 : "Vertical Perspective")) // PROJ 7 required
2904 : {
2905 0 : oMapping.Add("ProjectionName", "PointPerspective");
2906 0 : oMapping.Add("CenterLongitude",
2907 : FixLong(oSRS.GetNormProjParm(
2908 : "Longitude of topocentric origin", 0.0)));
2909 0 : oMapping.Add("CenterLatitude",
2910 : oSRS.GetNormProjParm(
2911 : "Latitude of topocentric origin", 0.0));
2912 : // ISIS3 value is the distance from center of ellipsoid, in km
2913 0 : oMapping.Add("Distance",
2914 0 : (oSRS.GetNormProjParm("Viewpoint height", 0.0) +
2915 0 : oSRS.GetSemiMajor()) /
2916 : 1000.0);
2917 : }
2918 :
2919 1 : else if (EQUAL(pszProjection, "custom_proj4"))
2920 : {
2921 : const char *pszProj4 =
2922 1 : oSRS.GetExtension("PROJCS", "PROJ4", nullptr);
2923 1 : if (pszProj4 && strstr(pszProj4, "+proj=ob_tran") &&
2924 1 : strstr(pszProj4, "+o_proj=eqc"))
2925 : {
2926 : const auto FetchParam =
2927 3 : [](const char *pszProj4Str, const char *pszKey)
2928 : {
2929 6 : CPLString needle;
2930 3 : needle.Printf("+%s=", pszKey);
2931 : const char *pszVal =
2932 3 : strstr(pszProj4Str, needle.c_str());
2933 3 : if (pszVal)
2934 3 : return CPLAtof(pszVal + needle.size());
2935 0 : return 0.0;
2936 : };
2937 :
2938 1 : double dfLonP = FetchParam(pszProj4, "o_lon_p");
2939 1 : double dfLatP = FetchParam(pszProj4, "o_lat_p");
2940 1 : double dfLon0 = FetchParam(pszProj4, "lon_0");
2941 1 : double dfPoleRotation = -dfLonP;
2942 1 : double dfPoleLatitude = 180 - dfLatP;
2943 1 : double dfPoleLongitude = dfLon0;
2944 1 : oMapping.Add("ProjectionName", "ObliqueCylindrical");
2945 1 : oMapping.Add("PoleLatitude", dfPoleLatitude);
2946 1 : oMapping.Add("PoleLongitude", FixLong(dfPoleLongitude));
2947 1 : oMapping.Add("PoleRotation", dfPoleRotation);
2948 : }
2949 : else
2950 : {
2951 0 : CPLError(CE_Warning, CPLE_NotSupported,
2952 : "Projection %s not supported", pszProjection);
2953 : }
2954 : }
2955 : else
2956 : {
2957 0 : CPLError(CE_Warning, CPLE_NotSupported,
2958 : "Projection %s not supported", pszProjection);
2959 : }
2960 :
2961 59 : if (oMapping["ProjectionName"].IsValid())
2962 : {
2963 59 : if (oSRS.GetNormProjParm(SRS_PP_FALSE_EASTING, 0.0) != 0.0)
2964 : {
2965 6 : CPLError(CE_Warning, CPLE_NotSupported,
2966 : "Ignoring %s. Only 0 value supported",
2967 : SRS_PP_FALSE_EASTING);
2968 : }
2969 59 : if (oSRS.GetNormProjParm(SRS_PP_FALSE_NORTHING, 0.0) != 0.0)
2970 : {
2971 1 : CPLError(CE_Warning, CPLE_AppDefined,
2972 : "Ignoring %s. Only 0 value supported",
2973 : SRS_PP_FALSE_NORTHING);
2974 : }
2975 : }
2976 : }
2977 : else
2978 : {
2979 0 : CPLError(CE_Warning, CPLE_NotSupported, "SRS not supported");
2980 : }
2981 : }
2982 :
2983 126 : if (!m_bUseSrcMapping && m_bGotTransform)
2984 : {
2985 51 : oMapping.Add("_type", "group");
2986 :
2987 51 : const double dfDegToMeter = oSRS.GetSemiMajor() * M_PI / 180.0;
2988 51 : if (!m_oSRS.IsEmpty() && oSRS.IsProjected())
2989 : {
2990 20 : const double dfLinearUnits = oSRS.GetLinearUnits();
2991 : // Maybe we should deal differently with non meter units ?
2992 20 : const double dfRes = m_adfGeoTransform[1] * dfLinearUnits;
2993 20 : const double dfScale = dfDegToMeter / dfRes;
2994 20 : oMapping.Add("UpperLeftCornerX", m_adfGeoTransform[0]);
2995 20 : oMapping.Add("UpperLeftCornerY", m_adfGeoTransform[3]);
2996 20 : oMapping.Add("PixelResolution/value", dfRes);
2997 20 : oMapping.Add("PixelResolution/unit", "meters/pixel");
2998 20 : oMapping.Add("Scale/value", dfScale);
2999 20 : oMapping.Add("Scale/unit", "pixels/degree");
3000 : }
3001 31 : else if (!m_oSRS.IsEmpty() && oSRS.IsGeographic())
3002 : {
3003 31 : const double dfScale = 1.0 / m_adfGeoTransform[1];
3004 31 : const double dfRes = m_adfGeoTransform[1] * dfDegToMeter;
3005 31 : oMapping.Add("UpperLeftCornerX",
3006 31 : m_adfGeoTransform[0] * dfDegToMeter);
3007 31 : oMapping.Add("UpperLeftCornerY",
3008 31 : m_adfGeoTransform[3] * dfDegToMeter);
3009 31 : oMapping.Add("PixelResolution/value", dfRes);
3010 31 : oMapping.Add("PixelResolution/unit", "meters/pixel");
3011 31 : oMapping.Add("Scale/value", dfScale);
3012 31 : oMapping.Add("Scale/unit", "pixels/degree");
3013 : }
3014 : else
3015 : {
3016 0 : oMapping.Add("UpperLeftCornerX", m_adfGeoTransform[0]);
3017 0 : oMapping.Add("UpperLeftCornerY", m_adfGeoTransform[3]);
3018 0 : oMapping.Add("PixelResolution", m_adfGeoTransform[1]);
3019 : }
3020 : }
3021 :
3022 378 : CPLJSONObject oLabelLabel = GetOrCreateJSONObject(oLabel, "Label");
3023 126 : oLabelLabel.Set("_type", "object");
3024 126 : oLabelLabel.Set("Bytes", pszLABEL_BYTES_PLACEHOLDER);
3025 :
3026 : // Deal with History object
3027 126 : BuildHistory();
3028 :
3029 126 : oLabel.Delete("History");
3030 126 : if (!m_osHistory.empty())
3031 : {
3032 124 : CPLJSONObject oHistory;
3033 124 : oHistory.Add("_type", "object");
3034 124 : oHistory.Add("Name", "IsisCube");
3035 124 : if (m_osExternalFilename.empty())
3036 94 : oHistory.Add("StartByte", pszHISTORY_STARTBYTE_PLACEHOLDER);
3037 : else
3038 30 : oHistory.Add("StartByte", 1);
3039 124 : oHistory.Add("Bytes", static_cast<GIntBig>(m_osHistory.size()));
3040 124 : if (!m_osExternalFilename.empty())
3041 : {
3042 30 : CPLString osFilename(CPLGetBasename(GetDescription()));
3043 30 : osFilename += ".History.IsisCube";
3044 30 : oHistory.Add("^History", osFilename);
3045 : }
3046 124 : oLabel.Add("History", oHistory);
3047 : }
3048 :
3049 : // Deal with other objects that have StartByte & Bytes
3050 126 : m_aoNonPixelSections.clear();
3051 126 : if (m_oSrcJSonLabel.IsValid())
3052 : {
3053 48 : CPLString osLabelSrcFilename;
3054 72 : CPLJSONObject oFilename = oLabel["_filename"];
3055 24 : if (oFilename.GetType() == CPLJSONObject::Type::String)
3056 : {
3057 19 : osLabelSrcFilename = oFilename.ToString();
3058 : }
3059 :
3060 128 : for (CPLJSONObject &oObj : oLabel.GetChildren())
3061 : {
3062 104 : CPLString osKey = oObj.GetName();
3063 104 : if (osKey == "History")
3064 : {
3065 22 : continue;
3066 : }
3067 :
3068 164 : CPLJSONObject oBytes = oObj.GetObj("Bytes");
3069 92 : if (oBytes.GetType() != CPLJSONObject::Type::Integer ||
3070 10 : oBytes.ToInteger() <= 0)
3071 : {
3072 72 : continue;
3073 : }
3074 :
3075 20 : CPLJSONObject oStartByte = oObj.GetObj("StartByte");
3076 20 : if (oStartByte.GetType() != CPLJSONObject::Type::Integer ||
3077 10 : oStartByte.ToInteger() <= 0)
3078 : {
3079 0 : continue;
3080 : }
3081 :
3082 10 : if (osLabelSrcFilename.empty())
3083 : {
3084 0 : CPLError(CE_Warning, CPLE_AppDefined,
3085 : "Cannot find _filename attribute in "
3086 : "source ISIS3 metadata. Removing object "
3087 : "%s from the label.",
3088 : osKey.c_str());
3089 0 : oLabel.Delete(osKey);
3090 0 : continue;
3091 : }
3092 :
3093 10 : NonPixelSection oSection;
3094 10 : oSection.osSrcFilename = osLabelSrcFilename;
3095 10 : oSection.nSrcOffset =
3096 10 : static_cast<vsi_l_offset>(oObj.GetInteger("StartByte")) - 1U;
3097 10 : oSection.nSize =
3098 10 : static_cast<vsi_l_offset>(oObj.GetInteger("Bytes"));
3099 :
3100 10 : CPLString osName;
3101 20 : CPLJSONObject oName = oObj.GetObj("Name");
3102 10 : if (oName.GetType() == CPLJSONObject::Type::String)
3103 : {
3104 10 : osName = oName.ToString();
3105 : }
3106 :
3107 10 : CPLString osContainerName(osKey);
3108 20 : CPLJSONObject oContainerName = oObj.GetObj("_container_name");
3109 10 : if (oContainerName.GetType() == CPLJSONObject::Type::String)
3110 : {
3111 5 : osContainerName = oContainerName.ToString();
3112 : }
3113 :
3114 10 : const CPLString osKeyFilename("^" + osContainerName);
3115 10 : CPLJSONObject oFilenameCap = oObj.GetObj(osKeyFilename);
3116 10 : if (oFilenameCap.GetType() == CPLJSONObject::Type::String)
3117 : {
3118 : VSIStatBufL sStat;
3119 : const CPLString osSrcFilename(
3120 : CPLFormFilename(CPLGetPath(osLabelSrcFilename),
3121 16 : oFilenameCap.ToString().c_str(), nullptr));
3122 8 : if (VSIStatL(osSrcFilename, &sStat) == 0)
3123 : {
3124 3 : oSection.osSrcFilename = osSrcFilename;
3125 : }
3126 : else
3127 : {
3128 5 : CPLError(CE_Warning, CPLE_AppDefined,
3129 : "Object %s points to %s, which does "
3130 : "not exist. Removing this section "
3131 : "from the label",
3132 : osKey.c_str(), osSrcFilename.c_str());
3133 5 : oLabel.Delete(osKey);
3134 5 : continue;
3135 : }
3136 : }
3137 :
3138 5 : if (!m_osExternalFilename.empty())
3139 : {
3140 2 : oObj.Set("StartByte", 1);
3141 : }
3142 : else
3143 : {
3144 6 : CPLString osPlaceHolder;
3145 : osPlaceHolder.Printf(
3146 : "!*^PLACEHOLDER_%d_STARTBYTE^*!",
3147 3 : static_cast<int>(m_aoNonPixelSections.size()) + 1);
3148 3 : oObj.Set("StartByte", osPlaceHolder);
3149 3 : oSection.osPlaceHolder = std::move(osPlaceHolder);
3150 : }
3151 :
3152 5 : if (!m_osExternalFilename.empty())
3153 : {
3154 4 : CPLString osDstFilename(CPLGetBasename(GetDescription()));
3155 2 : osDstFilename += ".";
3156 2 : osDstFilename += osContainerName;
3157 2 : if (!osName.empty())
3158 : {
3159 2 : osDstFilename += ".";
3160 2 : osDstFilename += osName;
3161 : }
3162 :
3163 : oSection.osDstFilename = CPLFormFilename(
3164 2 : CPLGetPath(GetDescription()), osDstFilename, nullptr);
3165 :
3166 2 : oObj.Set(osKeyFilename, osDstFilename);
3167 : }
3168 : else
3169 : {
3170 3 : oObj.Delete(osKeyFilename);
3171 : }
3172 :
3173 5 : m_aoNonPixelSections.push_back(oSection);
3174 : }
3175 : }
3176 126 : m_oJSonLabel = std::move(oLabel);
3177 126 : }
3178 :
3179 : /************************************************************************/
3180 : /* BuildHistory() */
3181 : /************************************************************************/
3182 :
3183 126 : void ISIS3Dataset::BuildHistory()
3184 : {
3185 252 : CPLString osHistory;
3186 :
3187 126 : if (m_oSrcJSonLabel.IsValid() && m_bUseSrcHistory)
3188 : {
3189 22 : vsi_l_offset nHistoryOffset = 0;
3190 22 : int nHistorySize = 0;
3191 44 : CPLString osSrcFilename;
3192 :
3193 66 : CPLJSONObject oFilename = m_oSrcJSonLabel["_filename"];
3194 22 : if (oFilename.GetType() == CPLJSONObject::Type::String)
3195 : {
3196 17 : osSrcFilename = oFilename.ToString();
3197 : }
3198 44 : CPLString osHistoryFilename(osSrcFilename);
3199 66 : CPLJSONObject oHistory = m_oSrcJSonLabel["History"];
3200 22 : if (oHistory.GetType() == CPLJSONObject::Type::Object)
3201 : {
3202 33 : CPLJSONObject oHistoryFilename = oHistory["^History"];
3203 11 : if (oHistoryFilename.GetType() == CPLJSONObject::Type::String)
3204 : {
3205 : osHistoryFilename = CPLFormFilename(
3206 : CPLGetPath(osSrcFilename),
3207 7 : oHistoryFilename.ToString().c_str(), nullptr);
3208 : }
3209 :
3210 33 : CPLJSONObject oStartByte = oHistory["StartByte"];
3211 11 : if (oStartByte.GetType() == CPLJSONObject::Type::Integer)
3212 : {
3213 11 : if (oStartByte.ToInteger() > 0)
3214 : {
3215 11 : nHistoryOffset =
3216 11 : static_cast<vsi_l_offset>(oStartByte.ToInteger()) - 1U;
3217 : }
3218 : }
3219 :
3220 33 : CPLJSONObject oBytes = oHistory["Bytes"];
3221 11 : if (oBytes.GetType() == CPLJSONObject::Type::Integer)
3222 : {
3223 11 : nHistorySize = static_cast<int>(oBytes.ToInteger());
3224 : }
3225 : }
3226 :
3227 22 : if (osHistoryFilename.empty())
3228 : {
3229 5 : CPLDebug("ISIS3", "Cannot find filename for source history");
3230 : }
3231 17 : else if (nHistorySize <= 0 || nHistorySize > 1000000)
3232 : {
3233 6 : CPLDebug("ISIS3", "Invalid or missing value for History.Bytes "
3234 : "for source history");
3235 : }
3236 : else
3237 : {
3238 11 : VSILFILE *fpHistory = VSIFOpenL(osHistoryFilename, "rb");
3239 11 : if (fpHistory != nullptr)
3240 : {
3241 6 : VSIFSeekL(fpHistory, nHistoryOffset, SEEK_SET);
3242 6 : osHistory.resize(nHistorySize);
3243 6 : if (VSIFReadL(&osHistory[0], nHistorySize, 1, fpHistory) != 1)
3244 : {
3245 0 : CPLError(CE_Warning, CPLE_FileIO,
3246 : "Cannot read %d bytes at offset " CPL_FRMT_GUIB
3247 : "of %s: history will not be preserved",
3248 : nHistorySize, nHistoryOffset,
3249 : osHistoryFilename.c_str());
3250 0 : osHistory.clear();
3251 : }
3252 6 : VSIFCloseL(fpHistory);
3253 : }
3254 : else
3255 : {
3256 5 : CPLError(CE_Warning, CPLE_FileIO,
3257 : "Cannot open %s: history will not be preserved",
3258 : osHistoryFilename.c_str());
3259 : }
3260 : }
3261 : }
3262 :
3263 126 : if (m_bAddGDALHistory && !m_osGDALHistory.empty())
3264 : {
3265 1 : if (!osHistory.empty())
3266 0 : osHistory += "\n";
3267 1 : osHistory += m_osGDALHistory;
3268 : }
3269 125 : else if (m_bAddGDALHistory)
3270 : {
3271 123 : if (!osHistory.empty())
3272 6 : osHistory += "\n";
3273 :
3274 246 : CPLJSONObject oHistoryObj;
3275 123 : char szFullFilename[2048] = {0};
3276 123 : if (!CPLGetExecPath(szFullFilename, sizeof(szFullFilename) - 1))
3277 0 : strcpy(szFullFilename, "unknown_program");
3278 246 : const CPLString osProgram(CPLGetBasename(szFullFilename));
3279 246 : const CPLString osPath(CPLGetPath(szFullFilename));
3280 :
3281 246 : CPLJSONObject oObj;
3282 123 : oHistoryObj.Add(osProgram, oObj);
3283 :
3284 123 : oObj.Add("_type", "object");
3285 123 : oObj.Add("GdalVersion", GDALVersionInfo("RELEASE_NAME"));
3286 123 : if (osPath != ".")
3287 123 : oObj.Add("ProgramPath", osPath);
3288 123 : time_t nCurTime = time(nullptr);
3289 123 : if (nCurTime != -1)
3290 : {
3291 : struct tm mytm;
3292 123 : CPLUnixTimeToYMDHMS(nCurTime, &mytm);
3293 123 : oObj.Add("ExecutionDateTime",
3294 : CPLSPrintf("%04d-%02d-%02dT%02d:%02d:%02d",
3295 123 : mytm.tm_year + 1900, mytm.tm_mon + 1,
3296 : mytm.tm_mday, mytm.tm_hour, mytm.tm_min,
3297 : mytm.tm_sec));
3298 : }
3299 123 : char szHostname[256] = {0};
3300 123 : if (gethostname(szHostname, sizeof(szHostname) - 1) == 0)
3301 : {
3302 123 : oObj.Add("HostName", std::string(szHostname));
3303 : }
3304 123 : const char *pszUsername = CPLGetConfigOption("USERNAME", nullptr);
3305 123 : if (pszUsername == nullptr)
3306 123 : pszUsername = CPLGetConfigOption("USER", nullptr);
3307 123 : if (pszUsername != nullptr)
3308 : {
3309 0 : oObj.Add("UserName", pszUsername);
3310 : }
3311 123 : oObj.Add("Description", "GDAL conversion");
3312 :
3313 123 : CPLJSONObject oUserParameters;
3314 123 : oObj.Add("UserParameters", oUserParameters);
3315 :
3316 123 : oUserParameters.Add("_type", "group");
3317 123 : if (!m_osFromFilename.empty())
3318 : {
3319 32 : const CPLString osFromFilename = CPLGetFilename(m_osFromFilename);
3320 32 : oUserParameters.Add("FROM", osFromFilename);
3321 : }
3322 123 : if (nullptr != GetDescription())
3323 : {
3324 123 : const CPLString osToFileName = CPLGetFilename(GetDescription());
3325 123 : oUserParameters.Add("TO", osToFileName);
3326 : }
3327 123 : if (m_bForce360)
3328 1 : oUserParameters.Add("Force_360", "true");
3329 :
3330 123 : osHistory += SerializeAsPDL(oHistoryObj);
3331 : }
3332 :
3333 126 : m_osHistory = std::move(osHistory);
3334 126 : }
3335 :
3336 : /************************************************************************/
3337 : /* WriteLabel() */
3338 : /************************************************************************/
3339 :
3340 125 : void ISIS3Dataset::WriteLabel()
3341 : {
3342 125 : m_bIsLabelWritten = true;
3343 :
3344 125 : if (!m_oJSonLabel.IsValid())
3345 125 : BuildLabel();
3346 :
3347 : // Serialize label
3348 250 : CPLString osLabel(SerializeAsPDL(m_oJSonLabel));
3349 125 : osLabel += "End\n";
3350 125 : if (m_osExternalFilename.empty() && osLabel.size() < 65536)
3351 : {
3352 : // In-line labels have conventionally a minimize size of 65536 bytes
3353 : // See #2741
3354 94 : osLabel.resize(65536);
3355 : }
3356 125 : char *pszLabel = &osLabel[0];
3357 125 : const int nLabelSize = static_cast<int>(osLabel.size());
3358 :
3359 : // Hack back StartByte value
3360 : {
3361 125 : char *pszStartByte = strstr(pszLabel, pszSTARTBYTE_PLACEHOLDER);
3362 125 : if (pszStartByte != nullptr)
3363 : {
3364 94 : const char *pszOffset = CPLSPrintf("%d", 1 + nLabelSize);
3365 94 : memcpy(pszStartByte, pszOffset, strlen(pszOffset));
3366 94 : memset(pszStartByte + strlen(pszOffset), ' ',
3367 94 : strlen(pszSTARTBYTE_PLACEHOLDER) - strlen(pszOffset));
3368 : }
3369 : }
3370 :
3371 : // Hack back Label.Bytes value
3372 : {
3373 125 : char *pszLabelBytes = strstr(pszLabel, pszLABEL_BYTES_PLACEHOLDER);
3374 125 : if (pszLabelBytes != nullptr)
3375 : {
3376 125 : const char *pszBytes = CPLSPrintf("%d", nLabelSize);
3377 125 : memcpy(pszLabelBytes, pszBytes, strlen(pszBytes));
3378 125 : memset(pszLabelBytes + strlen(pszBytes), ' ',
3379 125 : strlen(pszLABEL_BYTES_PLACEHOLDER) - strlen(pszBytes));
3380 : }
3381 : }
3382 :
3383 125 : const GDALDataType eType = GetRasterBand(1)->GetRasterDataType();
3384 125 : const int nDTSize = GDALGetDataTypeSizeBytes(eType);
3385 125 : vsi_l_offset nImagePixels = 0;
3386 125 : if (m_poExternalDS == nullptr)
3387 : {
3388 107 : if (m_bIsTiled)
3389 : {
3390 7 : int nBlockXSize = 1, nBlockYSize = 1;
3391 7 : GetRasterBand(1)->GetBlockSize(&nBlockXSize, &nBlockYSize);
3392 7 : nImagePixels = static_cast<vsi_l_offset>(nBlockXSize) *
3393 14 : nBlockYSize * nBands *
3394 7 : DIV_ROUND_UP(nRasterXSize, nBlockXSize) *
3395 7 : DIV_ROUND_UP(nRasterYSize, nBlockYSize);
3396 : }
3397 : else
3398 : {
3399 100 : nImagePixels =
3400 100 : static_cast<vsi_l_offset>(nRasterXSize) * nRasterYSize * nBands;
3401 : }
3402 : }
3403 :
3404 : // Hack back History.StartBytes value
3405 : char *pszHistoryStartBytes =
3406 125 : strstr(pszLabel, pszHISTORY_STARTBYTE_PLACEHOLDER);
3407 :
3408 125 : vsi_l_offset nHistoryOffset = 0;
3409 125 : vsi_l_offset nLastOffset = 0;
3410 125 : if (pszHistoryStartBytes != nullptr)
3411 : {
3412 93 : CPLAssert(m_osExternalFilename.empty());
3413 93 : nHistoryOffset = nLabelSize + nImagePixels * nDTSize;
3414 93 : nLastOffset = nHistoryOffset + m_osHistory.size();
3415 : const char *pszStartByte =
3416 93 : CPLSPrintf(CPL_FRMT_GUIB, nHistoryOffset + 1);
3417 93 : CPLAssert(strlen(pszStartByte) <
3418 : strlen(pszHISTORY_STARTBYTE_PLACEHOLDER));
3419 93 : memcpy(pszHistoryStartBytes, pszStartByte, strlen(pszStartByte));
3420 93 : memset(pszHistoryStartBytes + strlen(pszStartByte), ' ',
3421 93 : strlen(pszHISTORY_STARTBYTE_PLACEHOLDER) - strlen(pszStartByte));
3422 : }
3423 :
3424 : // Replace placeholders in other sections
3425 130 : for (size_t i = 0; i < m_aoNonPixelSections.size(); ++i)
3426 : {
3427 5 : if (!m_aoNonPixelSections[i].osPlaceHolder.empty())
3428 : {
3429 : char *pszPlaceHolder =
3430 3 : strstr(pszLabel, m_aoNonPixelSections[i].osPlaceHolder.c_str());
3431 3 : CPLAssert(pszPlaceHolder != nullptr);
3432 : const char *pszStartByte =
3433 3 : CPLSPrintf(CPL_FRMT_GUIB, nLastOffset + 1);
3434 3 : nLastOffset += m_aoNonPixelSections[i].nSize;
3435 3 : CPLAssert(strlen(pszStartByte) <
3436 : m_aoNonPixelSections[i].osPlaceHolder.size());
3437 :
3438 3 : memcpy(pszPlaceHolder, pszStartByte, strlen(pszStartByte));
3439 3 : memset(pszPlaceHolder + strlen(pszStartByte), ' ',
3440 3 : m_aoNonPixelSections[i].osPlaceHolder.size() -
3441 3 : strlen(pszStartByte));
3442 : }
3443 : }
3444 :
3445 : // Write to final file
3446 125 : VSIFSeekL(m_fpLabel, 0, SEEK_SET);
3447 125 : VSIFWriteL(pszLabel, 1, osLabel.size(), m_fpLabel);
3448 :
3449 125 : if (m_osExternalFilename.empty())
3450 : {
3451 : // Update image offset in bands
3452 94 : if (m_bIsTiled)
3453 : {
3454 15 : for (int i = 0; i < nBands; i++)
3455 : {
3456 : ISISTiledBand *poBand =
3457 9 : reinterpret_cast<ISISTiledBand *>(GetRasterBand(i + 1));
3458 9 : poBand->m_nFirstTileOffset += nLabelSize;
3459 : }
3460 : }
3461 : else
3462 : {
3463 206 : for (int i = 0; i < nBands; i++)
3464 : {
3465 : ISIS3RawRasterBand *poBand =
3466 : reinterpret_cast<ISIS3RawRasterBand *>(
3467 118 : GetRasterBand(i + 1));
3468 118 : poBand->nImgOffset += nLabelSize;
3469 : }
3470 : }
3471 : }
3472 :
3473 125 : if (m_bInitToNodata)
3474 : {
3475 : // Initialize the image to nodata
3476 55 : const double dfNoData = GetRasterBand(1)->GetNoDataValue();
3477 55 : if (dfNoData == 0.0)
3478 : {
3479 43 : VSIFTruncateL(m_fpImage,
3480 43 : VSIFTellL(m_fpImage) + nImagePixels * nDTSize);
3481 : }
3482 12 : else if (nDTSize != 0) // to make Coverity not warn about div by 0
3483 : {
3484 12 : const int nPageSize = 4096; // Must be multiple of 4 since
3485 : // Float32 is the largest type
3486 12 : CPLAssert((nPageSize % nDTSize) == 0);
3487 12 : const int nMaxPerPage = nPageSize / nDTSize;
3488 12 : GByte *pabyTemp = static_cast<GByte *>(CPLMalloc(nPageSize));
3489 12 : GDALCopyWords(&dfNoData, GDT_Float64, 0, pabyTemp, eType, nDTSize,
3490 : nMaxPerPage);
3491 : #ifdef CPL_MSB
3492 : GDALSwapWords(pabyTemp, nDTSize, nMaxPerPage, nDTSize);
3493 : #endif
3494 80 : for (vsi_l_offset i = 0; i < nImagePixels; i += nMaxPerPage)
3495 : {
3496 : int n;
3497 68 : if (i + nMaxPerPage <= nImagePixels)
3498 56 : n = nMaxPerPage;
3499 : else
3500 12 : n = static_cast<int>(nImagePixels - i);
3501 68 : if (VSIFWriteL(pabyTemp, static_cast<size_t>(n) * nDTSize, 1,
3502 68 : m_fpImage) != 1)
3503 : {
3504 0 : CPLError(CE_Failure, CPLE_FileIO,
3505 : "Cannot initialize imagery to null");
3506 0 : break;
3507 : }
3508 : }
3509 :
3510 12 : CPLFree(pabyTemp);
3511 : }
3512 : }
3513 :
3514 : // Write history
3515 125 : if (!m_osHistory.empty())
3516 : {
3517 123 : if (m_osExternalFilename.empty())
3518 : {
3519 93 : VSIFSeekL(m_fpLabel, nHistoryOffset, SEEK_SET);
3520 93 : VSIFWriteL(m_osHistory.c_str(), 1, m_osHistory.size(), m_fpLabel);
3521 : }
3522 : else
3523 : {
3524 60 : CPLString osFilename(CPLGetBasename(GetDescription()));
3525 30 : osFilename += ".History.IsisCube";
3526 30 : osFilename = CPLFormFilename(CPLGetPath(GetDescription()),
3527 30 : osFilename, nullptr);
3528 30 : VSILFILE *fp = VSIFOpenL(osFilename, "wb");
3529 30 : if (fp)
3530 : {
3531 30 : m_aosAdditionalFiles.AddString(osFilename);
3532 :
3533 30 : VSIFWriteL(m_osHistory.c_str(), 1, m_osHistory.size(), fp);
3534 30 : VSIFCloseL(fp);
3535 : }
3536 : else
3537 : {
3538 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot write %s",
3539 : osFilename.c_str());
3540 : }
3541 : }
3542 : }
3543 :
3544 : // Write other non pixel sections
3545 130 : for (size_t i = 0; i < m_aoNonPixelSections.size(); ++i)
3546 : {
3547 : VSILFILE *fpSrc =
3548 5 : VSIFOpenL(m_aoNonPixelSections[i].osSrcFilename, "rb");
3549 5 : if (fpSrc == nullptr)
3550 : {
3551 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot open %s",
3552 0 : m_aoNonPixelSections[i].osSrcFilename.c_str());
3553 0 : continue;
3554 : }
3555 :
3556 5 : VSILFILE *fpDest = m_fpLabel;
3557 5 : if (!m_aoNonPixelSections[i].osDstFilename.empty())
3558 : {
3559 2 : fpDest = VSIFOpenL(m_aoNonPixelSections[i].osDstFilename, "wb");
3560 2 : if (fpDest == nullptr)
3561 : {
3562 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot create %s",
3563 0 : m_aoNonPixelSections[i].osDstFilename.c_str());
3564 0 : VSIFCloseL(fpSrc);
3565 0 : continue;
3566 : }
3567 :
3568 : m_aosAdditionalFiles.AddString(
3569 2 : m_aoNonPixelSections[i].osDstFilename);
3570 : }
3571 :
3572 5 : VSIFSeekL(fpSrc, m_aoNonPixelSections[i].nSrcOffset, SEEK_SET);
3573 : GByte abyBuffer[4096];
3574 5 : vsi_l_offset nRemaining = m_aoNonPixelSections[i].nSize;
3575 10 : while (nRemaining)
3576 : {
3577 5 : size_t nToRead = 4096;
3578 5 : if (nRemaining < nToRead)
3579 5 : nToRead = static_cast<size_t>(nRemaining);
3580 5 : size_t nRead = VSIFReadL(abyBuffer, 1, nToRead, fpSrc);
3581 5 : if (nRead != nToRead)
3582 : {
3583 0 : CPLError(CE_Warning, CPLE_FileIO,
3584 : "Could not read " CPL_FRMT_GUIB " bytes from %s",
3585 0 : m_aoNonPixelSections[i].nSize,
3586 0 : m_aoNonPixelSections[i].osSrcFilename.c_str());
3587 0 : break;
3588 : }
3589 5 : VSIFWriteL(abyBuffer, 1, nRead, fpDest);
3590 5 : nRemaining -= nRead;
3591 : }
3592 :
3593 5 : VSIFCloseL(fpSrc);
3594 5 : if (fpDest != m_fpLabel)
3595 2 : VSIFCloseL(fpDest);
3596 : }
3597 125 : }
3598 :
3599 : /************************************************************************/
3600 : /* SerializeAsPDL() */
3601 : /************************************************************************/
3602 :
3603 248 : CPLString ISIS3Dataset::SerializeAsPDL(const CPLJSONObject &oObj)
3604 : {
3605 496 : const CPLString osTmpFile(VSIMemGenerateHiddenFilename("isis3_pdl"));
3606 248 : VSILFILE *fpTmp = VSIFOpenL(osTmpFile, "wb+");
3607 248 : SerializeAsPDL(fpTmp, oObj);
3608 248 : VSIFCloseL(fpTmp);
3609 : CPLString osContent(reinterpret_cast<char *>(
3610 248 : VSIGetMemFileBuffer(osTmpFile, nullptr, FALSE)));
3611 248 : VSIUnlink(osTmpFile);
3612 496 : return osContent;
3613 : }
3614 :
3615 : /************************************************************************/
3616 : /* SerializeAsPDL() */
3617 : /************************************************************************/
3618 :
3619 1329 : void ISIS3Dataset::SerializeAsPDL(VSILFILE *fp, const CPLJSONObject &oObj,
3620 : int nDepth)
3621 : {
3622 2658 : CPLString osIndentation;
3623 3235 : for (int i = 0; i < nDepth; i++)
3624 1906 : osIndentation += " ";
3625 1329 : const size_t WIDTH = 79;
3626 :
3627 2658 : std::vector<CPLJSONObject> aoChildren = oObj.GetChildren();
3628 1329 : size_t nMaxKeyLength = 0;
3629 7175 : for (const CPLJSONObject &oChild : aoChildren)
3630 : {
3631 5846 : const CPLString osKey = oChild.GetName();
3632 10602 : if (EQUAL(osKey, "_type") || EQUAL(osKey, "_container_name") ||
3633 4756 : EQUAL(osKey, "_filename"))
3634 : {
3635 1109 : continue;
3636 : }
3637 :
3638 4737 : const auto eType = oChild.GetType();
3639 4737 : if (eType == CPLJSONObject::Type::String ||
3640 2140 : eType == CPLJSONObject::Type::Integer ||
3641 1385 : eType == CPLJSONObject::Type::Double ||
3642 : eType == CPLJSONObject::Type::Array)
3643 : {
3644 3361 : if (osKey.size() > nMaxKeyLength)
3645 : {
3646 1597 : nMaxKeyLength = osKey.size();
3647 : }
3648 : }
3649 1376 : else if (eType == CPLJSONObject::Type::Object)
3650 : {
3651 4128 : CPLJSONObject oValue = oChild.GetObj("value");
3652 4128 : CPLJSONObject oUnit = oChild.GetObj("unit");
3653 1607 : if (oValue.IsValid() &&
3654 231 : oUnit.GetType() == CPLJSONObject::Type::String)
3655 : {
3656 231 : if (osKey.size() > nMaxKeyLength)
3657 : {
3658 61 : nMaxKeyLength = osKey.size();
3659 : }
3660 : }
3661 : }
3662 : }
3663 :
3664 7175 : for (const CPLJSONObject &oChild : aoChildren)
3665 : {
3666 5846 : const CPLString osKey = oChild.GetName();
3667 10602 : if (EQUAL(osKey, "_type") || EQUAL(osKey, "_container_name") ||
3668 4756 : EQUAL(osKey, "_filename"))
3669 : {
3670 1109 : continue;
3671 : }
3672 4737 : if (STARTS_WITH(osKey, "_comment"))
3673 : {
3674 1 : if (oChild.GetType() == CPLJSONObject::Type::String)
3675 : {
3676 1 : VSIFPrintfL(fp, "#%s\n", oChild.ToString().c_str());
3677 : }
3678 1 : continue;
3679 : }
3680 9472 : CPLString osPadding;
3681 4736 : size_t nLen = osKey.size();
3682 4736 : if (nLen < nMaxKeyLength)
3683 : {
3684 2894 : osPadding.append(nMaxKeyLength - nLen, ' ');
3685 : }
3686 :
3687 4736 : const auto eType = oChild.GetType();
3688 4736 : if (eType == CPLJSONObject::Type::Object)
3689 : {
3690 4128 : CPLJSONObject oType = oChild.GetObj("_type");
3691 4128 : CPLJSONObject oContainerName = oChild.GetObj("_container_name");
3692 2752 : CPLString osContainerName = osKey;
3693 1376 : if (oContainerName.GetType() == CPLJSONObject::Type::String)
3694 : {
3695 9 : osContainerName = oContainerName.ToString();
3696 : }
3697 1376 : if (oType.GetType() == CPLJSONObject::Type::String)
3698 : {
3699 3243 : const CPLString osType = oType.ToString();
3700 1081 : if (EQUAL(osType, "Object"))
3701 : {
3702 631 : if (nDepth == 0 && VSIFTellL(fp) != 0)
3703 258 : VSIFPrintfL(fp, "\n");
3704 631 : VSIFPrintfL(fp, "%sObject = %s\n", osIndentation.c_str(),
3705 : osContainerName.c_str());
3706 631 : SerializeAsPDL(fp, oChild, nDepth + 1);
3707 631 : VSIFPrintfL(fp, "%sEnd_Object\n", osIndentation.c_str());
3708 : }
3709 450 : else if (EQUAL(osType, "Group"))
3710 : {
3711 450 : VSIFPrintfL(fp, "\n");
3712 450 : VSIFPrintfL(fp, "%sGroup = %s\n", osIndentation.c_str(),
3713 : osContainerName.c_str());
3714 450 : SerializeAsPDL(fp, oChild, nDepth + 1);
3715 450 : VSIFPrintfL(fp, "%sEnd_Group\n", osIndentation.c_str());
3716 : }
3717 : }
3718 : else
3719 : {
3720 885 : CPLJSONObject oValue = oChild.GetObj("value");
3721 885 : CPLJSONObject oUnit = oChild.GetObj("unit");
3722 526 : if (oValue.IsValid() &&
3723 231 : oUnit.GetType() == CPLJSONObject::Type::String)
3724 : {
3725 693 : const CPLString osUnit = oUnit.ToString();
3726 231 : const auto eValueType = oValue.GetType();
3727 231 : if (eValueType == CPLJSONObject::Type::Integer)
3728 : {
3729 1 : VSIFPrintfL(fp, "%s%s%s = %d <%s>\n",
3730 : osIndentation.c_str(), osKey.c_str(),
3731 : osPadding.c_str(), oValue.ToInteger(),
3732 : osUnit.c_str());
3733 : }
3734 230 : else if (eValueType == CPLJSONObject::Type::Double)
3735 : {
3736 229 : const double dfVal = oValue.ToDouble();
3737 229 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3738 229 : static_cast<int>(dfVal) == dfVal)
3739 : {
3740 87 : VSIFPrintfL(fp, "%s%s%s = %d.0 <%s>\n",
3741 : osIndentation.c_str(), osKey.c_str(),
3742 : osPadding.c_str(),
3743 : static_cast<int>(dfVal),
3744 : osUnit.c_str());
3745 : }
3746 : else
3747 : {
3748 142 : VSIFPrintfL(fp, "%s%s%s = %.17g <%s>\n",
3749 : osIndentation.c_str(), osKey.c_str(),
3750 : osPadding.c_str(), dfVal,
3751 : osUnit.c_str());
3752 : }
3753 : }
3754 : }
3755 : }
3756 : }
3757 3360 : else if (eType == CPLJSONObject::Type::String)
3758 : {
3759 5811 : CPLString osVal = oChild.ToString();
3760 1937 : const char *pszVal = osVal.c_str();
3761 1937 : if (pszVal[0] == '\0' || strchr(pszVal, ' ') ||
3762 1809 : strstr(pszVal, "\\n") || strstr(pszVal, "\\r"))
3763 : {
3764 128 : osVal.replaceAll("\\n", "\n");
3765 128 : osVal.replaceAll("\\r", "\r");
3766 128 : VSIFPrintfL(fp, "%s%s%s = \"%s\"\n", osIndentation.c_str(),
3767 : osKey.c_str(), osPadding.c_str(), osVal.c_str());
3768 : }
3769 : else
3770 : {
3771 1809 : if (osIndentation.size() + osKey.size() + osPadding.size() +
3772 1809 : strlen(" = ") + strlen(pszVal) >
3773 1810 : WIDTH &&
3774 1 : osIndentation.size() + osKey.size() + osPadding.size() +
3775 : strlen(" = ") <
3776 : WIDTH)
3777 : {
3778 1 : size_t nFirstPos = osIndentation.size() + osKey.size() +
3779 1 : osPadding.size() + strlen(" = ");
3780 1 : VSIFPrintfL(fp, "%s%s%s = ", osIndentation.c_str(),
3781 : osKey.c_str(), osPadding.c_str());
3782 1 : size_t nCurPos = nFirstPos;
3783 96 : for (int j = 0; pszVal[j] != '\0'; j++)
3784 : {
3785 95 : nCurPos++;
3786 95 : if (nCurPos == WIDTH && pszVal[j + 1] != '\0')
3787 : {
3788 1 : VSIFPrintfL(fp, "-\n");
3789 15 : for (size_t k = 0; k < nFirstPos; k++)
3790 : {
3791 14 : const char chSpace = ' ';
3792 14 : VSIFWriteL(&chSpace, 1, 1, fp);
3793 : }
3794 1 : nCurPos = nFirstPos + 1;
3795 : }
3796 95 : VSIFWriteL(&pszVal[j], 1, 1, fp);
3797 : }
3798 1 : VSIFPrintfL(fp, "\n");
3799 : }
3800 : else
3801 : {
3802 1808 : VSIFPrintfL(fp, "%s%s%s = %s\n", osIndentation.c_str(),
3803 : osKey.c_str(), osPadding.c_str(), pszVal);
3804 : }
3805 : }
3806 : }
3807 1423 : else if (eType == CPLJSONObject::Type::Integer)
3808 : {
3809 659 : const int nVal = oChild.ToInteger();
3810 659 : VSIFPrintfL(fp, "%s%s%s = %d\n", osIndentation.c_str(),
3811 : osKey.c_str(), osPadding.c_str(), nVal);
3812 : }
3813 764 : else if (eType == CPLJSONObject::Type::Double)
3814 : {
3815 755 : const double dfVal = oChild.ToDouble();
3816 755 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3817 755 : static_cast<int>(dfVal) == dfVal)
3818 : {
3819 526 : VSIFPrintfL(fp, "%s%s%s = %d.0\n", osIndentation.c_str(),
3820 : osKey.c_str(), osPadding.c_str(),
3821 : static_cast<int>(dfVal));
3822 : }
3823 : else
3824 : {
3825 229 : VSIFPrintfL(fp, "%s%s%s = %.17g\n", osIndentation.c_str(),
3826 : osKey.c_str(), osPadding.c_str(), dfVal);
3827 : }
3828 : }
3829 9 : else if (eType == CPLJSONObject::Type::Array)
3830 : {
3831 18 : CPLJSONArray oArrayItem(oChild);
3832 9 : const int nLength = oArrayItem.Size();
3833 9 : size_t nFirstPos = osIndentation.size() + osKey.size() +
3834 9 : osPadding.size() + strlen(" = (");
3835 9 : VSIFPrintfL(fp, "%s%s%s = (", osIndentation.c_str(), osKey.c_str(),
3836 : osPadding.c_str());
3837 9 : size_t nCurPos = nFirstPos;
3838 46 : for (int idx = 0; idx < nLength; idx++)
3839 : {
3840 74 : CPLJSONObject oItem = oArrayItem[idx];
3841 37 : const auto eArrayItemType = oItem.GetType();
3842 37 : if (eArrayItemType == CPLJSONObject::Type::String)
3843 : {
3844 36 : CPLString osVal = oItem.ToString();
3845 12 : const char *pszVal = osVal.c_str();
3846 12 : if (pszVal[0] == '\0' || strchr(pszVal, ' ') ||
3847 7 : strstr(pszVal, "\\n") || strstr(pszVal, "\\r"))
3848 : {
3849 5 : osVal.replaceAll("\\n", "\n");
3850 5 : osVal.replaceAll("\\r", "\r");
3851 5 : VSIFPrintfL(fp, "\"%s\"", osVal.c_str());
3852 : }
3853 7 : else if (nFirstPos < WIDTH &&
3854 7 : nCurPos + strlen(pszVal) > WIDTH)
3855 : {
3856 1 : if (idx > 0)
3857 : {
3858 1 : VSIFPrintfL(fp, "\n");
3859 16 : for (size_t j = 0; j < nFirstPos; j++)
3860 : {
3861 15 : const char chSpace = ' ';
3862 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3863 : }
3864 1 : nCurPos = nFirstPos;
3865 : }
3866 :
3867 102 : for (int j = 0; pszVal[j] != '\0'; j++)
3868 : {
3869 101 : nCurPos++;
3870 101 : if (nCurPos == WIDTH && pszVal[j + 1] != '\0')
3871 : {
3872 1 : VSIFPrintfL(fp, "-\n");
3873 16 : for (size_t k = 0; k < nFirstPos; k++)
3874 : {
3875 15 : const char chSpace = ' ';
3876 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3877 : }
3878 1 : nCurPos = nFirstPos + 1;
3879 : }
3880 101 : VSIFWriteL(&pszVal[j], 1, 1, fp);
3881 1 : }
3882 : }
3883 : else
3884 : {
3885 6 : VSIFPrintfL(fp, "%s", pszVal);
3886 6 : nCurPos += strlen(pszVal);
3887 : }
3888 : }
3889 25 : else if (eArrayItemType == CPLJSONObject::Type::Integer)
3890 : {
3891 16 : const int nVal = oItem.ToInteger();
3892 16 : const char *pszVal = CPLSPrintf("%d", nVal);
3893 16 : const size_t nValLen = strlen(pszVal);
3894 16 : if (nFirstPos < WIDTH && idx > 0 &&
3895 12 : nCurPos + nValLen > WIDTH)
3896 : {
3897 1 : VSIFPrintfL(fp, "\n");
3898 16 : for (size_t j = 0; j < nFirstPos; j++)
3899 : {
3900 15 : const char chSpace = ' ';
3901 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3902 : }
3903 1 : nCurPos = nFirstPos;
3904 : }
3905 16 : VSIFPrintfL(fp, "%d", nVal);
3906 16 : nCurPos += nValLen;
3907 : }
3908 9 : else if (eArrayItemType == CPLJSONObject::Type::Double)
3909 : {
3910 9 : const double dfVal = oItem.ToDouble();
3911 9 : CPLString osVal;
3912 9 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3913 9 : static_cast<int>(dfVal) == dfVal)
3914 : {
3915 8 : osVal = CPLSPrintf("%d.0", static_cast<int>(dfVal));
3916 : }
3917 : else
3918 : {
3919 1 : osVal = CPLSPrintf("%.17g", dfVal);
3920 : }
3921 9 : const size_t nValLen = osVal.size();
3922 9 : if (nFirstPos < WIDTH && idx > 0 &&
3923 8 : nCurPos + nValLen > WIDTH)
3924 : {
3925 1 : VSIFPrintfL(fp, "\n");
3926 16 : for (size_t j = 0; j < nFirstPos; j++)
3927 : {
3928 15 : const char chSpace = ' ';
3929 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3930 : }
3931 1 : nCurPos = nFirstPos;
3932 : }
3933 9 : VSIFPrintfL(fp, "%s", osVal.c_str());
3934 9 : nCurPos += nValLen;
3935 : }
3936 37 : if (idx < nLength - 1)
3937 : {
3938 28 : VSIFPrintfL(fp, ", ");
3939 28 : nCurPos += 2;
3940 : }
3941 : }
3942 9 : VSIFPrintfL(fp, ")\n");
3943 : }
3944 : }
3945 1329 : }
3946 :
3947 : /************************************************************************/
3948 : /* Create() */
3949 : /************************************************************************/
3950 :
3951 159 : GDALDataset *ISIS3Dataset::Create(const char *pszFilename, int nXSize,
3952 : int nYSize, int nBandsIn, GDALDataType eType,
3953 : char **papszOptions)
3954 : {
3955 159 : if (eType != GDT_Byte && eType != GDT_UInt16 && eType != GDT_Int16 &&
3956 : eType != GDT_Float32)
3957 : {
3958 27 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported data type");
3959 27 : return nullptr;
3960 : }
3961 132 : if (nBandsIn == 0 || nBandsIn > 32767)
3962 : {
3963 1 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported band count");
3964 1 : return nullptr;
3965 : }
3966 :
3967 : const char *pszDataLocation =
3968 131 : CSLFetchNameValueDef(papszOptions, "DATA_LOCATION", "LABEL");
3969 131 : const bool bIsTiled = CPLFetchBool(papszOptions, "TILED", false);
3970 : const int nBlockXSize = std::max(
3971 131 : 1, atoi(CSLFetchNameValueDef(papszOptions, "BLOCKXSIZE", "256")));
3972 : const int nBlockYSize = std::max(
3973 131 : 1, atoi(CSLFetchNameValueDef(papszOptions, "BLOCKYSIZE", "256")));
3974 165 : if (!EQUAL(pszDataLocation, "LABEL") &&
3975 34 : !EQUAL(CPLGetExtension(pszFilename), "LBL"))
3976 : {
3977 1 : CPLError(CE_Failure, CPLE_NotSupported,
3978 : "For DATA_LOCATION=%s, "
3979 : "the main filename should have a .lbl extension",
3980 : pszDataLocation);
3981 1 : return nullptr;
3982 : }
3983 :
3984 : const char *pszPermission =
3985 130 : VSISupportsRandomWrite(pszFilename, true) ? "wb+" : "wb";
3986 :
3987 130 : VSILFILE *fp = VSIFOpenExL(pszFilename, pszPermission, true);
3988 130 : if (fp == nullptr)
3989 : {
3990 3 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s: %s", pszFilename,
3991 : VSIGetLastErrorMsg());
3992 3 : return nullptr;
3993 : }
3994 127 : VSILFILE *fpImage = nullptr;
3995 254 : std::string osExternalFilename;
3996 127 : GDALDataset *poExternalDS = nullptr;
3997 127 : bool bGeoTIFFAsRegularExternal = false;
3998 127 : if (EQUAL(pszDataLocation, "EXTERNAL"))
3999 : {
4000 : osExternalFilename =
4001 : CSLFetchNameValueDef(papszOptions, "EXTERNAL_FILENAME",
4002 14 : CPLResetExtension(pszFilename, "cub"));
4003 14 : fpImage = VSIFOpenExL(osExternalFilename.c_str(), pszPermission, true);
4004 14 : if (fpImage == nullptr)
4005 : {
4006 1 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s: %s",
4007 : osExternalFilename.c_str(), VSIGetLastErrorMsg());
4008 1 : VSIFCloseL(fp);
4009 1 : return nullptr;
4010 : }
4011 : }
4012 113 : else if (EQUAL(pszDataLocation, "GEOTIFF"))
4013 : {
4014 : osExternalFilename =
4015 : CSLFetchNameValueDef(papszOptions, "EXTERNAL_FILENAME",
4016 19 : CPLResetExtension(pszFilename, "tif"));
4017 : GDALDriver *poDrv =
4018 19 : static_cast<GDALDriver *>(GDALGetDriverByName("GTiff"));
4019 19 : if (poDrv == nullptr)
4020 : {
4021 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find GTiff driver");
4022 0 : VSIFCloseL(fp);
4023 0 : return nullptr;
4024 : }
4025 19 : char **papszGTiffOptions = nullptr;
4026 : papszGTiffOptions =
4027 19 : CSLSetNameValue(papszGTiffOptions, "ENDIANNESS", "LITTLE");
4028 19 : if (bIsTiled)
4029 : {
4030 : papszGTiffOptions =
4031 3 : CSLSetNameValue(papszGTiffOptions, "TILED", "YES");
4032 3 : papszGTiffOptions = CSLSetNameValue(papszGTiffOptions, "BLOCKXSIZE",
4033 : CPLSPrintf("%d", nBlockXSize));
4034 3 : papszGTiffOptions = CSLSetNameValue(papszGTiffOptions, "BLOCKYSIZE",
4035 : CPLSPrintf("%d", nBlockYSize));
4036 : }
4037 : const char *pszGTiffOptions =
4038 19 : CSLFetchNameValueDef(papszOptions, "GEOTIFF_OPTIONS", "");
4039 19 : char **papszTokens = CSLTokenizeString2(pszGTiffOptions, ",", 0);
4040 28 : for (int i = 0; papszTokens[i] != nullptr; i++)
4041 : {
4042 9 : papszGTiffOptions = CSLAddString(papszGTiffOptions, papszTokens[i]);
4043 : }
4044 19 : CSLDestroy(papszTokens);
4045 :
4046 : // If the user didn't specify any compression and
4047 : // GEOTIFF_AS_REGULAR_EXTERNAL is set (or unspecified), then the
4048 : // GeoTIFF file can be seen as a regular external raw file, provided
4049 : // we make some provision on its organization.
4050 29 : if (CSLFetchNameValue(papszGTiffOptions, "COMPRESS") == nullptr &&
4051 10 : CPLFetchBool(papszOptions, "GEOTIFF_AS_REGULAR_EXTERNAL", true))
4052 : {
4053 9 : bGeoTIFFAsRegularExternal = true;
4054 : papszGTiffOptions =
4055 9 : CSLSetNameValue(papszGTiffOptions, "INTERLEAVE", "BAND");
4056 : // Will make sure that our blocks at nodata are not optimized
4057 : // away but indeed well written
4058 9 : papszGTiffOptions = CSLSetNameValue(
4059 : papszGTiffOptions, "@WRITE_EMPTY_TILES_SYNCHRONOUSLY", "YES");
4060 9 : if (!bIsTiled && nBandsIn > 1)
4061 : {
4062 : papszGTiffOptions =
4063 1 : CSLSetNameValue(papszGTiffOptions, "BLOCKYSIZE", "1");
4064 : }
4065 : }
4066 :
4067 19 : poExternalDS = poDrv->Create(osExternalFilename.c_str(), nXSize, nYSize,
4068 : nBandsIn, eType, papszGTiffOptions);
4069 19 : CSLDestroy(papszGTiffOptions);
4070 19 : if (poExternalDS == nullptr)
4071 : {
4072 1 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s",
4073 : osExternalFilename.c_str());
4074 1 : VSIFCloseL(fp);
4075 1 : return nullptr;
4076 : }
4077 : }
4078 :
4079 125 : ISIS3Dataset *poDS = new ISIS3Dataset();
4080 125 : poDS->SetDescription(pszFilename);
4081 125 : poDS->eAccess = GA_Update;
4082 125 : poDS->nRasterXSize = nXSize;
4083 125 : poDS->nRasterYSize = nYSize;
4084 125 : poDS->m_osExternalFilename = std::move(osExternalFilename);
4085 125 : poDS->m_poExternalDS = poExternalDS;
4086 125 : poDS->m_bGeoTIFFAsRegularExternal = bGeoTIFFAsRegularExternal;
4087 125 : if (bGeoTIFFAsRegularExternal)
4088 8 : poDS->m_bGeoTIFFInitDone = false;
4089 125 : poDS->m_fpLabel = fp;
4090 125 : poDS->m_fpImage = fpImage ? fpImage : fp;
4091 125 : poDS->m_bIsLabelWritten = false;
4092 125 : poDS->m_bIsTiled = bIsTiled;
4093 125 : poDS->m_bInitToNodata = (poDS->m_poExternalDS == nullptr);
4094 125 : poDS->m_osComment = CSLFetchNameValueDef(papszOptions, "COMMENT", "");
4095 : poDS->m_osLatitudeType =
4096 125 : CSLFetchNameValueDef(papszOptions, "LATITUDE_TYPE", "");
4097 : poDS->m_osLongitudeDirection =
4098 125 : CSLFetchNameValueDef(papszOptions, "LONGITUDE_DIRECTION", "");
4099 : poDS->m_osTargetName =
4100 125 : CSLFetchNameValueDef(papszOptions, "TARGET_NAME", "");
4101 125 : poDS->m_bForce360 = CPLFetchBool(papszOptions, "FORCE_360", false);
4102 125 : poDS->m_bWriteBoundingDegrees =
4103 125 : CPLFetchBool(papszOptions, "WRITE_BOUNDING_DEGREES", true);
4104 : poDS->m_osBoundingDegrees =
4105 125 : CSLFetchNameValueDef(papszOptions, "BOUNDING_DEGREES", "");
4106 125 : poDS->m_bUseSrcLabel = CPLFetchBool(papszOptions, "USE_SRC_LABEL", true);
4107 125 : poDS->m_bUseSrcMapping =
4108 125 : CPLFetchBool(papszOptions, "USE_SRC_MAPPING", false);
4109 125 : poDS->m_bUseSrcHistory =
4110 125 : CPLFetchBool(papszOptions, "USE_SRC_HISTORY", true);
4111 125 : poDS->m_bAddGDALHistory =
4112 125 : CPLFetchBool(papszOptions, "ADD_GDAL_HISTORY", true);
4113 125 : if (poDS->m_bAddGDALHistory)
4114 : {
4115 : poDS->m_osGDALHistory =
4116 123 : CSLFetchNameValueDef(papszOptions, "GDAL_HISTORY", "");
4117 : }
4118 125 : const double dfNoData = (eType == GDT_Byte) ? ISIS3_NULL1
4119 : : (eType == GDT_UInt16) ? ISIS3_NULLU2
4120 : : (eType == GDT_Int16)
4121 : ? ISIS3_NULL2
4122 : :
4123 : /*(eType == GDT_Float32) ?*/ ISIS3_NULL4;
4124 :
4125 291 : for (int i = 0; i < nBandsIn; i++)
4126 : {
4127 166 : GDALRasterBand *poBand = nullptr;
4128 :
4129 166 : if (poDS->m_poExternalDS != nullptr)
4130 : {
4131 : ISIS3WrapperRasterBand *poISISBand = new ISIS3WrapperRasterBand(
4132 24 : poDS->m_poExternalDS->GetRasterBand(i + 1));
4133 24 : poBand = poISISBand;
4134 : }
4135 142 : else if (bIsTiled)
4136 : {
4137 : ISISTiledBand *poISISBand = new ISISTiledBand(
4138 : poDS, poDS->m_fpImage, i + 1, eType, nBlockXSize, nBlockYSize,
4139 : 0, // nSkipBytes, to be hacked
4140 : // afterwards for in-label imagery
4141 10 : 0, 0, CPL_IS_LSB);
4142 :
4143 10 : poBand = poISISBand;
4144 : }
4145 : else
4146 : {
4147 132 : const int nPixelOffset = GDALGetDataTypeSizeBytes(eType);
4148 132 : const int nLineOffset = nPixelOffset * nXSize;
4149 132 : const vsi_l_offset nBandOffset =
4150 132 : static_cast<vsi_l_offset>(nLineOffset) * nYSize;
4151 : ISIS3RawRasterBand *poISISBand = new ISIS3RawRasterBand(
4152 : poDS, i + 1, poDS->m_fpImage,
4153 132 : nBandOffset * i, // nImgOffset, to be
4154 : // hacked afterwards for in-label imagery
4155 132 : nPixelOffset, nLineOffset, eType, CPL_IS_LSB);
4156 :
4157 132 : poBand = poISISBand;
4158 : }
4159 166 : poDS->SetBand(i + 1, poBand);
4160 166 : poBand->SetNoDataValue(dfNoData);
4161 : }
4162 :
4163 125 : return poDS;
4164 : }
4165 :
4166 : /************************************************************************/
4167 : /* GetUnderlyingDataset() */
4168 : /************************************************************************/
4169 :
4170 73 : static GDALDataset *GetUnderlyingDataset(GDALDataset *poSrcDS)
4171 : {
4172 146 : if (poSrcDS->GetDriver() != nullptr &&
4173 73 : poSrcDS->GetDriver() == GDALGetDriverByName("VRT"))
4174 : {
4175 2 : VRTDataset *poVRTDS = reinterpret_cast<VRTDataset *>(poSrcDS);
4176 2 : poSrcDS = poVRTDS->GetSingleSimpleSource();
4177 : }
4178 :
4179 73 : return poSrcDS;
4180 : }
4181 :
4182 : /************************************************************************/
4183 : /* CreateCopy() */
4184 : /************************************************************************/
4185 :
4186 73 : GDALDataset *ISIS3Dataset::CreateCopy(const char *pszFilename,
4187 : GDALDataset *poSrcDS, int /*bStrict*/,
4188 : char **papszOptions,
4189 : GDALProgressFunc pfnProgress,
4190 : void *pProgressData)
4191 : {
4192 : const char *pszDataLocation =
4193 73 : CSLFetchNameValueDef(papszOptions, "DATA_LOCATION", "LABEL");
4194 73 : GDALDataset *poSrcUnderlyingDS = GetUnderlyingDataset(poSrcDS);
4195 73 : if (poSrcUnderlyingDS == nullptr)
4196 2 : poSrcUnderlyingDS = poSrcDS;
4197 83 : if (EQUAL(pszDataLocation, "GEOTIFF") &&
4198 10 : strcmp(poSrcUnderlyingDS->GetDescription(),
4199 : CSLFetchNameValueDef(papszOptions, "EXTERNAL_FILENAME",
4200 : CPLResetExtension(pszFilename, "tif"))) ==
4201 : 0)
4202 : {
4203 1 : CPLError(CE_Failure, CPLE_NotSupported,
4204 : "Output file has same name as input file");
4205 1 : return nullptr;
4206 : }
4207 72 : if (poSrcDS->GetRasterCount() == 0)
4208 : {
4209 1 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported band count");
4210 1 : return nullptr;
4211 : }
4212 :
4213 71 : const int nXSize = poSrcDS->GetRasterXSize();
4214 71 : const int nYSize = poSrcDS->GetRasterYSize();
4215 71 : const int nBands = poSrcDS->GetRasterCount();
4216 71 : GDALDataType eType = poSrcDS->GetRasterBand(1)->GetRasterDataType();
4217 : ISIS3Dataset *poDS = reinterpret_cast<ISIS3Dataset *>(
4218 71 : Create(pszFilename, nXSize, nYSize, nBands, eType, papszOptions));
4219 71 : if (poDS == nullptr)
4220 10 : return nullptr;
4221 61 : poDS->m_osFromFilename = poSrcUnderlyingDS->GetDescription();
4222 :
4223 61 : double adfGeoTransform[6] = {0.0};
4224 104 : if (poSrcDS->GetGeoTransform(adfGeoTransform) == CE_None &&
4225 43 : (adfGeoTransform[0] != 0.0 || adfGeoTransform[1] != 1.0 ||
4226 6 : adfGeoTransform[2] != 0.0 || adfGeoTransform[3] != 0.0 ||
4227 6 : adfGeoTransform[4] != 0.0 || adfGeoTransform[5] != 1.0))
4228 : {
4229 37 : poDS->SetGeoTransform(adfGeoTransform);
4230 : }
4231 :
4232 61 : auto poSrcSRS = poSrcDS->GetSpatialRef();
4233 61 : if (poSrcSRS)
4234 : {
4235 37 : poDS->SetSpatialRef(poSrcSRS);
4236 : }
4237 :
4238 147 : for (int i = 1; i <= nBands; i++)
4239 : {
4240 86 : const double dfOffset = poSrcDS->GetRasterBand(i)->GetOffset();
4241 86 : if (dfOffset != 0.0)
4242 1 : poDS->GetRasterBand(i)->SetOffset(dfOffset);
4243 :
4244 86 : const double dfScale = poSrcDS->GetRasterBand(i)->GetScale();
4245 86 : if (dfScale != 1.0)
4246 1 : poDS->GetRasterBand(i)->SetScale(dfScale);
4247 : }
4248 :
4249 : // Do we need to remap nodata ?
4250 61 : int bHasNoData = FALSE;
4251 61 : poDS->m_dfSrcNoData =
4252 61 : poSrcDS->GetRasterBand(1)->GetNoDataValue(&bHasNoData);
4253 61 : poDS->m_bHasSrcNoData = CPL_TO_BOOL(bHasNoData);
4254 :
4255 61 : if (poDS->m_bUseSrcLabel)
4256 : {
4257 53 : char **papszMD_ISIS3 = poSrcDS->GetMetadata("json:ISIS3");
4258 53 : if (papszMD_ISIS3 != nullptr)
4259 : {
4260 18 : poDS->SetMetadata(papszMD_ISIS3, "json:ISIS3");
4261 : }
4262 : }
4263 :
4264 : // We don't need to initialize the imagery as we are going to copy it
4265 : // completely
4266 61 : poDS->m_bInitToNodata = false;
4267 61 : CPLErr eErr = GDALDatasetCopyWholeRaster(poSrcDS, poDS, nullptr,
4268 : pfnProgress, pProgressData);
4269 61 : poDS->FlushCache(false);
4270 61 : poDS->m_bHasSrcNoData = false;
4271 61 : if (eErr != CE_None)
4272 : {
4273 11 : delete poDS;
4274 11 : return nullptr;
4275 : }
4276 :
4277 50 : return poDS;
4278 : }
4279 :
4280 : /************************************************************************/
4281 : /* GDALRegister_ISIS3() */
4282 : /************************************************************************/
4283 :
4284 1595 : void GDALRegister_ISIS3()
4285 :
4286 : {
4287 1595 : if (GDALGetDriverByName(ISIS3_DRIVER_NAME) != nullptr)
4288 302 : return;
4289 :
4290 1293 : GDALDriver *poDriver = new GDALDriver();
4291 1293 : ISIS3DriverSetCommonMetadata(poDriver);
4292 :
4293 1293 : poDriver->pfnOpen = ISIS3Dataset::Open;
4294 1293 : poDriver->pfnCreate = ISIS3Dataset::Create;
4295 1293 : poDriver->pfnCreateCopy = ISIS3Dataset::CreateCopy;
4296 :
4297 1293 : GetGDALDriverManager()->RegisterDriver(poDriver);
4298 : }
|