Isis 3 Programmer Reference
Utility

Classes

class  Isis::Area3D
 Represents a 3D area (a 3D "cube") More...
 
class  Isis::CollectorMap< K, T, ComparePolicy, RemovalPolicy, CopyPolicy >
 Collector/container for arbitrary items. More...
 
class  Isis::Column
 Format ascii tables. More...
 
class  Isis::CSVReader
 Reads strings and parses them into tokens separated by a delimiter character. More...
 
class  Isis::CubeStretch
 Stores stretch information for a cube. More...
 
class  Isis::Displacement
 Displacement is a signed length, usually in meters. More...
 
class  Isis::Distance
 Distance measurement, usually in meters. More...
 
class  Isis::EndianSwapper
 Byte swapper. More...
 
class  Isis::ExportPdsTable
 Export a PDS table from an ISIS Table. More...
 
class  Isis::GaussianStretch
 Gaussian stretch class. More...
 
class  Isis::GSL::GSLUtility
 GSLUtility Provides top level interface to the GNU GSL. More...
 
class  Isis::ID
 Creates sequential IDs. More...
 
class  Isis::ImportPdsTable
 Import a PDS table file with a label description. More...
 
class  Isis::Kernels
 Determine SPICE kernels defined in an ISIS file. More...
 
class  Isis::Latitude
 This class is designed to encapsulate the concept of a Latitude. More...
 
class  Isis::LineEquation
 Utility class for creating and using cartesean line equations. More...
 
class  Isis::Longitude
 This class is designed to encapsulate the concept of a Longitude. More...
 
class  Isis::Pixel
 Store and/or manipulate pixel values. More...
 
class  Isis::PolygonTools
 Provides various tools to work with geos multipolygons. More...
 
class  Isis::SparseBlockColumnMatrix
 SparseBlockColumnMatrix. More...
 
class  Isis::SparseBlockRowMatrix
 SparseBlockRowMatrix. More...
 
class  Isis::SparseBlockMatrix
 SparseBlockMatrix. More...
 
union  Isis::DBL_UNION
 Manipulate special pixel values. More...
 
class  Isis::Stretch
 Pixel value mapper. More...
 
class  Isis::TextFile
 Provides access to sequential ASCII stream I/O. More...
 
class  Isis::DbAccess
 DbAccess manages programatic access to a database through profiles. More...
 
class  Isis::DbProfile
 A DbProfile is a container for access parameters to a database. More...
 
class  Isis::GainChannelNormalize
 Computes a gain correction for each sample GainChannelNormalize. More...
 
class  Isis::GainFlatField
 GainFlatField Module - Computes flat field correction for sample. More...
 
class  Isis::GainLineDrift
 Computes a gain correction for each line (Zg Module) More...
 
class  Isis::GainNonLinearity
 GainNonLinearity Module - Applies non-linear, line-dependant gain. More...
 
class  Isis::GainTemperature
 GaingTemperature Module - Applies temperature-dependant gain correction (column) More...
 
class  Isis::GainUnitConversion
 Computes units parameters for HiRISE data calibration (Ziof Module) More...
 
class  Isis::HiCalData
 Container for HiRISE calibration data. More...
 
class  Isis::LoadCSV
 Provides generalized access to HiRISE calibration CSV files. More...
 
class  Isis::LowPassFilter
 Compute a low pass filter from a Module class content. More...
 
class  Isis::Module
 Module manages HiRISE calibration vectors from various sources. More...
 
class  Isis::NonLinearLSQ
 NonLinearLSQ Computes a fit using a Levenberg-Marquardt algorithm. More...
 
class  Isis::SplineFill
 Compute a low pass filter from a Module class content. More...
 
class  Isis::ZeroBufferFit
 Computes non-linear lsq fit of HiRISE Drift (Zd module) More...
 
class  Isis::ZeroBufferSmooth
 Processes Buffer calibration data (ZeroBufferSmooth Module) More...
 
class  Isis::ZeroDark
 Computes a complex dark subtraction component (ZeroDark module) More...
 
class  Isis::ZeroDarkRate
 Computes a complex dark subtraction component (ZeroDarkRate module) More...
 
class  Isis::ZeroReverse
 Processes Reverse Clock calibration data (ZeroReverse Module) More...
 
class  Isis::QHistogram
 Plot Histograms. More...
 

Enumerations

