Suggest a Missing Post-MT System

Two-step contribution flow for the catalog — or jump to the batch workflow to add several systems at once.

Step 1 — Check if system already exists in the catalog

Please provide a system name/ID and sky position. We check if there is a match on either the:

Batch submission — multiple systems at once

Prefer to add several systems in one go? Prepare a single JSON file (an array of system objects following the data schema) and submit it as one pull request. The validator below checks every entry and runs the duplicate check against the catalog for you.

1. Get the template

The template is a JSON array: the first entry is a fully filled example (delete it before submitting), the second is an empty skeleton — copy it once per system. All measurements are [err-, value, err+] triplets (masses in Msun, periods in days); RA/Dec are plain scalars in deg with the positional uncertainty in a separate pos_err_mas field (mas). Use null for anything unknown.

2. Validate your file

Prefer to do it fully programmatically?

You can skip this website entirely: fork the repository, add your JSON file to data/proposed_additions/, and open a pull request:

# one-time: fork and clone (or use the GitHub web UI)
gh repo fork binary-observations/post_mt_catalog --clone
cd post_mt_catalog

git checkout -b proposal-YYYY-MM-DD-my-systems
cp /path/to/my_systems.json data/proposed_additions/YYYY-MM-DD_my_systems.json
git add data/proposed_additions/
git commit -m "Propose missing post-MT systems"
git push origin HEAD
# then open a pull request on GitHub