遇见数据集

juliensimon/supernova-remnants

收藏
Hugging Face2026-03-24 更新2026-03-29 收录
官方服务:

资源简介:

--- license: cc-by-4.0 pretty_name: "Green's Supernova Remnant Catalog" language: - en description: "Galactic supernova remnants from Green's catalog with positions, angular sizes, radio flux, and spectral indices" task_categories: - tabular-classification tags: - supernova-remnant - snr - astronomy - radio - galactic - open-data size_categories: - n<1K --- # Green's Supernova Remnant Catalog ![Update SNR](https://github.com/juliensimon/space-datasets/actions/workflows/update-snr.yml/badge.svg) ![Updated](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/juliensimon/space-datasets/main/status.json&query=$.snr&label=updated&color=brightgreen) Complete catalog of Galactic supernova remnants from [Green's SNR Catalog](https://www.mrao.cam.ac.uk/surveys/snrs/), sourced via NASA HEASARC. Currently **297** SNRs. ## Dataset description Supernova remnants (SNRs) are the expanding shells of gas and dust left behind after a supernova explosion. They are key sources of cosmic rays and play a major role in the chemical enrichment of the interstellar medium. Green's catalog is the standard reference for Galactic SNRs, maintained since 1984. This dataset includes positions (equatorial and Galactic), angular sizes, morphological type, 1 GHz radio flux density, and radio spectral index for each remnant. ## Schema | Column | Type | Description | |--------|------|-------------| | `name` | string | SNR designation (Galactic coordinates, e.g. "G001.0-00.1") | | `alt_names` | string | Alternative/common names (e.g. "Cas A", "Crab Nebula") | | `ra` | float | Right ascension (degrees) | | `dec` | float | Declination (degrees) | | `lii` | float | Galactic longitude (degrees) | | `bii` | float | Galactic latitude (degrees) | | `major_diameter` | float | Angular size major axis (arcmin) | | `minor_diameter` | float | Angular size minor axis (arcmin) | | `type` | string | Morphological type code (S, F, C, ?) | | `flux_1_ghz` | float | Radio flux density at 1 GHz (Jy) | | `spectral_index` | float | Radio spectral index | | `snr_type_name` | string | Full type name: shell, filled-centre, composite, uncertain | ## Quick stats - **297** supernova remnants - **234** shell, **9** filled-centre, **37** composite ## Usage ```python from datasets import load_dataset ds = load_dataset("juliensimon/supernova-remnants", split="train") df = ds.to_pandas() # SNRs by type print(df["snr_type_name"].value_counts()) # Brightest SNRs at 1 GHz top = df.nlargest(10, "flux_1_ghz")[["name", "alt_names", "flux_1_ghz"]] # Sky distribution in Galactic coordinates import matplotlib.pyplot as plt plt.scatter(df["lii"], df["bii"], s=5) plt.xlabel("Galactic longitude (deg)") plt.ylabel("Galactic latitude (deg)") plt.title("Galactic SNR Distribution") ``` ## Data source All data comes from [Green's SNR Catalog](https://www.mrao.cam.ac.uk/surveys/snrs/) hosted by NASA's High Energy Astrophysics Science Archive Research Center (HEASARC), accessed via the TAP protocol. ## Update schedule Quarterly (1st Monday of January, April, July, October at 19:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets). ## Related datasets - [gamma-ray-bursts](https://huggingface.co/datasets/juliensimon/gamma-ray-bursts) — Fermi GBM GRB Catalog - [gravitational-waves](https://huggingface.co/datasets/juliensimon/gravitational-waves) — LIGO/Virgo detections - [exoplanets](https://huggingface.co/datasets/juliensimon/exoplanets) — NASA Exoplanet Archive ## Pipeline Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets) ## Citation ```bibtex @dataset{supernova_remnants, author = {Simon, Julien}, title = {Green's Supernova Remnant Catalog}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/juliensimon/supernova-remnants}, note = {Based on Green's SNR Catalog via NASA HEASARC} } ``` ## License [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)