enum  Isis::ByteOrder { NoByteOrder = 0 , Lsb , Msb }
 Tests the current architecture for byte order. More...
 

Functions

std::map< QString, void * > GuiHelpers ()
 Base include file for all Isis applications.
 

Variables

const double Isis::E = 2.7182818284590452354
 Sets some basic constants for use in ISIS programming.
 

Detailed Description

Objects providing general functionality.

Enumeration Type Documentation

◆ ByteOrder

Tests the current architecture for byte order.

Allows ISIS applications and objects to test the architecture's byte order. Little Endian or Big Endian. Note: Middle Endian is not supported at this time.

Author
2002-12-01 Tracie Sucharski
History

2003-02-11 Stuart Sides - Documented and created an object unittest

2003-05-16 Stuart Sides - Modified schema from astrogeology... isis.astrogeology...

2003-10-03 Stuart Sides - Added the byte order enumeration and functions to convert the enumeration to a string and from a string to an enumeration. Also deprecated the LittleEndian and BigEndian functions. They were replaced by Lsb and Msb functions.

2004-03-18 Stuart Sides - Added to macros for case where we need to know at compile time if a system is LSB or MSB. The macros are ISIS_LITTLE_ENDIAN and ISIS_BIG_ENDIAN

Definition at line 42 of file Endian.h.

Function Documentation

◆ GuiHelpers()

std::map< QString, void * > GuiHelpers ( )

Base include file for all Isis applications.

This is not technically a class. Instead it is the main include file the must be placed at the beginning of every executable program. For example:

using namespace std;
#include "Isis.h"
Namespace for the standard library.

The include file handles starting the Isis GUI, error messages, and a host of other Isis related duties that should be performed in all Isis programs. It actually contains the standard C++ declaration of main (i.e., int main (int argc, char *argv[])) and invokes the function IsisMain which must be supplied by the programmer. Therefore, your program should always start as follows:

using namespace std;
#include "Isis.h"
void IsisMain() {
...
}

The Isis.h file includes code that catches all thrown exceptions. It first trys to catch and report Isis specific errors. That is, those thrown within IsisMain or by Isis objects created in IsisMain. It will then catch C++ system type errors and respond accordingly. This eliminates the need for the application programmer to trap errors. They may however, throw errors as necessary to indicate error conditions within their application.

Author
2002-01-01 Jeff Anderson
History

2003-05-16 Stuart Sides - Modified schema from astrogeology... isis.astrogeology...

2006-03-18 Elizabeth Miller - Added gui helper stuff

2006-05-17 Elizabeth Miller - Removed .xml and documented .h file

Definition at line 69 of file Isis.h.

Variable Documentation

◆ E

const double Isis::E = 2.7182818284590452354

Sets some basic constants for use in ISIS programming.

Sets constants used in ISIS applications and objects such as PI and E.

Author
2003-01-22 Tracie Sucharski
History

2003-02-11 Stuart Sides - Documented and created an object unitTest.

2003-05-16 Stuart Sides - Modified schema from astrogeology... isis.astrogeology...

2006-05-17 Elizabeth Miller - Removed .xml file and added documentation to .h file

2009-03-16 Tracie Sucharski - Updated for release 3.2.0.

2010-03-18 Tracie Sucharski - Updated to 3.2.1beta.

2010-05-24 Travis Addair - Added DEG2RAD and RAD2DEG

2010-11-29 Steven Lambright - Isis version constant removed

2012-06-22 Orrin Thomas - Added TWOPI and coverted DEG2RAD and RAD2DEG two decimal constants (from division expresions)

2017-09-22 Cole Neubauer - Fixed documentation. References #4708

The mathematical constant E

Definition at line 39 of file Constants.h.

Referenced by Isis::InlineCalculator::eConstant(), Isis::Matrix::Eigenvalues(), Isis::Matrix::Eigenvectors(), Isis::NoOperator::Interest(), Isis::EquatorialCylindricalShape::intersectSurface(), Isis::Orthographic::Orthographic(), Isis::CubeCalculator::prepareCalculations(), Isis::LunarAzimuthalEqualArea::SetCoordinate(), Isis::TaylorCameraDistortionMap::SetFocalPlane(), Isis::LunarAzimuthalEqualArea::SetGround(), and Isis::MarciDistortionMap::SetUndistortedFocalPlane().