https://github.com/christinahedges/kepfgs
Tools to use the Kepler and K2 Fine Guidance Sensor data.
https://github.com/christinahedges/kepfgs
Last synced: 7 months ago
JSON representation
Tools to use the Kepler and K2 Fine Guidance Sensor data.
- Host: GitHub
- URL: https://github.com/christinahedges/kepfgs
- Owner: christinahedges
- Created: 2017-07-12T22:34:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-25T22:50:49.000Z (almost 8 years ago)
- Last Synced: 2024-05-22T04:31:13.925Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 135 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kepFGS
======Tools and tutorials for using the Kepler and K2 FGS data. The FGS.py file included in this repo contains tools to download, clean and stitch FGS quarters and campaigns. Currently this is only compatible with python 2.7.
Dependencies
------------Currently FGS.py requires
>
* pandas
* numpy
* urllib
* glob
* progressbar
* astropy
>This list of dependencies may get smaller.
Example use
-----------A full tutorial of how to use FGS data and the tools provided in FGS.py is given in the notebook **FGS_tutorial.ipynb**. A simple example is below.
$ import FGS
$ FGS.get_data() #Download all Kepler FGS data
$ #generate light curve from all quarters for Kepler ID 2564891
$ time,flux,column,row=FGS.gen_lc(datadir,ID=2564891)