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

search_lightcurve() and download_all() return different author #1438

Open
GijsMulders opened this issue Jun 11, 2024 · 0 comments
Open

search_lightcurve() and download_all() return different author #1438

GijsMulders opened this issue Jun 11, 2024 · 0 comments

Comments

@GijsMulders
Copy link

GijsMulders commented Jun 11, 2024

Problem description

When searching for and downloading TESS SPOC long cadence lightcurves, the author field is different

Example

import lightkurve as lk
search_result= lk.search_lightcurve('TIC {}'.format(176218128), 
    mission='TESS',
    author= ['TESS-SPOC'],  
    exptime=600,
    sector=29)
dls= search_result.download_all()
print (search_result.author[0], dls[0].author, search_result.author[0] == dls[0].author)
Screenshot 2024-06-11 at 17 29 14

Expected behavior

I would expect both lightcurves to be called TESS-SPOC but the downloaded one is only called SPOC

Environment

  • platform OSX
  • lightkurve version 2.4.2:
  • installation method (e.g. pip, conda, source): conda, pip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant