Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tesslightcurves and plotbase #103

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions astrobase/plotbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,8 @@ def fits_finder_chart(
'acf':'Autocorrelation Function',
'win':'Lomb-Scargle normalized power',
'ext':'External period-finder power',
'tls':'Transit Least-Squares SDE'}
'tls':'Transit Least-Squares SDE',
'':'Power'}

METHODLABELS = {'gls':'Generalized Lomb-Scargle periodogram',
'pdm':'Stellingwerf phase-dispersion minimization',
Expand All @@ -1251,7 +1252,8 @@ def fits_finder_chart(
'acf':'McQuillan+ ACF Period Search',
'win':'Timeseries Sampling Lomb-Scargle periodogram',
'ext':'External period-finder periodogram',
'tls':'Transit Least-Squares periodogram'}
'tls':'Transit Least-Squares periodogram',
'':''}

METHODSHORTLABELS = {'gls':'Generalized L-S',
'pdm':'Stellingwerf PDM',
Expand All @@ -1261,7 +1263,8 @@ def fits_finder_chart(
'bls':'BLS',
'win':'Sampling L-S',
'ext':'External period-finder',
'tls':'TLS'}
'tls':'TLS',
'':''}


def plot_periodbase_lsp(lspinfo, outfile=None, plotdpi=100):
Expand Down
Loading