File Weather.h

template<>
struct hash<lsst::afw::coord::Weather>

Public Types

template<>
using argument_type = lsst::afw::coord::Weather
template<>
using result_type = size_t

Public Functions

size_t operator()(argument_type const &obj) const
namespace lsst

Class for a simple mapping implementing a generic AstrometryTransform.

Remove all non-astronomical counts from the Chunk Exposure’s pixels.

Forward declarations for lsst::utils::Cache

For details on the Cache class, see the Cache.h file.

It uses a template rather than a pointer so that the derived classes can use the specifics of the transform. The class simplePolyMapping overloads a few routines.

A base class for image defects

Numeric constants used by the Integrate.h integrator routines.

Compute Image Statistics

Note

Gauss-Kronrod-Patterson quadrature coefficients for use in quadpack routine qng. These coefficients were calculated with 101 decimal digit arithmetic by L. W. Fullerton, Bell Labs, Nov 1981.

Note

The Statistics class itself can only handle lsst::afw::image::MaskedImage() types. The philosophy has been to handle other types by making them look like lsst::afw::image::MaskedImage() and reusing that code. Users should have no need to instantiate a Statistics object directly, but should use the overloaded makeStatistics() factory functions.

namespace afw
namespace coord

Functions

std::ostream &operator<<(std::ostream &os, Weather const &weath)

print a Weather to an output stream

class Weather
#include <Weather.h>

Basic weather information sufficient for a simple model for air mass or refraction

Weather is immutable.

Public Functions

Weather(double airTemperature, double airPressure, double humidity)

Construct a Weather

Parameters
  • [in] airTemperature: outside air temperature (C)

  • [in] airPressure: outside air pressure (Pascal)

  • [in] humidity: outside relative humidity (%)

Exceptions
  • lsst::pex::exceptions::InvalidParameterError: if humidity < 0

~Weather()
Weather(Weather const&)
Weather(Weather&&)
Weather &operator=(Weather const&)
Weather &operator=(Weather&&)
bool operator==(Weather const &other) const
bool operator!=(Weather const &other) const
std::size_t hash_value() const

Return a hash of this object.

double getAirTemperature() const

get outside air temperature (C)

double getAirPressure() const

get outside air pressure (Pascal)

double getHumidity() const

get outside relative humidity (%)

Private Functions

void validate() const

Validate the values

Exceptions
  • lsst::pex::exceptions::InvalidParameterError: if humidity < 0

Private Members

double _airTemperature

air temperature (C)

double _airPressure

air pressure (Pascals)

double _humidity

relative humidity (%)

namespace std
template<>
struct hash<lsst::afw::coord::Weather>

Public Types

template<>
using argument_type = lsst::afw::coord::Weather
template<>
using result_type = size_t

Public Functions

size_t operator()(argument_type const &obj) const