1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
**********************************
Fermi Queries (`astroquery.fermi`)
**********************************
Getting started
===============
The following example illustrates a Fermi LAT query,
centered on M 31 for the energy range 1 to 100 GeV for the first day in 2013.
.. doctest-remote-data::
>>> from astroquery import fermi
>>> result = fermi.FermiLAT.query_object('M31', energyrange_MeV='1000, 100000',
... obsdates='2013-01-01 00:00:00, 2013-01-02 00:00:00')
>>> print(result) # doctest: +IGNORE_OUTPUT
['https://fermi.gsfc.nasa.gov/FTP/fermi/data/lat/queries/L210111120827756AAA3A88_PH00.fits',
'https://fermi.gsfc.nasa.gov/FTP/fermi/data/lat/queries/L210111120827756AAA3A88_SC00.fits']
Reference/API
=============
.. automodapi:: astroquery.fermi
:no-inheritance-diagram:
|