/usr/include/ossim/base/ossimLsrPoint.h is in libossim-dev 1.7.21-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// DESCRIPTION:
// Class for representing points in some local space rectangular (LSR)
// coordinate system. This coordinate system is related to the ECEF system
// by the ossimLsrSpace member object. This class simplifies coordinate
// conversions between LSR and ECEF, and other LSR points.
//
// SOFTWARE HISTORY:
//>
// 08Aug2001 Oscar Kramer (okramer@imagelinks.com)
// Initial coding.
//<
//*****************************************************************************
// $Id: ossimLsrPoint.h 12790 2008-05-05 13:41:33Z dburken $
#ifndef ossimLsrPoint_HEADER
#define ossimLsrPoint_HEADER
#include <ossim/base/ossimLsrSpace.h>
#include <ossim/base/ossimColumnVector3d.h>
#include <ossim/base/ossimNotify.h>
class ossimGpt;
class ossimLsrVector;
//*****************************************************************************
// CLASS: ossimLsrPoint
//
//*****************************************************************************
class OSSIMDLLEXPORT ossimLsrPoint
{
public:
/*!
* CONSTRUCTORS:
*/
ossimLsrPoint()
: theData(0,0,0) {}
ossimLsrPoint(const ossimLsrPoint& copy_this)
: theData(copy_this.theData), theLsrSpace(copy_this.theLsrSpace) {}
ossimLsrPoint(const ossimColumnVector3d& assign_this,
const ossimLsrSpace& space)
: theData(assign_this), theLsrSpace(space) {}
ossimLsrPoint(const double& x,
const double& y,
const double& z,
const ossimLsrSpace& space)
: theData(x, y, z), theLsrSpace(space) {}
ossimLsrPoint(const ossimLsrPoint& convert_this,
const ossimLsrSpace&);
ossimLsrPoint(const ossimGpt& convert_this,
const ossimLsrSpace&);
ossimLsrPoint(const ossimEcefPoint& convert_this,
const ossimLsrSpace&);
/*!
* OPERATORS:
*/
const ossimLsrPoint& operator= (const ossimLsrPoint&); //inline below
ossimLsrVector operator- (const ossimLsrPoint&) const;
ossimLsrPoint operator+ (const ossimLsrVector&) const;
bool operator==(const ossimLsrPoint&) const;//inline below
bool operator!=(const ossimLsrPoint&) const;//inline below
/*!
* CASTING OPERATOR:
* Used as: myEcefVector = ossimEcefPoint(this) -- looks like a constructor
* but is an operation on this object. ECEF knows nothing about LSR, so
* cannot provide an ossimEcefVector(ossimLsrPoint) constructor.
*/
operator ossimEcefPoint() const; // inline below
/*!
* DATA ACCESS METHODS:
*/
double x() const { return theData[0]; }
double& x() { return theData[0]; }
double y() const { return theData[1]; }
double& y() { return theData[1]; }
double z() const { return theData[2]; }
double& z() { return theData[2]; }
ossimColumnVector3d& data() { return theData; }
const ossimColumnVector3d& data() const { return theData; }
ossimLsrSpace& lsrSpace() { return theLsrSpace; }
const ossimLsrSpace& lsrSpace() const { return theLsrSpace; }
bool hasNans()const
{
return (ossim::isnan(theData[0])||
ossim::isnan(theData[1])||
ossim::isnan(theData[2]));
}
void makeNan()
{
theData[0] = ossim::nan();
theData[1] = ossim::nan();
theData[2] = ossim::nan();
}
/*!
* Debug Dump:
*/
void print(ostream& stream = ossimNotify(ossimNotifyLevel_INFO)) const;
friend ostream& operator<< (ostream& os , const ossimLsrPoint& instance)
{ instance.print(os); return os; }
protected:
/*!
* METHOD: initialize(ossimEcefPoint)
* Convenience method used by several constructors for initializing theData
* given an ECEF point. Assumes theLsrSpace has been previously initialized.
*/
void initialize(const ossimEcefPoint& ecef_point);
ossimColumnVector3d theData;
ossimLsrSpace theLsrSpace;
};
//================== BEGIN DEFINITIONS FOR INLINE METHODS =====================
//*****************************************************************************
// INLINE OPERATOR: ossimLsrPoint::operator=(ossimLsrPoint)
//*****************************************************************************
inline const ossimLsrPoint&
ossimLsrPoint::operator=(const ossimLsrPoint& p)
{
theData = p.theData;
theLsrSpace = p.theLsrSpace;
return *this;
}
//*****************************************************************************
// INLINE OPERATOR: ossimLsrPoint::operator==(ossimLsrPoint)
//*****************************************************************************
inline bool ossimLsrPoint::operator==(const ossimLsrPoint& p) const
{
return ((theData == p.theData) && (theLsrSpace == p.theLsrSpace));
}
//*****************************************************************************
// INLINE OPERATOR: ossimLsrPoint::operator!=(ossimLsrPoint)
//*****************************************************************************
inline bool ossimLsrPoint::operator!=(const ossimLsrPoint& p) const
{
return (!(*this == p));
}
//*****************************************************************************
// INLINE OPERATOR: ossimLsrPoint::operator ossimEcefPoint()
//
// Looks like a constructor for an ossimEcefPoint but is an operation on this
// object. Returns the ossimEcefPoint equivalent.
//*****************************************************************************
inline ossimLsrPoint::operator ossimEcefPoint() const
{
return ossimEcefPoint(theLsrSpace.origin().data() +
theLsrSpace.lsrToEcefRotMatrix()*theData);
}
//*****************************************************************************
// INLINE METHOD: ossimLsrPoint::print(ostream)
//
// Dumps contents for debug purposes.
//*****************************************************************************
inline void ossimLsrPoint::print(ostream& os) const
{
os << "(ossimLsrPoint)\n"
<< " theData = " << theData
<< "\n theLsrSpace = " << theLsrSpace;
}
#endif
|