LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | List of all members
lsst::afw::coord::Observatory Class Referencefinal

Hold the location of an observatory. More...

#include <Observatory.h>

Public Member Functions

 Observatory (lsst::geom::Angle const longitude, lsst::geom::Angle const latitude, double const elevation)
 Construct an Observatory with longitude and latitude specified as lsst::geom::Angle.
 
 Observatory (std::string const &longitude, std::string const &latitude, double const elevation)
 Construct an Observatory with longitude and latitude specified as sexagesimal strings.
 
 ~Observatory () noexcept
 
 Observatory (Observatory const &) noexcept
 
 Observatory (Observatory &&) noexcept
 
Observatoryoperator= (Observatory const &) noexcept
 
Observatoryoperator= (Observatory &&) noexcept
 
void setLongitude (lsst::geom::Angle const longitude)
 set telescope longitude
 
void setLatitude (lsst::geom::Angle const latitude)
 set telescope latitude (positive values are E of Greenwich)
 
void setElevation (double const elevation)
 set telescope elevation (meters above reference spheroid)
 
lsst::geom::Angle getLongitude () const noexcept
 get telescope longitude (positive values are E of Greenwich)
 
lsst::geom::Angle getLatitude () const noexcept
 get telescope latitude
 
double getElevation () const noexcept
 get telescope elevation (meters above reference spheroid)
 
std::string toString () const
 get string representation
 
bool operator== (Observatory const &rhs) const noexcept
 
bool operator!= (Observatory const &rhs) const noexcept
 
std::size_t hash_value () const noexcept
 Return a hash of this object.
 

Detailed Description

Hold the location of an observatory.

Definition at line 43 of file Observatory.h.

Constructor & Destructor Documentation

◆ Observatory() [1/4]

lsst::afw::coord::Observatory::Observatory ( lsst::geom::Angle const longitude,
lsst::geom::Angle const latitude,
double const elevation )

Construct an Observatory with longitude and latitude specified as lsst::geom::Angle.

Parameters
[in]longitudetelescope longitude (positive values are E of Greenwich)
[in]latitudetelescope latitude
[in]elevationtelescope elevation (meters above reference spheroid)

Definition at line 39 of file Observatory.cc.

41 : _latitude(latitude), _longitude(longitude), _elevation(elevation) {}
table::Key< lsst::geom::Angle > longitude
Definition VisitInfo.cc:215
table::Key< lsst::geom::Angle > latitude
Definition VisitInfo.cc:214
table::Key< double > elevation
Definition VisitInfo.cc:216

◆ Observatory() [2/4]

lsst::afw::coord::Observatory::Observatory ( std::string const & longitude,
std::string const & latitude,
double const elevation )

Construct an Observatory with longitude and latitude specified as sexagesimal strings.

Parameters
[in]longitudetelescope longitude (dd:mm:ss.s, positive values are E of Greenwich)
[in]latitudetelescope latitude (dd:mm:ss.s)
[in]elevationtelescope elevation (meters above reference spheroid)

◆ ~Observatory()

lsst::afw::coord::Observatory::~Observatory ( )
defaultnoexcept

◆ Observatory() [3/4]

lsst::afw::coord::Observatory::Observatory ( Observatory const & )
defaultnoexcept

◆ Observatory() [4/4]

lsst::afw::coord::Observatory::Observatory ( Observatory && )
defaultnoexcept

Member Function Documentation

◆ getElevation()

double lsst::afw::coord::Observatory::getElevation ( ) const
inlinenoexcept

get telescope elevation (meters above reference spheroid)

Definition at line 82 of file Observatory.h.

82{ return _elevation; }

◆ getLatitude()

lsst::geom::Angle lsst::afw::coord::Observatory::getLatitude ( ) const
noexcept

get telescope latitude

Definition at line 52 of file Observatory.cc.

52{ return _latitude; }

◆ getLongitude()

