Skip to content

Cloud Kepler is a cloud enabled Kepler Planet searching pipeline

Notifications You must be signed in to change notification settings

openEXO/cloud-kepler

Folders and files

NameName
Last commit message
Last commit date
Oct 14, 2013
Aug 22, 2014
Aug 21, 2014
Nov 11, 2014
Nov 6, 2014
Aug 21, 2014
Mar 13, 2014
Aug 5, 2014
Jul 29, 2014
Nov 25, 2014
May 6, 2013

Repository files navigation

Prototype of Cloud Kepler

Master v1.25
Logo Logo
Logo Logo

Pipeline for processing Kepler lightcurves and search for signals of planets/flares.

More on the Kepler project:

More on Python Map-Reduce:

More on Amazon Elastic Map-Reduce and Hadoop:

This branch includes a Cython implementation of the BLS algorithm. A few things to keep in mind:

  • Cython code must be compiled for changes to take effect. To compile, just run make from the Python base directory. If you believe a build has been corrupted or want a clean start, you can do make clean and then make.
  • The Cython code assumes C-contiguous arrays; assuming the ordering of an array is one way to make the code faster. So if you are going to pass an array to Cython, it should be C-contiguous or you will receive an error.
  • Cython outputs a shared object (.so) file that is copied into the Python directory. Treat it just like a .py file once it is compiled. You cannot edit it directly, but you can import it and use its functions from Python like normal.