ges logo
GES Home
Start Here
Data Overview
Known Issues
Data Releases
Release History
Schema browser
Data access
Login
Freeform SQL
Example Queries
Q&A
Glossary
Gallery
Publications
Downtime
Links
ges logo bottom
IFA     ROE
Home | Overview | Browser | Access | Login | Examples 
  ges logo

Listing the Radial and Rotational Velocities Available for a Given Star

Several different determinations of stellar radial and projected rotational velocities are tabulated in the GES archive. This page briefly describes where each may be found and prescribes the circumstances in which each may be used (in conformance with the Consortium publication policy).

In brief, the radial velocities that must be used in GES publications are located in column 'Vrad' of view 'RecommendedAstroAnalysis'. In special cases column 'rv' of Table 'Spectrum' can be used but permission must be obtained directly from the PIs.

Velocities in the Archive

Three distinct sets of radial and projected rotational velocities are tabulated in the archive, located as follows:

  • The primary, homogenised radial velocities for each star (that is, each cName) are tabulated in view 'RecommendedAstroAnalysis' as column 'Vrad'. You must use these radial velocities for most purposes.

  • Radial velocities for each spectrum are provided in column 'rv' of table 'Spectrum'. For UVES spectra these values are from the Arcetri reduction pipeline (column FIBINFO.RV in the spectrum FITS files); for Giraffe spectra they are from the Koposov radial velocity determination (FITS column VELCLASS.VEL).

    Projected rotational velocities are also provided for each spectrum as column 'vRot' of table 'Spectrum'.

    It is Consortium policy that you must obtain permission from the PIs to use either of these quantities.

  • For views 'WGRecommendedAstroAnalysis', 'WpNaAstroAnalysis' and 'NpNaAstroAnalysis' column 'Vrad' contains any radial velocity determined independently within a node analysis. Hence the columns are not completely populated and they contain values computed using a variety of techniques which are not compatible with either 'Spectrum.rv' or 'RecommendedAstroAnalysis.Vrad'.

    In addition column 'vsini' of views 'WGRecommendedAstroAnalysis', 'WpNaAstroAnalysis' and 'NpNaAstroAnalysis' contains any projected rotational velocities determined independently within a node analysis.

    Please note that these node and working group recommended radial and projected rotational velocities were not considered for the WG15 homogenised values, with the exception of some WG13 values as noted below.

    It is Consortium policy that these node 'Vrad' and 'vsini' values should not be used in any publication.

The following important points should be noted about the use of the homogenised velocities in view 'RecommendedAstroAnalysis':

  1. Column 'RecommendedAstroAnalysis.Vrad' comprises the GES pipeline radial velocities ('Spectrum.rv') homogenised between the spectra as implemented by WG15. These values have been placed on the HR10 scale and the HR10 value is the default in 'Vrad' where possible.

  2. In the special case of radial velocities determined by WG13, whereby the combined wavelengths of all the gratings for each WG13 target were used, rather than per grating as for the Koposov analysis, the WG13 radial velocities are used in 'Vrad' in place of 'Spectrum.rv'. Column 'provVRad' identifies the provenance of the radial velocity value in 'Vrad' (see the WG15 report for more details).

  3. No homogenised projected rotational velocities are available in release iDR2. Column 'vsini' of view 'RecommendedAstroAnalysis' is intended to contain this quantity but no value was calculated for iDR2 and the column is empty. It will be populated in subsequent releases.

The following table summarises the location of radial and rotational velocities and their respective errors in view 'RecommendedAstroAnalysis' and table 'Spectrum':

Quantity RecommendedAstroAnalysis Spectrum
Radial velocity Vrad rv
Radial velocity error VradErr rvErr
Radial velocity provenance provVRad -
Rotational velocity vsini (empty) vRot
Rotational velocity error vsiniErr (empty) vRotErr

All values are in km/sec. The radial velocities are heliocentric and have the usual convention that positive values correspond to recession. The following values are valid in Column 'provVRad':

'provVRad' value Description
ARCETRI Pipeline processing of UVES spectra in Arcetri
CASU Pipeline processing of Giraffe spectra in Cambridge
NONE No radial velocity available
WG13 Processing by WG13 using combined grating wavelengths

Recall that usually you will use column 'Vrad' from view 'RecommendedAstroAnalysis' and these values are tabulated one per star (that is, per 'cName'). To list the radial velocity available in 'RecommendedAstroAnalysis' for a given star is straightforward:

SELECT
  racc.cName, racc.Vrad, racc.VradErr, racc.provVRad,
  racc.instrument, racc.gratings
FROM
  RecommendedAstroAnalysis racc
WHERE racc.cName ='11053303-7700120';
      

'RecommendedAstroAnalysis' columns 'instrument' and 'gratings' tabulate the instrument and grating setup used to acquire the spectra. Conversely, to list any values tabulated for the same star in table 'Spectrum':

SELECT
  sp.cName, sp.rv, sp.rvErr, sp.vRot, sp.vRotErr,
  frame.instrument, frame.grating
FROM
  Spectrum sp,
  SpecFrame frame
WHERE sp.specFrameID = frame.specFrameID
  AND sp.cName = '11053303-7700120';
      

Here table 'Spectrum' is being joined with table 'SpecFrame' so that 'SpecFrame' columns 'instrument' and 'grating' can be used to show the instruments used to acquire the spectra; different techniques were used to derive the velocities in 'Spectrum' depending on the instrument with which they were acquired (see above). Please recall that you must obtain explicit permission from the PIs to use the radial velocities in 'Spectrum'. The two queries can, of course, be combined to see both sets of velocities available for a given star:

SELECT
  racc.cName, racc.Vrad, racc.VradErr, provVRad,
  sp.rv, sp.rvErr, sp.vRot, sp.vRotErr,
  racc.instrument, racc.gratings
FROM
  RecommendedAstroAnalysis racc,
  SpectrumGroup spg,
  Spectrum sp
WHERE racc.specGroupId = spg.specGroupId
  AND spg.specId = sp.specId
  AND racc.cName ='11053303-7700120';
      

Finally, views 'WGRecommendedAstroAnalysis', 'WpNaAstroAnalysis' and 'NpNaAstroAnalysis' can be queried in a similar way to view 'RecommendedAstroAnalysis' to see any node velocity determinations for a star, for example:

SELECT
  npna.cName, npna.Vrad, npna.VradErr, npna.provVRad, npna.vsini, npna.vsiniErr,
  npna.instrument, npna.gratings, npna.wg, npna.nodeName
FROM
  NpNaAstroAnalysis npna
WHERE npna.cName ='11053303-7700120'
ORDER BY npna.wg, npna.nodeName;
      

Here both radial and projected rotational velocities might be available. Also the working group and node name are included in the listing to indicate the provenance of the values. Column 'provVRad' only has any meaning for view 'RecommendedAstroAnalysis' and so for the three views 'WGRecommendedAstroAnalysis', 'WpNaAstroAnalysis' and 'NpNaAstroAnalysis' it should always have the value 'NONE'. This example is included for completeness, but please recall that in conformance with Consortium policy these velocities should not be used in any publication.




Home | Overview | Browser | Access | Login | Cookbook

Links | Credits

WFAU, Institute for Astronomy,
Royal Observatory, Blackford Hill
Edinburgh, EH9 3HJ, UK
Tel +44 131 668 8356 (office)
or +44 131 668 8100 (switchboard)

ges-support@roe.ac.uk