You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is my first time submitting an issue so bear with me:
I'm trying to retrieve HWO ExEP Precursor Science Stars using the NASAExoplanetArchive module. The table is listed as 'DI_STARS_EXEP' in NASAExoplanetArchive.TAP_TABLES.
When I try to perform a general retrieval via NASAExoplanetArchive.query_criteria(table='DI_STARS_EXEP', select='*'), the module returns InvalidTableError: 'di_stars_exep' is not a valid table.
I have tried updating astroquery to see if that would solve the issue but it did not.
Thank you for reading!
The text was updated successfully, but these errors were encountered:
In [1]: from astroquery.nasa_exoplanet_archive import NasaExoplanetArchive
In [2]: NasaExoplanetArchive.query_criteria(table='DI_STARS_EXEP', select='*')
Traceback (most recent call last):
Cell In[2], line 1
NasaExoplanetArchive.query_criteria(table='DI_STARS_EXEP', select='*')
File ~/repos/astroquery/astroquery/utils/class_or_instance.py:25 in f
return self.fn(obj, *args, **kwds)
File ~/repos/astroquery/astroquery/utils/process_asyncs.py:29 in newmethod
result = self._parse_result(response, verbose=verbose)
File ~/repos/astroquery/astroquery/ipac/nexsci/nasa_exoplanet_archive/core.py:619 in _parse_result
self._handle_error(text)
File ~/repos/astroquery/astroquery/ipac/nexsci/nasa_exoplanet_archive/core.py:505 in _handle_error
raise InvalidTableError("'{0}' is not a valid table".format(match.group(1).lower()))
InvalidTableError: 'di_stars_exep' is not a valid table
but it should be based on the documentation, which says to look at this list:
Hello all,
This is my first time submitting an issue so bear with me:
I'm trying to retrieve HWO ExEP Precursor Science Stars using the NASAExoplanetArchive module. The table is listed as
'DI_STARS_EXEP'
inNASAExoplanetArchive.TAP_TABLES
.When I try to perform a general retrieval via
NASAExoplanetArchive.query_criteria(table='DI_STARS_EXEP', select='*')
, the module returnsInvalidTableError: 'di_stars_exep' is not a valid table
.I have tried updating astroquery to see if that would solve the issue but it did not.
Thank you for reading!
The text was updated successfully, but these errors were encountered: