juliensimon/euve-observations
收藏Hugging Face2026-04-18 更新2026-04-26 收录
下载链接:
https://hf-mirror.com/datasets/juliensimon/euve-observations
下载链接
链接失效反馈官方服务:
资源简介:
---
license: cc-by-4.0
pretty_name: "EUVE Observation Catalog"
language:
- en
description: "The EUVE Observation Catalog indexes every observation obtained by NASA's Extreme Ultraviolet Explorer (EUVE), which operated from June 7, 1992 to January 31, 2001. EUVE was the only dedicated space m"
task_categories:
- tabular-classification
tags:
- space
- euve
- nasa
- extreme-uv
- euv
- all-sky
- astronomy
- telescope
- open-data
- tabular-data
- parquet
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: data/euve_observations.parquet
default: true
---
# EUVE Observation Catalog
<div align="center">
<img src="banner.jpg" alt="The UV-bright sky — EUVE surveyed this with the only extreme-UV observatory ever flown" width="400">
<p><em>Credit: NASA/GSFC</em></p>
</div>
*Part of a [dataset collection](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) on Hugging Face.*
## Dataset description
The EUVE Observation Catalog indexes every observation obtained by NASA's Extreme Ultraviolet Explorer (EUVE), which operated from June 7, 1992 to January 31, 2001. EUVE was the only dedicated space mission ever flown to survey the extreme UV band (70–760 Å, roughly 10–170 eV) — a region of the electromagnetic spectrum dominated by absorption from the interstellar medium and only reachable after the Voyager UV spectrometers hinted at the possibilities. EUVE combined an all-sky scanner (four telescopes with 100–740 Å coverage) with a deep-survey instrument and a long-wavelength spectrometer (DS/S).
Each row is one EUVE pointing. The 1,367 observations in the archive are small in count but scientifically unique: EUVE produced the first and still only EUV all-sky catalog (>700 sources), it characterised the atmospheres of hot DA white dwarfs that are opaque at other UV wavelengths, it mapped the coronal emission of nearby cool stars (detecting X-ray/EUV flares on M dwarfs in real time), and it observed the flickering interstellar medium absorption toward more than a hundred bright UV sources.
This dataset is designed for cross-matching any bright target with its (possibly only-ever) EUV coverage, for teaching the history of space-UV astronomy, and for identifying EUV sources to revisit with future missions (no current mission covers this band). It complements the IUE, FUSE, GALEX, HST, and JWST observation catalogs in this collection — EUVE extends the UV archive downward in wavelength to the edge of the X-ray band.
The catalog is derived from MAST's CAOM table `dbo.caomobservation` (collection = 'EUVE'). The archive is static since 2001, so this dataset refreshes quarterly for any late reprocessing or metadata fixes.
This dataset is suitable for **tabular classification** tasks.
## Schema
| Column | Type | Description | Sample | Null % |
|--------|------|-------------|--------|--------|
| `obs_id` | string | EUVE observation identifier (e.g., '1136_1551__9812251330N'); encodes target designation and observation start timestamp. Primary key. | 1136_1551__9812251330N | 0.0% |
| `obstype` | string | CAOM observation type: 'S' (simple) or 'C' (composite) | S | 0.0% |
| `intent` | string | Observation intent: 'science' or 'calibration' | science | 0.0% |
| `target_name` | string | Target name as provided by the proposer — often a catalog designation (EUVE, 1ES, PG, HD, etc.) | 1136+1551 | 0.0% |
| `target_ra` | float64 | Target right ascension in decimal degrees (ICRS) | 174.01199340819994 | 0.0% |
| `target_dec` | float64 | Target declination in decimal degrees (ICRS) | 15.8500003815 | 0.0% |
## Quick stats
- **1,367** EUVE observations (1992–2001)
- **383** distinct target names
- Unique wavelength coverage: **70–760 Å** (extreme UV — no current mission covers this band)
## Usage
```python
from datasets import load_dataset
ds = load_dataset("juliensimon/euve-observations", split="train")
df = ds.to_pandas()
```
```python
from datasets import load_dataset
ds = load_dataset("juliensimon/euve-observations", split="train")
df = ds.to_pandas()
# Most-observed EUVE targets
print(df["target_name"].value_counts().head(15))
# All-sky EUV pointings
import matplotlib.pyplot as plt
plt.figure(figsize=(12, 6))
plt.scatter(df["target_ra"], df["target_dec"], s=4, alpha=0.6)
plt.xlabel("RA (deg)"); plt.ylabel("Dec (deg)")
plt.gca().invert_xaxis()
plt.title("EUVE pointings (1992–2001)")
plt.show()
```
## Data source
https://archive.stsci.edu/missions-and-data/euve
## Update schedule
Quarterly (1st of Jan/Apr/Jul/Oct at 16:30 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
## Related datasets
- [juliensimon/fuse-observations](https://huggingface.co/datasets/juliensimon/fuse-observations)
- [juliensimon/iue-observations](https://huggingface.co/datasets/juliensimon/iue-observations)
- [juliensimon/galex-observations](https://huggingface.co/datasets/juliensimon/galex-observations)
- [juliensimon/hst-observations](https://huggingface.co/datasets/juliensimon/hst-observations)
- [juliensimon/chandra-x-ray-sources](https://huggingface.co/datasets/juliensimon/chandra-x-ray-sources)
> If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/euve-observations) on Hugging Face. It helps others discover it.
## About the author
Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
## Citation
```bibtex
@dataset{euve_observations,
title = {EUVE Observation Catalog},
author = {juliensimon},
year = {2026},
url = {https://huggingface.co/datasets/juliensimon/euve-observations},
publisher = {Hugging Face}
}
```
## License
[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
提供机构:
juliensimon



