Skip to content

Commit fa181fa

Browse files
authored
Merge pull request #2775 from esdc-esac-esa-int/ESA_gaia-datalink_new_retrieval_types
New retrieval types for Gaia Datalink (GAIAPCR-1281 C9GACS-9070)
2 parents 4617173 + 85e0a37 commit fa181fa

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

astroquery/gaia/__init__.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,12 @@ class Conf(_config.ConfigNamespace):
3636
'XP_SAMPLED',
3737
'RVS',
3838
'MCMC_GSPPHOT',
39-
'MCMC_MSC']
39+
'MCMC_MSC',
40+
'EPOCH_ASTROMETRY',
41+
'RV_EPOCH_SINGLE',
42+
'RV_EPOCH_DOUBLE',
43+
'RVS_EPOCH',
44+
'RVS_TRANSIT']
4045

4146

4247
conf = Conf()

astroquery/gaia/core.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,11 @@ def load_data(self, ids, *, data_release=None, data_structure='INDIVIDUAL',
189189
row per sourceId
190190
retrieval_type : str, optional, default 'ALL' to retrieve all data from the list of sources
191191
retrieval type identifier. For GAIA DR2 possible values are ['EPOCH_PHOTOMETRY']
192-
For GAIA DR3, possible values are ['EPOC_PHOTOMETRY', 'RVS', 'XP_CONTINUOUS', 'XP_SAMPLED',
192+
For GAIA DR3, possible values are ['EPOCH_PHOTOMETRY', 'RVS', 'XP_CONTINUOUS', 'XP_SAMPLED',
193193
'MCMC_GSPPHOT' or 'MCMC_MSC']
194+
For GAIA DR4, possible values will be ['EPOCH_PHOTOMETRY', 'RVS', 'XP_CONTINUOUS', 'XP_SAMPLED',
195+
'MCMC_GSPPHOT', 'MCMC_MSC', 'EPOCH_ASTROMETRY', 'RV_EPOCH_SINGLE', 'RV_EPOCH_DOUBLE', 'RVS_EPOCH' or
196+
'RVS_TRANSIT']
194197
valid_data : bool, optional, default False
195198
By default, the epoch photometry service returns all available data, including
196199
data rows where flux is null and/or the rejected_by_photometry flag is set to True.

0 commit comments

Comments
 (0)