Isis Developer Reference
PushFrameCameraGroundMap.h
Go to the documentation of this file.
1#ifndef PushFrameCameraGroundMap_h
2#define PushFrameCameraGroundMap_h
8/* SPDX-License-Identifier: CC0-1.0 */
9
10#include "CameraGroundMap.h"
11
12namespace Isis {
35 public:
42 PushFrameCameraGroundMap(Camera *cam, bool evenFramelets) :
43 CameraGroundMap(cam) {
44 p_evenFramelets = evenFramelets;
45 }
46
49
50 virtual bool SetGround(const Latitude &lat, const Longitude &lon);
51 virtual bool SetGround(const SurfacePoint &surfacePt);
52
53 private:
54 double FindDistance(int framelet, const SurfacePoint &surfacePoint);
55 double FindSpacecraftDistance(int framelet,
56 const SurfacePoint &surfacePoint);
57
58 bool p_evenFramelets;
59 };
60};
61#endif
Convert between undistorted focal plane and ground coordinates.
Definition CameraGroundMap.h:73
Definition Camera.h:236
This class is designed to encapsulate the concept of a Latitude.
Definition Latitude.h:51
This class is designed to encapsulate the concept of a Longitude.
Definition Longitude.h:40
Convert between undistorted focal plane and ground coordinates.
Definition PushFrameCameraGroundMap.h:34
PushFrameCameraGroundMap(Camera *cam, bool evenFramelets)
This is the constructor for the push frame ground map.
Definition PushFrameCameraGroundMap.h:42
virtual bool SetGround(const Latitude &lat, const Longitude &lon)
Compute undistorted focal plane coordinate from ground position.
Definition PushFrameCameraGroundMap.cpp:28
virtual ~PushFrameCameraGroundMap()
Destructor.
Definition PushFrameCameraGroundMap.h:48
This class defines a body-fixed surface point.
Definition SurfacePoint.h:132
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16