许可证:CC-BY-4.0 规范名称:格林超新星遗迹目录(Green's Supernova Remnant Catalog) 语言:英语 描述:本数据集收录格林目录中的银河系超新星遗迹(supernova remnant,SNR),包含其位置、角尺度、射电流量及谱指数信息。 任务类别:表格分类(tabular-classification) 标签:超新星遗迹(supernova remnant,SNR)、SNR、天文学、射电、银河系、开放数据 数据规模:样本数少于1000 # 格林超新星遗迹目录(Green's Supernova Remnant Catalog) ![Update SNR](https://github.com/juliensimon/space-datasets/actions/workflows/update-snr.yml/badge.svg) ![Updated](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/juliensimon/space-datasets/main/status.json&query=$.snr&label=updated&color=brightgreen) 本数据集为源自[格林超新星遗迹目录(Green's SNR Catalog)](https://www.mrao.cam.ac.uk/surveys/snrs/)的完整银河系超新星遗迹列表,数据通过NASA高能天体物理科学档案研究中心(HEASARC)获取,当前共收录**297**个超新星遗迹(SNR)。 ## 数据集说明 超新星遗迹(supernova remnant,SNR)是超新星爆发后残留的气体与尘埃膨胀壳层,是宇宙线的关键来源,且在星际介质的化学增丰过程中发挥核心作用。格林目录自1984年起持续维护,是银河系超新星遗迹研究的标准参考资料。 本数据集包含每个遗迹的位置(赤道坐标与银道坐标)、角尺度、形态类型、1GHz射电流量密度以及射电谱指数。 ## 数据结构 | 列名 | 数据类型 | 说明 | |--------|------|-------------| | `name` | 字符串 | 超新星遗迹的命名(采用银道坐标格式,例如"G001.0-00.1") | | `alt_names` | 字符串 | 别名/常用名称(例如"Cas A"、"蟹状星云") | | `ra` | 浮点数 | 赤经(单位:度) | | `dec` | 浮点数 | 赤纬(单位:度) | | `lii` | 浮点数 | 银经(单位:度) | | `bii` | 浮点数 | 银纬(单位:度) | | `major_diameter` | 浮点数 | 角尺度长轴(单位:角分) | | `minor_diameter` | 浮点数 | 角尺度短轴(单位:角分) | | `type` | 字符串 | 形态类型代码(S、F、C、?) | | `flux_1_ghz` | 浮点数 | 1GHz射电流量密度(单位:央斯基,Jy) | | `spectral_index` | 浮点数 | 射电谱指数 | | `snr_type_name` | 字符串 | 完整类型名称:壳层型、充填中心型、复合结构型、不确定型 | ## 快速统计 - **297**个超新星遗迹 - **234**个壳层型、**9**个充填中心型、**37**个复合结构型 ## 使用方法 python from datasets import load_dataset ds = load_dataset("juliensimon/supernova-remnants", split="train") df = ds.to_pandas() # SNRs by type print(df["snr_type_name"].value_counts()) # Brightest SNRs at 1 GHz top = df.nlargest(10, "flux_1_ghz")[["name", "alt_names", "flux_1_ghz"]] # Sky distribution in Galactic coordinates import matplotlib.pyplot as plt plt.scatter(df["lii"], df["bii"], s=5) plt.xlabel("Galactic longitude (deg)") plt.ylabel("Galactic latitude (deg)") plt.title("Galactic SNR Distribution") ## 数据来源 所有数据源自NASA高能天体物理科学档案研究中心(HEASARC)托管的[格林超新星遗迹目录(Green's SNR Catalog)](https://www.mrao.cam.ac.uk/surveys/snrs/),通过TAP协议获取。 ## 更新计划 每季度更新一次(每年1月、4月、7月、10月的第一个周一的19:00 UTC),通过[GitHub Actions](https://github.com/juliensimon/space-datasets)执行。 ## 相关数据集 - [γ射线暴(gamma-ray-bursts)](https://huggingface.co/datasets/juliensimon/gamma-ray-bursts) — 费米GBM γ射线暴目录 - [引力波(gravitational-waves)](https://huggingface.co/datasets/juliensimon/gravitational-waves) — LIGO/Virgo探测事件 - [系外行星(exoplanets)](https://huggingface.co/datasets/juliensimon/exoplanets) — NASA系外行星档案 ## 数据流水线 源代码:[juliensimon/space-datasets](https://github.com/juliensimon/space-datasets) ## 引用格式 bibtex @dataset{supernova_remnants, author = {Simon, Julien}, title = {Green's Supernova Remnant Catalog}, year = {2026}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/juliensimon/supernova-remnants}, note = {Based on Green's SNR Catalog via NASA HEASARC} } ## 许可证 [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)

提供机构:
juliensimon
二维码
社区交流群
二维码
科研交流群
商业服务