lsst::geom::Angle lsst::afw::coord::Observatory::getLongitude ( ) const
noexcept

get telescope longitude (positive values are E of Greenwich)

Definition at line 50 of file Observatory.cc.

50{ return _longitude; }

◆ hash_value()

std::size_t lsst::afw::coord::Observatory::hash_value ( ) const
inlinenoexcept

Return a hash of this object.

Definition at line 103 of file Observatory.h.

103 {
104 // Completely arbitrary seed
105 return utils::hashCombine(17, _latitude.wrapCtr(), _longitude.wrapCtr(), _elevation);
106 }
Angle wrapCtr() const noexcept
Wrap this angle to the range [-π, π).
Definition Angle.h:419
std::size_t hashCombine(std::size_t seed) noexcept
Combine hashes.
Definition hashCombine.h:35

◆ operator!=()

bool lsst::afw::coord::Observatory::operator!= ( Observatory const & rhs) const
inlinenoexcept

Definition at line 100 of file Observatory.h.

100{ return !(*this == rhs); }

◆ operator=() [1/2]

Observatory & lsst::afw::coord::Observatory::operator= ( Observatory && )
defaultnoexcept

◆ operator=() [2/2]

Observatory & lsst::afw::coord::Observatory::operator= ( Observatory const & )
defaultnoexcept

◆ operator==()

bool lsst::afw::coord::Observatory::operator== ( Observatory const & rhs) const
inlinenoexcept

Definition at line 87 of file Observatory.h.

87 {
88 // Observatory may be initialized to NaN values as a placeholder, or to indicate "unknown".
89 auto deltaLongitude = std::isnan(_latitude.asRadians()) && std::isnan(rhs._latitude.asRadians())
91 : (_latitude - rhs._latitude).wrapCtr();
92 auto deltaLatitude = std::isnan(_longitude.asRadians()) && std::isnan(rhs._longitude.asRadians())
94 : (_longitude - rhs._longitude).wrapCtr();
95 return (deltaLongitude == 0.0 * lsst::geom::degrees) &&
96 (deltaLatitude == 0.0 * lsst::geom::degrees) &&
97 ((std::isnan(_elevation) && std::isnan(rhs._elevation)) ||
98 (_elevation - rhs._elevation) == 0.0);
99 }
constexpr double asRadians() const noexcept
Return an Angle's value in radians.
Definition Angle.h:173
T isnan(T... args)
AngleUnit constexpr degrees
constant with units of degrees
Definition Angle.h:110

◆ setElevation()

void lsst::afw::coord::Observatory::setElevation ( double const elevation)

set telescope elevation (meters above reference spheroid)

Definition at line 58 of file Observatory.cc.

58{ _elevation = elevation; }

◆ setLatitude()

void lsst::afw::coord::Observatory::setLatitude ( lsst::geom::Angle const latitude)

set telescope latitude (positive values are E of Greenwich)

Definition at line 54 of file Observatory.cc.

54{ _latitude = latitude; }

◆ setLongitude()

void lsst::afw::coord::Observatory::setLongitude ( lsst::geom::Angle const longitude)

set telescope longitude

Definition at line 56 of file Observatory.cc.

56{ _longitude = longitude; }

◆ toString()

std::string lsst::afw::coord::Observatory::toString ( ) const

get string representation

Definition at line 60 of file Observatory.cc.

60 {
61 // Follow ISO 6709 ordering and sign convention.
62 return (boost::format("%gN, %gE %g") % getLatitude().asDegrees() % getLongitude().asDegrees() %
64 .str();
65}
double getElevation() const noexcept
get telescope elevation (meters above reference spheroid)
Definition Observatory.h:82
lsst::geom::Angle getLatitude() const noexcept
get telescope latitude
lsst::geom::Angle getLongitude() const noexcept
get telescope longitude (positive values are E of Greenwich)

The documentation for this class was generated from the following files: