Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zhang19 gaia names #438

Merged
merged 13 commits into from
Dec 27, 2023
70 changes: 69 additions & 1 deletion data/gaia_j0452-36b.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Sources": [
{
"source": "Gaia J0452-36B",
"source": "Gaia EDR3 4818823808553134592",
"ra": 73.1904,
"dec": -36.1448,
"epoch": null,
Expand All @@ -12,11 +12,79 @@
"comments": null
}
],
"CompanionRelationships": [
{
"companion_name": "Gaia EDR3 4818823636756117504",
"projected_separation_arcsec": 115.3,
"projected_separation_error": null,
"relationship": "Child",
"comments": "Spectral Type: esdM1",
"reference": "Zhan19.1423",
"other_companion_names": "Gaia J0452-36A"
}
],
"ModeledParameters": [
{
"parameter": "T eff",
"value": 2600.0,
"value_error": 100.0,
"unit": "K",
"comments": null,
"reference": "Zhan19.1423"
},
{
"parameter": "log g",
"value": 5.5,
"value_error": 0.2,
"unit": "dex",
"comments": null,
"reference": "Zhan19.1423"
},
{
"parameter": "mass",
"value": 0.0855,
"value_error": 0.0014,
"unit": "M_jup",
kelle marked this conversation as resolved.
Show resolved Hide resolved
"comments": null,
"reference": "Zhan19.1423"
},
{
"parameter": "metallicity",
"value": -1.4,
"value_error": 0.2,
"unit": "Fe/H",
kelle marked this conversation as resolved.
Show resolved Hide resolved
"comments": null,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"comments": null,
"comments": "[Fe/H]",

"reference": "Zhan19.1423"
}
],
"Names": [
{
"other_name": "Gaia J0452-36B"
},
{
"other_name": "Gaia EDR3 4818823808553134592"
}
],
"Parallaxes": [
{
"parallax": 7.134,
"parallax_error": 0.506,
"adopted": true,
"comments": null,
"reference": "Zhan19.1423"
}
],
"ProperMotions": [
{
"mu_ra": 147.52,
"mu_ra_error": 0.79,
"mu_dec": -168.07,
"mu_dec_error": 1.00,
"adopted": true,
"comments": null,
"reference": "Zhan19.1423"
}
],
"SpectralTypes": [
{
"spectral_type_string": "esdL0",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def test_proper_motion_refs(db):
def test_parallax_refs(db):
# Test total odopted measuruments
t = db.query(db.Parallaxes).filter(db.Parallaxes.c.adopted == 1).astropy()
assert len(t) == 1443, f'found {len(t)} adopted parallax measuruments.'
assert len(t) == 1444, f'found {len(t)} adopted parallax measuruments.'

ref = 'GaiaDR3'
t = db.query(db.Parallaxes).filter(db.Parallaxes.c.reference == ref).astropy()
Expand Down
Loading