Your first crossmatch¶
Stub. This notebook is part of the documentation scaffold. The final version will walk through a real Gaia DR3 × 2MASS crossmatch over a small sky region, with plots.
Planned flow:
- Download a small Gaia DR3 and 2MASS subset over a ~2 deg cone
using
acid download --cone. - Open them with
acid.init("./data/")and inspect schemas viaacid.list_catalogs()andcat.describe(). - Run a nearest-neighbor crossmatch at 1″ with
gaia.crossmatch(twomass, radius=1*u.arcsec), look at the distance distribution, and plot a (J vs G) color-magnitude diagram withmatplotlib. - Swap in
maxmatch=-1(every match within the radius) andhow="left"(keep unmatched anchors) to see what changes. - Save the result with
Catalog.save(name)for the queryable HATS form, or.export("matches.parquet")for a single-file dump.
See the Quickstart for the commands that get you to step 1 today.