Full Changelog¶
0.4.12 (unreleased)¶
New Tools and Services¶
API changes¶
esa.euclid¶
Method
get_datalinkshas a new argument,extra_options, to customize the results to be got from the server. Specifically, passing'METADATA'to this argument will retrieve the extra fieldsdatalabs_path,file_nameandhdu_index. [#3438]
vizier¶
Methods
get_catalog,get_catalog_asyncandquery_*now always return UCD1+ instead of UCD1. [#3458]
Service fixes and enhancements¶
heasarc¶
gaia¶
esa.hubble¶
Update
get_datalabs_pathmethod so an alternative path is checked if the file is not in Datalabs yet [#3437]
mast¶
Raise an error if non-string values are passed to
utils.resolve_object. [#3435]Filtering by file extension or by a string column is now case-insensitive in
MastMissions.filter_productsandObservations.filter_products. [#3427]Switch to use HTTP continuation for partial downloads. [#3448]
Expand the supported data types for filter values in
Mast.mast_query. Previously, users had to input filter values enclosed in lists, even when specifying a single value or dictionary. [#3422]Raise informative error if
MastMissionsquery radius is too large. [#3447]Add
batch_sizeparameter toMastMissions.get_product_list,Observations.get_product_list, andutils.resolve_objectto allow controlling the number of items sent in each batch request to the server. This can help avoid timeouts or connection errors for large requests. [#3454]Separate requests for moving target cutouts in
Tesscutto one per sector. [#3467]Improved robustness of PanSTARRS column metadata parsing. This prevents metadata-related query errors. [#3485]
jplspec¶
linelists.jplspec¶
New location for jplspec. astroquery.jplspec is now deprecated in favor of astroquery.linelists.jplspec [#3455]
mpc¶
Fix bug in queries for interstellar objects with
MPC.get_observationsand enable queries for “dead” comets [#3474]
linelists¶
xmatch¶
change url of xmatch to use the new CDS domain name [#3465]
Infrastructure, Utility and Other Changes and Additions¶
Versions of Python <3.10 are no longer supported. [#3504]
Versions of numpy <1.22 are no longer supported. [#3504]
utils.tap¶
TapPlus.delete_user_tableincludes the schema name to be compatible with TAP+ version >= 10.x. [#3439]
0.4.11 (2025-09-19)¶
API changes¶
esa.hubble¶
Removal of the deprecated
query_hst_tapmethod, usequery_tapinstead. [#3367]
eso¶
Deprecated
open_formandcachein query functions [#3339]
gaia¶
Deprecated
bandfromload_dataas it has no effect on upstream response any more. [#3278]
mast¶
Deprecated the
productparameter in theTesscut.get_sectors,Tesscut.get_cutouts, andTesscut.download_cutoutsmethods. Support for TESS Image Calibration (TICA) high-level science products has been removed; only Science Processing Operations Center (SPOC) products are supported. [#3391]
Service fixes and enhancements¶
alma¶
Bug fix in
footprint_to_regthat did not allow regions to be plotted. [#3285]
esa.euclid¶
esa.hubble¶
Internal refactor of the module to use to PyVO. [#3367]
eso¶
Switch querying interface from WDB to TAP in querying functions. [#3339]
Allow plain ADQL queries via
query_tap(with authentication as well). [#3339]Cone search using
cone_ra`, ``cone_dec`, ``cone_radiusarguments. [#3339]Retrieve record count before querying the archive, via
count_onlyargument. [#3339]Ask query functions to print the underlying ADQL queries without issuing them. [#3339]
gaia¶
New method cross_match_basic that simplifies the positional x-match method. [#3320]
New datalink retrieve types EPOCH_PHOTOMETRY_CROWDED_FIELD, EPOCH_ASTROMETRY_BRIGHT, XP_MEAN_SPECTRUM_GRAVLENS, EPOCH_FLAGS_NSS, EPOCH_PARAMETERS_RVS_SINGLE, EPOCH_PARAMETERS_RVS_DOUBLE, EPOCH_FLAGS_VARI, and MEAN_SPECTRUM_RVS. [#3371, #3342]
Rename datalink retrieval types EPOCH_SPECTRUM_RVS, EPOCH_SPECTRUM_XP_SSO, EPOCH_SPECTRUM_XP_CROWDING, MEAN_SPECTRUM_XP, EPOCH_SPECTRUM_XP and MEAN_SPECTRUM_XP_GRAVLENS. [#3382]
heasarc¶
Add support for astropy.table.Row in
download_dataandlocate_data. [#3270]locate_datareturns empty rows with an error in the error_message column if there are no data associated with that row rather than filtering it out. [#3275]locate_datachanged to use POST request instead of GET to accomodate large requests. [#3356]Preserve size of mask when all values are False in
locate_data. [#3411]
image_cutouts.first¶
Changed FIRST URL. [#3413]
imcce¶
ipac.irsa¶
Fix
list_catalogsto not include image metadata tables, only catalogs. Theinclude_metadata_tableskeyword argument allows opting in to return all TAP tables, including non-spatial and metadata ones, too. [#3334]The “filter” kwarg of
list_catalogsis now looking for string matches either in catalog names and short descriptions. [#3415]
linelists.cdms¶
mast¶
Add
resolverparameter to query methods to specify the resolver to use when resolving object names to coordinates. [#3292]Add
resolve_allparameter toresolve_objectto resolve object names and return coordinates for all available resolvers. [#3292]Fix bug in
utils.remove_duplicate_productsthat does not retain the order of the products in an input table. [#3314]Add
return_uri_mapparameter toObservations.get_cloud_uristo return a mapping of the input data product URIs to the returned cloud URIs. [#3314]Add
verboseparameter toObservations.get_cloud_uristo control whether warnings are logged when a product cannot be found in the cloud. [#3314]Improved
MastMissionsqueries to accept lists for query critieria values, in addition to comma-delimited strings. [#3319]Enhanced
filter_productsmethods inMastMissionsandObservationsto support advanced filtering expressions for numeric columns and with negative values. [#3365, #3393]Fix bug where duplicate columns from server responses cause an error when converting to an
~astropy.table.Table. [#3400]Support for resolving multiple object names at once with
resolve_object, including automatic batching into groups of up to 30 names per request to the name translation service. [#3398]
simbad¶
Add
async_joboption in all query methods. It provides slower to start, but more robust queries for which the timeout can be increased. [#3305]
skyview¶
utils.tap¶
The method
upload_tableaccepts file formats accepted by astropy’sTable.read(). [#3295]
Infrastructure, Utility and Other Changes and Additions¶
query.py¶
BaseQuery._download_filenow returns the local file path in all cases. Some corner cases where downloads were not properly continued have been fixed. [#3232]
utils¶
0.4.10 (2025-03-18)¶
New Tools and Services¶
esa.euclid¶
New module to access the ESA Euclid Archive. [#3216]
API changes¶
ipac.irsa¶
simbad¶
The detailed hierarchy is now returned by default in
query_hierarchy(it was hidden in the previous versions). [#3195]
Service fixes and enhancements¶
gaia¶
ipac.irsa¶
Method to run Simple Spectral Access (SSA) VO queries,
query_ssa, is added. [#3076]Adding the “servicetype” kwarg to
list_collectionsto be able to list SIA and SSA collections separately. [#3200]Adding “filter” kwarg to
list_collectionsandlist_catalogsto filter for collections/catalogs with names containing the filter string. [#3264]Adding support for asynchronous queries using the new
async_jobkeyword argument. [#3201]Making the
'spatial'keyword inquery_regioncase insensitive. [#3224]Adding new
list_columnsmethod to list available columns for a given catalog. [#3265]
ipac.nexsci.nasa_exoplanet_archive¶
Fixed InvalidTableError for DI_STARS_EXEP and TD tables. [#3189]
mast¶
Bugfix where users are unnecessarily warned about a query limit while fetching products in
MastMissions.get_product_list. [#3193]Bugfix where
Observations.get_cloud_uriandObservations.get_cloud_urisfail if the MAST relative path is not found. [#3193]Corrected parameter checking in
MastMissionsto ensure case-sensitive comparisons. [#3260]Add batching to
MastMissions.get_product_listto avoid server errors and allow for a larger number of input datasets. [#3230]Handle a MAST URI string as input for
Observations.get_cloud_uriand a list of MAST URIs as input forObservations.get_cloud_uris. [#3193]
simbad¶
Fixing joining measurement with basic votable-fields and masking values instead of not returning lines in the result if a measurement fields are empty for an object. [#3199]
Performance improvements to prevent timeouts to
query_regionwhen there are more than 300 coordinates. [#3235]Removed
'pm'from the votable_fields list. [#3259]
xmatch¶
Fixing the API to be more flexible, it is now possible to ommit the
'vizier:'sting before the catalog name when crossmatching with a vizier table. [#3194]
Infrastructure, Utility and Other Changes and Additions¶
Removed usage of the astropy TestRunner, therefore the unadvertised
astroquery.test()functionality. [#3215]
0.4.9 (2025-01-24)¶
New Tools and Services¶
esa.integral¶
New module to access the ESA Integral Science Legacy Archive. [#3154]
Service fixes and enhancements¶
heasarc¶
Fix Heasarc.download_data for Sciserver. [#3183]
ipac.nexsci.nasa_exoplanet_archive¶
Add missing unit strings to unit mapper.
micron,microns, anduas. [#3188]
jplspec¶
linelists.cdms¶
mast¶
Retrieve data products from the Missions-MAST API with
MastMissions.get_product_list. Retrieve unique data products only withMastMissions.get_unique_product_list. [#3155]Filter data products retrieved from the Missions-MAST API with
MastMissions.filter_products. [#3155]Download data products from the Missions-MAST API with
MastMissions.download_products. Download a single data product usingMastMissions.download_file. [#3155]Get the keyword corresponding to the dataset ID for a specific mission with
MastMissions.get_dataset_kwd. [#3155]
mocserver¶
Switch to https instead of http for the default url (allows pyodide to use the module). [#3139]
Add
TimeMOCandSTMOCas possible entries inMOCServer.query_regionto allow temporal and space-time searches. [#3139]return_mocnow allows to ask for a Time-MOC or a Space-Time MOC rather than only Space-MOCs. [#3139]Fix query by MOC that would write a file
moc.fitswhere the method was executed in overwriting mode (potentially deleting data if there was a conflicting file). [#3139]Returned tables now have a default list of fields instead of the > 130 columns returned previously. The full list of fields can be displayed with the new method
MOCServer.list_fields. [#3139]Add
casesensitiveparameter in the queries (previously, this was hardcoded toTrue) [#3139]Add
coordinate_systemparameter to the queries to allow to filter on the different bodies or frames. The list of available space systems can be printed with the new methodMOCServer.list_coordinates_systems. [#3139]Add
query_hipsmethod, which is convenient to filter only Hierarchical progressive surveys. [#3139]Add new parameter
criteriainquery_regionandquery_hipswith the same use asmeta_datain the deprecated methodfind_datasets. [#3139]Deprecated
find_datasetsin favour ofquery_region. [#3139]
simbad¶
Fixed adding a list of fluxes with the deprecated notation
Simbad.add_votable_fields("flux(U)", "flux(J)"). [#3186]Support more of the 0.4.7 votable fields. Raise more significant error messages for the discontinued ones. [#3186]
Fix the deprecated votable fields
otype(V)andotype(S). [#3186]Fixed non existing flux filters as votable fields would fail silently. [#3186]
0.4.8 (2025-01-16)¶
Service fixes and enhancements¶
astrometry_net¶
alma¶
casda¶
Support jobs which are in the SUSPENDED state (used when copying data). [#3134]
dace¶
Module has been removed as it was incompatible with server changes. A standalone library called dace-query is available to access DACE data. [#3162]
esa.hubble¶
Include warning in get_datalabs_path method for ehst when the data volume is not mounted in DataLabs. [#3059]
Fixed an inconsistency,
get_member_observationsnow return a list for both simple and composite observations. [#3157]New method
get_datalabs_pathto return the complete path of a file in datalabs by combining the datalabs volume path with the path of the file in the table ehst.artifact [#2998]
esa.jwst¶
esasky¶
Added support for eROSITA downloads. [#3111]
gaia¶
Included table size in the class TapTableMeta returned by the functions
load_tablesandload_table, in the class Tap. [#2970]For the functions that return files in FITS/ECSV format, the files are now provided as uncompressed files. [#2983]
New parameter USE_NAMES_OVER_IDS that gives preference to
nameover ID attributes of columns as the names of columns in theastropy.table.Tableinstance. By default, value True is set, that gives name preference. [#2967]Change the signature of the method
load_data: the parameteroutput_filethat defined the file where the results were saved, is replaced by boolean parameterdump_to_file, that in case it is true, a compressed directory named “datalink_output.zip” with all the DataLink files is made. So the users cannot specified the output file anymore. [#3014]New retrieval types for datalink (Gaia DR4 release). [#3110]
The output file name built by the method
load_data, includes microsecond resolution. This is based on the previous. [#3130]
gama¶
Changed URL to https and thus making the module functional again. [#3056]
heasarc¶
Refactor heasarc to use the VO backend. [#2997]
ipac.irsa¶
ipac.nexsci.nasa_explanet_archive¶
Fix unit inconsistency in
pl_trandurfrom day(s) to hour(s). [#3137]
jplhorizons¶
Add missing column definitions, especially for
refraction=Trueandextra_precision=True. [#2986]
mast¶
Fixed bug in which the
local_pathparameter for themast.observations.download_filemethod does not accept a directory. [#3016]Added
verboseparameter to modulate output inmast.observations.download_productsmethod. [#3031]Fixed bug in
Catalogs.query_criteria()to usepageandpagesizeparameters correctly. [#3065]Modified
mast.Observations.get_cloud_uristo also accept query criteria and data product filters. [#3064]Increased the speed of
mast.Observations.get_cloud_urisby obtaining multiple URIs from MAST at once. [#3064]Raise an error rather than a warning when nonexistent query criteria are used in
Observations.query_criteria,Catalogs.query_criteria,Catalogs.query_region,Catalogs.query_object, andMastMissionsquery methods, [#3084, #3126]Added support for case-insensitive criteria keyword arguments in
mast.Observations.query_criteriaandmast.Catalogs.query_criteria. [#3087]Added function
mast.Observations.get_unique_product_listto return the unique data products associated with given observations. [#3096]Deprecated
enable_cloud_datasetanddisable_cloud_datasetin classes where they are non-operational. [#3113]Handle HLSP data products in
Observations.get_cloud_uris. [#3126]
mpc¶
Rename
MPC.get_mpc_object_endpointtoMPC._get_mpc_object_endpointto indicate that it is a private method. [#3089]Parse star catalog information when querying observations database. [#2957]
Parse ephemeris with sky motion with three digit precision. [#3026]
Raise EmptyResponseError when empty ephemeris response is returned [#3026]
Deprecated
get_raw_responseparameter fromMPC.get_observations. The raw response may be retrieved from the _async() method. [#3089]Removed
get_raw_responseparameter fromMPC.get_ephemerisandMPC.get_observatory_codeswithout deprecation as the parameters were ignored and had no effect. [#3089]Fixed bug in
MPC.get_ephemeristhat caused thecachekeyword parameter to be ignored. [#3089]Removed
comettypeparameter fromMPC.get_observationswithout deprecation: it was undocumented, ignored, and had no effect. [#3089]When
MPC.get_ephemerisraises anInvalidQueryErrormessage, instead of returning the original HTML formatted text, strip the HTML tags and return a plain text message. [#3171]
nvas¶
Fixed base URL to reflect upstream changes. [#3160]
linelists.cdms¶
Fixed result parsing incompatibility with astropy 6.1 on Windows systems. [#3008]
ogle¶
Changed URL to https and thus making the module functional again. [#3048]
sdss¶
simbad¶
The
ROW_LIMITvalue to have the maximum number of rows is now -1. UseROW_LIMIT = 0to retrieve the output’s meta-data. [#2954]ROW_LIMITcan now be set at instantiation (e.g.:simbad = Simbad(ROW_LIMIT=10))). [#2954]list_votable_fieldsnow return an astropy Table with added fields information instead of a list of strings. [#2954]list_votable_fieldsis now queried directly from SIMBAD instead of reading a file in astroquery. This prevents it from being outdated. [#2954]get_votable_fieldsnow prints the table name and column name instead of just the column name. [#2954]The
verboseandcachekwargs have been deprecated from all methods as they have no effect with with the new query interface. [#2954]get_adqlis deprecated and replaced byget_query_payloadinlist_columnsandlist_table. The payload output contains the ADQL under theQUERYkey. [#2954]All query methods except
query_tapandquery_criterianow accept acriteriaargument to restrict the results with custom criteria. [#2954]query_objectsoutputs now have an additional columnuser_specified_idcontaining the objects’ name as specified by the user. Thevotable_fieldoptiontyped_idis removed. [#2954]The
equinoxandepochkwargs are deprecated inquery_region, use astropy.coordinates.SkyCoord directly instead. [#2954]query_bibcodehas a new optionabstractthat allows to also retrieve the article’s abstract. [#2954]query_bibcodeoutput is now in an astropy Table with distinct columns instead of a single one in which all the information was a string. [#2954]query_criteriais now deprecated and should be replaced by either custom TAP queries or by thecriteriaargument added in the other query methods. A helper method was addedastroquery.simbad.utils.CriteriaTranslatorto translate between the sim-script syntax and the TAP/ADQL syntax. [#2954]Fixed
query_objectsthat would not work in combination with the additional fieldident. [#3149]Added
query_hierarchy: a new method that allows to get the parents, children, or siblings of an object. [#3175]Added
NoResultsWarningwhen a query returns an empty table. [#3068]
skyview¶
Overlay arguments
lut,grid, andgridlabelare removed, as they only apply to output types not returned by Astroquery. [#2979]
splatalogue¶
Fix incompatibilities with the major changes made to the Splatalogue’s upstream server in March 2024. [#2960]
vizier¶
vsa¶
Updated base URL to fix 404 responses. [#3033]
xmatch¶
Infrastructure, Utility and Other Changes and Additions¶
Versions of astropy <5.0 and numpy <1.20 are no longer supported. [#2966]
Versions of Python <3.9 are no longer supported. [#2966]
Versions of PyVO <1.5 are no longer supported. [#3002]
utils.tap¶
0.4.7 (2024-03-08)¶
New Tools and Services¶
esa.hsa¶
New module to access the ESA Herschel mission. [#2122]
ipac.irsa¶
New class,
Most, to access the Moving Object Search Tool (MOST) is added. [#2660]
mocserver¶
mocserveris the new name of thecdsmodule allowing access to the CDS MOC server [#2766]
solarsystem.neodys¶
New module to access the NEODyS web interface. [#2618]
solarsystem.pds¶
New module to access the Planetary Data System’s Ring Node System. [#2358]
Service fixes and enhancements¶
alfalfa¶
Removal of the non-functional
get_spectrymmethod as that service has disappeared. [#2578]
alma¶
Fixed a regression to handle arrays of string input for the
querymethods. [#2457]Throws an error when an unsupported
kwargs(or argument) is passed in to a function. [#2475]New DataLink API handling. [#2493]
Fixed bug in which blank URLs were being sent to the downloader. [#2490]
Removed deprecated broken functions from
alma.utils. [#2331]Fixed a bug in slicing of ALMA regions. [#2810]
Added support for ALMA OIDC (OpenID Connect) auth service, Keycloak. [#2712]
Fixed bug to use the timeout set in the configuration. [#2535]
astrometry_net¶
Added a
verbose=keyword argument toAstrometryNetto control whether or not to show any information during solving. [#2484]Fixed a bug which caused
solve_timeoutto not be respected when an image was solved by constructing a source list internally before sending data to astrometry.net. [#2484]Avoid duplicated warnings about API key and raise an error only when API key is needed but not set. [#2483]
Added
return_submission_idkeyword argument tomonitor_submission(). [#2685]Fixed off-by-one error in the reference pixel of the WCS solution when the solution is found using sources detected by photutils. After this fix the solution from astrometry.net will be the same when the input is an image regardless of whether the image is uploaded or sources are detected locally. [#2752]
atomic¶
cadc¶
casda¶
cds¶
The
cdsmodule has been renamedmocserverand issues a deprecation warning when imported. [#2766]
esa.hubble¶
Refactored
query_criteriato make the query a lot faster. [#2524]Method
query_hst_taphas been renamedquery_tap. [#2597]Product types in
download_producthave been modified to: ‘PRODUCT’, ‘SCIENCE_PRODUCT’, or ‘POSTCARD’. [#2597]Added
proposalkeyword argument to several methods now allows to filter by Proposal ID. [#2797]Update to TAP url to query data and download files, aligned with the new eHST Science Archive. [#2567, #2597]
Status and maintenance messages from eHST TAP when the module is instantiated. Use
get_status_messagesto retrieve them. [#2597]New methods to download single files
download_fileand download FITS associated to an observationdownload_fits_files. [#2797]New function to retrieve all the files associated to an observation
get_associated_files. [#2797]New methods to retrieve metadata (
get_observations_from_program) and files (download_files_from_program) associated to a proposal. [#2910]
esa.jwst¶
Fixes in
loginandset_tokenmethods. [#2807]
esa.xmm_newton¶
eso¶
Authenticate with ESO using APIs and tokens instead of HTML forms. [#2681]
Discontinue usage of old Request Handler for dataset retrieval in favor of new dataportal API. [#2681]
Local reimplementation of astroquery’s
_download_fileto fix some issues and avoid sending a HEAD request just to get the original filename. [#1580]Restore support for .Z files. [#1818]
exoplanet_orbit_database¶
The module has been deprecated due to the retirement of its upstream website. The database hasn’t been updated since 2018, users are encouraged to use the
ipac.nexsci.nasa_exoplanet_archivemodule instead. [#2792]
gaia¶
TAP notifications service is now available for Gaia. [#2376]
Datalink can be used with the new parameter
linking_parameter. It provides an additional meaning to the source identifiers: ‘source_id’, ‘transit_id’, and ‘image_id’. [#2859, #2936]Added support for output formats: votable, votable_gzip (which is now the default), and ecsv. [#2907]
For the functions
cone_search,cone_search_async,launch_job, andlaunch_job_asyncthe data can be retrieved for the jsonoutput_format. [#2927, #2947]Method
load_datanow has the parametervalid_datato control the epoch photometry service to return all data associated to a given source. [#2376]Default Gaia catalog updated to DR3. [#2596]
heasarc¶
Fix issue in which blank tables raised exceptions. [#2624]
ipac.irsa¶
The IRSA module’s backend has been refactored to favour VO services and to run the queries through TAP rather than Gator. New method
query_tapis added to enable ADQL queries, async-named methods have been removed. Theselcolskwarg has been renamed tocolumns, and thecacheandverbosekwargs have been deprecated as they have no effect. [#2823]Method to run SIAv2 VO queries,
query_sia, is added. [#2837]Method to list available collections for SIA queries,
list_collections, is added. [#2952]Deprecation of the module
ipac.irsa.shadue to upstream API changes and in favour of recommending usingipac.irsainstead. [#2924]
ipac.nexsci.nasa_exoplanet_archive¶
jplhorizons¶
Deprecate
get_raw_responseparameter in query methods. The raw response may be retrieved from the _async() methods. [#2418]Adding
optional_settingparameter to the ephemerides methods to allow passing additional settings. [#1802]Topocentric coordinates can now be specified for both center and target in observer and vector queries. [#2625]
Updated returned table columns to match Horizons’s updates. [#2794]
Assign units to
"hour_angle","solartime", and"siderealtime"columns. [#2794]Allow using units in locations specified as coordinates. [#2746]
jplsbdb¶
Fix a bug for jplsdbd query when the returned physical quantity contains a unit with exponential. [#2377]
jplspec¶
Fix a bug in lookup-table generation when using
parse_name_locallyoption. [#2945]
linelists.cdms¶
Fix issues with the line name parser and the line data parser; the original implementation was incomplete and upstream was not fully documented. [#2385, #2411]
Added new line list reader and enabled reading line list from remote server.[#2760]
Updated local version of line list to include some change in column names. [#2760]
mast¶
Cull duplicate downloads for the same dataURI in
Observations.download_products()and duplicate URIs inObservations.get_cloud_uris. [#2497]Fixed
Observations.get_product_listto handle input lists of obsids. [#2504]Add a
flatoption toObservation.download_products()to turn off the automatic creation and organizing of products into subdirectories. [#2511]Expanding
Cutoutsfunctionality to support making Hubble Advanced Product (HAP) cutouts via HAPCut. [#2613]Expanding
Cutoutsfunctionality to support TICA HLSPs now available throughTesscutClass. [#2668]Resolved issue making PANSTARRS catalog queries when columns and sorting is specified. [#2727]
Bug fix in
Observations.query_criteria()to usepageandpagesizeparameters [#2915]Added
mast_querytoMastClassto handle the creation of parameter dictionaries for MAST Service queries. [#2785]PanSTARRS data is now available to download anonymously from the public STScI S3 buckets. [#2893]
Changed warning to error for authentication failure. [#1874]
nist¶
oac¶
Fix bug in parsing events that contain html tags (e.g. in their alias field). [#2423]
sdss¶
query_region()can perform cone search or a rectangular search around the specified coordinates. [#2477, #2663]The default data release has been changed to DR17. [#2478]
Switching to https to avoid issues originating in relying on server side redirects. [#2654]
Fix bug to have object IDs as unsigned integers, on Windows, too. [#2800, #2806, #2880]
simbad¶
new
query_tapmethod to access SIMBAD. This comes with additional methods to explore SIMBAD’s tables and their links:list_tables,list_columns, andlist_linked_tables. [#2856]It is now possible to specify multiple coordinates together with a single radius as a string in
query_region()andquery_region_async(). [#2494]ROW_LIMITis now respected when running region queries; previously, it was ignored for region queries but respected for all others. A new warning,BlankResponseWarning, is introduced for use when one or more query terms result in a blank or missing row; previously, only a generic warning was issued. [#2637]
skyview¶
svo_fps¶
The wavelength limits in
get_filter_indexcan now be specified using any length unit, not just angstroms. [#2444]Queries with invalid parameter names now raise an
InvalidQueryError. [#2446]The default wavelength range used by
get_filter_indexwas far too large. The user must now always specify both upper and lower limits. [#2509]
vizier¶
xmatch¶
Infrastructure, Utility and Other Changes and Additions¶
Optional keyword arguments are now keyword only. [#1802, #2339, #2477, #2532, #2597, #2601, #2609, #2610, #2655, #2656, #2661, #2671, #2690, #2703]
New function,
utils.cleanup_downloads.cleanup_saved_downloads, is added to help the testcleanup narrative in narrative documentations. [#2384]Adding new
BaseVOQuerybaseclass for modules using VO tools. [#2836]Adding more system and package information to User-Agent. [#2762, #2836]
Refactoring caching. [#1634]
Removal of the non-functional
nraomodule as it was completely incompatible with the refactored upstream API. [#2546]Removal of the non-functional
noirlabmodule because the current module is incompatible with the new upstream API. [#2579]Removed deprecated function
utils.commons.send_request(). [#2583]Removed deprecated function
utils.download_list_of_fitsfiles(). [#2594]Versions of astropy <4.2.1 and numpy <1.18 are no longer supported. [#2602]
utils.tap¶
0.4.6 (2022-03-22)¶
Service fixes and enhancements¶
alma¶
casda¶
Simplify file names produced by
download_filesto avoid filename too long errors. [#2308]
esa.hubble¶
esa.xmm_newton¶
Add option to download proprietary data. [#2251]
gaia¶
The
query_object()andquery_object_async()methods ofastroquery.gaia.Gaiano longer ignore theircolumnsargument whenradiusis specified. [#2249]Enhanced methods
launch_jobandlaunch_job_asyncto avoid issues with the name provided by the user for the output file when the results are returned by the TAP in compressed format. [#2077]
ipac.nexsci.nasa_exoplanet_archive¶
Fixes to alias query, and regularize keyword removed from deprecated
query_starmethod. [#2264]
mast¶
Adding moving target functionality to
Tesscut[#2121]Adding
MastMissionsclass to provide mission-specific metadata query functionalities. [#2095]GALEX data is now available to download anonymously from the public STScI S3 buckets. [#2261]
Adding the All-Sky PLATO Input Catalog (‘plato’) as a catalog option for methods of
Catalogs. [#2279]Optional keyword arguments are now keyword only. [#2317]
sdss¶
Infrastructure, Utility and Other Changes and Additions¶
Remove obsolete testing tools. [#2287]
Callback hooks are deleted before caching. Potentially all cached queries prior to this PR will be rendered invalid. [#2295]
utils.tap¶
0.4.5 (2021-12-24)¶
New Tools and Services¶
esa.jwst¶
Service fixes and enhancements¶
eso¶
Add option to retrieve_data from an earlier archive query. [#1614]
jplhorizons¶
Fix result parsing issues by disabling caching of failed queries. [#2253]
sdss¶
Fix URL for individual spectrum file download in recent data releases. [#2214]
Infrastructure, Utility and Other Changes and Additions¶
Adding
--alma-sitepytest option for testing to have a control over which specific site to test. [#2224]The function
astroquery.utils.download_list_of_fitsfiles()has been deprecated. [#2247]
utils.tap¶
Changing the default verbosity of TapPlus to False. [#2228]
0.4.4 (2021-11-17)¶
New Tools and Services¶
esa.esasky¶
Added Solar System Object functionality. [#2106]
ipac¶
New namespace for IPAC services. [#2131]
linelists.cdms¶
Molecular line catalog query tool provides an interface to the Cologne Database for Molecular Spectroscopy. [#2143]
Service fixes and enhancements¶
casda¶
Add ability to stage and download non image data which have been found through the CASDA obscore table. [#2158]
gaia¶
The bug which caused changing the
MAIN_GAIA_TABLEoption to have no effect has been fixed. [#2153]
ipac.ned¶
Keyword ‘file_format’ is added to
get_image_listto enable obtaining links to non-fits file formats, too. [#2217]
jplhorizons¶
Updated to use v1.0 of the new JPL Horizons API released 2021-09-15. Included in this update, the default reference system is changed from J2000 to ICRF, following API documentation. [#2154]
- Query
id_typebehavior has changed: 'majorbody'and'id'have been removed and the equivalent functionality replaced withNone.Noneimplements the Horizons default, which is to search for major bodies first, then fall back to a small body search when no matches are found. Horizons does not have a major body only search. [#2161]The default value was
'smallbody'but it is nowNone, which follows Horizons’s default behavior. [#2161]
- Query
Fix changes in column names that resulted KeyErrors. [#2202]
jplspec¶
JPLSpec now raises an EmptyResponseError if the returned result is empty. The API for JPLspec’s
lookup_table.findfunction returns a dictionary instead of values (for compatibility w/CDMS). [#2144]
simbad¶
splatalogue¶
Splatalogue table merging can now handle unmasked columns. [#2136]
vizier¶
It is now possible to specify ‘galatic’ centers in region queries to have box queries oriented along the galactic axes. [#2152]
Infrastructure, Utility and Other Changes and Additions¶
Versions of astropy <4 and numpy <1.16 are no longer supported. [#2163]
ipac¶
As part of the namespace restructure, now modules for the IPAC archives are avalable as:
ipac.irsa,ipac.ned, andipac.nexsci. Additional services have also been moved to their parent organisations’ namespace. Acces from the top namespace have been deprecated for the following modules:ibe,irsa,irsa_dust,nasa_exoplanet_archive,ned,sha. [#2131]
0.4.3 (2021-07-07)¶
New Tools and Services¶
esa.esasky¶
esa.hubble¶
Module added to perform a cone search based on a set of criteria. [#1855]
esa.xmm_newton¶
Adding the extraction epic light curves and spectra. [#2017]
heasarc¶
Add alternative instance of HEASARC Server, maintained by INTEGRAL Science Data Center. [#1988]
nasa_exoplanet_archive¶
Making module compatible with the NASA Exoplanet Archive 2.0 using TAP. release. Support for querying old tables (exoplanets, compositepars, and exomultpars) has been dropped. [#2067]
Service fixes and enhancements¶
atomic¶
Change URL to https. [#2088]
esa.xmm_newton¶
gaia¶
Changed default of Gaia TAP Plus interface to instantiate silently. [#2085]
heasarc¶
Added posibility to query limited time range. [#1988]
ibe¶
irsa¶
sha¶
Infrastructure, Utility and Other Changes and Additions¶
0.4.2 (2021-05-14)¶
New Tools and Services¶
cds.hips2fits¶
New module HIPS2fits to provide access to fits/jpg/png image cutouts from a HiPS + a WCS. [#1734]
esa.iso¶
New module to access ESA ISO mission. [#1914]
esa.xmm_newton¶
mast¶
Added Zcut functionality to astroquery [#1911]
svo_fps¶
New module to access the Spanish Virtual Observatory Filter Profile List. [#1498]
Service fixes and enhancements¶
alma¶
The archive query interface has been deprecated in favour of VirtualObservatory (VO) services such as TAP, ObsCore etc. The alma library has been updated accordingly. [#1689]
ALMA queries using string representations will now convert to appropriate coordinates before being sent to the server; previously they were treated as whatever unit they were presented in. [#1867]
Download mechanism uses the ALMA Datalink service that allows exploring and downloading entire tarball package files or just part of their content. [#1820]
Fixed bug in
get_data_infoto ensure relevant fields are strings. [#2022]
esa.esasky¶
esa.hubble¶
Module added to query eHST TAP based on a set of specific criteria and asynchronous jobs are now supported. [#1723]
gaia¶
gemini¶
login()method to support authenticated sessions to the GOA. [#1780]get_file()to support downloading files. [#1780]fix syntax error in
query_criteria()[#1823]If QA and/or engineering parameters are explicitly passed, remove the defaults of
notengineeringand/orNotFail. [#2000]Smarter defaulting of radius to None unless coordinates are specified, in which case defaults to 0.3 degrees. [#1998]
heasarc¶
A
NoResultsWarningis now returned when there is no matching rows were found in query. [#1829]
irsa¶
Used more specific exceptions in IRSA. [#1854]
jplsbdb¶
Returns astropy quantities, rather than scaled units. [#2011]
lcogt¶
Module has been removed after having been defunct due to upstream API refactoring a few years ago. [#2071]
mast¶
Added
Observations.download_filemethod to download a single file from MAST given an input data URI. [#1825]Added case for passing a row to
Observations.download_file. [#1881]Removed deprecated methods:
Observations.get_hst_s3_uris(),Observations.get_hst_s3_uri(),Core.get_token(),Core.enable_s3_hst_dataset(),Core.disable_s3_hst_dataset(); and parameters:obstypeandsilent. [#1884]Fixed error causing empty products passed to
Observations.get_product_list()to yeild a non-empty result. [#1921]Changed AWS cloud access from RequesterPays to anonymous acces. [#1980]
Fixed error with download of Spitzer data. [#1994]
sdss¶
Fix validation of field names. [#1790]
splatalogue¶
The Splatalogue ID querying is now properly cached in the astropy cache directory. The scraping function has also been updated to reflect the Splatalogue webpage. [#1772]
The splatalogue URL has changed to https://splatalogue.online, as the old site stopped functioning in September 2020 [#1817]
ukidss¶
Updated to
UKIDSSDR11PLUSas the default data release. [#1767]
vamdc¶
Deprecate module due to upstream library dependence and compability issues. [#2070]
vizier¶
Refactor module to support list of coordinates as well as several fixes to follow changes in upstream API. [#2012]
Infrastructure, Utility and Other Changes and Additions¶
0.4.1 (2020-06-19)¶
New Tools and Services¶
esa.xmm_newton¶
A new ESA archive service for XMM-Newton access. [#1557]
image_cutouts.first¶
Module added to access FIRST survey radio images. [#1733]
noirlab¶
Module added to access the NOIRLab (formally NOAO) archive. [#1638]
Service fixes and enhancements¶
alma¶
A new API was deployed in late February / early March 2020, requiring a refactor. The user-facing API should remain mostly the same, but some service interruption may have occurred. Note that the
stage_datacolumnuidhas been renamedmous_uid, which is a technical correction, and several columns have been added. [#1644, #1665, #1683]The contents of tarfiles can be shown with the
expand_tarfileskeyword tostage_data. [#1683]Bugfix: when accessing private data, auth credentials were not being passed to the HEAD request used to acquire header data. [#1698]
casda¶
Add ability to stage and download ASKAP data. [#1706]
cadc¶
Fixed authentication and enabled listing of async jobs. [#1712]
eso¶
New
unzipparameter to control uncompressing the retrieved data. [#1642]
gaia¶
Allow for setting row limits in query submissions through class attribute. [#1641]
gemini¶
Allow for additional search terms to be sent to query_criteria and passed to the raw web query against the Gemini Archive. [#1659]
jplhorizons¶
Fix for changes in HORIZONS return results after their 2020 Feb 12 update. [#1650]
nasa_exoplanet_archive¶
Update the NASA Exoplanet Archive interface to support all tables available through the API. The standard astroquery interface is now implemented via the
query_*[_async]methods. [#1700]
nrao¶
Fixed passing
project_codeto the query [#1720]
vizier¶
It is now possible to specify constraints to
query_region()with thecolumn_filterskeyword. [#1702]
Infrastructure, Utility and Other Changes and Additions¶
Versions of astropy <3.1 are no longer supported. [#1649]
Fixed a bug that would prevent the TOP statement from being properly added to a TAP query containing valid ‘n’. The bug was revealed by changes to the gaia module, introduced in version 0.4. [#1680]
Added new
jsonkeyword to BaseQuery requests. [#1657]
0.4 (2020-01-24)¶
New Tools and Services¶
casda¶
Module added to access data from the CSIRO ASKAP Science Data Archive. [#1505]
dace¶
Added DACE Service. See DACE website for details. [#1370]
gemini¶
Module added to access the Gemini archive. [#1596]
Service fixes and enhancements¶
gaia¶
Add optional ‘columns’ parameter to select specific columns. [#1548]
imcce¶
Fix Skybot return for unumbered asteroids. [#1598]
jplhorizons¶
Fix for changes in HORIZONS return results after their 2020 Jan 21 update. [#1620]
mast¶
Add Kepler to missions with cloud support, Update
get_cloud_uriso that if a file is not found it produces a warning and returns None rather than throwing an exception. [#1561]
nasa_exoplanet_archive¶
Redefined the query API so as to prevent downloading of the whole database. Added two functions
query_planet(to query for a specific exoplanet), andquery_star(to query for all exoplanets under a specific stellar system) [#1606]
splatalogue¶
Added new ‘only_astronomically_observed’ option. [#1600]
vo_conesearch¶
query_region()now acceptsservice_urlkeyword and usesconf.pedanticandconf.timeoutdirectly. As a result,URL,PEDANTIC, andTIMEOUTclass attributes are no longer needed, so they are removed fromConeSearchClassandConeSearch. [#1528]The classic API
conesearch()no longer takestimeoutandpedantickeywords. It usesconf.pedanticandconf.timeoutdirectly. [#1528]Null result now emits warning instead of exception. [#1528]
Result is now returned as
astropy.table.Tableby default. [#1528]
Infrastructure, Utility and Other Changes and Additions¶
utils¶
Added timer functions. [#1508]
0.3.10 (2019-09-19)¶
New Tools and Services¶
astrometry_net¶
Module added to interface to astrometry.net plate-solving service. [#1163]
cadc¶
esa¶
gaia¶
Added tables sharing, tables edition, upload from pytable and job results, cross match, data access and datalink access. [#1266]
imcce¶
mast¶
mpc¶
Functionality added to query observations database. [#1350]
Service fixes and enhancements¶
alma¶
cds¶
Apply MOCPy v0.5.* API changes. [#1343]
eso¶
Try to re-authenticate when logged out from the ESO server. [#1315]
heasarc¶
Fixing error handling to filter out only the query errors. [#1338]
jplhorizons¶
Add
refplanekeyword tovectors_asyncto return data for different available reference planes. [#1335]Vector queries provide different aberrations, ephemerides queries provide extra precision option. [#1478]
Fix crash when precision to the second on epoch is requested. [#1488]
Fix for missing H, G values. [#1333]
jplsbdb¶
Fix for missing values. [#1333]
mast¶
Update query_criteria keyword obstype->intentType. [#1366]
Remove deprecated authorization code, fix unit tests, general code cleanup, documentation additions. [#1409]
TIC catalog search update. [#1483]
Add search by object name to Tesscut, make resolver_object public, minor bugfixes. [#1499]
Add option to query TESS Candidate Target List (CTL) Catalog. [#1503]
Add verbose keyword for option to silence logger info and warning about S3 in enable_cloud_dataset(). [#1536]
nasa_ads¶
Fix an error in one of the default keys, citations->citation. [#1337]
nist¶
nrao¶
Fix parameter validation allowing for hybrid telescope configuration. [#1283]
sdss¶
Update to SDSS-IV URLs and general clean-up. [#1308]
vizier¶
xmatch¶
Add parameter
areato restrict sky region considered. [#1476]
Infrastructure, Utility and Other Changes and Additions¶
HTTP user-agent now has the string
_testrunin the version number of astroquery, for queries triggered by testing. [#1307]Adding deprecation decorators to
utilsfrom astropy to be used while we support astropy <v3.1.2. [#1435]Added tables sharing, tables edition, upload from pytable and job results, data access and datalink access to
utils.tap. [#1266]Added a new
astroquery.__citation__andastroquery.__bibtex__attributes which give a citation for astroquery in bibtex format. [#1391]
0.3.9 (2018-12-06)¶
New tool: MPC module can now request comet and asteroid ephemerides from the Minor Planet Ephemeris Service, and return a table of observatory codes and coordinates. [#1177]
New tool
CDS: module to query the MOCServer, a CDS tool providing MOCs and meta data of various data-sets. [#1111]New tool
JPLSDB: New module for querying JPL’s Small Body Database Browser [#1214]ATOMIC: fix several bugs for using Quantities for the range parameters. [#1187]
CADC: added the get_collections method. [#1482]
ESASKY: get_maps() accepts dict or list of (name, Table) pairs as input table list. [#1167]
ESO: Catch exception on login when keyring fails to get a valid storage. [#1198]
ESO: Add option to retrieve calibrations associated to data. [#1184]
FERMI: Switch to HTTPS [#1241]
IRSA: Added
selcolskeyword. [#1296]JPLHorizons: Fix for missing total absolute magnitude or phase coefficient for comets [#1151]
JPLHorizons: Fix queries for major solar system bodies when sub-observer or sub-solar positions are requested. [#1268]
JPLHorizons: Fix bug with airmass column. [#1284]
JPLSpec: New query service for JPL Molecular Spectral Catalog. [#1170]
JPLHorizons: JPL server protocol and epoch range bug fixes, user-defined location and additional ephemerides information added [#1207]
HITRAN: use class-based API [#1028]
MAST: Enable converting list of products into S3 uris [#1126]
MAST: Adding Tesscut interface for accessing TESS cutouts. [#1264]
MAST: Add functionality for switching to auth.mast when it goes live [#1256]
MAST: Support downloading data from multiple missions from the cloud [#1275]
MAST: Updating HSC and Gaia catalog calls (bugfix) [#1203]
MAST: Fixing bug in catalog criteria queries, and updating remote tests. [#1223]
MAST: Fixing mrp_only but and changing default to False [#1238]
MAST: TESS input catalog bugfix [#1297]
NASA_ADS: Use new API [#1162]
Nasa Exoplanet Arhive: Add option to return all columns. [#1183]
SPLATALOGUE: Minor - utils & tests updated to match upstream change [#1236]
utils.tap: Fix Gaia units. [#1161]
VO_CONESEARCH: Service validator now uses new STScI VAO TAP registry. [#1114]
WFAU: Added QSL constraints parameter [#1259]
XMATCH: default timeout has changed from 60s to 300s. [#1137]
Re-enable sandboxing / preventing internet access during non-remote tests, which has been unintentionally disabled for a potentially long time. [#1274]
File download progress bar no longer displays when Astropy log level is set to “WARNING”, “ERROR”, or “CRITICAL”. [#1188]
utils: fix bug in
parse_coordinates, now strings that can be interpreted as coordinates are not sent through Sesame. When unit is not provided, degrees is now explicitely assumed. [#1252]JPLHorizons: fix for #1201 issue in elements() and vectors(), test added
JPLHorizons: fix for missing H, G values [#1332]
JPLHorizons: warn if URI is longer than 2000 chars, docs updated
JPLSBDB: fix for missing value, test added
0.3.8 (2018-04-27)¶
New tool
jplhorizons: JPL Horizons service to obtain ephemerides, orbital elements, and state vectors for Solar System objects. [#1023]New tool
mpc: MPC Module to query the Minor Planet Center web service. [#1064, #1077]New tool
oac: Open Astronomy Catalog API to obtain data products on supernovae, TDEs, and kilonovae. [#1053]New tool
wfauandvsa: Refactor of the UKIDSS query tool add full WFAU support. [#984]ALMA: Adding support for band and polarization selection. [#1108]
HEASARC: Add additional functionality and expand query capabilities. [#1047]
GAIA: Default URL switched to DR2 and made configurable. [#1112]
IRSA: Raise exceptions for exceeding output table size limit. [#1032]
IRSA_DUST: Call over https. [#1069]
LAMDA: Fix writer for Windows on Python 3. [#1059]
MAST: Removing filesize checking due to unreliable filesize reporting in the database. [#1050]
MAST: Added Catalogs class. [#1049]
MAST: Enable downloading MAST HST data from S3. [#1040]
SPLATALOGUE: Move to https as old HTTP post requests were broken. [#1076]
UKIDSS: Update to DR10 as default database. [#984]
utils.TAP: Add tool to check for phase of background job. [#1073]
utils.TAP: Added redirect handling to sync jobs. [#1099]
utils.TAP: Fix jobsIDs assignment. [#1105]
VO_CONESEARCH: URL for validated services have changed. Old URL should still redirect but it is deprecated. [#1033]
0.3.7 (2018-01-25)¶
New tool: Exoplanet Orbit Catalog, NASA Exoplanet Archive [#771]
ESO: The upstream API changed. We have adapted. [#970]
ESO: Added ‘destination’ keyword to Eso.retrieve_data(), to download files to a specific location (other than the cache). [#976]
ESO: Fixed Eso.query_instrument() to use instrument specific query forms (it was using the main form before). [#976]
ESO: Implemented Eso.query_main() to query all instruments with the main form (even the ones without a specific form). [#976]
ESO: Disabled caching for all Eso.retrieve_data() operations. [#976]
ESO: Removed deprecated Eso.data_retrieval() and Eso.query_survey(). Please use Eso.retrieve_data() and Eso.query_surveys() instead. [#1019]
ESO: Added configurable URL. [#1017]
ESO: Fixed string related bugs. [#981]
MAST: Added convenience function to list available missions. [#947]
MAST: Added login capabilities [#982]
MAST: Updated download functionality [#1004]
MAST: Fixed no results bug [#1003]
utils.tap: Made tkinter optional dependency. [#983]
utils.tap: Fixed a bug in load_tables. [#990]
vo_conesearch: Fixed bad query for service that cannot accept ‘&&’ in URL. [#993]
vo_conesearch: Removed broken services from default list. [#997, #1002]
IRSA Dust: fix units in extinction by band table. [#1016]
IRSA: Updated links that switched to use https. [#1010]
NRAO: Allow multiple configurations, telescopes in queries [#1020]
SIMBAD: adding ‘get_query_payload’ kwarg to all public methods to return the request parameters. [#962]
CosmoSim: Fixed login service. [#999]
utils: upgrade
prepend_docstr_noreturnsto work with multiple sections, and thus rename it toprepend_docstr_nosections. [#988]Vizier: find_catalogs will now respect UCD specifications [#1000]
ATOMIC: Added ability to select which rows are returned from the atomic line database. [#1006]
ESASKY: Added Windows support, various bugfixes. [#1001, #977]
GAMA: Updated to use the newer DR3 release. [#1005]
0.3.6 (2017-07-03)¶
New tool: MAST - added module to access the Barbara A. Mikulski Archive for Space Telescopes. [#920, #937]
LAMDA: Add function to write LAMDA-formatted Tables to a datafile. [#887]
ALMA: Fix to queries and tests that were broken by changes in the archive. Note that as of April 2017, the archive is significantly broken and missing many data sets. [#888]
SIMBAD: “dist” is now available as a valid votable field. [#849] Additional minor fixes. [#932,#892]
SHA: fix bug with the coordinate handling. [#885]
turn_off_internetandturn_on_internetis not available any more from the mainutilsnamespace, use them directly fromutils.testing_tools. [#940]Added the ‘verify’ kwarg to
Astroquery.requestto provide a workaround for services that have HTTPS URLs but missing certificates. [#928]
0.3.5 (2017-03-29)¶
New tool: Gaia - added module to access the European Space Agency Gaia Archive. [#836]
New tool: VO Cone Search - added module to access Virtual Observatory’s Simple Cone Search. This is ported from
astropy.vo. [#859]New utility: TAP/TAP+ - added Table Access Protocol utility and the ESAC Science Data Centre (ESDC) extension. [#836]
Fix VizieR to respect specification to return default columns only [#792]
SIMBAD queries allow multiple configurable parameters [#820]
Add a capability to resume partially-completed downloads for services that support the http ‘range’ keyword. Currently applied to ESO and ALMA [#812,#876]
SIMBAD now supports vectorized region queries. A list of coordinates can be sent to SIMBAD simultaneously. Users will also be warned if they submit queries with >10000 entries, which is the SIMBAD-recommended upper limit. Also, SIMBAD support has noted that any IP submitting >6 queries/second will be soft-banned, so we have added a warning to this effect in the documentation [#833]
ALMA: Fix to always use https as the archive now requires it. [#814, #828]
ESASky: Fix various issues related to remote API changes. [#805, #817]
ESASky: Corrected Herschel filter indexing. [#844]
ESO: Fix picking issue with simple
query_survey()queries. [#801]ESO: Fix FEROS and HARPS instrument queries. [#840]
NRAO: Change default radius from 1 degree to 1 arcmin. [#813]
0.3.4 (2016-11-21)¶
New tool: basic HITRAN queries support [#617]
Fix #737, an issue with broken ALMA archive tables, via a hack [#775]
Correct HEASARC tool, which was sending incorrect data to the server [#774]
Fix NIST issue #714 which led to badly-parsed tables [#773]
NRAO archive tool allows user logins and HTML-based queries [#767, #780]
ALMA allows kwargs as input, and various small fixes [#785, #790, #782]
XMatch caching bug fixed [#789]
New tool: VAMDC-cdms interface [#658]
Fix issue with exclude keyword in Splatalogue queries [#616]
0.3.3 (2016-10-11)¶
Option to toggle the display of the download bar [#734]
ESASKY - added new module for querying the ESASKY archive [#758, #763, #765]
Refactor Splatalogue and XMatch to use the caching [#747, #751]
Fix parsing bug for
_parse_radiusin Simbad [#753]Minor fixes to ESO to match upstream form changes [#729]
0.3.2 (2016-06-10)¶
Update ESO tool to work with new web API [#696]
Added new instruments for ESO:
ambient_paranalandmeteo_paranal[#657]Fix problem with listed votable fields being truncated in SIMBAD [#654]
SDSS remote API fixes [#690]
ALMA file downloader will skip over, rather than crashing on, access denied (HTTP 401) errors [#687]
Splatalogue export limit bugfix [#673]
SIMBAD flux_quality flag corrected to flux_qual [#680]
VIZIER add a flag to return the query payload for debugging [#668]
0.3.1 (2016-01-19)¶
Fix bug in xmatch service that required astropy tables to have exactly 2 columns on input [#641]
Fix NASA ADS, which had an internal syntax error [#602]
Bugfix in NRAO queries: telescope config was parsed incorrectly [#629]
IBE - added new module for locating data from PTF, WISE, and 2MASS from IRSA. See <https://irsa.ipac.caltech.edu:443/ibe/> for more information about IBE and <https://www.ptf.caltech.edu/page/ibe> for more information about PTF survey data in particular. [#450]
0.3.0 (2015-10-26)¶
0.2.6 (2015-07-23)¶
0.2.4 (2015-03-27)¶
0.2.3 (2014-09-30)¶
AstroResponse has been removed, which means that all cached objects will have new hashes. You should clear your cache: for most users, that means
rm -r ~/.astropy/cache/astroquery/[#418]In ESO and ALMA, default to not storing your password. New keyword
store_password=False. [#415]In ESO, fixed a form activation issue triggered in ESO
retrieve_data(), updated file download link triggered by server side change. More interesting, madeusernameoptional inlogin(): instead, you can now configure your preferredusername. Finally, automatic login is now used byretrieve_data(), if configured. [#420, #427]Bugfix for UKIDSS: Login now uses the correct session to retrieve the data [#425]
ALMA - many new features, including selective file retrieval. Fixes many errors that were unnoticed in the previous version [#433]
ALMA - add
helpmethod and pass payload keywords on correctly. Validate the payload before querying. [#438]
0.2.2 (2014-09-10)¶
Support direct transmission of SQL queries to the SDSS server [#410]
Added email/text job completion alert [#407] to the CosmoSim tool [#267].
ESO archive now supports HARPS/FEROS reprocessed data queries [#412]
IPython notebook checker in the ESO tool is now compatible with regular python [#413]
Added new tool: ALMA archive query tool. [#411]
setup script and installation fixes
0.2 (2014-08-17)¶
New tools: ESO, GAMA, xmatch, skyview, OEC
Consistent with astropy 0.4 API for coordinates
Now uses the astropy affiliated template
Python 3 compatibility dramatically improved
Caching added and enhanced: the default cache directory is
~/.astropy/cache/astroquery/[service_name]Services with separate login pages can be accessed
0.1 (2013-09-19)¶
Initial release. Includes features!