getfilt | R Documentation |
Returns a target named filter from the internal database of filters.
getfilt(filter)
filter |
Either filter name explictly built in to
|
Returns a target named filter from the internal database of filters. Filters returned are of the type to be used when calculating AB magnitudes in bandpass
.
Note LSST filters can also be accessed with "Rubin" (the preferred new shorthand name for the observatory).
Two column matrix. First column is the wavelength in Angstrom and second column is the filter response.
Aaron Robotham
photom
, bandpass
, magABcalc
, SFHfunc
colvec=rev(rainbow(9, end=2/3))
plot(getfilt('u_VST'), type='l', col=colvec[1], xlim=c(3e3,2.5e4), ylim=c(0,1),
xlab = 'Wave / Ang', ylab = 'Response')
lines(getfilt('g_VST'), type='l', col=colvec[2])
lines(getfilt('r_VST'), type='l', col=colvec[3])
lines(getfilt('i_VST'), type='l', col=colvec[4])
lines(getfilt('Z_VISTA'), type='l', col=colvec[5])
lines(getfilt('Y_VISTA'), type='l', col=colvec[6])
lines(getfilt('J_VISTA'), type='l', col=colvec[7])
lines(getfilt('H_VISTA'), type='l', col=colvec[8])
lines(getfilt('K_VISTA'), type='l', col=colvec[9])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.