VO - EranOfek/AstroPack GitHub Wiki
Description
The +VO package contains various functions to deal with data products of a number of past and present telescopes and missions, as well as with particular survey data.
Content
Currently, the following sub-packages are available:
- Chandra
- CoRoT
- DECaLS
- desi
- Fermi
- GALEX
- HST
- IRSA
- Kepler
- MAST
- NED
- NIST
- POSS
- PTF
- SDSS
- Swift
- TESS
- TNS
- VizieR
- VLA
- WISE
- ZTF
Examples
% get a MARX-simulated Chandra/ACIS PSF at mono energy or spectrum-weighted
% for a given position and roll angle on a given Chandra/ACIS chip (detector),
% whose number is the first argument of the function:
P = VO.Chandra.getACIS_PSF(0, 'Energy', 2.5, 'PosX', 124, 'PosY', 876);
%
RollAngle = 53;
P = VO.Chandra.getACIS_PSF(1, 'Energy', 3.2, 'PosX', 124, 'PosY', 876, 'RollAngle', RollAngle);
%
En = 1:10; Sp = [En; En.^-2]';
P = VO.Chandra.getACIS_PSF(3,'Spec', Sp, 'PosX', 100, 'PosY', 301);