cross_bones.matching¶
Classes¶
Components around matching Catalogue 1 to Catalogue 2 |
|
Functions¶
|
Match a pair of catalogues to identify the sources in common. |
|
Search the input offset grid space to find the minimum position |
Module Contents¶
- class cross_bones.matching.Match¶
Components around matching Catalogue 1 to Catalogue 2
- match_1: astropy.coordinates.SkyCoord¶
The sky-coordinate of a match in catalogue 1
- match_2: astropy.coordinates.SkyCoord¶
The sky-coordinate of a match in catalogue 2
- matches: tuple[numpy.typing.NDArray[Any], numpy.typing.NDArray[Any], Any, Any]¶
The indices of the matches as returned by
search_around_sky
- offset_mean: tuple[float, float]¶
Mean of the offset in arcseconds in the RA and Declination directions
- offset_std: tuple[float, float]¶
Std of the offset in arcseconds in the RA and Declination directions
- sky_pos_1: astropy.coordinates.SkyCoord¶
Sky positions from catalogue 1
- sky_pos_2: astropy.coordinates.SkyCoord¶
Sky positions from catalogue 2
- class cross_bones.matching.OffsetGridSpace¶
- cross_bones.matching.calculate_matches(catalogue_1: cross_bones.catalogue.Catalogue | astropy.coordinates.SkyCoord, catalogue_2: cross_bones.catalogue.Catalogue | astropy.coordinates.SkyCoord, sep_limit_arcsecond: float = 9) Match¶
Match a pair of catalogues to identify the sources in common.
- Parameters:
- Returns:
The result of the matching
- Return type:
- cross_bones.matching.find_minimum_offset_space(offset_space: OffsetGridSpace) tuple[float, float, float]¶
Search the input offset grid space to find the minimum position
- Parameters:
offset_space (OffsetGridSpace) – Results from the brute force grid search
- Returns:
The minimum minimum delta RA and delta Dec and the corresponding separation
- Return type: