Isis 3 Programmer Reference
LoHighCamera.h
1#ifndef LoHighCamera_h
2#define LoHighCamera_h
3
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "FramingCamera.h"
13
14namespace Isis {
56 class LoHighCamera : public FramingCamera {
57 public:
58 LoHighCamera(Cube &cube);
61 virtual std::pair <iTime, iTime> ShutterOpenCloseTimes(double time,
62 double exposureDuration);
69 virtual int CkFrameId() const { return (m_ckFrameId); }
70
77 virtual int CkReferenceId() const { return (1); }
78
85 virtual int SpkReferenceId() const { return (1); }
86
87 private:
89 };
90};
91#endif
virtual double exposureDuration() const
Return the exposure duration for the pixel that the camera is set to.
Definition Camera.cpp:3093
IO Handler for Isis Cubes.
Definition Cube.h:168
Generic class for Framing Cameras.
Defines the Lunar Orbiter High Resolution camera class.
virtual int SpkReferenceId() const
SPK Reference ID - J2000.
int m_ckFrameId
LO 3,4,5 CK frame id.
virtual int CkFrameId() const
CK frame ID - - Instrument Code from spacit run on CK.
LoHighCamera(Cube &cube)
Constructs the LoHigh camera model object from the labels.
~LoHighCamera()
Destroys the LoHighCamera Object.
virtual int CkReferenceId() const
CK Reference ID - J2000.
virtual std::pair< iTime, iTime > ShutterOpenCloseTimes(double time, double exposureDuration)
Returns the shutter open and close times.
virtual iTime time() const
Returns the ephemeris time in seconds which was used to obtain the spacecraft and sun positions.
Definition Spice.cpp:891
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16