Skip to content

jan-rybizki/Distance-inference-from-parallaxes

Repository files navigation

Distance-inference-from-parallaxes

Here we want to give a short overview on the inference of the distances for the Gaia Catalogue of Nearby Stars (GCNS) paper.

We start from a prior based on GeDR3mock. The query is as follows:

SELECT * FROM(
SELECT parallax, GAVO_NORMAL_RANDOM(parallax,
POWER(10, ((LOG10(parallax_error)+1)*1.3)-1)) AS
parallax_obs
-- This adds observational noise to the true
parallaxes
FROM gedr3mock.main) AS sample
WHERE parallax_obs > 8

The result of the query is stored in GeDR3mock_query_distance_prior.fits

We then infer the distances of GCNS stars. The data is again queried and we downsample by a factor of 1000:

SELECT phot_g_mean_mag, phot_rp_mean_mag, source_id, parallax, parallax_error, 
astrometric_params_solved, nu_eff_used_in_astrometry, pseudocolour, ecl_lat
FROM gaiaedr3.gaia_source
WHERE parallax >= 8
AND MOD(random_index,1000) = 0

The inference script can be found in the jupyter notebook: 'Distance inference.ipynb'

First we need to calculate the parallax zero-point correction according to Lindegren+20. For that we installed this package. Then we use an MCMC to sample the posterior over the distance parameter. The result are the percentiles and the MCMC convergence indicators as provided by the GCNS. We store the resulting data in the file 'dist_cat_edr3.fits'.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published