reproject_to_healpix

reproject.reproject_to_healpix(input_data, coord_system_out, hdu_in=0, order='bilinear', nested=False, nside=128)[source]

Reproject data from a standard projection to a HEALPIX projection.

Parameters:
input_dataobject

The input data to reproject. This can be:

coord_system_outBaseCoordinateFrame or str

The output coordinate system for the HEALPIX projection.

hdu_inint or str, optional

If input_data is a FITS file or an HDUList instance, specifies the HDU to use.

orderint or str, optional

The order of the interpolation (if mode is set to 'interpolation'). This can be either one of the following strings:

  • ‘nearest-neighbor’

  • ‘bilinear’

  • ‘biquadratic’

  • ‘bicubic’

or an integer. A value of 0 indicates nearest neighbor interpolation.

nestedbool

The order of the healpix_data, either nested (True) or ring (False).

nsideint, optional

The resolution of the HEALPIX projection.

Returns:
array_newndarray

The reprojected array.

footprintndarray

Footprint of the input array in the output array. Values of 0 indicate no coverage or valid values in the input image, while values of 1 indicate valid values.