Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 901 Bytes

index.rst

File metadata and controls

48 lines (30 loc) · 901 Bytes

Fermi High Energy Explorer (fhee)

This is a Python package to explore the Fermi-LAT high-energy data.

It's not a real project, just an example for a tutorial, see: https://github.com/gammapy/fhee

Installation

cd v04
python setup.py install

Testing

fhee is well-tested. See for youself:

cd v04
py.test fhee

Usage

fhee implements the :pyfhee.Catalog and :py~fhee.EventList classes that represent the 2FHL catalog and event list (data files in FITS format are bundled).

As an example application, there's the :pyfhee.find_2fhl_highest_energy_event function and the :pyfhee.run_example function.

import fhee
catalog = fhee.Catalog()
print(len(catalog))

API

fhee