File failed to load: https://isis.astrogeology.usgs.gov/6.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
Cube.h
1 #ifndef Cube_h
2 #define Cube_h
3 
8 /* SPDX-License-Identifier: CC0-1.0 */
9 
10 #include <vector>
11 
12 // This is needed for the QVariant macro
13 #include <QMetaType>
14 #include <QList>
15 #include <QMap>
16 
17 #include <nlohmann/json.hpp>
18 
19 #include "Endian.h"
20 #include "PixelType.h"
21 #include "PvlKeyword.h"
22 
23 class QFile;
24 class QMutex;
25 class QString;
26 
27 namespace Isis {
28  class Blob;
29  class Buffer;
30  class Camera;
31  class CubeAttributeOutput;
32  class CubeCachingAlgorithm;
33  class CubeIoHandler;
34  class CubeStretch;
35  class FileName;
36  class Projection;
37  class Pvl;
38  class PvlGroup;
39  class Statistics;
40  class Table;
41  class Histogram;
42  class History;
43  class OriginalLabel;
44  class OriginalXmlLabel;
45  class ImagePolygon;
46 
47 
167  class Cube {
168  public:
169  Cube();
170  Cube(const FileName &fileName, QString access = "r");
171 
172  virtual ~Cube();
173 
178  enum Format {
232  Tile
233  };
234 
235  void fromIsd(const FileName &fileName, Pvl &label, nlohmann::json &isd, QString access);
236  void fromIsd(const FileName &fileName, FileName &labelFile, FileName &isdFile, QString access);
237 
238  void fromLabel(const FileName &fileName, Pvl &label, QString access);
239 
240  bool isOpen() const;
241  bool isProjected() const;
242  bool isReadOnly() const;
243  bool isReadWrite() const;
244  bool labelsAttached() const;
245 
246  void attachSpiceFromIsd(nlohmann::json Isd);
247 
248  void close(bool remove = false);
249  Cube *copy(FileName newFile, const CubeAttributeOutput &newFileAttributes);
250  void create(const QString &cfile);
251  void create(const QString &cfile, const CubeAttributeOutput &att);
252  void open(const QString &cfile, QString access = "r");
253  void reopen(QString access = "r");
254 
255  void read(Blob &blob,
256  const std::vector<PvlKeyword> keywords = std::vector<PvlKeyword>()) const;
257  void read(Buffer &rbuf) const;
258  OriginalLabel readOriginalLabel(const QString &name="IsisCube") const;
259  CubeStretch readCubeStretch(QString name="CubeStretch",
260  const std::vector<PvlKeyword> keywords = std::vector<PvlKeyword>()) const;
262  History readHistory(const QString &name = "IsisCube") const;
263  ImagePolygon readFootprint() const;
264  Table readTable(const QString &name);
265  void write(Blob &blob, bool overwrite=true);
266  void write(const Table &table);
267  void write(const CubeStretch &cubeStretch);
268  void write(OriginalLabel &lab);
269  void write(const OriginalXmlLabel &lab);
270  void write(History &history, const QString &name = "IsisCube");
271  void write(const ImagePolygon &polygon);
272  void write(Buffer &wbuf);
273 
274  void setBaseMultiplier(double base, double mult);
275  void setMinMax(double min, double max);
277  void setDimensions(int ns, int nl, int nb);
278  void setExternalDnData(FileName cubeFileWithDnData);
279  void setFormat(Format format);
280  void setLabelsAttached(bool attached);
281  void setLabelSize(int labelBytes);
283  void setVirtualBands(const QList<QString> &vbands);
284  void setVirtualBands(const std::vector<QString> &vbands);
285 
286  void relocateDnData(FileName dnDataFile);
287 // static void relocateDnData(FileName externalLabelFile, FileName dnDataFile);
288 
289  virtual int bandCount() const;
290  double base() const;
291  ByteOrder byteOrder() const;
292  Camera *camera();
294  virtual QString fileName() const;
295  Format format() const;
296  virtual Histogram *histogram(const int &band = 1,
297  QString msg = "Gathering histogram");
298  virtual Histogram *histogram(const int &band, const double &validMin,
299  const double &validMax,
300  QString msg = "Gathering histogram");
301  Pvl *label() const;
302  int labelSize(bool actual = false) const;
303  int lineCount() const;
304  double multiplier() const;
305  PixelType pixelType() const;
306  virtual int physicalBand(const int &virtualBand) const;
308  int sampleCount() const;
309  Statistics *statistics(const int &band = 1,
310  QString msg = "Gathering statistics");
311  Statistics *statistics(const int &band, const double &validMin,
312  const double &validMax,
313  QString msg = "Gathering statistics");
314  bool storesDnData() const;
315 
317  void clearIoCache();
318  bool deleteBlob(QString BlobName, QString BlobType);
319  void deleteGroup(const QString &group);
320  PvlGroup &group(const QString &group) const;
321  bool hasGroup(const QString &group) const;
322  bool hasTable(const QString &name);
323  bool hasBlob(const QString &name, const QString &type);
324  void putGroup(const PvlGroup &group);
325  void latLonRange(double &minLatitude, double &maxLatitude, double &minLongitude,
326  double &maxLongitude);
327 
328 
329  private:
331  void cleanUp(bool remove);
332 
333  void construct();
334  QFile *dataFile() const;
335  FileName realDataFileName() const;
336 
337  void initialize();
338  void initCoreFromLabel(const Pvl &label);
339  void initLabelFromFile(FileName labelFileName, bool readWrite);
340  void openCheck();
341  Pvl realDataFileLabel() const;
342  void reformatOldIsisLabel(const QString &oldCube);
343  void writeLabels();
344 
345  private:
354  QFile *m_labelFile;
360  QFile *m_dataFile;
361 
367 
374 
381 
388 
390  QMutex *m_mutex;
391 
394 
397 
400 
403 
410 
413 
416 
423 
426 
429 
432 
434  int m_lines;
435 
437  int m_bands;
438 
443  double m_base;
444 
449  double m_multiplier;
450 
453  };
454 }
455 
458 
459 #endif
Isis::Cube::m_bands
int m_bands
The band count of the open cube or the cube that will be created.
Definition: Cube.h:437
Isis::Cube::Format
Format
These are the possible storage formats of ISIS cubes.
Definition: Cube.h:178
Isis::Cube::base
double base() const
Returns the base value for converting 8-bit/16-bit pixels to 32-bit.
Definition: Cube.cpp:1427
Isis::Statistics
This class is used to accumulate statistics on double arrays.
Definition: Statistics.h:94
Isis::Cube::m_base
double m_base
The base of the open cube or the cube that will be created; does not apply if m_pixelType is Real.
Definition: Cube.h:443
Isis::Cube::fileName
virtual QString fileName() const
Returns the opened cube's filename.
Definition: Cube.cpp:1563
Isis::Cube::readHistory
History readHistory(const QString &name="IsisCube") const
Read the History from the Cube.
Definition: Cube.cpp:847
Isis::Cube::latLonRange
void latLonRange(double &minLatitude, double &maxLatitude, double &minLongitude, double &maxLongitude)
Returns the latitude and longitude range for the Cube.
Definition: Cube.cpp:2514
Isis::Cube::setVirtualBands
void setVirtualBands(const QList< QString > &vbands)
This allows the programmer to specify a subset of bands to work with.
Definition: Cube.cpp:1321
Isis::Cube::~Cube
virtual ~Cube()
Destroys the Cube object.
Definition: Cube.cpp:160
QList< QString >
Isis::Cube::construct
void construct()
Initialize members from their initial undefined states.
Definition: Cube.cpp:2154
Isis::Cube::group
PvlGroup & group(const QString &group) const
Read a group from the cube into a Label.
Definition: Cube.cpp:1991
Isis::Cube::m_labelBytes
int m_labelBytes
The maximum allowed size of the label; the allocated space.
Definition: Cube.h:428
Isis::Cube::m_tempCube
FileName * m_tempCube
If open was called with an Isis 2 cube, then this will be the name of the imported ISIS cube.
Definition: Cube.h:409
Isis::Cube::read
void read(Blob &blob, const std::vector< PvlKeyword > keywords=std::vector< PvlKeyword >()) const
This method will read data from the specified Blob object.
Definition: Cube.cpp:807
Isis::Cube::m_ioHandler
CubeIoHandler * m_ioHandler
This does the heavy lifting for cube DN IO and is always allocated when isOpen() is true.
Definition: Cube.h:366
Isis::FileName
File name manipulation and expansion.
Definition: FileName.h:100
Isis::Cube::readTable
Table readTable(const QString &name)
Read a Table from the cube.
Definition: Cube.cpp:952
Isis::Cube::deleteGroup
void deleteGroup(const QString &group)
Deletes a group from the cube labels.
Definition: Cube.cpp:1977
Isis::Cube::readFootprint
ImagePolygon readFootprint() const
Read the footprint polygon for the Cube.
Definition: Cube.cpp:866
Isis::Cube::realDataFileLabel
Pvl realDataFileLabel() const
Function to read data from a cube label and return it as a PVL object.
Definition: Cube.cpp:2454
Isis::Cube::putGroup
void putGroup(const PvlGroup &group)
Adds a group in a Label to the cube.
Definition: Cube.cpp:2056
Isis::Cube::m_labelFileName
FileName * m_labelFileName
The full filename of the label file (.lbl or .cub)
Definition: Cube.h:399
Isis::Cube::applyVirtualBandsToLabel
void applyVirtualBandsToLabel()
Applies virtual bands to label.
Definition: Cube.cpp:2078
Isis::Cube::physicalBand
virtual int physicalBand(const int &virtualBand) const
This method will return the physical band number given a virtual band number.
Definition: Cube.cpp:1773
Isis::Cube::setLabelSize
void setLabelSize(int labelBytes)
Used prior to the Create method, this will allocate a specific number of bytes in the label area for ...
Definition: Cube.cpp:1291
Isis::Cube::copy
Cube * copy(FileName newFile, const CubeAttributeOutput &newFileAttributes)
Copies the cube to the new fileName.
Definition: Cube.cpp:276
Isis::Cube::labelSize
int labelSize(bool actual=false) const
Returns the number of bytes used by the label.
Definition: Cube.cpp:1713
Isis::Cube::byteOrder
ByteOrder byteOrder() const
Returns the byte order/endian-ness of the cube file.
Definition: Cube.cpp:1439
Isis::Cube::reformatOldIsisLabel
void reformatOldIsisLabel(const QString &oldCube)
This is a helper, used by open(...), that handles opening Isis 2 cubes as if they were Isis cubes.
Definition: Cube.cpp:2484
Isis::Cube::close
void close(bool remove=false)
Closes the cube and updates the labels.
Definition: Cube.cpp:260
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::CubeAttributeOutput
Manipulate and parse attributes of output cube filenames.
Definition: CubeAttribute.h:473
Isis::Cube::m_lines
int m_lines
The line count of the open cube or the cube that will be created.
Definition: Cube.h:434
Isis::Cube::m_camera
Camera * m_camera
Camera allocated from the camera() method.
Definition: Cube.h:393
Isis::ImagePolygon
Create cube polygons, read/write polygons to blobs.
Definition: ImagePolygon.h:153
Isis::CubeStretch
Stores stretch information for a cube.
Definition: CubeStretch.h:27
Isis::Camera
Definition: Camera.h:236
Isis::Cube::statistics
Statistics * statistics(const int &band=1, QString msg="Gathering statistics")
This method returns a pointer to a Statistics object which allows the program to obtain and use vario...
Definition: Cube.cpp:1830
Isis::ByteOrder
ByteOrder
Tests the current architecture for byte order.
Definition: Endian.h:42
Isis::Cube::hasBlob
bool hasBlob(const QString &name, const QString &type)
Check to see if the cube contains a BLOB.
Definition: Cube.cpp:2019
Isis::Buffer
Buffer for reading and writing cube data.
Definition: Buffer.h:53
Isis::Cube::externalCubeFileName
FileName externalCubeFileName() const
If this is an external cube label file, this will give you the cube dn file that this label reference...
Definition: Cube.cpp:1535
Isis::Cube::m_format
Format m_format
If isOpen() then this is the IO format that the cube uses.
Definition: Cube.h:380
Isis::Cube::multiplier
double multiplier() const
Returns the multiplier value for converting 8-bit/16-bit pixels to 32-bit.
Definition: Cube.cpp:1748
Isis::PvlGroup
Contains multiple PvlContainers.
Definition: PvlGroup.h:41
Isis::Cube::m_multiplier
double m_multiplier
The multiplier of the open cube or the cube that will be created; does not apply if m_pixelType is Re...
Definition: Cube.h:449
Isis::Cube::lineCount
int lineCount() const
Definition: Cube.cpp:1734
Isis::Cube::m_projection
Projection * m_projection
Projection allocated from the projection() method.
Definition: Cube.h:396
Isis::Cube::isReadWrite
bool isReadWrite() const
Test if the opened cube is read-write, that is read and write operations should succeed if this is tr...
Definition: Cube.cpp:235
Isis::Cube::setDimensions
void setDimensions(int ns, int nl, int nb)
Used prior to the Create method to specify the size of the cube.
Definition: Cube.cpp:1217
Isis::Cube::create
void create(const QString &cfile)
This method will create an isis cube for writing.
Definition: Cube.cpp:414
Isis::Cube::initialize
void initialize()
This sets Cube to its default state: Native byte order Format = Tile PixelType = Real (4 bytes per pi...
Definition: Cube.cpp:2265
Isis::Cube::m_virtualBandList
QList< int > * m_virtualBandList
If allocated, converts from physical on-disk band # to virtual band #.
Definition: Cube.h:452
Isis::Cube::hasGroup
bool hasGroup(const QString &group) const
Return if the cube has a specified group in the labels.
Definition: Cube.cpp:2004
Isis::Cube::Tile
@ Tile
Cubes are stored in tile format, that is the order of the pixels in the file (on disk) is BSQ within ...
Definition: Cube.h:232
Isis::Cube::addCachingAlgorithm
void addCachingAlgorithm(CubeCachingAlgorithm *)
This will add the given caching algorithm to the list of attempted caching algorithms.
Definition: Cube.cpp:1922
Isis::OriginalXmlLabel
Read and store original Xml labels.
Definition: OriginalXmlLabel.h:32
Isis::Cube::m_samples
int m_samples
The sample count of the open cube or the cube that will be created.
Definition: Cube.h:431
Isis::CubeCachingAlgorithm
This is the parent of the caching algorithms.
Definition: CubeCachingAlgorithm.h:31
Isis::Cube::format
Format format() const
Definition: Cube.cpp:1575
Isis::Table
Class for storing Table blobs information.
Definition: Table.h:61
Isis::CubeIoHandler
Handles converting buffers to and from disk.
Definition: CubeIoHandler.h:109
Isis::Cube::labelsAttached
bool labelsAttached() const
Test if labels are attached.
Definition: Cube.cpp:248
Isis::Cube::sampleCount
int sampleCount() const
Definition: Cube.cpp:1807
Isis::Cube::m_mutex
QMutex * m_mutex
Basic thread-safety mutex; this class is not optimized for threads.
Definition: Cube.h:390
Isis::Cube::fromIsd
void fromIsd(const FileName &fileName, Pvl &label, nlohmann::json &isd, QString access)
Initialize Cube data from a PVL label and JSON ISD.
Definition: Cube.cpp:99
Isis::Cube::m_byteOrder
ByteOrder m_byteOrder
The byte order of the opened cube; if there is no open cube then this is the byte order that will be ...
Definition: Cube.h:373
Isis::Cube::isOpen
bool isOpen() const
Test if a cube file has been opened/created.
Definition: Cube.cpp:183
Isis::Cube
IO Handler for Isis Cubes.
Definition: Cube.h:167
Isis::Cube::setExternalDnData
void setExternalDnData(FileName cubeFileWithDnData)
Used to set external dn data to cube.
Definition: Cube.cpp:1234
Isis::Cube::bandCount
virtual int bandCount() const
Returns the number of virtual bands for the cube.
Definition: Cube.cpp:1410
Isis::Cube::m_label
Pvl * m_label
The label if IsOpen(), otherwise NULL.
Definition: Cube.h:425
Isis::Cube::isProjected
bool isProjected() const
Returns true if the labels of the cube appear to have a valid mapping group.
Definition: Cube.cpp:202
Isis::Cube::Bsq
@ Bsq
Cubes are stored in band-sequential format, that is the order of the pixels in the file (on disk) is:
Definition: Cube.h:199
Isis::Cube::dataFile
QFile * dataFile() const
This returns the QFile with cube DN data in it.
Definition: Cube.cpp:2185
Isis::Cube::readOriginalXmlLabel
OriginalXmlLabel readOriginalXmlLabel() const
Read the original PDS4 label from a cube.
Definition: Cube.cpp:931
Isis::Cube::setByteOrder
void setByteOrder(ByteOrder byteOrder)
Used prior to the Create method, this will specify the byte order of pixels, either least or most sig...
Definition: Cube.cpp:1202
Isis::Cube::camera
Camera * camera()
Return a camera associated with the cube.
Definition: Cube.cpp:1451
Isis::PixelType
PixelType
Enumerations for Isis Pixel Types.
Definition: PixelType.h:27
Isis::Cube::deleteBlob
bool deleteBlob(QString BlobName, QString BlobType)
This method will delete a blob label object from the cube as specified by the Blob type and name.
Definition: Cube.cpp:1955
Isis::OriginalLabel
Read and store original labels.
Definition: OriginalLabel.h:35
Isis::Cube::hasTable
bool hasTable(const QString &name)
Check to see if the cube contains a pvl table by the provided name.
Definition: Cube.cpp:2043
Isis::Cube::isReadOnly
bool isReadOnly() const
Test if the opened cube is read-only, that is write operations will fail if this is true.
Definition: Cube.cpp:213
Isis::Cube::pixelType
PixelType pixelType() const
Definition: Cube.cpp:1758
Isis::Histogram
Container of a cube histogram.
Definition: Histogram.h:74
Isis::Cube::storesDnData
bool storesDnData() const
This method returns a boolean value.
Definition: Cube.cpp:1904
Isis::Cube::label
Pvl * label() const
Returns a pointer to the IsisLabel object associated with the cube.
Definition: Cube.cpp:1701
Isis::Cube::m_dataFile
QFile * m_dataFile
This is only sometimes allocated.
Definition: Cube.h:360
Isis::Cube::write
void write(Blob &blob, bool overwrite=true)
This method will write a blob of data (e.g.
Definition: Cube.cpp:971
Isis::Cube::Cube
Cube()
Constructs a Cube object.
Definition: Cube.cpp:50
Isis::Cube::m_labelFile
QFile * m_labelFile
This is the file that contains the labels always; if labels are attached then this contains the file ...
Definition: Cube.h:354
Isis::Cube::m_attached
bool m_attached
True if labels are attached.
Definition: Cube.h:415
Isis::Cube::m_dataFileName
FileName * m_dataFileName
The full filename of the data file (.cub)
Definition: Cube.h:402
Isis::Cube::setFormat
void setFormat(Format format)
Used prior to the Create method, this will specify the format of the cube, either band,...
Definition: Cube.cpp:1266
Isis::Cube::realDataFileName
FileName realDataFileName() const
This gets the file name of the file which actually contains the DN data.
Definition: Cube.cpp:2200
Isis::Cube::setPixelType
void setPixelType(PixelType pixelType)
Used prior to the Create method, this will specify the output pixel type.
Definition: Cube.cpp:1304
Isis::Cube::cleanUp
void cleanUp(bool remove)
This clears all of the allocated memory associated with an open cube.
Definition: Cube.cpp:2106
Isis::History
Definition: History.h:38
Isis::Cube::setBaseMultiplier
void setBaseMultiplier(double base, double mult)
Used prior to the Create method, this will specify the base and multiplier for converting 8-bit/16-bi...
Definition: Cube.cpp:1151
Isis::Cube::readOriginalLabel
OriginalLabel readOriginalLabel(const QString &name="IsisCube") const
Read the original PDS3 label from a cube.
Definition: Cube.cpp:889
Isis::Projection
Base class for Map Projections.
Definition: Projection.h:155
Isis::Cube::open
void open(const QString &cfile, QString access="r")
This method will open an isis cube for reading or reading/writing.
Definition: Cube.cpp:627
Isis::Cube::initCoreFromLabel
void initCoreFromLabel(const Pvl &label)
This function initializes the Cube core from a Pvl Label passed as a parameter.
Definition: Cube.cpp:2290
Isis::Cube::clearIoCache
void clearIoCache()
This will clear excess RAM used for quicker IO in the cube.
Definition: Cube.cpp:1938
Isis::Blob
Definition: Blob.h:51
Isis::Cube::setMinMax
void setMinMax(double min, double max)
Used prior to the Create method, this will compute a good base and multiplier value given the minimum...
Definition: Cube.cpp:1168
Isis::Cube::m_formatTemplateFile
FileName * m_formatTemplateFile
Label pvl format template file (describes how to format labels)
Definition: Cube.h:412
Isis::Cube::histogram
virtual Histogram * histogram(const int &band=1, QString msg="Gathering histogram")
This method returns a pointer to a Histogram object which allows the program to obtain and use variou...
Definition: Cube.cpp:1599
Isis::Cube::openCheck
void openCheck()
Throw an exception if the cube is not open.
Definition: Cube.cpp:2441
Isis::Cube::writeLabels
void writeLabels()
Write the Pvl labels to the cube's label file.
Definition: Cube.cpp:2601
Isis::Cube::projection
Projection * projection()
Definition: Cube.cpp:1794
Isis::Cube::relocateDnData
void relocateDnData(FileName dnDataFile)
Relocates the DN data for a cube to an external cube label file.
Definition: Cube.cpp:1366
Isis::Cube::readCubeStretch
CubeStretch readCubeStretch(QString name="CubeStretch", const std::vector< PvlKeyword > keywords=std::vector< PvlKeyword >()) const
Read a Stretch from a cube.
Definition: Cube.cpp:912
Isis::Cube::m_storesDnData
bool m_storesDnData
True (most common case) when the cube DN data is inside the file we're writing to.
Definition: Cube.h:422
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::Cube::m_pixelType
PixelType m_pixelType
This is the pixel type on disk.
Definition: Cube.h:387
Isis::Cube::initLabelFromFile
void initLabelFromFile(FileName labelFileName, bool readWrite)
This function initializes the Cube label from a file passed as a parameter.
Definition: Cube.cpp:2334
Isis::Cube::reopen
void reopen(QString access="r")
This method will reopen an isis sube for reading or reading/writing.
Definition: Cube.cpp:774
Isis::Cube::fromLabel
void fromLabel(const FileName &fileName, Pvl &label, QString access)
Initialize Cube data from a PVL label.
Definition: Cube.cpp:76
Isis::Cube::setLabelsAttached
void setLabelsAttached(bool attached)
Use prior to calling create, this sets whether or not to use separate label and data files.
Definition: Cube.cpp:1278
Q_DECLARE_METATYPE
Q_DECLARE_METATYPE(Isis::PlotWindow *)
We have plot windows as QVariant data types, so here it's enabled.

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/13/2023 15:16:21