juliensimon/wise-hii-regions
收藏Hugging Face2026-04-03 更新2026-04-12 收录
下载链接:
https://hf-mirror.com/datasets/juliensimon/wise-hii-regions
下载链接
链接失效反馈官方服务:
资源简介:
---
license: cc-by-4.0
pretty_name: "WISE Catalog of Galactic HII Regions"
language:
- en
description: "Catalog of 8,399 Galactic HII regions identified using WISE mid-infrared data (Anderson et al. 2014). Includes positions, velocities, and angular sizes."
task_categories:
- tabular-classification
tags:
- space
- hii-region
- star-formation
- milky-way
- wise
- infrared
- astronomy
- galactic
- open-data
- tabular-data
- parquet
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: data/hii_regions.parquet
default: true
---
# WISE Catalog of Galactic HII Regions
*Part of the [Astronomy Datasets](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) collection on Hugging Face.*


Catalog of **8,399** Galactic HII regions from the
[WISE Catalog of Galactic HII Regions](https://vizier.cds.unistra.fr/viz-bin/VizieR?-source=J/ApJS/212/1)
(Anderson et al. 2014), sourced via VizieR CDS Strasbourg.
## Dataset description
HII regions are clouds of ionized hydrogen surrounding hot young stars, tracing active star formation in the Milky Way. They are among the most luminous objects in the Galaxy at infrared and radio wavelengths, making them detectable across the entire Galactic disk even through heavy dust extinction that obscures optical observations.
The WISE (Wide-field Infrared Survey Explorer) catalog by Anderson et al. (2014) is the most complete census of Galactic HII regions to date. It uses WISE mid-infrared data to identify HII region candidates by their characteristic 12 and 22 micron emission from heated dust grains, combined with radio continuum surveys to confirm thermal emission and radio recombination line (RRL) observations to measure velocities. The catalog classifies regions into categories based on observational evidence: known HII regions (confirmed by RRL detection), candidate regions (radio continuum detected but no RRL), radio-quiet candidates (infrared morphology only), and group members.
The radial velocity measurements (VLSR) are particularly valuable because they enable kinematic distance estimates via the Galactic rotation curve, mapping the three-dimensional distribution of star formation across the Milky Way. Combined with angular sizes, these data constrain the physical sizes of the ionized nebulae, which in turn reflect the luminosity and spectral type of the exciting stars. This catalog is essential for studies of Galactic structure, the spiral arm pattern, triggered star formation, and the lifecycle of massive stars.
## Quick stats
- **8,399** HII regions
- **0** with radial velocity measurements
- **8,399** with angular size measurements
## Usage
```python
from datasets import load_dataset
ds = load_dataset("juliensimon/wise-hii-regions", split="train")
df = ds.to_pandas()
# Galactic distribution
import matplotlib.pyplot as plt
plt.scatter(df["glon_deg"], df["glat_deg"], s=1, alpha=0.3)
plt.xlabel("Galactic Longitude (deg)")
plt.ylabel("Galactic Latitude (deg)")
plt.title("WISE HII Regions - Galactic Distribution")
# Velocity analysis
with_v = df.dropna(subset=["vlsr_kms"])
print(f"{len(with_v):,} HII regions with velocities")
with_v["vlsr_kms"].hist(bins=50)
plt.xlabel("VLSR (km/s)")
plt.title("HII Region Velocity Distribution")
# Size distribution
with_r = df.dropna(subset=["radius_arcmin"])
with_r["radius_arcmin"].hist(bins=50, log=True)
plt.xlabel("Angular radius (arcmin)")
plt.title("HII Region Size Distribution")
```
## Data source
Anderson, L. D., Bania, T. M., Balser, D. S., et al. (2014),
"The WISE Catalog of Galactic HII Regions", ApJS, 212, 1.
Accessed via [VizieR](https://vizier.cds.unistra.fr/), CDS Strasbourg.
## Update schedule
Quarterly (Feb/May/Aug/Nov 1st at 09:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
## Related datasets
- [nebula-catalog](https://huggingface.co/datasets/juliensimon/nebula-catalog) -- Bright nebulae catalog
- [pulsar-catalog](https://huggingface.co/datasets/juliensimon/pulsar-catalog) -- ATNF Pulsar Catalogue
- [open-star-clusters](https://huggingface.co/datasets/juliensimon/open-star-clusters) -- Open cluster catalog
- [gaia-dr3-young-stellar-objects](https://huggingface.co/datasets/juliensimon/gaia-dr3-young-stellar-objects) -- Gaia DR3 YSOs
## Pipeline
Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
## Support
If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/wise-hii-regions) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
## Citation
```bibtex
@dataset{wise_hii_regions,
author = {Simon, Julien},
title = {WISE Catalog of Galactic HII Regions},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/juliensimon/wise-hii-regions},
note = {Based on Anderson et al. (2014) ApJS 212, 1 via VizieR CDS}
}
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
提供机构:
juliensimon



