Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
INTENSITY
list
[ 1.0823054313659668, 1.0856424570083618, 1.174764633178711, 1.1505820751190186, 1.011603832244873, 1.0965726375579834, 1.0623211860656738, 1.0442060232162476, 1.1128649711608887, 1.1600544452667236, 1.2303125858306885, 1.1296769380569458, 1.0460007190704346, 1.0406897068023682, 1.11537611...
[ 1.076636552810669, 1.1157121658325195, 1.0710415840148926, 1.0621440410614014, 1.1096304655075073, 1.0285803079605103, 1.043166160583496, 1.0862995386123657, 1.1060856580734253, 1.1118701696395874, 1.072514533996582, 1.0896021127700806, 1.042902946472168, 1.0478734970092773, 1.0391800403...
[ 1.0783218145370483, 1.0732741355895996, 1.032001256942749, 1.0548856258392334, 1.1150710582733154, 1.126771092414856, 1.1323386430740356, 1.110718011856079, 1.0839104652404785, 1.1130421161651611, 1.1166818141937256, 1.1867088079452515, 1.1845483779907227, 1.1081159114837646, 1.078838944...
[ 1.153111219406128, 1.1593413352966309, 1.165561556816101, 1.16126549243927, 1.1705782413482666, 1.1800249814987183, 1.0462415218353271, 1.0360865592956543, 1.0563207864761353, 1.020925760269165, 1.0059937238693237, 1.0661649703979492, 1.09443998336792, 1.1055246591567993, 1.1379423141479...
[ 1.108772873878479, 1.1113131046295166, 1.1498874425888062, 1.0972245931625366, 1.1071771383285522, 1.1099412441253662, 1.1011310815811157, 1.070132851600647, 1.0580203533172607, 1.0643938779830933, 1.0772373676300049, 1.0882227420806885, 1.0672658681869507, 1.0851829051971436, 1.06129324...
[ 1.1024889945983887, 1.0641053915023804, 1.0419503450393677, 1.0716031789779663, 1.1048774719238281, 1.0136293172836304, 1.057870626449585, 1.066028118133545, 0.9960429072380066, 1.0047097206115723, 1.0261276960372925, 1.0454682111740112, 1.0752226114273071, 1.0715785026550293, 1.05135750...
[ 1.0443888902664185, 1.058079719543457, 0.9923242330551147, 1.0598092079162598, 1.0683479309082031, 1.059313416481018, 1.0446250438690186, 1.0168359279632568, 1.064825177192688, 1.0458896160125732, 1.1037966012954712, 1.0959583520889282, 1.0629171133041382, 1.0494804382324219, 1.076711058...
[ 1.1058659553527832, 1.1071594953536987, 1.098897099494934, 1.0954155921936035, 1.0827078819274902, 1.1155123710632324, 1.1075694561004639, 1.0969113111495972, 1.1338187456130981, 1.0663663148880005, 1.0158363580703735, 1.0928782224655151, 1.0903894901275635, 1.0706950426101685, 1.0743767...
[ 1.1570543050765991, 1.0618038177490234, 1.0702013969421387, 1.0464593172073364, 1.073298454284668, 1.096560001373291, 1.0988672971725464, 1.088533878326416, 1.0515958070755005, 1.0740655660629272, 1.0687836408615112, 1.00860595703125, 1.0412383079528809, 1.059239387512207, 1.118335604667...
[ 1.0625560283660889, 1.034834384918213, 1.0470486879348755, 1.1286731958389282, 1.1484431028366089, 1.074598789215088, 1.0614426136016846, 1.0915626287460327, 1.1359248161315918, 1.0902255773544312, 1.0704059600830078, 1.0559500455856323, 1.0336815118789673, 1.0823568105697632, 1.10673439...
End of preview. Expand in Data Studio

IRIS Infrared Maps

IRIS 100 micron full-sky Mollweide

The Improved Reprocessing of the IRAS Survey (IRIS) provides co-added infrared sky-brightness maps at 12, 25, 60 and 100 microns. These four configurations are the authors' native-resolution NSIDE-2048 nohole HEALPix products, frozen by NASA LAMBDA. HCON1, HCON2 and HCON3 were co-added, and DIRBE data fill the roughly two per cent of the sky not observed by IRAS.

Bands 12, 25, 60 and 100 microns
Pixelisation HEALPix NSIDE 2048; 50,331,648 pixels
Ordering RING
Coordinate frame Galactic (COORDSYS = 'G')
Quantity Sky-brightness intensity
Unit MJy/sr, from the product documentation
Source column INTENSITY

How to use

python -m venv .venv && .venv/bin/pip install datasets huggingface_hub pyarrow
from datasets import load_dataset
dataset = load_dataset("astro-legacy-archive/iris-infrared-maps", "IRIS_nohole_4_2048_v2", split="train[:1]", columns=["INTENSITY"])
row = dataset[0]
print(row["INTENSITY"][:3])
[1.4355186223983765, 1.4360263347625732, 1.540387511253357]
import json
from huggingface_hub import hf_hub_download
import pyarrow.parquet as pq
path = hf_hub_download("astro-legacy-archive/iris-infrared-maps", "IRIS_nohole_4_2048_v2.parquet", repo_type="dataset")
print(json.loads(pq.read_schema(path).metadata[b"healpix_map"])["schema"])
astro-legacy-archive/healpix-map

The embedded document records the ordering, pixel_rule, unit, and coverage codes. The documented undefined value and the measured NaN population are distinct records; validity and statistics follow those records.

Configurations and structure

Each configuration contains 49,152 source rows. Each INTENSITY value is a fixed-size list of 1,024 float32 pixels, preserving the source bintable's vector shape and row order.

config wavelength angular resolution range excluding -32768 and NaNs (MJy/sr) download
IRIS_nohole_1_2048_v2 12 micron 3.8 ± 0.2 arcmin -1.6049669981 to 9879.0751953125 about 172 MB
IRIS_nohole_2_2048_v2 25 micron 3.8 ± 0.2 arcmin -1.1838477850 to 19779.328125 about 175 MB
IRIS_nohole_3_2048_v2 60 micron 4.0 ± 0.2 arcmin -3.4821598530 to 21098.47265625 about 176 MB
IRIS_nohole_4_2048_v2 100 micron 4.3 ± 0.2 arcmin 0.4944684505 to 24603.37890625 about 177 MB

All four source files omit TUNIT1. The documented MJy/sr unit and its source pin are recorded in columns[0].unit, and MJy/sr is present in the Arrow field metadata. PyArrow schema inspection exposes the source field metadata; Hugging Face Dataset.features exposes its type but not Arrow field metadata.

Every band contains 6,095 float32 values equal to -32768. LAMBDA calls that value “undefined,” and it appears in coverage.codes with the source documentation as its basis. Each band also contains four quiet NaNs with bit pattern 0x7fc00000 in INTENSITY; their semantics are not documented in the checked sources. They appear as a measured code with no meaning. coverage.blank_pixels is 6,099, the combined count of both code records. The example derives its validity mask from their source_bits values.

The nohole designation refers to the use of DIRBE information where IRAS had no observation. It does not imply that every stored value is a finite measurement. The companion product family includes ordinary coadds, individual HCON maps, lower-resolution products, projected images and separately produced uncertainty maps; none is included in these four intensity configurations.

LAMBDA notes two limitations. IRIS photometry is limited mainly by the zodiacal-light subtraction in the DIRBE data, based on the Kelsall et al. (1998) model. The ISSA plates were not constructed completely self-consistently: their overlaps usually differ negligibly, but in some cases, especially in bright regions, the difference can reach several percent.

Considerations for use

  • These are co-added intensity products. No uncertainty field or uncertainty product is included.
  • Negative finite intensities occur in the 12, 25 and 60 micron bands.
  • NSIDE 2048 defines the delivered pixel grid, not the independent angular resolution of every feature in the underlying surveys.
  • Configuration boundaries follow the four separately delivered FITS files. Wavelength is recorded per file in embedded metadata rather than inferred from the ordinal in consumer code.
  • The _v2 designation belongs to LAMBDA's filenames. LAMBDA describes these copies as minor FITS-compliance header revisions; the card does not compose a new scientific release name from that suffix.

Provenance

IRSA is the canonical archive for the original 430 ISSA-format plates per band and assigns dataset DOI 10.26131/IRSA94. The IRIS overview and LAMBDA product page describe the products. The four converted source files are:

source file SHA-256
IRIS_nohole_1_2048_v2.fits 97e496c585c085e3f262079650e0efebb2903123f5a3168e39b8836422881a89
IRIS_nohole_2_2048_v2.fits 485e18a9afeac2b1171509475069c529405cad1abf0f2187cf5abbace4a0ab73
IRIS_nohole_3_2048_v2.fits a9fdbef7d54f2e185f7d9570640f11a7df42b7aabe9399c220fbbda9969fe7ab
IRIS_nohole_4_2048_v2.fits 402adba2396eae9b5f518898a2e39939f38d394fa3bc85e680e3b4955d5898ab

The complete source headers, URLs, hashes, retrieval date and regeneration command are embedded in every Parquet file. Rebuild with python tools/make_iris.py data/iris.

Licensing, credit and citation

HEASARC states verbatim:

HEASARC materials are all available freely for your use.

This is a free-use statement rather than a named formal licence.

No named formal product licence is published on the checked IRSA, authors', CADE or LAMBDA pages. The HEASARC free-use statement quoted above is represented as other. LAMBDA requests:

We acknowledge the use of the Legacy Archive for Microwave Background Data Analysis (LAMBDA), part of the High Energy Astrophysics Science Archive Center (HEASARC). HEASARC/LAMBDA is a service of the Astrophysics Science Division at the NASA Goddard Space Flight Center.

IRSA asks IRIS users to cite dataset DOI 10.26131/IRSA94. Please also cite Miville-Deschênes & Lagache (2005), ApJS 157, 302–323, DOI 10.1086/427938.

Errata and requests

To report an erratum, propose a correction, or ask a question about this dataset, open a Discussion or Pull Request in its Community tab; posting requires a free Hugging Face account. Dataset requests and archive-wide questions may be posted in the README space's Community tab or the Community tab of any dataset. Confirmed corrections are made in the source conversion tools and published by rebuilding the dataset.

Downloads last month
64

Collection including astro-legacy-archive/iris-infrared-maps