cdshealpix.ring.skycoord_to_healpix¶
- cdshealpix.ring.skycoord_to_healpix(skycoord, nside, return_offsets=False, num_threads=0)¶
Get the HEALPix indexes that contains specific sky coordinates.
The
nside
of the returned HEALPix cell indexes must be specified. This method is wrapped around the hash method from the cdshealpix Rust crate.- Parameters:
- skycoord
astropy.coordinates.SkyCoord
The sky coordinates.
- nside
numpy.ndarray
The nside of the returned HEALPix cell indexes.
- return_offsetsbool, optional
If set to
True
, returns a tuple made of 3 elements, the HEALPix cell indexes and the dx, dy arrays telling where the (lon
,lat
) coordinates passed are located in the cells.dx
anddy
are \(\in [0, 1]\)- num_threadsint, optional
Specifies the number of threads to use for the computation. Default to 0 means it will choose the number of threads based on the RAYON_NUM_THREADS environment variable (if set), or the number of logical CPUs (otherwise)
- skycoord
- Returns:
- ipix
numpy.ndarray
A numpy array containing all the HEALPix cell indexes stored as
np.uint64
.
- ipix
- Raises:
- ValueError
When the number of longitudes and latitudes given do not match.
Examples
>>> from cdshealpix.ring import skycoord_to_healpix >>> import astropy.units as u >>> from astropy.coordinates import SkyCoord >>> import numpy as np >>> skycoord = SkyCoord([0, 50, 25] * u.deg, [6, -12, 45] * u.deg, frame="icrs") >>> depth = 12 >>> ipix = skycoord_to_healpix(skycoord, 1 << depth)