We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some parts of this tutorial/example need to be updated according to the latest version of astroquery.
See the changes I had to do below:
def get_scw_list(ra_obj, dec_obj,radius,start_date,end_date ): R = Heasarc.query_region( position = SkyCoord(ra_obj, dec_obj, unit='deg'), radius = f"{radius} deg", catalog = 'intscw', # 'mission' has been deprecated, use catalog instead time = start_date + " .. " + end_date, good_isgri = ">1000", ) R.sort('scw_id') # changed SCW_ID to scw_id return R['scw_id'], R['scw_ver'] # changed SCW_VER to scw_ver
The text was updated successfully, but these errors were encountered:
Thanks @interstellxr for the feedback. We'll adjust the documentation accordingly
Sorry, something went wrong.
burnout87
No branches or pull requests
Some parts of this tutorial/example need to be updated according to the latest version of astroquery.
See the changes I had to do below:
The text was updated successfully, but these errors were encountered: