File failed to load: https://isis.astrogeology.usgs.gov/6.0.0/Object/assets/jax/output/NativeMML/config.js
 |
Isis 3 Programmer Reference
|
17 #include <nlohmann/json.hpp>
20 #include "PixelType.h"
21 #include "PvlKeyword.h"
31 class CubeAttributeOutput;
32 class CubeCachingAlgorithm;
44 class OriginalXmlLabel;
246 void attachSpiceFromIsd(nlohmann::json Isd);
248 void close(
bool remove =
false);
250 void create(
const QString &cfile);
252 void open(
const QString &cfile, QString access =
"r");
253 void reopen(QString access =
"r");
256 const std::vector<PvlKeyword> keywords = std::vector<PvlKeyword>())
const;
260 const std::vector<PvlKeyword> keywords = std::vector<PvlKeyword>())
const;
265 void write(
Blob &blob,
bool overwrite=
true);
270 void write(
History &history,
const QString &name =
"IsisCube");
297 QString msg =
"Gathering histogram");
299 const double &validMax,
300 QString msg =
"Gathering histogram");
302 int labelSize(
bool actual =
false)
const;
310 QString msg =
"Gathering statistics");
312 const double &validMax,
313 QString msg =
"Gathering statistics");
318 bool deleteBlob(QString BlobName, QString BlobType);
323 bool hasBlob(
const QString &name,
const QString &type);
325 void latLonRange(
double &minLatitude,
double &maxLatitude,
double &minLongitude,
326 double &maxLongitude);
int m_bands
The band count of the open cube or the cube that will be created.
Format
These are the possible storage formats of ISIS cubes.
double base() const
Returns the base value for converting 8-bit/16-bit pixels to 32-bit.
This class is used to accumulate statistics on double arrays.
double m_base
The base of the open cube or the cube that will be created; does not apply if m_pixelType is Real.
virtual QString fileName() const
Returns the opened cube's filename.
History readHistory(const QString &name="IsisCube") const
Read the History from the Cube.
void latLonRange(double &minLatitude, double &maxLatitude, double &minLongitude, double &maxLongitude)
Returns the latitude and longitude range for the Cube.
void setVirtualBands(const QList< QString > &vbands)
This allows the programmer to specify a subset of bands to work with.
virtual ~Cube()
Destroys the Cube object.
void construct()
Initialize members from their initial undefined states.
PvlGroup & group(const QString &group) const
Read a group from the cube into a Label.
int m_labelBytes
The maximum allowed size of the label; the allocated space.
FileName * m_tempCube
If open was called with an Isis 2 cube, then this will be the name of the imported ISIS cube.
void read(Blob &blob, const std::vector< PvlKeyword > keywords=std::vector< PvlKeyword >()) const
This method will read data from the specified Blob object.
CubeIoHandler * m_ioHandler
This does the heavy lifting for cube DN IO and is always allocated when isOpen() is true.
File name manipulation and expansion.
Table readTable(const QString &name)
Read a Table from the cube.
void deleteGroup(const QString &group)
Deletes a group from the cube labels.
ImagePolygon readFootprint() const
Read the footprint polygon for the Cube.
Pvl realDataFileLabel() const
Function to read data from a cube label and return it as a PVL object.
void putGroup(const PvlGroup &group)
Adds a group in a Label to the cube.
FileName * m_labelFileName
The full filename of the label file (.lbl or .cub)
void applyVirtualBandsToLabel()
Applies virtual bands to label.
virtual int physicalBand(const int &virtualBand) const
This method will return the physical band number given a virtual band number.
void setLabelSize(int labelBytes)
Used prior to the Create method, this will allocate a specific number of bytes in the label area for ...
Cube * copy(FileName newFile, const CubeAttributeOutput &newFileAttributes)
Copies the cube to the new fileName.
int labelSize(bool actual=false) const
Returns the number of bytes used by the label.
ByteOrder byteOrder() const
Returns the byte order/endian-ness of the cube file.
void reformatOldIsisLabel(const QString &oldCube)
This is a helper, used by open(...), that handles opening Isis 2 cubes as if they were Isis cubes.
void close(bool remove=false)
Closes the cube and updates the labels.
Container for cube-like labels.
Manipulate and parse attributes of output cube filenames.
int m_lines
The line count of the open cube or the cube that will be created.
Camera * m_camera
Camera allocated from the camera() method.
Create cube polygons, read/write polygons to blobs.
Stores stretch information for a cube.
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...
ByteOrder
Tests the current architecture for byte order.
bool hasBlob(const QString &name, const QString &type)
Check to see if the cube contains a BLOB.
Buffer for reading and writing cube data.
FileName externalCubeFileName() const
If this is an external cube label file, this will give you the cube dn file that this label reference...
Format m_format
If isOpen() then this is the IO format that the cube uses.
double multiplier() const
Returns the multiplier value for converting 8-bit/16-bit pixels to 32-bit.
Contains multiple PvlContainers.
double m_multiplier
The multiplier of the open cube or the cube that will be created; does not apply if m_pixelType is Re...
Projection * m_projection
Projection allocated from the projection() method.
bool isReadWrite() const
Test if the opened cube is read-write, that is read and write operations should succeed if this is tr...
void setDimensions(int ns, int nl, int nb)
Used prior to the Create method to specify the size of the cube.
void create(const QString &cfile)
This method will create an isis cube for writing.
void initialize()
This sets Cube to its default state: Native byte order Format = Tile PixelType = Real (4 bytes per pi...
QList< int > * m_virtualBandList
If allocated, converts from physical on-disk band # to virtual band #.
bool hasGroup(const QString &group) const
Return if the cube has a specified group in the labels.
@ Tile
Cubes are stored in tile format, that is the order of the pixels in the file (on disk) is BSQ within ...
void addCachingAlgorithm(CubeCachingAlgorithm *)
This will add the given caching algorithm to the list of attempted caching algorithms.
Read and store original Xml labels.
int m_samples
The sample count of the open cube or the cube that will be created.
This is the parent of the caching algorithms.
Class for storing Table blobs information.
Handles converting buffers to and from disk.
bool labelsAttached() const
Test if labels are attached.
QMutex * m_mutex
Basic thread-safety mutex; this class is not optimized for threads.
void fromIsd(const FileName &fileName, Pvl &label, nlohmann::json &isd, QString access)
Initialize Cube data from a PVL label and JSON ISD.
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 ...
bool isOpen() const
Test if a cube file has been opened/created.
IO Handler for Isis Cubes.
void setExternalDnData(FileName cubeFileWithDnData)
Used to set external dn data to cube.
virtual int bandCount() const
Returns the number of virtual bands for the cube.
Pvl * m_label
The label if IsOpen(), otherwise NULL.
bool isProjected() const
Returns true if the labels of the cube appear to have a valid mapping group.
@ Bsq
Cubes are stored in band-sequential format, that is the order of the pixels in the file (on disk) is:
QFile * dataFile() const
This returns the QFile with cube DN data in it.
OriginalXmlLabel readOriginalXmlLabel() const
Read the original PDS4 label from a cube.
void setByteOrder(ByteOrder byteOrder)
Used prior to the Create method, this will specify the byte order of pixels, either least or most sig...
Camera * camera()
Return a camera associated with the cube.
PixelType
Enumerations for Isis Pixel Types.
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.
Read and store original labels.
bool hasTable(const QString &name)
Check to see if the cube contains a pvl table by the provided name.
bool isReadOnly() const
Test if the opened cube is read-only, that is write operations will fail if this is true.
PixelType pixelType() const
Container of a cube histogram.
bool storesDnData() const
This method returns a boolean value.
Pvl * label() const
Returns a pointer to the IsisLabel object associated with the cube.
QFile * m_dataFile
This is only sometimes allocated.
void write(Blob &blob, bool overwrite=true)
This method will write a blob of data (e.g.
Cube()
Constructs a Cube object.
QFile * m_labelFile
This is the file that contains the labels always; if labels are attached then this contains the file ...
bool m_attached
True if labels are attached.
FileName * m_dataFileName
The full filename of the data file (.cub)
void setFormat(Format format)
Used prior to the Create method, this will specify the format of the cube, either band,...
FileName realDataFileName() const
This gets the file name of the file which actually contains the DN data.
void setPixelType(PixelType pixelType)
Used prior to the Create method, this will specify the output pixel type.
void cleanUp(bool remove)
This clears all of the allocated memory associated with an open cube.
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...
OriginalLabel readOriginalLabel(const QString &name="IsisCube") const
Read the original PDS3 label from a cube.
Base class for Map Projections.
void open(const QString &cfile, QString access="r")
This method will open an isis cube for reading or reading/writing.
void initCoreFromLabel(const Pvl &label)
This function initializes the Cube core from a Pvl Label passed as a parameter.
void clearIoCache()
This will clear excess RAM used for quicker IO in the cube.
void setMinMax(double min, double max)
Used prior to the Create method, this will compute a good base and multiplier value given the minimum...
FileName * m_formatTemplateFile
Label pvl format template file (describes how to format labels)
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...
void openCheck()
Throw an exception if the cube is not open.
void writeLabels()
Write the Pvl labels to the cube's label file.
Projection * projection()
void relocateDnData(FileName dnDataFile)
Relocates the DN data for a cube to an external cube label file.
CubeStretch readCubeStretch(QString name="CubeStretch", const std::vector< PvlKeyword > keywords=std::vector< PvlKeyword >()) const
Read a Stretch from a cube.
bool m_storesDnData
True (most common case) when the cube DN data is inside the file we're writing to.
This is free and unencumbered software released into the public domain.
PixelType m_pixelType
This is the pixel type on disk.
void initLabelFromFile(FileName labelFileName, bool readWrite)
This function initializes the Cube label from a file passed as a parameter.
void reopen(QString access="r")
This method will reopen an isis sube for reading or reading/writing.
void fromLabel(const FileName &fileName, Pvl &label, QString access)
Initialize Cube data from a PVL label.
void setLabelsAttached(bool attached)
Use prior to calling create, this sets whether or not to use separate label and data files.
Q_DECLARE_METATYPE(Isis::PlotWindow *)
We have plot windows as QVariant data types, so here it's enabled.