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 357 : const CPLString osFilename(CPLFormFilenameSafe(
1632 238 : CPLGetPathSafe(poOpenInfo->pszFilename).c_str(),
1633 476 : 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 356 : ? CPLString(poOpenInfo->pszFilename)
1685 : : CPLFormFilenameSafe(
1686 453 : CPLGetPathSafe(poOpenInfo->pszFilename).c_str(), pszCore,
1687 518 : nullptr));
1688 259 : if (!EQUAL(pszCore, ""))
1689 : {
1690 97 : poDS->m_osExternalFilename = osQubeFile;
1691 : }
1692 :
1693 : /* -------------------------------------------------------------------- */
1694 : /* Check if file an ISIS3 header file? Read a few lines of text */
1695 : /* searching for something starting with nrows or ncols. */
1696 : /* -------------------------------------------------------------------- */
1697 :
1698 : /************* Skipbytes *****************************/
1699 259 : int nSkipBytes = atoi(poDS->GetKeyword("IsisCube.Core.StartByte", "1"));
1700 259 : if (nSkipBytes <= 1)
1701 91 : nSkipBytes = 0;
1702 : else
1703 168 : nSkipBytes -= 1;
1704 :
1705 : /******* Grab format type (BandSequential, Tiled) *******/
1706 518 : CPLString osFormat = poDS->GetKeyword("IsisCube.Core.Format");
1707 :
1708 259 : int tileSizeX = 0;
1709 259 : int tileSizeY = 0;
1710 :
1711 259 : if (EQUAL(osFormat, "Tile"))
1712 : {
1713 26 : poDS->m_bIsTiled = true;
1714 : /******* Get Tile Sizes *********/
1715 26 : tileSizeX = atoi(poDS->GetKeyword("IsisCube.Core.TileSamples"));
1716 26 : tileSizeY = atoi(poDS->GetKeyword("IsisCube.Core.TileLines"));
1717 26 : if (tileSizeX <= 0 || tileSizeY <= 0)
1718 : {
1719 1 : CPLError(CE_Failure, CPLE_OpenFailed,
1720 : "Wrong tile dimensions : %d x %d", tileSizeX, tileSizeY);
1721 1 : return nullptr;
1722 : }
1723 : }
1724 233 : else if (!EQUAL(osFormat, "BandSequential") && !EQUAL(osFormat, "GeoTIFF"))
1725 : {
1726 1 : CPLError(CE_Failure, CPLE_OpenFailed, "%s format not supported.",
1727 : osFormat.c_str());
1728 1 : return nullptr;
1729 : }
1730 :
1731 : /*********** Grab samples lines band ************/
1732 : const int nCols =
1733 257 : atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Samples"));
1734 257 : const int nRows = atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Lines"));
1735 257 : const int nBands = atoi(poDS->GetKeyword("IsisCube.Core.Dimensions.Bands"));
1736 :
1737 : /****** Grab format type - ISIS3 only supports 8,U16,S16,32 *****/
1738 257 : GDALDataType eDataType = GDT_Byte;
1739 257 : double dfNoData = 0.0;
1740 :
1741 257 : const char *itype = poDS->GetKeyword("IsisCube.Core.Pixels.Type");
1742 257 : if (EQUAL(itype, "UnsignedByte"))
1743 : {
1744 209 : eDataType = GDT_Byte;
1745 209 : dfNoData = ISIS3_NULL1;
1746 : }
1747 48 : else if (EQUAL(itype, "UnsignedWord"))
1748 : {
1749 14 : eDataType = GDT_UInt16;
1750 14 : dfNoData = ISIS3_NULLU2;
1751 : }
1752 34 : else if (EQUAL(itype, "SignedWord"))
1753 : {
1754 14 : eDataType = GDT_Int16;
1755 14 : dfNoData = ISIS3_NULL2;
1756 : }
1757 20 : else if (EQUAL(itype, "Real") || EQUAL(itype, ""))
1758 : {
1759 19 : eDataType = GDT_Float32;
1760 19 : dfNoData = ISIS3_NULL4;
1761 : }
1762 : else
1763 : {
1764 1 : CPLError(CE_Failure, CPLE_OpenFailed, "%s pixel type not supported.",
1765 : itype);
1766 1 : return nullptr;
1767 : }
1768 :
1769 : /*********** Grab samples lines band ************/
1770 :
1771 : // default to MSB
1772 : const bool bIsLSB =
1773 256 : EQUAL(poDS->GetKeyword("IsisCube.Core.Pixels.ByteOrder"), "Lsb");
1774 :
1775 : /*********** Grab Cellsize ************/
1776 256 : double dfXDim = 1.0;
1777 256 : double dfYDim = 1.0;
1778 :
1779 256 : const char *pszRes = poDS->GetKeyword("IsisCube.Mapping.PixelResolution");
1780 256 : if (strlen(pszRes) > 0)
1781 : {
1782 97 : dfXDim = CPLAtof(pszRes); /* values are in meters */
1783 97 : dfYDim = -CPLAtof(pszRes);
1784 : }
1785 :
1786 : /*********** Grab UpperLeftCornerY ************/
1787 256 : double dfULYMap = 0.5;
1788 :
1789 256 : const char *pszULY = poDS->GetKeyword("IsisCube.Mapping.UpperLeftCornerY");
1790 256 : if (strlen(pszULY) > 0)
1791 : {
1792 97 : dfULYMap = CPLAtof(pszULY);
1793 : }
1794 :
1795 : /*********** Grab UpperLeftCornerX ************/
1796 256 : double dfULXMap = 0.5;
1797 :
1798 256 : const char *pszULX = poDS->GetKeyword("IsisCube.Mapping.UpperLeftCornerX");
1799 256 : if (strlen(pszULX) > 0)
1800 : {
1801 97 : dfULXMap = CPLAtof(pszULX);
1802 : }
1803 :
1804 : /*********** Grab TARGET_NAME ************/
1805 : /**** This is the planets name i.e. Mars ***/
1806 256 : const char *target_name = poDS->GetKeyword("IsisCube.Mapping.TargetName");
1807 :
1808 : #ifdef notdef
1809 : const double dfLongitudeMulFactor =
1810 : EQUAL(poDS->GetKeyword("IsisCube.Mapping.LongitudeDirection",
1811 : "PositiveEast"),
1812 : "PositiveEast")
1813 : ? 1
1814 : : -1;
1815 : #else
1816 256 : const double dfLongitudeMulFactor = 1;
1817 : #endif
1818 :
1819 : /*********** Grab MAP_PROJECTION_TYPE ************/
1820 : const char *map_proj_name =
1821 256 : poDS->GetKeyword("IsisCube.Mapping.ProjectionName");
1822 :
1823 : /*********** Grab SEMI-MAJOR ************/
1824 : const double semi_major =
1825 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.EquatorialRadius"));
1826 :
1827 : /*********** Grab semi-minor ************/
1828 : const double semi_minor =
1829 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PolarRadius"));
1830 :
1831 : /*********** Grab CENTER_LAT ************/
1832 : const double center_lat =
1833 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.CenterLatitude"));
1834 :
1835 : /*********** Grab CENTER_LON ************/
1836 : const double center_lon =
1837 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.CenterLongitude")) *
1838 : dfLongitudeMulFactor;
1839 :
1840 : /*********** Grab 1st std parallel ************/
1841 : const double first_std_parallel =
1842 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.FirstStandardParallel"));
1843 :
1844 : /*********** Grab 2nd std parallel ************/
1845 : const double second_std_parallel =
1846 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.SecondStandardParallel"));
1847 :
1848 : /*********** Grab scaleFactor ************/
1849 : const double scaleFactor =
1850 256 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.scaleFactor", "1.0"));
1851 :
1852 : /*** grab LatitudeType = Planetographic ****/
1853 : // Need to further study how ocentric/ographic will effect the gdal library
1854 : // So far we will use this fact to define a sphere or ellipse for some
1855 : // projections
1856 :
1857 : // Frank - may need to talk this over
1858 256 : bool bIsGeographic = true;
1859 256 : if (EQUAL(poDS->GetKeyword("IsisCube.Mapping.LatitudeType"),
1860 : "Planetocentric"))
1861 87 : bIsGeographic = false;
1862 :
1863 : // Set oSRS projection and parameters
1864 : // ############################################################
1865 : // ISIS3 Projection types
1866 : // Equirectangular
1867 : // LambertConformal
1868 : // Mercator
1869 : // ObliqueCylindrical
1870 : // Orthographic
1871 : // PolarStereographic
1872 : // SimpleCylindrical
1873 : // Sinusoidal
1874 : // TransverseMercator
1875 :
1876 : #ifdef DEBUG
1877 256 : CPLDebug("ISIS3", "using projection %s", map_proj_name);
1878 : #endif
1879 :
1880 512 : OGRSpatialReference oSRS;
1881 256 : bool bProjectionSet = true;
1882 :
1883 256 : if ((EQUAL(map_proj_name, "Equirectangular")) ||
1884 189 : (EQUAL(map_proj_name, "SimpleCylindrical")))
1885 : {
1886 82 : oSRS.SetEquirectangular2(0.0, center_lon, center_lat, 0, 0);
1887 : }
1888 174 : else if (EQUAL(map_proj_name, "Orthographic"))
1889 : {
1890 2 : oSRS.SetOrthographic(center_lat, center_lon, 0, 0);
1891 : }
1892 172 : else if (EQUAL(map_proj_name, "Sinusoidal"))
1893 : {
1894 2 : oSRS.SetSinusoidal(center_lon, 0, 0);
1895 : }
1896 170 : else if (EQUAL(map_proj_name, "Mercator"))
1897 : {
1898 2 : oSRS.SetMercator(center_lat, center_lon, scaleFactor, 0, 0);
1899 : }
1900 168 : else if (EQUAL(map_proj_name, "PolarStereographic"))
1901 : {
1902 2 : oSRS.SetPS(center_lat, center_lon, scaleFactor, 0, 0);
1903 : }
1904 166 : else if (EQUAL(map_proj_name, "TransverseMercator"))
1905 : {
1906 16 : oSRS.SetTM(center_lat, center_lon, scaleFactor, 0, 0);
1907 : }
1908 150 : else if (EQUAL(map_proj_name, "LambertConformal"))
1909 : {
1910 2 : oSRS.SetLCC(first_std_parallel, second_std_parallel, center_lat,
1911 : center_lon, 0, 0);
1912 : }
1913 148 : else if (EQUAL(map_proj_name, "PointPerspective"))
1914 : {
1915 : // Distance parameter is the distance to the center of the body, and is
1916 : // given in km
1917 : const double distance =
1918 1 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.Distance")) * 1000.0;
1919 1 : const double height_above_ground = distance - semi_major;
1920 1 : oSRS.SetVerticalPerspective(center_lat, center_lon, 0,
1921 : height_above_ground, 0, 0);
1922 : }
1923 147 : else if (EQUAL(map_proj_name, "ObliqueCylindrical"))
1924 : {
1925 : const double poleLatitude =
1926 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleLatitude"));
1927 : const double poleLongitude =
1928 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleLongitude")) *
1929 : dfLongitudeMulFactor;
1930 : const double poleRotation =
1931 4 : CPLAtof(poDS->GetKeyword("IsisCube.Mapping.PoleRotation"));
1932 8 : CPLString oProj4String;
1933 : // ISIS3 rotated pole doesn't use the same conventions than PROJ ob_tran
1934 : // Compare the sign difference in
1935 : // https://github.com/USGS-Astrogeology/ISIS3/blob/3.8.0/isis/src/base/objs/ObliqueCylindrical/ObliqueCylindrical.cpp#L244
1936 : // and
1937 : // https://github.com/OSGeo/PROJ/blob/6.2/src/projections/ob_tran.cpp#L34
1938 : // They can be compensated by modifying the poleLatitude to
1939 : // 180-poleLatitude There's also a sign difference for the poleRotation
1940 : // parameter The existence of those different conventions is
1941 : // acknowledged in
1942 : // https://pds-imaging.jpl.nasa.gov/documentation/Cassini_BIDRSIS.PDF in
1943 : // the middle of page 10
1944 : oProj4String.Printf("+proj=ob_tran +o_proj=eqc +o_lon_p=%.17g "
1945 : "+o_lat_p=%.17g +lon_0=%.17g",
1946 4 : -poleRotation, 180 - poleLatitude, poleLongitude);
1947 4 : oSRS.SetFromUserInput(oProj4String);
1948 : }
1949 : else
1950 : {
1951 143 : CPLDebug("ISIS3",
1952 : "Dataset projection %s is not supported. Continuing...",
1953 : map_proj_name);
1954 143 : bProjectionSet = false;
1955 : }
1956 :
1957 256 : if (bProjectionSet)
1958 : {
1959 : // Create projection name, i.e. MERCATOR MARS and set as ProjCS keyword
1960 226 : CPLString osProjTargetName(map_proj_name);
1961 113 : osProjTargetName += " ";
1962 113 : osProjTargetName += target_name;
1963 113 : oSRS.SetProjCS(osProjTargetName); // set ProjCS keyword
1964 :
1965 : // The geographic/geocentric name will be the same basic name as the
1966 : // body name 'GCS' = Geographic/Geocentric Coordinate System
1967 226 : CPLString osGeogName("GCS_");
1968 113 : osGeogName += target_name;
1969 :
1970 : // The datum name will be the same basic name as the planet
1971 226 : CPLString osDatumName("D_");
1972 113 : osDatumName += target_name;
1973 :
1974 226 : CPLString osSphereName(target_name);
1975 : // strcat(osSphereName, "_IAU_IAG"); //Might not be IAU defined so
1976 : // don't add
1977 :
1978 : // calculate inverse flattening from major and minor axis: 1/f = a/(a-b)
1979 113 : double iflattening = 0.0;
1980 113 : if ((semi_major - semi_minor) < 0.0000001)
1981 38 : iflattening = 0;
1982 : else
1983 75 : iflattening = semi_major / (semi_major - semi_minor);
1984 :
1985 : // Set the body size but take into consideration which proj is being
1986 : // used to help w/ proj4 compatibility The use of a Sphere, polar radius
1987 : // or ellipse here is based on how ISIS does it internally
1988 113 : if (((EQUAL(map_proj_name, "Stereographic") &&
1989 0 : (fabs(center_lat) == 90))) ||
1990 113 : (EQUAL(map_proj_name, "PolarStereographic")))
1991 : {
1992 2 : if (bIsGeographic)
1993 : {
1994 : // Geograpraphic, so set an ellipse
1995 0 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
1996 : semi_major, iflattening, "Reference_Meridian",
1997 : 0.0);
1998 : }
1999 : else
2000 : {
2001 : // Geocentric, so force a sphere using the semi-minor axis. I
2002 : // hope...
2003 2 : osSphereName += "_polarRadius";
2004 2 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2005 : semi_minor, 0.0, "Reference_Meridian", 0.0);
2006 : }
2007 : }
2008 111 : else if ((EQUAL(map_proj_name, "SimpleCylindrical")) ||
2009 96 : (EQUAL(map_proj_name, "Orthographic")) ||
2010 94 : (EQUAL(map_proj_name, "Stereographic")) ||
2011 94 : (EQUAL(map_proj_name, "Sinusoidal")) ||
2012 92 : (EQUAL(map_proj_name, "PointPerspective")))
2013 : {
2014 : // ISIS uses the spherical equation for these projections
2015 : // so force a sphere.
2016 20 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName, semi_major,
2017 : 0.0, "Reference_Meridian", 0.0);
2018 : }
2019 91 : else if (EQUAL(map_proj_name, "Equirectangular"))
2020 : {
2021 : // Calculate localRadius using ISIS3 simple elliptical method
2022 : // not the more standard Radius of Curvature method
2023 : // PI = 4 * atan(1);
2024 67 : const double radLat = center_lat * M_PI / 180; // in radians
2025 67 : const double meanRadius = sqrt(pow(semi_minor * cos(radLat), 2) +
2026 67 : pow(semi_major * sin(radLat), 2));
2027 67 : const double localRadius =
2028 67 : (meanRadius == 0.0) ? 0.0
2029 67 : : semi_major * semi_minor / meanRadius;
2030 67 : osSphereName += "_localRadius";
2031 67 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName, localRadius,
2032 : 0.0, "Reference_Meridian", 0.0);
2033 : }
2034 : else
2035 : {
2036 : // All other projections: Mercator, Transverse Mercator, Lambert
2037 : // Conformal, etc. Geographic, so set an ellipse
2038 24 : if (bIsGeographic)
2039 : {
2040 0 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2041 : semi_major, iflattening, "Reference_Meridian",
2042 : 0.0);
2043 : }
2044 : else
2045 : {
2046 : // Geocentric, so force a sphere. I hope...
2047 24 : oSRS.SetGeogCS(osGeogName, osDatumName, osSphereName,
2048 : semi_major, 0.0, "Reference_Meridian", 0.0);
2049 : }
2050 : }
2051 :
2052 : // translate back into a projection string.
2053 113 : poDS->m_oSRS = std::move(oSRS);
2054 113 : poDS->m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2055 : }
2056 :
2057 : /* END ISIS3 Label Read */
2058 : /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
2059 :
2060 : /* -------------------------------------------------------------------- */
2061 : /* Did we get the required keywords? If not we return with */
2062 : /* this never having been considered to be a match. This isn't */
2063 : /* an error! */
2064 : /* -------------------------------------------------------------------- */
2065 511 : if (!GDALCheckDatasetDimensions(nCols, nRows) ||
2066 255 : !GDALCheckBandCount(nBands, false))
2067 : {
2068 2 : return nullptr;
2069 : }
2070 :
2071 : /* -------------------------------------------------------------------- */
2072 : /* Capture some information from the file that is of interest. */
2073 : /* -------------------------------------------------------------------- */
2074 254 : poDS->nRasterXSize = nCols;
2075 254 : poDS->nRasterYSize = nRows;
2076 :
2077 : /* -------------------------------------------------------------------- */
2078 : /* Open target binary file. */
2079 : /* -------------------------------------------------------------------- */
2080 254 : if (EQUAL(osFormat, "GeoTIFF"))
2081 : {
2082 27 : if (nSkipBytes != 0)
2083 : {
2084 2 : CPLError(CE_Warning, CPLE_NotSupported,
2085 : "Ignoring StartByte=%d for format=GeoTIFF",
2086 : 1 + nSkipBytes);
2087 : }
2088 27 : if (osQubeFile == poOpenInfo->pszFilename)
2089 : {
2090 0 : CPLError(CE_Failure, CPLE_AppDefined, "A ^Core file must be set");
2091 0 : return nullptr;
2092 : }
2093 27 : poDS->m_poExternalDS =
2094 27 : GDALDataset::FromHandle(GDALOpen(osQubeFile, poOpenInfo->eAccess));
2095 27 : if (poDS->m_poExternalDS == nullptr)
2096 : {
2097 2 : return nullptr;
2098 : }
2099 25 : if (poDS->m_poExternalDS->GetRasterXSize() != poDS->nRasterXSize ||
2100 24 : poDS->m_poExternalDS->GetRasterYSize() != poDS->nRasterYSize ||
2101 71 : poDS->m_poExternalDS->GetRasterCount() != nBands ||
2102 22 : poDS->m_poExternalDS->GetRasterBand(1)->GetRasterDataType() !=
2103 : eDataType)
2104 : {
2105 4 : CPLError(CE_Failure, CPLE_AppDefined,
2106 : "%s has incompatible characteristics with the ones "
2107 : "declared in the label.",
2108 : osQubeFile.c_str());
2109 4 : return nullptr;
2110 : }
2111 : }
2112 : else
2113 : {
2114 227 : if (poOpenInfo->eAccess == GA_ReadOnly)
2115 225 : poDS->m_fpImage = VSIFOpenL(osQubeFile, "r");
2116 : else
2117 2 : poDS->m_fpImage = VSIFOpenL(osQubeFile, "r+");
2118 :
2119 227 : if (poDS->m_fpImage == nullptr)
2120 : {
2121 2 : CPLError(CE_Failure, CPLE_OpenFailed, "Failed to open %s: %s.",
2122 2 : osQubeFile.c_str(), VSIStrerror(errno));
2123 2 : return nullptr;
2124 : }
2125 :
2126 : // Sanity checks in case the external raw file appears to be a
2127 : // TIFF file
2128 225 : if (EQUAL(CPLGetExtensionSafe(osQubeFile).c_str(), "tif"))
2129 : {
2130 : GDALDataset *poTIF_DS =
2131 23 : GDALDataset::FromHandle(GDALOpen(osQubeFile, GA_ReadOnly));
2132 23 : if (poTIF_DS)
2133 : {
2134 23 : bool bWarned = false;
2135 23 : if (poTIF_DS->GetRasterXSize() != poDS->nRasterXSize ||
2136 22 : poTIF_DS->GetRasterYSize() != poDS->nRasterYSize ||
2137 21 : poTIF_DS->GetRasterCount() != nBands ||
2138 20 : poTIF_DS->GetRasterBand(1)->GetRasterDataType() !=
2139 45 : eDataType ||
2140 19 : poTIF_DS->GetMetadataItem("COMPRESSION",
2141 19 : "IMAGE_STRUCTURE") != nullptr)
2142 : {
2143 5 : bWarned = true;
2144 5 : CPLError(
2145 : CE_Warning, CPLE_AppDefined,
2146 : "%s has incompatible characteristics with the ones "
2147 : "declared in the label.",
2148 : osQubeFile.c_str());
2149 : }
2150 23 : int nBlockXSize = 1, nBlockYSize = 1;
2151 23 : poTIF_DS->GetRasterBand(1)->GetBlockSize(&nBlockXSize,
2152 : &nBlockYSize);
2153 23 : if ((poDS->m_bIsTiled &&
2154 46 : (nBlockXSize != tileSizeX || nBlockYSize != tileSizeY)) ||
2155 23 : (!poDS->m_bIsTiled && (nBlockXSize != nCols ||
2156 2 : (nBands > 1 && nBlockYSize != 1))))
2157 : {
2158 2 : if (!bWarned)
2159 : {
2160 1 : bWarned = true;
2161 1 : CPLError(
2162 : CE_Warning, CPLE_AppDefined,
2163 : "%s has incompatible characteristics with the ones "
2164 : "declared in the label.",
2165 : osQubeFile.c_str());
2166 : }
2167 : }
2168 : // to please Clang Static Analyzer
2169 23 : nBlockXSize = std::max(1, nBlockXSize);
2170 23 : nBlockYSize = std::max(1, nBlockYSize);
2171 :
2172 : // Check that blocks are effectively written in expected order.
2173 23 : const int nBlockSizeBytes = nBlockXSize * nBlockYSize *
2174 23 : GDALGetDataTypeSizeBytes(eDataType);
2175 23 : bool bGoOn = !bWarned;
2176 23 : const int l_nBlocksPerRow = DIV_ROUND_UP(nCols, nBlockXSize);
2177 23 : const int l_nBlocksPerColumn = DIV_ROUND_UP(nRows, nBlockYSize);
2178 23 : int nBlockNo = 0;
2179 52 : for (int i = 0; i < nBands && bGoOn; i++)
2180 : {
2181 1285 : for (int y = 0; y < l_nBlocksPerColumn && bGoOn; y++)
2182 : {
2183 2950 : for (int x = 0; x < l_nBlocksPerRow && bGoOn; x++)
2184 : {
2185 : const char *pszBlockOffset =
2186 3388 : poTIF_DS->GetRasterBand(i + 1)->GetMetadataItem(
2187 : CPLSPrintf("BLOCK_OFFSET_%d_%d", x, y),
2188 1694 : "TIFF");
2189 1694 : if (pszBlockOffset)
2190 : {
2191 1694 : GIntBig nOffset = CPLAtoGIntBig(pszBlockOffset);
2192 1694 : if (nOffset !=
2193 1694 : nSkipBytes + nBlockNo * nBlockSizeBytes)
2194 : {
2195 : // bWarned = true;
2196 2 : CPLError(CE_Warning, CPLE_AppDefined,
2197 : "%s has incompatible "
2198 : "characteristics with the ones "
2199 : "declared in the label.",
2200 : osQubeFile.c_str());
2201 2 : bGoOn = false;
2202 : }
2203 : }
2204 1694 : nBlockNo++;
2205 : }
2206 : }
2207 : }
2208 :
2209 23 : delete poTIF_DS;
2210 : }
2211 : }
2212 : }
2213 :
2214 246 : poDS->eAccess = poOpenInfo->eAccess;
2215 :
2216 : /* -------------------------------------------------------------------- */
2217 : /* Compute the line offset. */
2218 : /* -------------------------------------------------------------------- */
2219 246 : int nLineOffset = 0;
2220 246 : int nPixelOffset = 0;
2221 246 : vsi_l_offset nBandOffset = 0;
2222 :
2223 246 : if (EQUAL(osFormat, "BandSequential"))
2224 : {
2225 200 : const int nItemSize = GDALGetDataTypeSizeBytes(eDataType);
2226 200 : nPixelOffset = nItemSize;
2227 : try
2228 : {
2229 200 : nLineOffset = (CPLSM(nPixelOffset) * CPLSM(nCols)).v();
2230 : }
2231 0 : catch (const CPLSafeIntOverflow &)
2232 : {
2233 0 : return nullptr;
2234 : }
2235 200 : nBandOffset = static_cast<vsi_l_offset>(nLineOffset) * nRows;
2236 :
2237 200 : poDS->m_sLayout.osRawFilename = osQubeFile;
2238 200 : if (nBands > 1)
2239 16 : poDS->m_sLayout.eInterleaving = RawBinaryLayout::Interleaving::BSQ;
2240 200 : poDS->m_sLayout.eDataType = eDataType;
2241 200 : poDS->m_sLayout.bLittleEndianOrder = bIsLSB;
2242 200 : poDS->m_sLayout.nImageOffset = nSkipBytes;
2243 200 : poDS->m_sLayout.nPixelOffset = nPixelOffset;
2244 200 : poDS->m_sLayout.nLineOffset = nLineOffset;
2245 200 : poDS->m_sLayout.nBandOffset = static_cast<GIntBig>(nBandOffset);
2246 : }
2247 : /* else Tiled or external */
2248 :
2249 : /* -------------------------------------------------------------------- */
2250 : /* Extract BandBin info. */
2251 : /* -------------------------------------------------------------------- */
2252 492 : std::vector<std::string> aosBandNames;
2253 492 : std::vector<std::string> aosBandUnits;
2254 492 : std::vector<double> adfWavelengths;
2255 492 : std::vector<std::string> aosWavelengthsUnit;
2256 492 : std::vector<double> adfBandwidth;
2257 492 : std::vector<std::string> aosBandwidthUnit;
2258 738 : const auto oBandBin = poDS->m_oJSonLabel.GetObj("IsisCube/BandBin");
2259 246 : if (oBandBin.IsValid() && oBandBin.GetType() == CPLJSONObject::Type::Object)
2260 : {
2261 184 : for (const auto &child : oBandBin.GetChildren())
2262 : {
2263 143 : if (CPLString(child.GetName()).ifind("name") != std::string::npos)
2264 : {
2265 : // Use "name" in priority
2266 12 : if (EQUAL(child.GetName().c_str(), "name"))
2267 : {
2268 5 : aosBandNames.clear();
2269 : }
2270 7 : else if (!aosBandNames.empty())
2271 : {
2272 0 : continue;
2273 : }
2274 :
2275 12 : if (child.GetType() == CPLJSONObject::Type::String &&
2276 : nBands == 1)
2277 : {
2278 4 : aosBandNames.push_back(child.ToString());
2279 : }
2280 8 : else if (child.GetType() == CPLJSONObject::Type::Array)
2281 : {
2282 16 : auto oArray = child.ToArray();
2283 8 : if (oArray.Size() == nBands)
2284 : {
2285 28 : for (int i = 0; i < nBands; i++)
2286 : {
2287 20 : if (oArray[i].GetType() ==
2288 : CPLJSONObject::Type::String)
2289 : {
2290 20 : aosBandNames.push_back(oArray[i].ToString());
2291 : }
2292 : else
2293 : {
2294 0 : aosBandNames.clear();
2295 0 : break;
2296 : }
2297 : }
2298 : }
2299 : }
2300 : }
2301 135 : else if (EQUAL(child.GetName().c_str(), "BandSuffixUnit") &&
2302 4 : child.GetType() == CPLJSONObject::Type::Array)
2303 : {
2304 8 : auto oArray = child.ToArray();
2305 4 : if (oArray.Size() == nBands)
2306 : {
2307 12 : for (int i = 0; i < nBands; i++)
2308 : {
2309 8 : if (oArray[i].GetType() == CPLJSONObject::Type::String)
2310 : {
2311 8 : aosBandUnits.push_back(oArray[i].ToString());
2312 : }
2313 : else
2314 : {
2315 0 : aosBandUnits.clear();
2316 0 : break;
2317 : }
2318 : }
2319 : }
2320 : }
2321 377 : else if (EQUAL(child.GetName().c_str(), "BandBinCenter") ||
2322 250 : EQUAL(child.GetName().c_str(), "Center"))
2323 : {
2324 41 : GetValueAndUnits(child, adfWavelengths, aosWavelengthsUnit,
2325 : nBands);
2326 : }
2327 90 : else if (EQUAL(child.GetName().c_str(), "BandBinUnit") &&
2328 4 : child.GetType() == CPLJSONObject::Type::String)
2329 : {
2330 12 : CPLString unit(child.ToString());
2331 4 : if (STARTS_WITH_CI(unit, "micromet") || EQUAL(unit, "um") ||
2332 4 : STARTS_WITH_CI(unit, "nanomet") || EQUAL(unit, "nm"))
2333 : {
2334 4 : aosWavelengthsUnit.push_back(child.ToString());
2335 : }
2336 : }
2337 82 : else if (EQUAL(child.GetName().c_str(), "Width"))
2338 : {
2339 7 : GetValueAndUnits(child, adfBandwidth, aosBandwidthUnit, nBands);
2340 : }
2341 : }
2342 :
2343 41 : if (!adfWavelengths.empty() && aosWavelengthsUnit.size() == 1)
2344 : {
2345 11 : for (int i = 1; i < nBands; i++)
2346 : {
2347 4 : aosWavelengthsUnit.push_back(aosWavelengthsUnit[0]);
2348 : }
2349 : }
2350 41 : if (!adfBandwidth.empty() && aosBandwidthUnit.size() == 1)
2351 : {
2352 7 : for (int i = 1; i < nBands; i++)
2353 : {
2354 2 : aosBandwidthUnit.push_back(aosBandwidthUnit[0]);
2355 : }
2356 : }
2357 : }
2358 :
2359 : /* -------------------------------------------------------------------- */
2360 : /* Create band information objects. */
2361 : /* -------------------------------------------------------------------- */
2362 : #ifdef CPL_LSB
2363 246 : const bool bNativeOrder = bIsLSB;
2364 : #else
2365 : const bool bNativeOrder = !bIsLSB;
2366 : #endif
2367 :
2368 542 : for (int i = 0; i < nBands; i++)
2369 : {
2370 : GDALRasterBand *poBand;
2371 :
2372 296 : if (poDS->m_poExternalDS != nullptr)
2373 : {
2374 : auto poISISBand = std::make_unique<ISIS3WrapperRasterBand>(
2375 21 : poDS->m_poExternalDS->GetRasterBand(i + 1));
2376 21 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2377 21 : poDS->SetBand(i + 1, std::move(poISISBand));
2378 21 : poBand = poDS->GetRasterBand(i + 1);
2379 : }
2380 275 : else if (poDS->m_bIsTiled)
2381 : {
2382 : auto poISISBand = std::make_unique<ISISTiledBand>(
2383 41 : poDS.get(), poDS->m_fpImage, i + 1, eDataType, tileSizeX,
2384 82 : tileSizeY, nSkipBytes, 0, 0, bNativeOrder);
2385 41 : if (!poISISBand->IsValid())
2386 : {
2387 0 : return nullptr;
2388 : }
2389 41 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2390 41 : poDS->SetBand(i + 1, std::move(poISISBand));
2391 41 : poBand = poDS->GetRasterBand(i + 1);
2392 : }
2393 : else
2394 : {
2395 : auto poISISBand = std::make_unique<ISIS3RawRasterBand>(
2396 234 : poDS.get(), i + 1, poDS->m_fpImage,
2397 234 : nSkipBytes + nBandOffset * i, nPixelOffset, nLineOffset,
2398 234 : eDataType, bNativeOrder);
2399 234 : if (!poISISBand->IsValid())
2400 : {
2401 0 : return nullptr;
2402 : }
2403 234 : poISISBand->SetMaskBand(new ISISMaskBand(poISISBand.get()));
2404 234 : poDS->SetBand(i + 1, std::move(poISISBand));
2405 234 : poBand = poDS->GetRasterBand(i + 1);
2406 : }
2407 :
2408 296 : if (i < static_cast<int>(aosBandNames.size()))
2409 : {
2410 17 : poBand->SetDescription(aosBandNames[i].c_str());
2411 : }
2412 345 : if (i < static_cast<int>(adfWavelengths.size()) &&
2413 49 : i < static_cast<int>(aosWavelengthsUnit.size()))
2414 : {
2415 11 : poBand->SetMetadataItem("WAVELENGTH",
2416 11 : CPLSPrintf("%f", adfWavelengths[i]));
2417 11 : poBand->SetMetadataItem("WAVELENGTH_UNIT",
2418 11 : aosWavelengthsUnit[i].c_str());
2419 18 : if (i < static_cast<int>(adfBandwidth.size()) &&
2420 7 : i < static_cast<int>(aosBandwidthUnit.size()))
2421 : {
2422 7 : poBand->SetMetadataItem("BANDWIDTH",
2423 7 : CPLSPrintf("%f", adfBandwidth[i]));
2424 7 : poBand->SetMetadataItem("BANDWIDTH_UNIT",
2425 7 : aosBandwidthUnit[i].c_str());
2426 : }
2427 : }
2428 296 : if (i < static_cast<int>(aosBandUnits.size()))
2429 : {
2430 8 : poBand->SetUnitType(aosBandUnits[i].c_str());
2431 : }
2432 :
2433 296 : poBand->SetNoDataValue(dfNoData);
2434 :
2435 : // Set offset/scale values.
2436 : const double dfOffset =
2437 296 : CPLAtofM(poDS->GetKeyword("IsisCube.Core.Pixels.Base", "0.0"));
2438 296 : const double dfScale = CPLAtofM(
2439 : poDS->GetKeyword("IsisCube.Core.Pixels.Multiplier", "1.0"));
2440 296 : if (dfOffset != 0.0 || dfScale != 1.0)
2441 : {
2442 52 : poBand->SetOffset(dfOffset);
2443 52 : poBand->SetScale(dfScale);
2444 : }
2445 : }
2446 :
2447 : /* -------------------------------------------------------------------- */
2448 : /* Check for a .prj file. For ISIS3 I would like to keep this in */
2449 : /* -------------------------------------------------------------------- */
2450 492 : const CPLString osPath = CPLGetPathSafe(poOpenInfo->pszFilename);
2451 492 : const CPLString osName = CPLGetBasenameSafe(poOpenInfo->pszFilename);
2452 492 : const std::string osPrjFile = CPLFormCIFilenameSafe(osPath, osName, "prj");
2453 :
2454 246 : VSILFILE *fp = VSIFOpenL(osPrjFile.c_str(), "r");
2455 246 : if (fp != nullptr)
2456 : {
2457 0 : VSIFCloseL(fp);
2458 :
2459 0 : char **papszLines = CSLLoad(osPrjFile.c_str());
2460 :
2461 0 : OGRSpatialReference oSRS2;
2462 0 : if (oSRS2.importFromESRI(papszLines) == OGRERR_NONE)
2463 : {
2464 0 : poDS->m_aosAdditionalFiles.AddString(osPrjFile.c_str());
2465 0 : poDS->m_oSRS = std::move(oSRS2);
2466 0 : poDS->m_oSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
2467 : }
2468 :
2469 0 : CSLDestroy(papszLines);
2470 : }
2471 :
2472 246 : if (dfULXMap != 0.5 || dfULYMap != 0.5 || dfXDim != 1.0 || dfYDim != 1.0)
2473 : {
2474 94 : poDS->m_bGotTransform = true;
2475 94 : poDS->m_adfGeoTransform[0] = dfULXMap;
2476 94 : poDS->m_adfGeoTransform[1] = dfXDim;
2477 94 : poDS->m_adfGeoTransform[2] = 0.0;
2478 94 : poDS->m_adfGeoTransform[3] = dfULYMap;
2479 94 : poDS->m_adfGeoTransform[4] = 0.0;
2480 94 : poDS->m_adfGeoTransform[5] = dfYDim;
2481 : }
2482 :
2483 246 : if (!poDS->m_bGotTransform)
2484 : {
2485 152 : poDS->m_bGotTransform = CPL_TO_BOOL(GDALReadWorldFile(
2486 152 : poOpenInfo->pszFilename, "cbw", poDS->m_adfGeoTransform));
2487 152 : if (poDS->m_bGotTransform)
2488 : {
2489 0 : poDS->m_aosAdditionalFiles.AddString(
2490 0 : CPLResetExtensionSafe(poOpenInfo->pszFilename, "cbw").c_str());
2491 : }
2492 : }
2493 :
2494 246 : if (!poDS->m_bGotTransform)
2495 : {
2496 152 : poDS->m_bGotTransform = CPL_TO_BOOL(GDALReadWorldFile(
2497 152 : poOpenInfo->pszFilename, "wld", poDS->m_adfGeoTransform));
2498 152 : if (poDS->m_bGotTransform)
2499 : {
2500 0 : poDS->m_aosAdditionalFiles.AddString(
2501 0 : CPLResetExtensionSafe(poOpenInfo->pszFilename, "wld").c_str());
2502 : }
2503 : }
2504 :
2505 : /* -------------------------------------------------------------------- */
2506 : /* Initialize any PAM information. */
2507 : /* -------------------------------------------------------------------- */
2508 246 : poDS->SetDescription(poOpenInfo->pszFilename);
2509 246 : poDS->TryLoadXML();
2510 :
2511 : /* -------------------------------------------------------------------- */
2512 : /* Check for overviews. */
2513 : /* -------------------------------------------------------------------- */
2514 246 : poDS->oOvManager.Initialize(poDS.get(), poOpenInfo->pszFilename);
2515 :
2516 246 : return poDS.release();
2517 : }
2518 :
2519 : /************************************************************************/
2520 : /* GetKeyword() */
2521 : /************************************************************************/
2522 :
2523 6046 : const char *ISIS3Dataset::GetKeyword(const char *pszPath,
2524 : const char *pszDefault)
2525 :
2526 : {
2527 6046 : return m_oKeywords.GetKeyword(pszPath, pszDefault);
2528 : }
2529 :
2530 : /************************************************************************/
2531 : /* FixLong() */
2532 : /************************************************************************/
2533 :
2534 232 : double ISIS3Dataset::FixLong(double dfLong)
2535 : {
2536 232 : if (m_osLongitudeDirection == "PositiveWest")
2537 4 : dfLong = -dfLong;
2538 232 : if (m_bForce360 && dfLong < 0)
2539 2 : dfLong += 360.0;
2540 232 : return dfLong;
2541 : }
2542 :
2543 : /************************************************************************/
2544 : /* BuildLabel() */
2545 : /************************************************************************/
2546 :
2547 126 : void ISIS3Dataset::BuildLabel()
2548 : {
2549 252 : CPLJSONObject oLabel = m_oSrcJSonLabel;
2550 126 : if (!oLabel.IsValid())
2551 : {
2552 102 : oLabel = CPLJSONObject();
2553 : }
2554 : // If we have a source label, then edit it directly
2555 378 : CPLJSONObject oIsisCube = GetOrCreateJSONObject(oLabel, "IsisCube");
2556 126 : oIsisCube.Set("_type", "object");
2557 :
2558 126 : if (!m_osComment.empty())
2559 1 : oIsisCube.Set("_comment", m_osComment);
2560 :
2561 378 : CPLJSONObject oCore = GetOrCreateJSONObject(oIsisCube, "Core");
2562 126 : if (oCore.GetType() != CPLJSONObject::Type::Object)
2563 : {
2564 0 : oIsisCube.Delete("Core");
2565 0 : oCore = CPLJSONObject();
2566 0 : oIsisCube.Add("Core", oCore);
2567 : }
2568 126 : oCore.Set("_type", "object");
2569 :
2570 126 : if (!m_osExternalFilename.empty())
2571 : {
2572 31 : if (m_poExternalDS && m_bGeoTIFFAsRegularExternal)
2573 : {
2574 8 : if (!m_bGeoTIFFInitDone)
2575 : {
2576 1 : reinterpret_cast<ISIS3WrapperRasterBand *>(GetRasterBand(1))
2577 1 : ->InitFile();
2578 : }
2579 :
2580 : const char *pszOffset =
2581 8 : m_poExternalDS->GetRasterBand(1)->GetMetadataItem(
2582 8 : "BLOCK_OFFSET_0_0", "TIFF");
2583 8 : if (pszOffset)
2584 : {
2585 8 : oCore.Set("StartByte", 1 + atoi(pszOffset));
2586 : }
2587 : else
2588 : {
2589 : // Shouldn't happen normally
2590 0 : CPLError(CE_Warning, CPLE_AppDefined,
2591 : "Missing BLOCK_OFFSET_0_0");
2592 0 : m_bGeoTIFFAsRegularExternal = false;
2593 0 : oCore.Set("StartByte", 1);
2594 8 : }
2595 : }
2596 : else
2597 : {
2598 23 : oCore.Set("StartByte", 1);
2599 : }
2600 31 : if (!m_osExternalFilename.empty())
2601 : {
2602 : const CPLString osExternalFilename =
2603 31 : CPLGetFilename(m_osExternalFilename);
2604 31 : oCore.Set("^Core", osExternalFilename);
2605 : }
2606 : }
2607 : else
2608 : {
2609 95 : oCore.Set("StartByte", pszSTARTBYTE_PLACEHOLDER);
2610 95 : oCore.Delete("^Core");
2611 : }
2612 :
2613 126 : if (m_poExternalDS && !m_bGeoTIFFAsRegularExternal)
2614 : {
2615 10 : oCore.Set("Format", "GeoTIFF");
2616 10 : oCore.Delete("TileSamples");
2617 10 : oCore.Delete("TileLines");
2618 : }
2619 116 : else if (m_bIsTiled)
2620 : {
2621 9 : oCore.Set("Format", "Tile");
2622 9 : int nBlockXSize = 1, nBlockYSize = 1;
2623 9 : GetRasterBand(1)->GetBlockSize(&nBlockXSize, &nBlockYSize);
2624 9 : oCore.Set("TileSamples", nBlockXSize);
2625 9 : oCore.Set("TileLines", nBlockYSize);
2626 : }
2627 : else
2628 : {
2629 107 : oCore.Set("Format", "BandSequential");
2630 107 : oCore.Delete("TileSamples");
2631 107 : oCore.Delete("TileLines");
2632 : }
2633 :
2634 378 : CPLJSONObject oDimensions = GetOrCreateJSONObject(oCore, "Dimensions");
2635 126 : oDimensions.Set("_type", "group");
2636 126 : oDimensions.Set("Samples", nRasterXSize);
2637 126 : oDimensions.Set("Lines", nRasterYSize);
2638 126 : oDimensions.Set("Bands", nBands);
2639 :
2640 378 : CPLJSONObject oPixels = GetOrCreateJSONObject(oCore, "Pixels");
2641 126 : oPixels.Set("_type", "group");
2642 126 : const GDALDataType eDT = GetRasterBand(1)->GetRasterDataType();
2643 152 : oPixels.Set("Type", (eDT == GDT_Byte) ? "UnsignedByte"
2644 43 : : (eDT == GDT_UInt16) ? "UnsignedWord"
2645 17 : : (eDT == GDT_Int16) ? "SignedWord"
2646 : : "Real");
2647 :
2648 126 : oPixels.Set("ByteOrder", "Lsb");
2649 126 : oPixels.Set("Base", GetRasterBand(1)->GetOffset());
2650 126 : oPixels.Set("Multiplier", GetRasterBand(1)->GetScale());
2651 :
2652 126 : const OGRSpatialReference &oSRS = m_oSRS;
2653 :
2654 126 : if (!m_bUseSrcMapping)
2655 : {
2656 124 : oIsisCube.Delete("Mapping");
2657 : }
2658 :
2659 378 : CPLJSONObject oMapping = GetOrCreateJSONObject(oIsisCube, "Mapping");
2660 128 : if (m_bUseSrcMapping && oMapping.IsValid() &&
2661 2 : oMapping.GetType() == CPLJSONObject::Type::Object)
2662 : {
2663 2 : if (!m_osTargetName.empty())
2664 1 : oMapping.Set("TargetName", m_osTargetName);
2665 2 : if (!m_osLatitudeType.empty())
2666 1 : oMapping.Set("LatitudeType", m_osLatitudeType);
2667 2 : if (!m_osLongitudeDirection.empty())
2668 1 : oMapping.Set("LongitudeDirection", m_osLongitudeDirection);
2669 : }
2670 124 : else if (!m_bUseSrcMapping && !m_oSRS.IsEmpty())
2671 : {
2672 59 : oMapping.Add("_type", "group");
2673 :
2674 59 : if (oSRS.IsProjected() || oSRS.IsGeographic())
2675 : {
2676 59 : const char *pszDatum = oSRS.GetAttrValue("DATUM");
2677 118 : CPLString osTargetName(m_osTargetName);
2678 59 : if (osTargetName.empty())
2679 : {
2680 58 : if (pszDatum && STARTS_WITH(pszDatum, "D_"))
2681 : {
2682 24 : osTargetName = pszDatum + 2;
2683 : }
2684 34 : else if (pszDatum)
2685 : {
2686 34 : osTargetName = pszDatum;
2687 : }
2688 : }
2689 59 : if (!osTargetName.empty())
2690 59 : oMapping.Add("TargetName", osTargetName);
2691 :
2692 59 : oMapping.Add("EquatorialRadius/value", oSRS.GetSemiMajor());
2693 59 : oMapping.Add("EquatorialRadius/unit", "meters");
2694 59 : oMapping.Add("PolarRadius/value", oSRS.GetSemiMinor());
2695 59 : oMapping.Add("PolarRadius/unit", "meters");
2696 :
2697 59 : if (!m_osLatitudeType.empty())
2698 1 : oMapping.Add("LatitudeType", m_osLatitudeType);
2699 : else
2700 58 : oMapping.Add("LatitudeType", "Planetocentric");
2701 :
2702 59 : if (!m_osLongitudeDirection.empty())
2703 1 : oMapping.Add("LongitudeDirection", m_osLongitudeDirection);
2704 : else
2705 58 : oMapping.Add("LongitudeDirection", "PositiveEast");
2706 :
2707 59 : double adfX[4] = {0};
2708 59 : double adfY[4] = {0};
2709 59 : bool bLongLatCorners = false;
2710 59 : if (m_bGotTransform)
2711 : {
2712 255 : for (int i = 0; i < 4; i++)
2713 : {
2714 204 : adfX[i] = m_adfGeoTransform[0] +
2715 204 : (i % 2) * nRasterXSize * m_adfGeoTransform[1];
2716 408 : adfY[i] = m_adfGeoTransform[3] +
2717 204 : ((i == 0 || i == 3) ? 0 : 1) * nRasterYSize *
2718 204 : m_adfGeoTransform[5];
2719 : }
2720 51 : if (oSRS.IsGeographic())
2721 : {
2722 31 : bLongLatCorners = true;
2723 : }
2724 : else
2725 : {
2726 20 : OGRSpatialReference *poSRSLongLat = oSRS.CloneGeogCS();
2727 20 : if (poSRSLongLat)
2728 : {
2729 20 : poSRSLongLat->SetAxisMappingStrategy(
2730 : OAMS_TRADITIONAL_GIS_ORDER);
2731 : OGRCoordinateTransformation *poCT =
2732 20 : OGRCreateCoordinateTransformation(&oSRS,
2733 : poSRSLongLat);
2734 20 : if (poCT)
2735 : {
2736 20 : if (poCT->Transform(4, adfX, adfY))
2737 : {
2738 20 : bLongLatCorners = true;
2739 : }
2740 20 : delete poCT;
2741 : }
2742 20 : delete poSRSLongLat;
2743 : }
2744 : }
2745 : }
2746 59 : if (bLongLatCorners)
2747 : {
2748 255 : for (int i = 0; i < 4; i++)
2749 : {
2750 204 : adfX[i] = FixLong(adfX[i]);
2751 : }
2752 : }
2753 :
2754 59 : if (bLongLatCorners &&
2755 51 : (m_bForce360 || adfX[0] < -180.0 || adfX[3] > 180.0))
2756 : {
2757 1 : oMapping.Add("LongitudeDomain", 360);
2758 : }
2759 : else
2760 : {
2761 58 : oMapping.Add("LongitudeDomain", 180);
2762 : }
2763 :
2764 59 : if (m_bWriteBoundingDegrees && !m_osBoundingDegrees.empty())
2765 : {
2766 : char **papszTokens =
2767 1 : CSLTokenizeString2(m_osBoundingDegrees, ",", 0);
2768 1 : if (CSLCount(papszTokens) == 4)
2769 : {
2770 1 : oMapping.Add("MinimumLatitude", CPLAtof(papszTokens[1]));
2771 1 : oMapping.Add("MinimumLongitude", CPLAtof(papszTokens[0]));
2772 1 : oMapping.Add("MaximumLatitude", CPLAtof(papszTokens[3]));
2773 1 : oMapping.Add("MaximumLongitude", CPLAtof(papszTokens[2]));
2774 : }
2775 1 : CSLDestroy(papszTokens);
2776 : }
2777 58 : else if (m_bWriteBoundingDegrees && bLongLatCorners)
2778 : {
2779 49 : oMapping.Add("MinimumLatitude",
2780 : std::min(std::min(adfY[0], adfY[1]),
2781 49 : std::min(adfY[2], adfY[3])));
2782 49 : oMapping.Add("MinimumLongitude",
2783 : std::min(std::min(adfX[0], adfX[1]),
2784 49 : std::min(adfX[2], adfX[3])));
2785 49 : oMapping.Add("MaximumLatitude",
2786 : std::max(std::max(adfY[0], adfY[1]),
2787 49 : std::max(adfY[2], adfY[3])));
2788 49 : oMapping.Add("MaximumLongitude",
2789 : std::max(std::max(adfX[0], adfX[1]),
2790 49 : std::max(adfX[2], adfX[3])));
2791 : }
2792 :
2793 59 : const char *pszProjection = oSRS.GetAttrValue("PROJECTION");
2794 59 : if (pszProjection == nullptr)
2795 : {
2796 31 : oMapping.Add("ProjectionName", "SimpleCylindrical");
2797 31 : oMapping.Add("CenterLongitude", 0.0);
2798 31 : oMapping.Add("CenterLatitude", 0.0);
2799 31 : oMapping.Add("CenterLatitudeRadius", oSRS.GetSemiMajor());
2800 : }
2801 28 : else if (EQUAL(pszProjection, SRS_PT_EQUIRECTANGULAR))
2802 : {
2803 14 : oMapping.Add("ProjectionName", "Equirectangular");
2804 14 : if (oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0) != 0.0)
2805 : {
2806 1 : CPLError(CE_Warning, CPLE_NotSupported,
2807 : "Ignoring %s. Only 0 value supported",
2808 : SRS_PP_LATITUDE_OF_ORIGIN);
2809 : }
2810 14 : oMapping.Add("CenterLongitude",
2811 : FixLong(oSRS.GetNormProjParm(
2812 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2813 : const double dfCenterLat =
2814 14 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_1, 0.0);
2815 14 : oMapping.Add("CenterLatitude", dfCenterLat);
2816 :
2817 : // in radians
2818 14 : const double radLat = dfCenterLat * M_PI / 180;
2819 14 : const double semi_major = oSRS.GetSemiMajor();
2820 14 : const double semi_minor = oSRS.GetSemiMinor();
2821 : const double localRadius =
2822 14 : semi_major * semi_minor /
2823 14 : sqrt(pow(semi_minor * cos(radLat), 2) +
2824 14 : pow(semi_major * sin(radLat), 2));
2825 14 : oMapping.Add("CenterLatitudeRadius", localRadius);
2826 : }
2827 :
2828 14 : else if (EQUAL(pszProjection, SRS_PT_ORTHOGRAPHIC))
2829 : {
2830 1 : oMapping.Add("ProjectionName", "Orthographic");
2831 1 : oMapping.Add("CenterLongitude",
2832 : FixLong(oSRS.GetNormProjParm(
2833 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2834 1 : oMapping.Add(
2835 : "CenterLatitude",
2836 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2837 : }
2838 :
2839 13 : else if (EQUAL(pszProjection, SRS_PT_SINUSOIDAL))
2840 : {
2841 1 : oMapping.Add("ProjectionName", "Sinusoidal");
2842 1 : oMapping.Add("CenterLongitude",
2843 : FixLong(oSRS.GetNormProjParm(
2844 : SRS_PP_LONGITUDE_OF_CENTER, 0.0)));
2845 : }
2846 :
2847 12 : else if (EQUAL(pszProjection, SRS_PT_MERCATOR_1SP))
2848 : {
2849 1 : oMapping.Add("ProjectionName", "Mercator");
2850 1 : oMapping.Add("CenterLongitude",
2851 : FixLong(oSRS.GetNormProjParm(
2852 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2853 1 : oMapping.Add(
2854 : "CenterLatitude",
2855 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2856 1 : oMapping.Add("scaleFactor",
2857 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2858 : }
2859 :
2860 11 : else if (EQUAL(pszProjection, SRS_PT_POLAR_STEREOGRAPHIC))
2861 : {
2862 1 : oMapping.Add("ProjectionName", "PolarStereographic");
2863 1 : oMapping.Add("CenterLongitude",
2864 : FixLong(oSRS.GetNormProjParm(
2865 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2866 1 : oMapping.Add(
2867 : "CenterLatitude",
2868 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2869 1 : oMapping.Add("scaleFactor",
2870 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2871 : }
2872 :
2873 10 : else if (EQUAL(pszProjection, SRS_PT_TRANSVERSE_MERCATOR))
2874 : {
2875 8 : oMapping.Add("ProjectionName", "TransverseMercator");
2876 8 : oMapping.Add("CenterLongitude",
2877 : FixLong(oSRS.GetNormProjParm(
2878 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2879 8 : oMapping.Add(
2880 : "CenterLatitude",
2881 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2882 8 : oMapping.Add("scaleFactor",
2883 : oSRS.GetNormProjParm(SRS_PP_SCALE_FACTOR, 1.0));
2884 : }
2885 :
2886 2 : else if (EQUAL(pszProjection, SRS_PT_LAMBERT_CONFORMAL_CONIC_2SP))
2887 : {
2888 1 : oMapping.Add("ProjectionName", "LambertConformal");
2889 1 : oMapping.Add("CenterLongitude",
2890 : FixLong(oSRS.GetNormProjParm(
2891 : SRS_PP_CENTRAL_MERIDIAN, 0.0)));
2892 1 : oMapping.Add(
2893 : "CenterLatitude",
2894 : oSRS.GetNormProjParm(SRS_PP_LATITUDE_OF_ORIGIN, 0.0));
2895 1 : oMapping.Add(
2896 : "FirstStandardParallel",
2897 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_1, 0.0));
2898 1 : oMapping.Add(
2899 : "SecondStandardParallel",
2900 : oSRS.GetNormProjParm(SRS_PP_STANDARD_PARALLEL_2, 0.0));
2901 : }
2902 :
2903 1 : else if (EQUAL(pszProjection,
2904 : "Vertical Perspective")) // PROJ 7 required
2905 : {
2906 0 : oMapping.Add("ProjectionName", "PointPerspective");
2907 0 : oMapping.Add("CenterLongitude",
2908 : FixLong(oSRS.GetNormProjParm(
2909 : "Longitude of topocentric origin", 0.0)));
2910 0 : oMapping.Add("CenterLatitude",
2911 : oSRS.GetNormProjParm(
2912 : "Latitude of topocentric origin", 0.0));
2913 : // ISIS3 value is the distance from center of ellipsoid, in km
2914 0 : oMapping.Add("Distance",
2915 0 : (oSRS.GetNormProjParm("Viewpoint height", 0.0) +
2916 0 : oSRS.GetSemiMajor()) /
2917 : 1000.0);
2918 : }
2919 :
2920 1 : else if (EQUAL(pszProjection, "custom_proj4"))
2921 : {
2922 : const char *pszProj4 =
2923 1 : oSRS.GetExtension("PROJCS", "PROJ4", nullptr);
2924 1 : if (pszProj4 && strstr(pszProj4, "+proj=ob_tran") &&
2925 1 : strstr(pszProj4, "+o_proj=eqc"))
2926 : {
2927 : const auto FetchParam =
2928 3 : [](const char *pszProj4Str, const char *pszKey)
2929 : {
2930 6 : CPLString needle;
2931 3 : needle.Printf("+%s=", pszKey);
2932 : const char *pszVal =
2933 3 : strstr(pszProj4Str, needle.c_str());
2934 3 : if (pszVal)
2935 3 : return CPLAtof(pszVal + needle.size());
2936 0 : return 0.0;
2937 : };
2938 :
2939 1 : double dfLonP = FetchParam(pszProj4, "o_lon_p");
2940 1 : double dfLatP = FetchParam(pszProj4, "o_lat_p");
2941 1 : double dfLon0 = FetchParam(pszProj4, "lon_0");
2942 1 : double dfPoleRotation = -dfLonP;
2943 1 : double dfPoleLatitude = 180 - dfLatP;
2944 1 : double dfPoleLongitude = dfLon0;
2945 1 : oMapping.Add("ProjectionName", "ObliqueCylindrical");
2946 1 : oMapping.Add("PoleLatitude", dfPoleLatitude);
2947 1 : oMapping.Add("PoleLongitude", FixLong(dfPoleLongitude));
2948 1 : oMapping.Add("PoleRotation", dfPoleRotation);
2949 : }
2950 : else
2951 : {
2952 0 : CPLError(CE_Warning, CPLE_NotSupported,
2953 : "Projection %s not supported", pszProjection);
2954 : }
2955 : }
2956 : else
2957 : {
2958 0 : CPLError(CE_Warning, CPLE_NotSupported,
2959 : "Projection %s not supported", pszProjection);
2960 : }
2961 :
2962 59 : if (oMapping["ProjectionName"].IsValid())
2963 : {
2964 59 : if (oSRS.GetNormProjParm(SRS_PP_FALSE_EASTING, 0.0) != 0.0)
2965 : {
2966 6 : CPLError(CE_Warning, CPLE_NotSupported,
2967 : "Ignoring %s. Only 0 value supported",
2968 : SRS_PP_FALSE_EASTING);
2969 : }
2970 59 : if (oSRS.GetNormProjParm(SRS_PP_FALSE_NORTHING, 0.0) != 0.0)
2971 : {
2972 1 : CPLError(CE_Warning, CPLE_AppDefined,
2973 : "Ignoring %s. Only 0 value supported",
2974 : SRS_PP_FALSE_NORTHING);
2975 : }
2976 : }
2977 : }
2978 : else
2979 : {
2980 0 : CPLError(CE_Warning, CPLE_NotSupported, "SRS not supported");
2981 : }
2982 : }
2983 :
2984 126 : if (!m_bUseSrcMapping && m_bGotTransform)
2985 : {
2986 51 : oMapping.Add("_type", "group");
2987 :
2988 51 : const double dfDegToMeter = oSRS.GetSemiMajor() * M_PI / 180.0;
2989 51 : if (!m_oSRS.IsEmpty() && oSRS.IsProjected())
2990 : {
2991 20 : const double dfLinearUnits = oSRS.GetLinearUnits();
2992 : // Maybe we should deal differently with non meter units ?
2993 20 : const double dfRes = m_adfGeoTransform[1] * dfLinearUnits;
2994 20 : const double dfScale = dfDegToMeter / dfRes;
2995 20 : oMapping.Add("UpperLeftCornerX", m_adfGeoTransform[0]);
2996 20 : oMapping.Add("UpperLeftCornerY", m_adfGeoTransform[3]);
2997 20 : oMapping.Add("PixelResolution/value", dfRes);
2998 20 : oMapping.Add("PixelResolution/unit", "meters/pixel");
2999 20 : oMapping.Add("Scale/value", dfScale);
3000 20 : oMapping.Add("Scale/unit", "pixels/degree");
3001 : }
3002 31 : else if (!m_oSRS.IsEmpty() && oSRS.IsGeographic())
3003 : {
3004 31 : const double dfScale = 1.0 / m_adfGeoTransform[1];
3005 31 : const double dfRes = m_adfGeoTransform[1] * dfDegToMeter;
3006 31 : oMapping.Add("UpperLeftCornerX",
3007 31 : m_adfGeoTransform[0] * dfDegToMeter);
3008 31 : oMapping.Add("UpperLeftCornerY",
3009 31 : m_adfGeoTransform[3] * dfDegToMeter);
3010 31 : oMapping.Add("PixelResolution/value", dfRes);
3011 31 : oMapping.Add("PixelResolution/unit", "meters/pixel");
3012 31 : oMapping.Add("Scale/value", dfScale);
3013 31 : oMapping.Add("Scale/unit", "pixels/degree");
3014 : }
3015 : else
3016 : {
3017 0 : oMapping.Add("UpperLeftCornerX", m_adfGeoTransform[0]);
3018 0 : oMapping.Add("UpperLeftCornerY", m_adfGeoTransform[3]);
3019 0 : oMapping.Add("PixelResolution", m_adfGeoTransform[1]);
3020 : }
3021 : }
3022 :
3023 378 : CPLJSONObject oLabelLabel = GetOrCreateJSONObject(oLabel, "Label");
3024 126 : oLabelLabel.Set("_type", "object");
3025 126 : oLabelLabel.Set("Bytes", pszLABEL_BYTES_PLACEHOLDER);
3026 :
3027 : // Deal with History object
3028 126 : BuildHistory();
3029 :
3030 126 : oLabel.Delete("History");
3031 126 : if (!m_osHistory.empty())
3032 : {
3033 124 : CPLJSONObject oHistory;
3034 124 : oHistory.Add("_type", "object");
3035 124 : oHistory.Add("Name", "IsisCube");
3036 124 : if (m_osExternalFilename.empty())
3037 94 : oHistory.Add("StartByte", pszHISTORY_STARTBYTE_PLACEHOLDER);
3038 : else
3039 30 : oHistory.Add("StartByte", 1);
3040 124 : oHistory.Add("Bytes", static_cast<GIntBig>(m_osHistory.size()));
3041 124 : if (!m_osExternalFilename.empty())
3042 : {
3043 30 : CPLString osFilename(CPLGetBasenameSafe(GetDescription()));
3044 30 : osFilename += ".History.IsisCube";
3045 30 : oHistory.Add("^History", osFilename);
3046 : }
3047 124 : oLabel.Add("History", oHistory);
3048 : }
3049 :
3050 : // Deal with other objects that have StartByte & Bytes
3051 126 : m_aoNonPixelSections.clear();
3052 126 : if (m_oSrcJSonLabel.IsValid())
3053 : {
3054 48 : CPLString osLabelSrcFilename;
3055 72 : CPLJSONObject oFilename = oLabel["_filename"];
3056 24 : if (oFilename.GetType() == CPLJSONObject::Type::String)
3057 : {
3058 19 : osLabelSrcFilename = oFilename.ToString();
3059 : }
3060 :
3061 128 : for (CPLJSONObject &oObj : oLabel.GetChildren())
3062 : {
3063 104 : CPLString osKey = oObj.GetName();
3064 104 : if (osKey == "History")
3065 : {
3066 22 : continue;
3067 : }
3068 :
3069 164 : CPLJSONObject oBytes = oObj.GetObj("Bytes");
3070 92 : if (oBytes.GetType() != CPLJSONObject::Type::Integer ||
3071 10 : oBytes.ToInteger() <= 0)
3072 : {
3073 72 : continue;
3074 : }
3075 :
3076 20 : CPLJSONObject oStartByte = oObj.GetObj("StartByte");
3077 20 : if (oStartByte.GetType() != CPLJSONObject::Type::Integer ||
3078 10 : oStartByte.ToInteger() <= 0)
3079 : {
3080 0 : continue;
3081 : }
3082 :
3083 10 : if (osLabelSrcFilename.empty())
3084 : {
3085 0 : CPLError(CE_Warning, CPLE_AppDefined,
3086 : "Cannot find _filename attribute in "
3087 : "source ISIS3 metadata. Removing object "
3088 : "%s from the label.",
3089 : osKey.c_str());
3090 0 : oLabel.Delete(osKey);
3091 0 : continue;
3092 : }
3093 :
3094 10 : NonPixelSection oSection;
3095 10 : oSection.osSrcFilename = osLabelSrcFilename;
3096 10 : oSection.nSrcOffset =
3097 10 : static_cast<vsi_l_offset>(oObj.GetInteger("StartByte")) - 1U;
3098 10 : oSection.nSize =
3099 10 : static_cast<vsi_l_offset>(oObj.GetInteger("Bytes"));
3100 :
3101 10 : CPLString osName;
3102 20 : CPLJSONObject oName = oObj.GetObj("Name");
3103 10 : if (oName.GetType() == CPLJSONObject::Type::String)
3104 : {
3105 10 : osName = oName.ToString();
3106 : }
3107 :
3108 10 : CPLString osContainerName(osKey);
3109 20 : CPLJSONObject oContainerName = oObj.GetObj("_container_name");
3110 10 : if (oContainerName.GetType() == CPLJSONObject::Type::String)
3111 : {
3112 5 : osContainerName = oContainerName.ToString();
3113 : }
3114 :
3115 10 : const CPLString osKeyFilename("^" + osContainerName);
3116 10 : CPLJSONObject oFilenameCap = oObj.GetObj(osKeyFilename);
3117 10 : if (oFilenameCap.GetType() == CPLJSONObject::Type::String)
3118 : {
3119 : VSIStatBufL sStat;
3120 24 : const CPLString osSrcFilename(CPLFormFilenameSafe(
3121 16 : CPLGetPathSafe(osLabelSrcFilename).c_str(),
3122 24 : oFilenameCap.ToString().c_str(), nullptr));
3123 8 : if (VSIStatL(osSrcFilename, &sStat) == 0)
3124 : {
3125 3 : oSection.osSrcFilename = osSrcFilename;
3126 : }
3127 : else
3128 : {
3129 5 : CPLError(CE_Warning, CPLE_AppDefined,
3130 : "Object %s points to %s, which does "
3131 : "not exist. Removing this section "
3132 : "from the label",
3133 : osKey.c_str(), osSrcFilename.c_str());
3134 5 : oLabel.Delete(osKey);
3135 5 : continue;
3136 : }
3137 : }
3138 :
3139 5 : if (!m_osExternalFilename.empty())
3140 : {
3141 2 : oObj.Set("StartByte", 1);
3142 : }
3143 : else
3144 : {
3145 6 : CPLString osPlaceHolder;
3146 : osPlaceHolder.Printf(
3147 : "!*^PLACEHOLDER_%d_STARTBYTE^*!",
3148 3 : static_cast<int>(m_aoNonPixelSections.size()) + 1);
3149 3 : oObj.Set("StartByte", osPlaceHolder);
3150 3 : oSection.osPlaceHolder = std::move(osPlaceHolder);
3151 : }
3152 :
3153 5 : if (!m_osExternalFilename.empty())
3154 : {
3155 4 : CPLString osDstFilename(CPLGetBasenameSafe(GetDescription()));
3156 2 : osDstFilename += ".";
3157 2 : osDstFilename += osContainerName;
3158 2 : if (!osName.empty())
3159 : {
3160 2 : osDstFilename += ".";
3161 2 : osDstFilename += osName;
3162 : }
3163 :
3164 4 : oSection.osDstFilename = CPLFormFilenameSafe(
3165 4 : CPLGetPathSafe(GetDescription()).c_str(), osDstFilename,
3166 2 : nullptr);
3167 :
3168 2 : oObj.Set(osKeyFilename, osDstFilename);
3169 : }
3170 : else
3171 : {
3172 3 : oObj.Delete(osKeyFilename);
3173 : }
3174 :
3175 5 : m_aoNonPixelSections.push_back(oSection);
3176 : }
3177 : }
3178 126 : m_oJSonLabel = std::move(oLabel);
3179 126 : }
3180 :
3181 : /************************************************************************/
3182 : /* BuildHistory() */
3183 : /************************************************************************/
3184 :
3185 126 : void ISIS3Dataset::BuildHistory()
3186 : {
3187 252 : CPLString osHistory;
3188 :
3189 126 : if (m_oSrcJSonLabel.IsValid() && m_bUseSrcHistory)
3190 : {
3191 22 : vsi_l_offset nHistoryOffset = 0;
3192 22 : int nHistorySize = 0;
3193 44 : CPLString osSrcFilename;
3194 :
3195 66 : CPLJSONObject oFilename = m_oSrcJSonLabel["_filename"];
3196 22 : if (oFilename.GetType() == CPLJSONObject::Type::String)
3197 : {
3198 17 : osSrcFilename = oFilename.ToString();
3199 : }
3200 44 : CPLString osHistoryFilename(osSrcFilename);
3201 66 : CPLJSONObject oHistory = m_oSrcJSonLabel["History"];
3202 22 : if (oHistory.GetType() == CPLJSONObject::Type::Object)
3203 : {
3204 33 : CPLJSONObject oHistoryFilename = oHistory["^History"];
3205 11 : if (oHistoryFilename.GetType() == CPLJSONObject::Type::String)
3206 : {
3207 14 : osHistoryFilename = CPLFormFilenameSafe(
3208 14 : CPLGetPathSafe(osSrcFilename).c_str(),
3209 21 : oHistoryFilename.ToString().c_str(), nullptr);
3210 : }
3211 :
3212 33 : CPLJSONObject oStartByte = oHistory["StartByte"];
3213 11 : if (oStartByte.GetType() == CPLJSONObject::Type::Integer)
3214 : {
3215 11 : if (oStartByte.ToInteger() > 0)
3216 : {
3217 11 : nHistoryOffset =
3218 11 : static_cast<vsi_l_offset>(oStartByte.ToInteger()) - 1U;
3219 : }
3220 : }
3221 :
3222 33 : CPLJSONObject oBytes = oHistory["Bytes"];
3223 11 : if (oBytes.GetType() == CPLJSONObject::Type::Integer)
3224 : {
3225 11 : nHistorySize = static_cast<int>(oBytes.ToInteger());
3226 : }
3227 : }
3228 :
3229 22 : if (osHistoryFilename.empty())
3230 : {
3231 5 : CPLDebug("ISIS3", "Cannot find filename for source history");
3232 : }
3233 17 : else if (nHistorySize <= 0 || nHistorySize > 1000000)
3234 : {
3235 6 : CPLDebug("ISIS3", "Invalid or missing value for History.Bytes "
3236 : "for source history");
3237 : }
3238 : else
3239 : {
3240 11 : VSILFILE *fpHistory = VSIFOpenL(osHistoryFilename, "rb");
3241 11 : if (fpHistory != nullptr)
3242 : {
3243 6 : VSIFSeekL(fpHistory, nHistoryOffset, SEEK_SET);
3244 6 : osHistory.resize(nHistorySize);
3245 6 : if (VSIFReadL(&osHistory[0], nHistorySize, 1, fpHistory) != 1)
3246 : {
3247 0 : CPLError(CE_Warning, CPLE_FileIO,
3248 : "Cannot read %d bytes at offset " CPL_FRMT_GUIB
3249 : "of %s: history will not be preserved",
3250 : nHistorySize, nHistoryOffset,
3251 : osHistoryFilename.c_str());
3252 0 : osHistory.clear();
3253 : }
3254 6 : VSIFCloseL(fpHistory);
3255 : }
3256 : else
3257 : {
3258 5 : CPLError(CE_Warning, CPLE_FileIO,
3259 : "Cannot open %s: history will not be preserved",
3260 : osHistoryFilename.c_str());
3261 : }
3262 : }
3263 : }
3264 :
3265 126 : if (m_bAddGDALHistory && !m_osGDALHistory.empty())
3266 : {
3267 1 : if (!osHistory.empty())
3268 0 : osHistory += "\n";
3269 1 : osHistory += m_osGDALHistory;
3270 : }
3271 125 : else if (m_bAddGDALHistory)
3272 : {
3273 123 : if (!osHistory.empty())
3274 6 : osHistory += "\n";
3275 :
3276 246 : CPLJSONObject oHistoryObj;
3277 123 : char szFullFilename[2048] = {0};
3278 123 : if (!CPLGetExecPath(szFullFilename, sizeof(szFullFilename) - 1))
3279 0 : strcpy(szFullFilename, "unknown_program");
3280 246 : const CPLString osProgram(CPLGetBasenameSafe(szFullFilename));
3281 246 : const CPLString osPath(CPLGetPathSafe(szFullFilename));
3282 :
3283 246 : CPLJSONObject oObj;
3284 123 : oHistoryObj.Add(osProgram, oObj);
3285 :
3286 123 : oObj.Add("_type", "object");
3287 123 : oObj.Add("GdalVersion", GDALVersionInfo("RELEASE_NAME"));
3288 123 : if (osPath != ".")
3289 123 : oObj.Add("ProgramPath", osPath);
3290 123 : time_t nCurTime = time(nullptr);
3291 123 : if (nCurTime != -1)
3292 : {
3293 : struct tm mytm;
3294 123 : CPLUnixTimeToYMDHMS(nCurTime, &mytm);
3295 123 : oObj.Add("ExecutionDateTime",
3296 : CPLSPrintf("%04d-%02d-%02dT%02d:%02d:%02d",
3297 123 : mytm.tm_year + 1900, mytm.tm_mon + 1,
3298 : mytm.tm_mday, mytm.tm_hour, mytm.tm_min,
3299 : mytm.tm_sec));
3300 : }
3301 123 : char szHostname[256] = {0};
3302 123 : if (gethostname(szHostname, sizeof(szHostname) - 1) == 0)
3303 : {
3304 123 : oObj.Add("HostName", std::string(szHostname));
3305 : }
3306 123 : const char *pszUsername = CPLGetConfigOption("USERNAME", nullptr);
3307 123 : if (pszUsername == nullptr)
3308 123 : pszUsername = CPLGetConfigOption("USER", nullptr);
3309 123 : if (pszUsername != nullptr)
3310 : {
3311 0 : oObj.Add("UserName", pszUsername);
3312 : }
3313 123 : oObj.Add("Description", "GDAL conversion");
3314 :
3315 123 : CPLJSONObject oUserParameters;
3316 123 : oObj.Add("UserParameters", oUserParameters);
3317 :
3318 123 : oUserParameters.Add("_type", "group");
3319 123 : if (!m_osFromFilename.empty())
3320 : {
3321 32 : const CPLString osFromFilename = CPLGetFilename(m_osFromFilename);
3322 32 : oUserParameters.Add("FROM", osFromFilename);
3323 : }
3324 123 : if (nullptr != GetDescription())
3325 : {
3326 123 : const CPLString osToFileName = CPLGetFilename(GetDescription());
3327 123 : oUserParameters.Add("TO", osToFileName);
3328 : }
3329 123 : if (m_bForce360)
3330 1 : oUserParameters.Add("Force_360", "true");
3331 :
3332 123 : osHistory += SerializeAsPDL(oHistoryObj);
3333 : }
3334 :
3335 126 : m_osHistory = std::move(osHistory);
3336 126 : }
3337 :
3338 : /************************************************************************/
3339 : /* WriteLabel() */
3340 : /************************************************************************/
3341 :
3342 125 : void ISIS3Dataset::WriteLabel()
3343 : {
3344 125 : m_bIsLabelWritten = true;
3345 :
3346 125 : if (!m_oJSonLabel.IsValid())
3347 125 : BuildLabel();
3348 :
3349 : // Serialize label
3350 250 : CPLString osLabel(SerializeAsPDL(m_oJSonLabel));
3351 125 : osLabel += "End\n";
3352 125 : if (m_osExternalFilename.empty() && osLabel.size() < 65536)
3353 : {
3354 : // In-line labels have conventionally a minimize size of 65536 bytes
3355 : // See #2741
3356 94 : osLabel.resize(65536);
3357 : }
3358 125 : char *pszLabel = &osLabel[0];
3359 125 : const int nLabelSize = static_cast<int>(osLabel.size());
3360 :
3361 : // Hack back StartByte value
3362 : {
3363 125 : char *pszStartByte = strstr(pszLabel, pszSTARTBYTE_PLACEHOLDER);
3364 125 : if (pszStartByte != nullptr)
3365 : {
3366 94 : const char *pszOffset = CPLSPrintf("%d", 1 + nLabelSize);
3367 94 : memcpy(pszStartByte, pszOffset, strlen(pszOffset));
3368 94 : memset(pszStartByte + strlen(pszOffset), ' ',
3369 94 : strlen(pszSTARTBYTE_PLACEHOLDER) - strlen(pszOffset));
3370 : }
3371 : }
3372 :
3373 : // Hack back Label.Bytes value
3374 : {
3375 125 : char *pszLabelBytes = strstr(pszLabel, pszLABEL_BYTES_PLACEHOLDER);
3376 125 : if (pszLabelBytes != nullptr)
3377 : {
3378 125 : const char *pszBytes = CPLSPrintf("%d", nLabelSize);
3379 125 : memcpy(pszLabelBytes, pszBytes, strlen(pszBytes));
3380 125 : memset(pszLabelBytes + strlen(pszBytes), ' ',
3381 125 : strlen(pszLABEL_BYTES_PLACEHOLDER) - strlen(pszBytes));
3382 : }
3383 : }
3384 :
3385 125 : const GDALDataType eType = GetRasterBand(1)->GetRasterDataType();
3386 125 : const int nDTSize = GDALGetDataTypeSizeBytes(eType);
3387 125 : vsi_l_offset nImagePixels = 0;
3388 125 : if (m_poExternalDS == nullptr)
3389 : {
3390 107 : if (m_bIsTiled)
3391 : {
3392 7 : int nBlockXSize = 1, nBlockYSize = 1;
3393 7 : GetRasterBand(1)->GetBlockSize(&nBlockXSize, &nBlockYSize);
3394 7 : nImagePixels = static_cast<vsi_l_offset>(nBlockXSize) *
3395 14 : nBlockYSize * nBands *
3396 7 : DIV_ROUND_UP(nRasterXSize, nBlockXSize) *
3397 7 : DIV_ROUND_UP(nRasterYSize, nBlockYSize);
3398 : }
3399 : else
3400 : {
3401 100 : nImagePixels =
3402 100 : static_cast<vsi_l_offset>(nRasterXSize) * nRasterYSize * nBands;
3403 : }
3404 : }
3405 :
3406 : // Hack back History.StartBytes value
3407 : char *pszHistoryStartBytes =
3408 125 : strstr(pszLabel, pszHISTORY_STARTBYTE_PLACEHOLDER);
3409 :
3410 125 : vsi_l_offset nHistoryOffset = 0;
3411 125 : vsi_l_offset nLastOffset = 0;
3412 125 : if (pszHistoryStartBytes != nullptr)
3413 : {
3414 93 : CPLAssert(m_osExternalFilename.empty());
3415 93 : nHistoryOffset = nLabelSize + nImagePixels * nDTSize;
3416 93 : nLastOffset = nHistoryOffset + m_osHistory.size();
3417 : const char *pszStartByte =
3418 93 : CPLSPrintf(CPL_FRMT_GUIB, nHistoryOffset + 1);
3419 93 : CPLAssert(strlen(pszStartByte) <
3420 : strlen(pszHISTORY_STARTBYTE_PLACEHOLDER));
3421 93 : memcpy(pszHistoryStartBytes, pszStartByte, strlen(pszStartByte));
3422 93 : memset(pszHistoryStartBytes + strlen(pszStartByte), ' ',
3423 93 : strlen(pszHISTORY_STARTBYTE_PLACEHOLDER) - strlen(pszStartByte));
3424 : }
3425 :
3426 : // Replace placeholders in other sections
3427 130 : for (size_t i = 0; i < m_aoNonPixelSections.size(); ++i)
3428 : {
3429 5 : if (!m_aoNonPixelSections[i].osPlaceHolder.empty())
3430 : {
3431 : char *pszPlaceHolder =
3432 3 : strstr(pszLabel, m_aoNonPixelSections[i].osPlaceHolder.c_str());
3433 3 : CPLAssert(pszPlaceHolder != nullptr);
3434 : const char *pszStartByte =
3435 3 : CPLSPrintf(CPL_FRMT_GUIB, nLastOffset + 1);
3436 3 : nLastOffset += m_aoNonPixelSections[i].nSize;
3437 3 : CPLAssert(strlen(pszStartByte) <
3438 : m_aoNonPixelSections[i].osPlaceHolder.size());
3439 :
3440 3 : memcpy(pszPlaceHolder, pszStartByte, strlen(pszStartByte));
3441 3 : memset(pszPlaceHolder + strlen(pszStartByte), ' ',
3442 3 : m_aoNonPixelSections[i].osPlaceHolder.size() -
3443 3 : strlen(pszStartByte));
3444 : }
3445 : }
3446 :
3447 : // Write to final file
3448 125 : VSIFSeekL(m_fpLabel, 0, SEEK_SET);
3449 125 : VSIFWriteL(pszLabel, 1, osLabel.size(), m_fpLabel);
3450 :
3451 125 : if (m_osExternalFilename.empty())
3452 : {
3453 : // Update image offset in bands
3454 94 : if (m_bIsTiled)
3455 : {
3456 15 : for (int i = 0; i < nBands; i++)
3457 : {
3458 : ISISTiledBand *poBand =
3459 9 : reinterpret_cast<ISISTiledBand *>(GetRasterBand(i + 1));
3460 9 : poBand->m_nFirstTileOffset += nLabelSize;
3461 : }
3462 : }
3463 : else
3464 : {
3465 206 : for (int i = 0; i < nBands; i++)
3466 : {
3467 : ISIS3RawRasterBand *poBand =
3468 : reinterpret_cast<ISIS3RawRasterBand *>(
3469 118 : GetRasterBand(i + 1));
3470 118 : poBand->nImgOffset += nLabelSize;
3471 : }
3472 : }
3473 : }
3474 :
3475 125 : if (m_bInitToNodata)
3476 : {
3477 : // Initialize the image to nodata
3478 55 : const double dfNoData = GetRasterBand(1)->GetNoDataValue();
3479 55 : if (dfNoData == 0.0)
3480 : {
3481 43 : VSIFTruncateL(m_fpImage,
3482 43 : VSIFTellL(m_fpImage) + nImagePixels * nDTSize);
3483 : }
3484 12 : else if (nDTSize != 0) // to make Coverity not warn about div by 0
3485 : {
3486 12 : const int nPageSize = 4096; // Must be multiple of 4 since
3487 : // Float32 is the largest type
3488 12 : CPLAssert((nPageSize % nDTSize) == 0);
3489 12 : const int nMaxPerPage = nPageSize / nDTSize;
3490 12 : GByte *pabyTemp = static_cast<GByte *>(CPLMalloc(nPageSize));
3491 12 : GDALCopyWords(&dfNoData, GDT_Float64, 0, pabyTemp, eType, nDTSize,
3492 : nMaxPerPage);
3493 : #ifdef CPL_MSB
3494 : GDALSwapWords(pabyTemp, nDTSize, nMaxPerPage, nDTSize);
3495 : #endif
3496 80 : for (vsi_l_offset i = 0; i < nImagePixels; i += nMaxPerPage)
3497 : {
3498 : int n;
3499 68 : if (i + nMaxPerPage <= nImagePixels)
3500 56 : n = nMaxPerPage;
3501 : else
3502 12 : n = static_cast<int>(nImagePixels - i);
3503 68 : if (VSIFWriteL(pabyTemp, static_cast<size_t>(n) * nDTSize, 1,
3504 68 : m_fpImage) != 1)
3505 : {
3506 0 : CPLError(CE_Failure, CPLE_FileIO,
3507 : "Cannot initialize imagery to null");
3508 0 : break;
3509 : }
3510 : }
3511 :
3512 12 : CPLFree(pabyTemp);
3513 : }
3514 : }
3515 :
3516 : // Write history
3517 125 : if (!m_osHistory.empty())
3518 : {
3519 123 : if (m_osExternalFilename.empty())
3520 : {
3521 93 : VSIFSeekL(m_fpLabel, nHistoryOffset, SEEK_SET);
3522 93 : VSIFWriteL(m_osHistory.c_str(), 1, m_osHistory.size(), m_fpLabel);
3523 : }
3524 : else
3525 : {
3526 60 : CPLString osFilename(CPLGetBasenameSafe(GetDescription()));
3527 30 : osFilename += ".History.IsisCube";
3528 60 : osFilename = CPLFormFilenameSafe(
3529 60 : CPLGetPathSafe(GetDescription()).c_str(), osFilename, nullptr);
3530 30 : VSILFILE *fp = VSIFOpenL(osFilename, "wb");
3531 30 : if (fp)
3532 : {
3533 30 : m_aosAdditionalFiles.AddString(osFilename);
3534 :
3535 30 : VSIFWriteL(m_osHistory.c_str(), 1, m_osHistory.size(), fp);
3536 30 : VSIFCloseL(fp);
3537 : }
3538 : else
3539 : {
3540 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot write %s",
3541 : osFilename.c_str());
3542 : }
3543 : }
3544 : }
3545 :
3546 : // Write other non pixel sections
3547 130 : for (size_t i = 0; i < m_aoNonPixelSections.size(); ++i)
3548 : {
3549 : VSILFILE *fpSrc =
3550 5 : VSIFOpenL(m_aoNonPixelSections[i].osSrcFilename, "rb");
3551 5 : if (fpSrc == nullptr)
3552 : {
3553 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot open %s",
3554 0 : m_aoNonPixelSections[i].osSrcFilename.c_str());
3555 0 : continue;
3556 : }
3557 :
3558 5 : VSILFILE *fpDest = m_fpLabel;
3559 5 : if (!m_aoNonPixelSections[i].osDstFilename.empty())
3560 : {
3561 2 : fpDest = VSIFOpenL(m_aoNonPixelSections[i].osDstFilename, "wb");
3562 2 : if (fpDest == nullptr)
3563 : {
3564 0 : CPLError(CE_Warning, CPLE_FileIO, "Cannot create %s",
3565 0 : m_aoNonPixelSections[i].osDstFilename.c_str());
3566 0 : VSIFCloseL(fpSrc);
3567 0 : continue;
3568 : }
3569 :
3570 : m_aosAdditionalFiles.AddString(
3571 2 : m_aoNonPixelSections[i].osDstFilename);
3572 : }
3573 :
3574 5 : VSIFSeekL(fpSrc, m_aoNonPixelSections[i].nSrcOffset, SEEK_SET);
3575 : GByte abyBuffer[4096];
3576 5 : vsi_l_offset nRemaining = m_aoNonPixelSections[i].nSize;
3577 10 : while (nRemaining)
3578 : {
3579 5 : size_t nToRead = 4096;
3580 5 : if (nRemaining < nToRead)
3581 5 : nToRead = static_cast<size_t>(nRemaining);
3582 5 : size_t nRead = VSIFReadL(abyBuffer, 1, nToRead, fpSrc);
3583 5 : if (nRead != nToRead)
3584 : {
3585 0 : CPLError(CE_Warning, CPLE_FileIO,
3586 : "Could not read " CPL_FRMT_GUIB " bytes from %s",
3587 0 : m_aoNonPixelSections[i].nSize,
3588 0 : m_aoNonPixelSections[i].osSrcFilename.c_str());
3589 0 : break;
3590 : }
3591 5 : VSIFWriteL(abyBuffer, 1, nRead, fpDest);
3592 5 : nRemaining -= nRead;
3593 : }
3594 :
3595 5 : VSIFCloseL(fpSrc);
3596 5 : if (fpDest != m_fpLabel)
3597 2 : VSIFCloseL(fpDest);
3598 : }
3599 125 : }
3600 :
3601 : /************************************************************************/
3602 : /* SerializeAsPDL() */
3603 : /************************************************************************/
3604 :
3605 248 : CPLString ISIS3Dataset::SerializeAsPDL(const CPLJSONObject &oObj)
3606 : {
3607 496 : const CPLString osTmpFile(VSIMemGenerateHiddenFilename("isis3_pdl"));
3608 248 : VSILFILE *fpTmp = VSIFOpenL(osTmpFile, "wb+");
3609 248 : SerializeAsPDL(fpTmp, oObj);
3610 248 : VSIFCloseL(fpTmp);
3611 : CPLString osContent(reinterpret_cast<char *>(
3612 248 : VSIGetMemFileBuffer(osTmpFile, nullptr, FALSE)));
3613 248 : VSIUnlink(osTmpFile);
3614 496 : return osContent;
3615 : }
3616 :
3617 : /************************************************************************/
3618 : /* SerializeAsPDL() */
3619 : /************************************************************************/
3620 :
3621 1329 : void ISIS3Dataset::SerializeAsPDL(VSILFILE *fp, const CPLJSONObject &oObj,
3622 : int nDepth)
3623 : {
3624 2658 : CPLString osIndentation;
3625 3235 : for (int i = 0; i < nDepth; i++)
3626 1906 : osIndentation += " ";
3627 1329 : const size_t WIDTH = 79;
3628 :
3629 2658 : std::vector<CPLJSONObject> aoChildren = oObj.GetChildren();
3630 1329 : size_t nMaxKeyLength = 0;
3631 7175 : for (const CPLJSONObject &oChild : aoChildren)
3632 : {
3633 5846 : const CPLString osKey = oChild.GetName();
3634 10602 : if (EQUAL(osKey, "_type") || EQUAL(osKey, "_container_name") ||
3635 4756 : EQUAL(osKey, "_filename"))
3636 : {
3637 1109 : continue;
3638 : }
3639 :
3640 4737 : const auto eType = oChild.GetType();
3641 4737 : if (eType == CPLJSONObject::Type::String ||
3642 2140 : eType == CPLJSONObject::Type::Integer ||
3643 1385 : eType == CPLJSONObject::Type::Double ||
3644 : eType == CPLJSONObject::Type::Array)
3645 : {
3646 3361 : if (osKey.size() > nMaxKeyLength)
3647 : {
3648 1597 : nMaxKeyLength = osKey.size();
3649 : }
3650 : }
3651 1376 : else if (eType == CPLJSONObject::Type::Object)
3652 : {
3653 4128 : CPLJSONObject oValue = oChild.GetObj("value");
3654 4128 : CPLJSONObject oUnit = oChild.GetObj("unit");
3655 1607 : if (oValue.IsValid() &&
3656 231 : oUnit.GetType() == CPLJSONObject::Type::String)
3657 : {
3658 231 : if (osKey.size() > nMaxKeyLength)
3659 : {
3660 61 : nMaxKeyLength = osKey.size();
3661 : }
3662 : }
3663 : }
3664 : }
3665 :
3666 7175 : for (const CPLJSONObject &oChild : aoChildren)
3667 : {
3668 5846 : const CPLString osKey = oChild.GetName();
3669 10602 : if (EQUAL(osKey, "_type") || EQUAL(osKey, "_container_name") ||
3670 4756 : EQUAL(osKey, "_filename"))
3671 : {
3672 1109 : continue;
3673 : }
3674 4737 : if (STARTS_WITH(osKey, "_comment"))
3675 : {
3676 1 : if (oChild.GetType() == CPLJSONObject::Type::String)
3677 : {
3678 1 : VSIFPrintfL(fp, "#%s\n", oChild.ToString().c_str());
3679 : }
3680 1 : continue;
3681 : }
3682 9472 : CPLString osPadding;
3683 4736 : size_t nLen = osKey.size();
3684 4736 : if (nLen < nMaxKeyLength)
3685 : {
3686 2894 : osPadding.append(nMaxKeyLength - nLen, ' ');
3687 : }
3688 :
3689 4736 : const auto eType = oChild.GetType();
3690 4736 : if (eType == CPLJSONObject::Type::Object)
3691 : {
3692 4128 : CPLJSONObject oType = oChild.GetObj("_type");
3693 4128 : CPLJSONObject oContainerName = oChild.GetObj("_container_name");
3694 2752 : CPLString osContainerName = osKey;
3695 1376 : if (oContainerName.GetType() == CPLJSONObject::Type::String)
3696 : {
3697 9 : osContainerName = oContainerName.ToString();
3698 : }
3699 1376 : if (oType.GetType() == CPLJSONObject::Type::String)
3700 : {
3701 3243 : const CPLString osType = oType.ToString();
3702 1081 : if (EQUAL(osType, "Object"))
3703 : {
3704 631 : if (nDepth == 0 && VSIFTellL(fp) != 0)
3705 258 : VSIFPrintfL(fp, "\n");
3706 631 : VSIFPrintfL(fp, "%sObject = %s\n", osIndentation.c_str(),
3707 : osContainerName.c_str());
3708 631 : SerializeAsPDL(fp, oChild, nDepth + 1);
3709 631 : VSIFPrintfL(fp, "%sEnd_Object\n", osIndentation.c_str());
3710 : }
3711 450 : else if (EQUAL(osType, "Group"))
3712 : {
3713 450 : VSIFPrintfL(fp, "\n");
3714 450 : VSIFPrintfL(fp, "%sGroup = %s\n", osIndentation.c_str(),
3715 : osContainerName.c_str());
3716 450 : SerializeAsPDL(fp, oChild, nDepth + 1);
3717 450 : VSIFPrintfL(fp, "%sEnd_Group\n", osIndentation.c_str());
3718 : }
3719 : }
3720 : else
3721 : {
3722 885 : CPLJSONObject oValue = oChild.GetObj("value");
3723 885 : CPLJSONObject oUnit = oChild.GetObj("unit");
3724 526 : if (oValue.IsValid() &&
3725 231 : oUnit.GetType() == CPLJSONObject::Type::String)
3726 : {
3727 693 : const CPLString osUnit = oUnit.ToString();
3728 231 : const auto eValueType = oValue.GetType();
3729 231 : if (eValueType == CPLJSONObject::Type::Integer)
3730 : {
3731 1 : VSIFPrintfL(fp, "%s%s%s = %d <%s>\n",
3732 : osIndentation.c_str(), osKey.c_str(),
3733 : osPadding.c_str(), oValue.ToInteger(),
3734 : osUnit.c_str());
3735 : }
3736 230 : else if (eValueType == CPLJSONObject::Type::Double)
3737 : {
3738 229 : const double dfVal = oValue.ToDouble();
3739 229 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3740 229 : static_cast<int>(dfVal) == dfVal)
3741 : {
3742 87 : VSIFPrintfL(fp, "%s%s%s = %d.0 <%s>\n",
3743 : osIndentation.c_str(), osKey.c_str(),
3744 : osPadding.c_str(),
3745 : static_cast<int>(dfVal),
3746 : osUnit.c_str());
3747 : }
3748 : else
3749 : {
3750 142 : VSIFPrintfL(fp, "%s%s%s = %.17g <%s>\n",
3751 : osIndentation.c_str(), osKey.c_str(),
3752 : osPadding.c_str(), dfVal,
3753 : osUnit.c_str());
3754 : }
3755 : }
3756 : }
3757 : }
3758 : }
3759 3360 : else if (eType == CPLJSONObject::Type::String)
3760 : {
3761 5811 : CPLString osVal = oChild.ToString();
3762 1937 : const char *pszVal = osVal.c_str();
3763 1937 : if (pszVal[0] == '\0' || strchr(pszVal, ' ') ||
3764 1809 : strstr(pszVal, "\\n") || strstr(pszVal, "\\r"))
3765 : {
3766 128 : osVal.replaceAll("\\n", "\n");
3767 128 : osVal.replaceAll("\\r", "\r");
3768 128 : VSIFPrintfL(fp, "%s%s%s = \"%s\"\n", osIndentation.c_str(),
3769 : osKey.c_str(), osPadding.c_str(), osVal.c_str());
3770 : }
3771 : else
3772 : {
3773 1809 : if (osIndentation.size() + osKey.size() + osPadding.size() +
3774 1809 : strlen(" = ") + strlen(pszVal) >
3775 1810 : WIDTH &&
3776 1 : osIndentation.size() + osKey.size() + osPadding.size() +
3777 : strlen(" = ") <
3778 : WIDTH)
3779 : {
3780 1 : size_t nFirstPos = osIndentation.size() + osKey.size() +
3781 1 : osPadding.size() + strlen(" = ");
3782 1 : VSIFPrintfL(fp, "%s%s%s = ", osIndentation.c_str(),
3783 : osKey.c_str(), osPadding.c_str());
3784 1 : size_t nCurPos = nFirstPos;
3785 96 : for (int j = 0; pszVal[j] != '\0'; j++)
3786 : {
3787 95 : nCurPos++;
3788 95 : if (nCurPos == WIDTH && pszVal[j + 1] != '\0')
3789 : {
3790 1 : VSIFPrintfL(fp, "-\n");
3791 15 : for (size_t k = 0; k < nFirstPos; k++)
3792 : {
3793 14 : const char chSpace = ' ';
3794 14 : VSIFWriteL(&chSpace, 1, 1, fp);
3795 : }
3796 1 : nCurPos = nFirstPos + 1;
3797 : }
3798 95 : VSIFWriteL(&pszVal[j], 1, 1, fp);
3799 : }
3800 1 : VSIFPrintfL(fp, "\n");
3801 : }
3802 : else
3803 : {
3804 1808 : VSIFPrintfL(fp, "%s%s%s = %s\n", osIndentation.c_str(),
3805 : osKey.c_str(), osPadding.c_str(), pszVal);
3806 : }
3807 : }
3808 : }
3809 1423 : else if (eType == CPLJSONObject::Type::Integer)
3810 : {
3811 659 : const int nVal = oChild.ToInteger();
3812 659 : VSIFPrintfL(fp, "%s%s%s = %d\n", osIndentation.c_str(),
3813 : osKey.c_str(), osPadding.c_str(), nVal);
3814 : }
3815 764 : else if (eType == CPLJSONObject::Type::Double)
3816 : {
3817 755 : const double dfVal = oChild.ToDouble();
3818 755 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3819 755 : static_cast<int>(dfVal) == dfVal)
3820 : {
3821 526 : VSIFPrintfL(fp, "%s%s%s = %d.0\n", osIndentation.c_str(),
3822 : osKey.c_str(), osPadding.c_str(),
3823 : static_cast<int>(dfVal));
3824 : }
3825 : else
3826 : {
3827 229 : VSIFPrintfL(fp, "%s%s%s = %.17g\n", osIndentation.c_str(),
3828 : osKey.c_str(), osPadding.c_str(), dfVal);
3829 : }
3830 : }
3831 9 : else if (eType == CPLJSONObject::Type::Array)
3832 : {
3833 18 : CPLJSONArray oArrayItem(oChild);
3834 9 : const int nLength = oArrayItem.Size();
3835 9 : size_t nFirstPos = osIndentation.size() + osKey.size() +
3836 9 : osPadding.size() + strlen(" = (");
3837 9 : VSIFPrintfL(fp, "%s%s%s = (", osIndentation.c_str(), osKey.c_str(),
3838 : osPadding.c_str());
3839 9 : size_t nCurPos = nFirstPos;
3840 46 : for (int idx = 0; idx < nLength; idx++)
3841 : {
3842 74 : CPLJSONObject oItem = oArrayItem[idx];
3843 37 : const auto eArrayItemType = oItem.GetType();
3844 37 : if (eArrayItemType == CPLJSONObject::Type::String)
3845 : {
3846 36 : CPLString osVal = oItem.ToString();
3847 12 : const char *pszVal = osVal.c_str();
3848 12 : if (pszVal[0] == '\0' || strchr(pszVal, ' ') ||
3849 7 : strstr(pszVal, "\\n") || strstr(pszVal, "\\r"))
3850 : {
3851 5 : osVal.replaceAll("\\n", "\n");
3852 5 : osVal.replaceAll("\\r", "\r");
3853 5 : VSIFPrintfL(fp, "\"%s\"", osVal.c_str());
3854 : }
3855 7 : else if (nFirstPos < WIDTH &&
3856 7 : nCurPos + strlen(pszVal) > WIDTH)
3857 : {
3858 1 : if (idx > 0)
3859 : {
3860 1 : VSIFPrintfL(fp, "\n");
3861 16 : for (size_t j = 0; j < nFirstPos; j++)
3862 : {
3863 15 : const char chSpace = ' ';
3864 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3865 : }
3866 1 : nCurPos = nFirstPos;
3867 : }
3868 :
3869 102 : for (int j = 0; pszVal[j] != '\0'; j++)
3870 : {
3871 101 : nCurPos++;
3872 101 : if (nCurPos == WIDTH && pszVal[j + 1] != '\0')
3873 : {
3874 1 : VSIFPrintfL(fp, "-\n");
3875 16 : for (size_t k = 0; k < nFirstPos; k++)
3876 : {
3877 15 : const char chSpace = ' ';
3878 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3879 : }
3880 1 : nCurPos = nFirstPos + 1;
3881 : }
3882 101 : VSIFWriteL(&pszVal[j], 1, 1, fp);
3883 1 : }
3884 : }
3885 : else
3886 : {
3887 6 : VSIFPrintfL(fp, "%s", pszVal);
3888 6 : nCurPos += strlen(pszVal);
3889 : }
3890 : }
3891 25 : else if (eArrayItemType == CPLJSONObject::Type::Integer)
3892 : {
3893 16 : const int nVal = oItem.ToInteger();
3894 16 : const char *pszVal = CPLSPrintf("%d", nVal);
3895 16 : const size_t nValLen = strlen(pszVal);
3896 16 : if (nFirstPos < WIDTH && idx > 0 &&
3897 12 : nCurPos + nValLen > WIDTH)
3898 : {
3899 1 : VSIFPrintfL(fp, "\n");
3900 16 : for (size_t j = 0; j < nFirstPos; j++)
3901 : {
3902 15 : const char chSpace = ' ';
3903 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3904 : }
3905 1 : nCurPos = nFirstPos;
3906 : }
3907 16 : VSIFPrintfL(fp, "%d", nVal);
3908 16 : nCurPos += nValLen;
3909 : }
3910 9 : else if (eArrayItemType == CPLJSONObject::Type::Double)
3911 : {
3912 9 : const double dfVal = oItem.ToDouble();
3913 9 : CPLString osVal;
3914 9 : if (dfVal >= INT_MIN && dfVal <= INT_MAX &&
3915 9 : static_cast<int>(dfVal) == dfVal)
3916 : {
3917 8 : osVal = CPLSPrintf("%d.0", static_cast<int>(dfVal));
3918 : }
3919 : else
3920 : {
3921 1 : osVal = CPLSPrintf("%.17g", dfVal);
3922 : }
3923 9 : const size_t nValLen = osVal.size();
3924 9 : if (nFirstPos < WIDTH && idx > 0 &&
3925 8 : nCurPos + nValLen > WIDTH)
3926 : {
3927 1 : VSIFPrintfL(fp, "\n");
3928 16 : for (size_t j = 0; j < nFirstPos; j++)
3929 : {
3930 15 : const char chSpace = ' ';
3931 15 : VSIFWriteL(&chSpace, 1, 1, fp);
3932 : }
3933 1 : nCurPos = nFirstPos;
3934 : }
3935 9 : VSIFPrintfL(fp, "%s", osVal.c_str());
3936 9 : nCurPos += nValLen;
3937 : }
3938 37 : if (idx < nLength - 1)
3939 : {
3940 28 : VSIFPrintfL(fp, ", ");
3941 28 : nCurPos += 2;
3942 : }
3943 : }
3944 9 : VSIFPrintfL(fp, ")\n");
3945 : }
3946 : }
3947 1329 : }
3948 :
3949 : /************************************************************************/
3950 : /* Create() */
3951 : /************************************************************************/
3952 :
3953 159 : GDALDataset *ISIS3Dataset::Create(const char *pszFilename, int nXSize,
3954 : int nYSize, int nBandsIn, GDALDataType eType,
3955 : char **papszOptions)
3956 : {
3957 159 : if (eType != GDT_Byte && eType != GDT_UInt16 && eType != GDT_Int16 &&
3958 : eType != GDT_Float32)
3959 : {
3960 27 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported data type");
3961 27 : return nullptr;
3962 : }
3963 132 : if (nBandsIn == 0 || nBandsIn > 32767)
3964 : {
3965 1 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported band count");
3966 1 : return nullptr;
3967 : }
3968 :
3969 : const char *pszDataLocation =
3970 131 : CSLFetchNameValueDef(papszOptions, "DATA_LOCATION", "LABEL");
3971 131 : const bool bIsTiled = CPLFetchBool(papszOptions, "TILED", false);
3972 : const int nBlockXSize = std::max(
3973 131 : 1, atoi(CSLFetchNameValueDef(papszOptions, "BLOCKXSIZE", "256")));
3974 : const int nBlockYSize = std::max(
3975 131 : 1, atoi(CSLFetchNameValueDef(papszOptions, "BLOCKYSIZE", "256")));
3976 165 : if (!EQUAL(pszDataLocation, "LABEL") &&
3977 165 : !EQUAL(CPLGetExtensionSafe(pszFilename).c_str(), "LBL"))
3978 : {
3979 1 : CPLError(CE_Failure, CPLE_NotSupported,
3980 : "For DATA_LOCATION=%s, "
3981 : "the main filename should have a .lbl extension",
3982 : pszDataLocation);
3983 1 : return nullptr;
3984 : }
3985 :
3986 : const char *pszPermission =
3987 130 : VSISupportsRandomWrite(pszFilename, true) ? "wb+" : "wb";
3988 :
3989 130 : VSILFILE *fp = VSIFOpenExL(pszFilename, pszPermission, true);
3990 130 : if (fp == nullptr)
3991 : {
3992 3 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s: %s", pszFilename,
3993 : VSIGetLastErrorMsg());
3994 3 : return nullptr;
3995 : }
3996 127 : VSILFILE *fpImage = nullptr;
3997 254 : std::string osExternalFilename;
3998 127 : GDALDataset *poExternalDS = nullptr;
3999 127 : bool bGeoTIFFAsRegularExternal = false;
4000 127 : if (EQUAL(pszDataLocation, "EXTERNAL"))
4001 : {
4002 : osExternalFilename = CSLFetchNameValueDef(
4003 : papszOptions, "EXTERNAL_FILENAME",
4004 14 : CPLResetExtensionSafe(pszFilename, "cub").c_str());
4005 14 : fpImage = VSIFOpenExL(osExternalFilename.c_str(), pszPermission, true);
4006 14 : if (fpImage == nullptr)
4007 : {
4008 1 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s: %s",
4009 : osExternalFilename.c_str(), VSIGetLastErrorMsg());
4010 1 : VSIFCloseL(fp);
4011 1 : return nullptr;
4012 : }
4013 : }
4014 113 : else if (EQUAL(pszDataLocation, "GEOTIFF"))
4015 : {
4016 : osExternalFilename = CSLFetchNameValueDef(
4017 : papszOptions, "EXTERNAL_FILENAME",
4018 19 : CPLResetExtensionSafe(pszFilename, "tif").c_str());
4019 : GDALDriver *poDrv =
4020 19 : static_cast<GDALDriver *>(GDALGetDriverByName("GTiff"));
4021 19 : if (poDrv == nullptr)
4022 : {
4023 0 : CPLError(CE_Failure, CPLE_AppDefined, "Cannot find GTiff driver");
4024 0 : VSIFCloseL(fp);
4025 0 : return nullptr;
4026 : }
4027 19 : char **papszGTiffOptions = nullptr;
4028 : papszGTiffOptions =
4029 19 : CSLSetNameValue(papszGTiffOptions, "ENDIANNESS", "LITTLE");
4030 19 : if (bIsTiled)
4031 : {
4032 : papszGTiffOptions =
4033 3 : CSLSetNameValue(papszGTiffOptions, "TILED", "YES");
4034 3 : papszGTiffOptions = CSLSetNameValue(papszGTiffOptions, "BLOCKXSIZE",
4035 : CPLSPrintf("%d", nBlockXSize));
4036 3 : papszGTiffOptions = CSLSetNameValue(papszGTiffOptions, "BLOCKYSIZE",
4037 : CPLSPrintf("%d", nBlockYSize));
4038 : }
4039 : const char *pszGTiffOptions =
4040 19 : CSLFetchNameValueDef(papszOptions, "GEOTIFF_OPTIONS", "");
4041 19 : char **papszTokens = CSLTokenizeString2(pszGTiffOptions, ",", 0);
4042 28 : for (int i = 0; papszTokens[i] != nullptr; i++)
4043 : {
4044 9 : papszGTiffOptions = CSLAddString(papszGTiffOptions, papszTokens[i]);
4045 : }
4046 19 : CSLDestroy(papszTokens);
4047 :
4048 : // If the user didn't specify any compression and
4049 : // GEOTIFF_AS_REGULAR_EXTERNAL is set (or unspecified), then the
4050 : // GeoTIFF file can be seen as a regular external raw file, provided
4051 : // we make some provision on its organization.
4052 29 : if (CSLFetchNameValue(papszGTiffOptions, "COMPRESS") == nullptr &&
4053 10 : CPLFetchBool(papszOptions, "GEOTIFF_AS_REGULAR_EXTERNAL", true))
4054 : {
4055 9 : bGeoTIFFAsRegularExternal = true;
4056 : papszGTiffOptions =
4057 9 : CSLSetNameValue(papszGTiffOptions, "INTERLEAVE", "BAND");
4058 : // Will make sure that our blocks at nodata are not optimized
4059 : // away but indeed well written
4060 9 : papszGTiffOptions = CSLSetNameValue(
4061 : papszGTiffOptions, "@WRITE_EMPTY_TILES_SYNCHRONOUSLY", "YES");
4062 9 : if (!bIsTiled && nBandsIn > 1)
4063 : {
4064 : papszGTiffOptions =
4065 1 : CSLSetNameValue(papszGTiffOptions, "BLOCKYSIZE", "1");
4066 : }
4067 : }
4068 :
4069 19 : poExternalDS = poDrv->Create(osExternalFilename.c_str(), nXSize, nYSize,
4070 : nBandsIn, eType, papszGTiffOptions);
4071 19 : CSLDestroy(papszGTiffOptions);
4072 19 : if (poExternalDS == nullptr)
4073 : {
4074 1 : CPLError(CE_Failure, CPLE_FileIO, "Cannot create %s",
4075 : osExternalFilename.c_str());
4076 1 : VSIFCloseL(fp);
4077 1 : return nullptr;
4078 : }
4079 : }
4080 :
4081 125 : ISIS3Dataset *poDS = new ISIS3Dataset();
4082 125 : poDS->SetDescription(pszFilename);
4083 125 : poDS->eAccess = GA_Update;
4084 125 : poDS->nRasterXSize = nXSize;
4085 125 : poDS->nRasterYSize = nYSize;
4086 125 : poDS->m_osExternalFilename = std::move(osExternalFilename);
4087 125 : poDS->m_poExternalDS = poExternalDS;
4088 125 : poDS->m_bGeoTIFFAsRegularExternal = bGeoTIFFAsRegularExternal;
4089 125 : if (bGeoTIFFAsRegularExternal)
4090 8 : poDS->m_bGeoTIFFInitDone = false;
4091 125 : poDS->m_fpLabel = fp;
4092 125 : poDS->m_fpImage = fpImage ? fpImage : fp;
4093 125 : poDS->m_bIsLabelWritten = false;
4094 125 : poDS->m_bIsTiled = bIsTiled;
4095 125 : poDS->m_bInitToNodata = (poDS->m_poExternalDS == nullptr);
4096 125 : poDS->m_osComment = CSLFetchNameValueDef(papszOptions, "COMMENT", "");
4097 : poDS->m_osLatitudeType =
4098 125 : CSLFetchNameValueDef(papszOptions, "LATITUDE_TYPE", "");
4099 : poDS->m_osLongitudeDirection =
4100 125 : CSLFetchNameValueDef(papszOptions, "LONGITUDE_DIRECTION", "");
4101 : poDS->m_osTargetName =
4102 125 : CSLFetchNameValueDef(papszOptions, "TARGET_NAME", "");
4103 125 : poDS->m_bForce360 = CPLFetchBool(papszOptions, "FORCE_360", false);
4104 125 : poDS->m_bWriteBoundingDegrees =
4105 125 : CPLFetchBool(papszOptions, "WRITE_BOUNDING_DEGREES", true);
4106 : poDS->m_osBoundingDegrees =
4107 125 : CSLFetchNameValueDef(papszOptions, "BOUNDING_DEGREES", "");
4108 125 : poDS->m_bUseSrcLabel = CPLFetchBool(papszOptions, "USE_SRC_LABEL", true);
4109 125 : poDS->m_bUseSrcMapping =
4110 125 : CPLFetchBool(papszOptions, "USE_SRC_MAPPING", false);
4111 125 : poDS->m_bUseSrcHistory =
4112 125 : CPLFetchBool(papszOptions, "USE_SRC_HISTORY", true);
4113 125 : poDS->m_bAddGDALHistory =
4114 125 : CPLFetchBool(papszOptions, "ADD_GDAL_HISTORY", true);
4115 125 : if (poDS->m_bAddGDALHistory)
4116 : {
4117 : poDS->m_osGDALHistory =
4118 123 : CSLFetchNameValueDef(papszOptions, "GDAL_HISTORY", "");
4119 : }
4120 125 : const double dfNoData = (eType == GDT_Byte) ? ISIS3_NULL1
4121 : : (eType == GDT_UInt16) ? ISIS3_NULLU2
4122 : : (eType == GDT_Int16)
4123 : ? ISIS3_NULL2
4124 : :
4125 : /*(eType == GDT_Float32) ?*/ ISIS3_NULL4;
4126 :
4127 291 : for (int i = 0; i < nBandsIn; i++)
4128 : {
4129 166 : GDALRasterBand *poBand = nullptr;
4130 :
4131 166 : if (poDS->m_poExternalDS != nullptr)
4132 : {
4133 : ISIS3WrapperRasterBand *poISISBand = new ISIS3WrapperRasterBand(
4134 24 : poDS->m_poExternalDS->GetRasterBand(i + 1));
4135 24 : poBand = poISISBand;
4136 : }
4137 142 : else if (bIsTiled)
4138 : {
4139 : ISISTiledBand *poISISBand = new ISISTiledBand(
4140 : poDS, poDS->m_fpImage, i + 1, eType, nBlockXSize, nBlockYSize,
4141 : 0, // nSkipBytes, to be hacked
4142 : // afterwards for in-label imagery
4143 10 : 0, 0, CPL_IS_LSB);
4144 :
4145 10 : poBand = poISISBand;
4146 : }
4147 : else
4148 : {
4149 132 : const int nPixelOffset = GDALGetDataTypeSizeBytes(eType);
4150 132 : const int nLineOffset = nPixelOffset * nXSize;
4151 132 : const vsi_l_offset nBandOffset =
4152 132 : static_cast<vsi_l_offset>(nLineOffset) * nYSize;
4153 : ISIS3RawRasterBand *poISISBand = new ISIS3RawRasterBand(
4154 : poDS, i + 1, poDS->m_fpImage,
4155 132 : nBandOffset * i, // nImgOffset, to be
4156 : // hacked afterwards for in-label imagery
4157 132 : nPixelOffset, nLineOffset, eType, CPL_IS_LSB);
4158 :
4159 132 : poBand = poISISBand;
4160 : }
4161 166 : poDS->SetBand(i + 1, poBand);
4162 166 : poBand->SetNoDataValue(dfNoData);
4163 : }
4164 :
4165 125 : return poDS;
4166 : }
4167 :
4168 : /************************************************************************/
4169 : /* GetUnderlyingDataset() */
4170 : /************************************************************************/
4171 :
4172 73 : static GDALDataset *GetUnderlyingDataset(GDALDataset *poSrcDS)
4173 : {
4174 146 : if (poSrcDS->GetDriver() != nullptr &&
4175 73 : poSrcDS->GetDriver() == GDALGetDriverByName("VRT"))
4176 : {
4177 2 : VRTDataset *poVRTDS = reinterpret_cast<VRTDataset *>(poSrcDS);
4178 2 : poSrcDS = poVRTDS->GetSingleSimpleSource();
4179 : }
4180 :
4181 73 : return poSrcDS;
4182 : }
4183 :
4184 : /************************************************************************/
4185 : /* CreateCopy() */
4186 : /************************************************************************/
4187 :
4188 73 : GDALDataset *ISIS3Dataset::CreateCopy(const char *pszFilename,
4189 : GDALDataset *poSrcDS, int /*bStrict*/,
4190 : char **papszOptions,
4191 : GDALProgressFunc pfnProgress,
4192 : void *pProgressData)
4193 : {
4194 : const char *pszDataLocation =
4195 73 : CSLFetchNameValueDef(papszOptions, "DATA_LOCATION", "LABEL");
4196 73 : GDALDataset *poSrcUnderlyingDS = GetUnderlyingDataset(poSrcDS);
4197 73 : if (poSrcUnderlyingDS == nullptr)
4198 2 : poSrcUnderlyingDS = poSrcDS;
4199 83 : if (EQUAL(pszDataLocation, "GEOTIFF") &&
4200 10 : strcmp(poSrcUnderlyingDS->GetDescription(),
4201 : CSLFetchNameValueDef(
4202 : papszOptions, "EXTERNAL_FILENAME",
4203 83 : CPLResetExtensionSafe(pszFilename, "tif").c_str())) == 0)
4204 : {
4205 1 : CPLError(CE_Failure, CPLE_NotSupported,
4206 : "Output file has same name as input file");
4207 1 : return nullptr;
4208 : }
4209 72 : if (poSrcDS->GetRasterCount() == 0)
4210 : {
4211 1 : CPLError(CE_Failure, CPLE_NotSupported, "Unsupported band count");
4212 1 : return nullptr;
4213 : }
4214 :
4215 71 : const int nXSize = poSrcDS->GetRasterXSize();
4216 71 : const int nYSize = poSrcDS->GetRasterYSize();
4217 71 : const int nBands = poSrcDS->GetRasterCount();
4218 71 : GDALDataType eType = poSrcDS->GetRasterBand(1)->GetRasterDataType();
4219 : ISIS3Dataset *poDS = reinterpret_cast<ISIS3Dataset *>(
4220 71 : Create(pszFilename, nXSize, nYSize, nBands, eType, papszOptions));
4221 71 : if (poDS == nullptr)
4222 10 : return nullptr;
4223 61 : poDS->m_osFromFilename = poSrcUnderlyingDS->GetDescription();
4224 :
4225 61 : double adfGeoTransform[6] = {0.0};
4226 104 : if (poSrcDS->GetGeoTransform(adfGeoTransform) == CE_None &&
4227 43 : (adfGeoTransform[0] != 0.0 || adfGeoTransform[1] != 1.0 ||
4228 6 : adfGeoTransform[2] != 0.0 || adfGeoTransform[3] != 0.0 ||
4229 6 : adfGeoTransform[4] != 0.0 || adfGeoTransform[5] != 1.0))
4230 : {
4231 37 : poDS->SetGeoTransform(adfGeoTransform);
4232 : }
4233 :
4234 61 : auto poSrcSRS = poSrcDS->GetSpatialRef();
4235 61 : if (poSrcSRS)
4236 : {
4237 37 : poDS->SetSpatialRef(poSrcSRS);
4238 : }
4239 :
4240 147 : for (int i = 1; i <= nBands; i++)
4241 : {
4242 86 : const double dfOffset = poSrcDS->GetRasterBand(i)->GetOffset();
4243 86 : if (dfOffset != 0.0)
4244 1 : poDS->GetRasterBand(i)->SetOffset(dfOffset);
4245 :
4246 86 : const double dfScale = poSrcDS->GetRasterBand(i)->GetScale();
4247 86 : if (dfScale != 1.0)
4248 1 : poDS->GetRasterBand(i)->SetScale(dfScale);
4249 : }
4250 :
4251 : // Do we need to remap nodata ?
4252 61 : int bHasNoData = FALSE;
4253 61 : poDS->m_dfSrcNoData =
4254 61 : poSrcDS->GetRasterBand(1)->GetNoDataValue(&bHasNoData);
4255 61 : poDS->m_bHasSrcNoData = CPL_TO_BOOL(bHasNoData);
4256 :
4257 61 : if (poDS->m_bUseSrcLabel)
4258 : {
4259 53 : char **papszMD_ISIS3 = poSrcDS->GetMetadata("json:ISIS3");
4260 53 : if (papszMD_ISIS3 != nullptr)
4261 : {
4262 18 : poDS->SetMetadata(papszMD_ISIS3, "json:ISIS3");
4263 : }
4264 : }
4265 :
4266 : // We don't need to initialize the imagery as we are going to copy it
4267 : // completely
4268 61 : poDS->m_bInitToNodata = false;
4269 61 : CPLErr eErr = GDALDatasetCopyWholeRaster(poSrcDS, poDS, nullptr,
4270 : pfnProgress, pProgressData);
4271 61 : poDS->FlushCache(false);
4272 61 : poDS->m_bHasSrcNoData = false;
4273 61 : if (eErr != CE_None)
4274 : {
4275 11 : delete poDS;
4276 11 : return nullptr;
4277 : }
4278 :
4279 50 : return poDS;
4280 : }
4281 :
4282 : /************************************************************************/
4283 : /* GDALRegister_ISIS3() */
4284 : /************************************************************************/
4285 :
4286 1682 : void GDALRegister_ISIS3()
4287 :
4288 : {
4289 1682 : if (GDALGetDriverByName(ISIS3_DRIVER_NAME) != nullptr)
4290 301 : return;
4291 :
4292 1381 : GDALDriver *poDriver = new GDALDriver();
4293 1381 : ISIS3DriverSetCommonMetadata(poDriver);
4294 :
4295 1381 : poDriver->pfnOpen = ISIS3Dataset::Open;
4296 1381 : poDriver->pfnCreate = ISIS3Dataset::Create;
4297 1381 : poDriver->pfnCreateCopy = ISIS3Dataset::CreateCopy;
4298 :
4299 1381 : GetGDALDriverManager()->RegisterDriver(poDriver);
4300 : }
|