GIANTCatalogue.get_all_with_criteria

giant.catalogues.giant_catalogue:

GIANTCatalogue.get_all_with_criteria(min_ra=0, max_ra=360, min_dec=-90, max_dec=90, min_mag=-4, max_mag=20, search_center=None, search_radius=None)[source]

This method queries star records from the database based off of location and magnitude requirements.

Note that this does not apply proper motion. If you need to apply proper motion see query_catalogue().

Parameters:
  • min_ra (Real) – The minimum ra bound to query stars from in degrees

  • max_ra (Real) – The maximum ra bound to query stars from in degrees

  • min_dec (Real) – The minimum declination to query stars from in degrees

  • max_dec (Real) – The maximum declination to query stars from in degrees

  • min_mag (Real) – The minimum magnitude to query stars from. Recall that magnitude is inverse (so lower magnitude is a dimmer star)

  • max_mag (Real) – The maximum magnitude to query stars from. Recall that magnitude is inverse (so higher magnitude is a dimmer star)

  • search_center (Sequence | ndarray | None) – The center of a search cone as a ra/dec pair.

  • search_radius (Real | None) – The radius about the center of the search cone

Returns:

A Pandas dataframe with columns GIANT_COLUMNS.

Return type:

DataFrame