LSSTApplications  18.1.0
LSSTDataManagementBasePackage
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. More...
 
 Observatory (std::string const &longitude, std::string const &latitude, double const elevation)
 Construct an Observatory with longitude and latitude specified as sexagesimal strings. More...
 
 ~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 More...
 
void setLatitude (lsst::geom::Angle const latitude)
 set telescope latitude (positive values are E of Greenwich) More...
 
void setElevation (double const elevation)
 set telescope elevation (meters above reference spheroid) More...
 
lsst::geom::Angle getLongitude () const noexcept
 get telescope longitude (positive values are E of Greenwich) More...
 
lsst::geom::Angle getLatitude () const noexcept
 get telescope latitude More...
 
double getElevation () const noexcept
 get telescope elevation (meters above reference spheroid) More...
 
std::string toString () const
 get string representation More...
 
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. More...
 

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 37 of file Observatory.cc.

39  : _latitude(latitude), _longitude(longitude), _elevation(elevation) {}
table::Key< lsst::geom::Angle > latitude
Definition: VisitInfo.cc:171
table::Key< double > elevation
Definition: VisitInfo.cc:173
table::Key< lsst::geom::Angle > longitude
Definition: VisitInfo.cc:172

◆ 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 50 of file Observatory.cc.

50 { 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 48 of file Observatory.cc.

48 { return _longitude; }

◆ hash_value()

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

Return a hash of this object.

Definition at line 96 of file Observatory.h.

96  {
97  // Completely arbitrary seed
98  return utils::hashCombine(17, _latitude.wrapCtr(), _longitude.wrapCtr(), _elevation);
99  }
Angle wrapCtr() const noexcept
Wrap this angle to the range [-π, π).
Definition: Angle.h:412
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 93 of file Observatory.h.

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

◆ operator=() [1/2]

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

◆ operator=() [2/2]

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

◆ operator==()

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

Definition at line 87 of file Observatory.h.

87  {
88  auto deltaLongitude = (_latitude - rhs.getLatitude()).wrapCtr();
89  auto deltaLatitude = (_longitude - rhs.getLongitude()).wrapCtr();
90  return (deltaLongitude == 0.0 * lsst::geom::degrees) &&
91  (deltaLatitude == 0.0 * lsst::geom::degrees) && ((_elevation - rhs._elevation) == 0.0);
92  }
AngleUnit constexpr degrees
constant with units of degrees
Definition: Angle.h:109

◆ setElevation()

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

set telescope elevation (meters above reference spheroid)

Definition at line 56 of file Observatory.cc.

56 { _elevation = elevation; }
table::Key< double > elevation
Definition: VisitInfo.cc:173

◆ setLatitude()

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

set telescope latitude (positive values are E of Greenwich)

Definition at line 52 of file Observatory.cc.

52 { _latitude = latitude; }
table::Key< lsst::geom::Angle > latitude
Definition: VisitInfo.cc:171

◆ setLongitude()

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

set telescope longitude

Definition at line 54 of file Observatory.cc.

54 { _longitude = longitude; }
table::Key< lsst::geom::Angle > longitude
Definition: VisitInfo.cc:172

◆ toString()

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

get string representation

Definition at line 58 of file Observatory.cc.

58  {
59  return (boost::format("%gW, %gN %g") % getLongitude().asDegrees() % getLatitude().asDegrees() %
60  getElevation())
61  .str();
62 }
double getElevation() const noexcept
get telescope elevation (meters above reference spheroid)
Definition: Observatory.h:82
lsst::geom::Angle getLatitude() const noexcept
get telescope latitude
Definition: Observatory.cc:50
lsst::geom::Angle getLongitude() const noexcept
get telescope longitude (positive values are E of Greenwich)
Definition: Observatory.cc:48
def format(config, name=None, writeSourceLine=True, prefix="", verbose=False)
Definition: history.py:168

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