Loading [MathJax]/extensions/tex2jax.js
LSST Applications g0fba68d861+05816baf74,g1ec0fe41b4+f536777771,g1fd858c14a+a9301854fb,g35bb328faa+fcb1d3bbc8,g4af146b050+a5c07d5b1d,g4d2262a081+6e5fcc2a4e,g53246c7159+fcb1d3bbc8,g56a49b3a55+9c12191793,g5a012ec0e7+3632fc3ff3,g60b5630c4e+ded28b650d,g67b6fd64d1+ed4b5058f4,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g8352419a5c+fcb1d3bbc8,g87b7deb4dc+7b42cf88bf,g8852436030+e5453db6e6,g89139ef638+ed4b5058f4,g8e3bb8577d+d38d73bdbd,g9125e01d80+fcb1d3bbc8,g94187f82dc+ded28b650d,g989de1cb63+ed4b5058f4,g9d31334357+ded28b650d,g9f33ca652e+50a8019d8c,gabe3b4be73+1e0a283bba,gabf8522325+fa80ff7197,gb1101e3267+d9fb1f8026,gb58c049af0+f03b321e39,gb665e3612d+2a0c9e9e84,gb89ab40317+ed4b5058f4,gcf25f946ba+e5453db6e6,gd6cbbdb0b4+bb83cc51f8,gdd1046aedd+ded28b650d,gde0f65d7ad+941d412827,ge278dab8ac+d65b3c2b70,ge410e46f29+ed4b5058f4,gf23fb2af72+b7cae620c0,gf5e32f922b+fcb1d3bbc8,gf67bdafdda+ed4b5058f4,w.2025.16
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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) {}

◆ 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 cpputils::hashCombine(17, _latitude.wrapCtr(), _longitude.wrapCtr(), _elevation);
106 }
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 }
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: