mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
astroSpectra.hpp
Go to the documentation of this file.
1/** \file astroSpectra.hpp
2 * \author Jared R. Males
3 * \brief Type definitions for the astronomical spectral libraries.
4 * \ingroup astrophot
5 *
6 */
7
8#ifndef mx_astro_astroSpectra_hpp
9#define mx_astro_astroSpectra_hpp
10
11#include "units.hpp"
12#include "../ioutils/readColumns.hpp"
13
14namespace mx
15{
16namespace astro
17{
18
19/// A basic spectrum
20/**
21 * \ingroup astrophot_spectra
22 */
23template <typename _units>
25{
26 typedef _units units;
27 typedef typename units::realT realT;
28
29 static const bool freq = false;
30
31 typedef std::string paramsT; ///< The parameter is a string name.
32
33 /// Specify how to convert to SI wavelength units. No conversions are performed in the basic spectrum
34 static constexpr realT wavelengthUnits = static_cast<realT>( 1 );
35
36 /// Specify how to convert to SI flux units. No conversions are performed in the basic spectrum
37 static constexpr realT fluxUnits = static_cast<realT>( 1 );
38
39 /// The data directory environment variable name.
40 static constexpr const char *dataDirEnvVar = 0;
41
42 /// This function should calculate the file name (without the path) for the spectrum parameters.
43 static std::string
44 fileName( const paramsT &name /**< [in] The parameters of the spectrum, in this case just its file name.*/ )
45 {
46 return name;
47 }
48
49 /// This function reads the spectrum, returning its raw wavelength and spectrum points.
50 /** No unit conversions or interpolations should take place.
51 */
52 static int readSpectrum(
53 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
54 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
55 const std::string &path, ///< [in] the full path to the file.
56 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
57 )
58 {
59 return mx::ioutils::readColumns( path, rawLambda, rawSpectrum );
60 }
61};
62
63/// A spectrum from the astroFilt filter library
64/**
65 * \ingroup astrophot_spectra
66 */
67template <typename _units, bool _rsr = true>
69{
70 typedef _units units;
71 typedef typename units::realT realT;
72
73 static const bool freq = false;
74
75 typedef std::string paramsT; ///< The astroFilters are parameterized by name.
76
77 /// Convert from um to SI m
78 static constexpr realT wavelengthUnits = static_cast<realT>( 1e6 );
79
80 /// No conversion is performed on filter transmission.
81 static constexpr realT fluxUnits = static_cast<realT>( 1 );
82
83 static constexpr const char *dataDirEnvVar = "ASTROFILT_DATADIR";
84
85 static std::string fileName( const std::string &name )
86 {
87 return name + ".dat";
88 }
89
90 static int readSpectrum(
91 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
92 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
93 const std::string &path, ///< [in] the full path to the file.
94 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
95 )
96 {
97 mx::ioutils::readColumns( path, rawLambda, rawSpectrum );
98 realT max = 0;
99
100 for( int i = 0; i < rawLambda.size(); ++i )
101 {
102 // if(_rsr) rawSpectrum[i] = rawSpectrum[i]*rawLambda[i];
103 if( rawSpectrum[i] > max )
104 max = rawSpectrum[i];
105 }
106
107 for( int i = 0; i < rawLambda.size(); ++i )
108 {
109 rawSpectrum[i] /= max;
110 }
111
112 return 0;
113 }
114};
115
116/// A square-wave filter spectrum
117/** Parameters specify the central wavelength, width, and sampling (all in microns) of a square-wave type filter.
118 *
119 * To create this filter:
120 * \code
121 * typedef double realT;
122 *
123 * realT lam0 = 0.5; //Central wavelength in microns
124 * realT fw = 0.05; //Full-width, in microns.
125 * realT dlam = 0.001; //Delta-lambda for specifying the defining points. See note.
126 *
127 * astroSpectrum<sqWaveFilter<units::si<realT>>> filt({ lam0, fw, dlam});
128 *
129 * filt.setSpectrum(grid_meters); // grid_meters is a vector<realT> specifying the wavelength grid in meters
130 *
131 * \endcode
132 *
133 * Note that dlam specifies how sharp the filter edges are when interpolated. Larger values will make the filter more
134 * trapezoidal.
135 *
136 * \ingroup astrophot_spectra
137 */
138template <typename _units, bool _rsr = true>
140{
141 typedef _units units;
142 typedef typename units::realT realT;
143
144 static const bool freq = false;
145
146 /// The square wave is parameterized by the central wavelength, width, and sampling (all in microns).
147 typedef struct
148 {
149 realT lam0; ///< The central Wavelength in microns
150 realT fw; ///< The full width of the filter in microns
151 realT dlam; ///< The wavelength sampling to use in microns.
152 } paramsT;
153
154 /// Convert from um to SI m
155 static constexpr realT wavelengthUnits = static_cast<realT>( 1e6 );
156
157 /// No conversion is performed on filter transmission.
158 static constexpr realT fluxUnits = static_cast<realT>( 1 );
159
160 static constexpr const char *dataDirEnvVar = 0;
161
162 static std::string fileName( const paramsT &params )
163 {
164 return " "; // must not be empty to avoid error
165 }
166
167 static int readSpectrum(
168 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
169 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
170 const std::string &path, ///< [in] the full path to the file.
171 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
172 )
173 {
174 rawLambda.resize( 4 );
175 rawSpectrum.resize( 4 );
176
177 rawLambda[0] = params.lam0 - 0.5 * params.fw - 0.5 * params.dlam;
178 rawSpectrum[0] = 0.0;
179
180 rawLambda[1] = params.lam0 - 0.5 * params.fw + 0.5 * params.dlam;
181 rawSpectrum[1] = 1.0;
182
183 rawLambda[2] = params.lam0 + 0.5 * params.fw - 0.5 * params.dlam;
184 rawSpectrum[2] = 1.0;
185
186 rawLambda[3] = params.lam0 + 0.5 * params.fw + 0.5 * params.dlam;
187 rawSpectrum[3] = 0.0;
188
189 return 0;
190 }
191};
192
193/// A spectrum from the HST calspec library
194/** See http://www.stsci.edu/hst/observatory/crds/calspec.html
195 *
196 * \ingroup astrophot_spectra
197 */
198template <typename _units>
200{
201 typedef _units units;
202 typedef typename units::realT realT;
203
204 static const bool freq = false;
205
206 typedef std::string paramsT; ///< The calspec Spectra are parameterized by star name.
207
208 /// Convert from A to SI m
209 static constexpr realT wavelengthUnits = static_cast<realT>( 1e10 );
210
211 /// Convert from erg s-1 cm-2 A-1 to SI W m-3
212 static constexpr realT fluxUnits =
213 static_cast<realT>( 1e7 ) / ( static_cast<realT>( 1e4 ) * static_cast<realT>( 1e10 ) );
214
215 static constexpr const char *dataDirEnvVar = "CALSPEC_DATADIR";
216
217 /// The file name is found from the star's name.
218 static std::string fileName( const std::string &name )
219 {
220 if( name == "alpha_lyr" || name == "vega" )
221 return "alpha_lyr_stis_005.asc";
222 else if( name == "1740346" )
223 return "1740346_nic_002.ascii";
224 else if( name == "sun" || name == "sun_reference" )
225 return "sun_reference_stis.002.asc";
226 }
227
228 /// Read a CALSPEC spectrum, which is a simple two column ASCII format.
229 static int readSpectrum(
230 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
231 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
232 const std::string &path, ///< [in] the full path to the file.
233 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
234 )
235 {
236 return mx::ioutils::readColumns( path, rawLambda, rawSpectrum );
237 }
238};
239
240/// A spectrum from the Pickles library
241/**
242 * \ingroup astrophot_spectra
243 */
244template <typename _units>
246{
247 typedef _units units;
248 typedef typename units::realT realT;
249
250 static const bool freq = false;
251
252 typedef std::string paramsT; ///< The Pickles spectra are parameterized by a spectral type string.
253
254 /// Convert from A to SI m
255 static constexpr realT wavelengthUnits = static_cast<realT>( 1e10 );
256
257 /// The Pickles spectra are dimensionless.
258 static constexpr realT fluxUnits = static_cast<realT>( 1 );
259
260 /// The Pickles spectra location is specified by the PICKLES_DATADIR environment variable.
261 static constexpr const char *dataDirEnvVar = "PICKLES_DATADIR";
262
263 /// The name of the datafile is constructed from its spectral type string.
264 static std::string fileName( const std::string &spt )
265 {
266 return "uk" + ioutils::toLower( spt ) + ".dat";
267 }
268
269 /// Read a Pickles spectrum, which for these purposes is a simple two column ASCII format.
270 static int readSpectrum(
271 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
272 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
273 const std::string &path, ///< [in] the full path to the file.
274 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
275 )
276 {
277 return mx::ioutils::readColumns( path, rawLambda, rawSpectrum );
278 }
279};
280
281/// Earth Albedo Spectra
282/** The spectra can be one of:
283 * - "EPOXI" returns the apparent albedo spectrum from Cowan and Strait (2013) \cite cowan_2013.
284 * - "RawEarthshine" returns the unormalized albedo spectrum measured using Earthshine by Turnbull et al (2006) \cite
285 * turnbull_20016.
286 * - "Earthshine" returns the Earthshine spectrum normalized to match the EPOXI result of 0.27 in the 550 nm band.
287 *
288 * \ingroup astrophot_spectra
289 */
290template <typename _units>
292{
293 typedef _units units;
294 typedef typename units::realT realT;
295
296 static const bool freq = false;
297
298 typedef std::string paramsT; ///< The name of the spectrum can be "EPOXI", "Earthshine", or "RawEarthshine".
299
300 /// Convert from A to SI m
301 static constexpr realT wavelengthUnits = static_cast<realT>( 1e6 );
302
303 /// The Earthshine is a dimensionless albedo.
304 static constexpr realT fluxUnits = static_cast<realT>( 1 );
305
306 /// The location is specified by the EARTHSHINE_DATADIR environment variable.
307 static constexpr const char *dataDirEnvVar = "EARTHSHINE_DATADIR";
308
309 /// The name of the datafile is a constant.
310 static std::string fileName( const std::string &name )
311 {
312 if( name == "EPOXI" )
313 return "cowan_2013_EPOXI_albedo.dat";
314 if( name == "Earthshine" )
315 return "earthshine_epoxi_normalized.dat";
316 if( name == "RawEarthshine" )
317 return "Earthshine/F7_opt_NIR_ES_data.txt";
318
319 mxError( "earthAlbeo::fileName", MXE_INVALIDARG, "name not recognized." );
320
321 return "";
322 }
323
324 /// Read the Earthshine albedo spectrum, which is a simple two column ASCII format.
325 static int readSpectrum(
326 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
327 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
328 const std::string &path, ///< [in] the full path to the file.
329 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
330 )
331 {
332 if( mx::ioutils::readColumns( path, rawLambda, rawSpectrum ) < 0 )
333 return -1;
334 return 0;
335 }
336};
337
338/// Venus Spectra
339/**
340 *
341 * \ingroup astrophot_spectra
342 */
343template <typename _units>
345{
346 typedef _units units;
347 typedef typename units::realT realT;
348
349 static const bool freq = false;
350
351 typedef std::string paramsT; ///< The name of the spectrum can be "venus"
352
353 /// Convert from A to SI m
354 static constexpr realT wavelengthUnits = static_cast<realT>( 1e6 );
355
356 /// The Earthshine is a dimensionless albedo.
357 static constexpr realT fluxUnits = static_cast<realT>( 1 );
358
359 /// The location is specified by the EARTHSHINE_DATADIR environment variable.
360 static constexpr const char *dataDirEnvVar = "VENUS_DATADIR";
361
362 /// The name of the datafile is a constant.
363 static std::string fileName( const std::string &name )
364 {
365 if( name == "Venus" )
366 return "venus_combined_albedo.dat";
367
368 mxError( "venusAlbeo::fileName", MXE_INVALIDARG, "name not recognized." );
369
370 return "";
371 }
372
373 /// Read the Earthshine albedo spectrum, which is a simple two column ASCII format.
374 static int readSpectrum(
375 std::vector<realT> &rawLambda, ///< [out] the raw wavelength vector. This should be an empty vector on input.
376 std::vector<realT> &rawSpectrum, ///< [out] the raw spectrum. This should be an empty vector on input.
377 const std::string &path, ///< [in] the full path to the file.
378 const paramsT &params ///< [in] the parameters are passed in case needed to construct the spectrum
379 )
380 {
381 if( mx::ioutils::readColumns( path, rawLambda, rawSpectrum ) < 0 )
382 return -1;
383 return 0;
384 }
385};
386
387} // namespace astro
388
389} // namespace mx
390
391#endif // mx_astro_astroSpectra_hpp
int readColumns(const std::string &fname, arrTs &...arrays)
Read in columns from a text file.
void toLower(std::string &outstr, const std::string &instr)
Convert a string to all lower case.
The mxlib c++ namespace.
Definition mxError.hpp:106
A spectrum from the astroFilt filter library.
static constexpr realT fluxUnits
No conversion is performed on filter transmission.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
static constexpr realT wavelengthUnits
Convert from um to SI m.
std::string paramsT
The astroFilters are parameterized by name.
static constexpr realT fluxUnits
Specify how to convert to SI flux units. No conversions are performed in the basic spectrum.
std::string paramsT
The parameter is a string name.
static constexpr realT wavelengthUnits
Specify how to convert to SI wavelength units. No conversions are performed in the basic spectrum.
static std::string fileName(const paramsT &name)
This function should calculate the file name (without the path) for the spectrum parameters.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
This function reads the spectrum, returning its raw wavelength and spectrum points.
static constexpr const char * dataDirEnvVar
The data directory environment variable name.
A spectrum from the HST calspec library.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
Read a CALSPEC spectrum, which is a simple two column ASCII format.
static constexpr realT fluxUnits
Convert from erg s-1 cm-2 A-1 to SI W m-3.
static std::string fileName(const std::string &name)
The file name is found from the star's name.
std::string paramsT
The calspec Spectra are parameterized by star name.
static constexpr realT wavelengthUnits
Convert from A to SI m.
Earth Albedo Spectra.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
Read the Earthshine albedo spectrum, which is a simple two column ASCII format.
static constexpr realT wavelengthUnits
Convert from A to SI m.
static constexpr const char * dataDirEnvVar
The location is specified by the EARTHSHINE_DATADIR environment variable.
std::string paramsT
The name of the spectrum can be "EPOXI", "Earthshine", or "RawEarthshine".
static constexpr realT fluxUnits
The Earthshine is a dimensionless albedo.
static std::string fileName(const std::string &name)
The name of the datafile is a constant.
A spectrum from the Pickles library.
static constexpr const char * dataDirEnvVar
The Pickles spectra location is specified by the PICKLES_DATADIR environment variable.
static constexpr realT fluxUnits
The Pickles spectra are dimensionless.
static constexpr realT wavelengthUnits
Convert from A to SI m.
std::string paramsT
The Pickles spectra are parameterized by a spectral type string.
static std::string fileName(const std::string &spt)
The name of the datafile is constructed from its spectral type string.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
Read a Pickles spectrum, which for these purposes is a simple two column ASCII format.
The square wave is parameterized by the central wavelength, width, and sampling (all in microns).
realT dlam
The wavelength sampling to use in microns.
realT lam0
The central Wavelength in microns.
realT fw
The full width of the filter in microns.
A square-wave filter spectrum.
static constexpr realT fluxUnits
No conversion is performed on filter transmission.
static constexpr realT wavelengthUnits
Convert from um to SI m.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
static std::string fileName(const std::string &name)
The name of the datafile is a constant.
static constexpr realT fluxUnits
The Earthshine is a dimensionless albedo.
static int readSpectrum(std::vector< realT > &rawLambda, std::vector< realT > &rawSpectrum, const std::string &path, const paramsT &params)
Read the Earthshine albedo spectrum, which is a simple two column ASCII format.
std::string paramsT
The name of the spectrum can be "venus".
static constexpr const char * dataDirEnvVar
The location is specified by the EARTHSHINE_DATADIR environment variable.
static constexpr realT wavelengthUnits
Convert from A to SI m.
Unit specifications and conversions.