juliensimon commited on
Commit
8fdd728
·
verified ·
1 Parent(s): 169ab60

Update EUVE observations: 1,367 observations

Browse files
Files changed (3) hide show
  1. README.md +139 -0
  2. banner.jpg +3 -0
  3. data/euve_observations.parquet +3 -0
README.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "EUVE Observation Catalog"
4
+ language:
5
+ - en
6
+ 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"
7
+ task_categories:
8
+ - tabular-classification
9
+ tags:
10
+ - space
11
+ - euve
12
+ - nasa
13
+ - extreme-uv
14
+ - euv
15
+ - all-sky
16
+ - astronomy
17
+ - telescope
18
+ - open-data
19
+ - tabular-data
20
+ - parquet
21
+ size_categories:
22
+ - 1K<n<10K
23
+ configs:
24
+ - config_name: default
25
+ data_files:
26
+ - split: train
27
+ path: data/euve_observations.parquet
28
+ default: true
29
+ ---
30
+
31
+ # EUVE Observation Catalog
32
+
33
+
34
+ <div align="center">
35
+ <img src="banner.jpg" alt="The UV-bright sky — EUVE surveyed this with the only extreme-UV observatory ever flown" width="400">
36
+ <p><em>Credit: NASA/GSFC</em></p>
37
+ </div>
38
+
39
+
40
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) on Hugging Face.*
41
+
42
+ ## Dataset description
43
+
44
+ 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).
45
+
46
+ 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.
47
+
48
+ 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.
49
+
50
+ 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.
51
+
52
+ This dataset is suitable for **tabular classification** tasks.
53
+
54
+ ## Schema
55
+
56
+ | Column | Type | Description | Sample | Null % |
57
+ |--------|------|-------------|--------|--------|
58
+ | `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% |
59
+ | `obstype` | string | CAOM observation type: 'S' (simple) or 'C' (composite) | S | 0.0% |
60
+ | `intent` | string | Observation intent: 'science' or 'calibration' | science | 0.0% |
61
+ | `target_name` | string | Target name as provided by the proposer — often a catalog designation (EUVE, 1ES, PG, HD, etc.) | 1136+1551 | 0.0% |
62
+ | `target_ra` | float64 | Target right ascension in decimal degrees (ICRS) | 174.01199340819994 | 0.0% |
63
+ | `target_dec` | float64 | Target declination in decimal degrees (ICRS) | 15.8500003815 | 0.0% |
64
+
65
+ ## Quick stats
66
+
67
+ - **1,367** EUVE observations (1992–2001)
68
+ - **383** distinct target names
69
+ - Unique wavelength coverage: **70–760 Å** (extreme UV — no current mission covers this band)
70
+
71
+ ## Usage
72
+
73
+ ```python
74
+ from datasets import load_dataset
75
+
76
+ ds = load_dataset("juliensimon/euve-observations", split="train")
77
+ df = ds.to_pandas()
78
+ ```
79
+
80
+ ```python
81
+ from datasets import load_dataset
82
+
83
+ ds = load_dataset("juliensimon/euve-observations", split="train")
84
+ df = ds.to_pandas()
85
+
86
+ # Most-observed EUVE targets
87
+ print(df["target_name"].value_counts().head(15))
88
+
89
+ # All-sky EUV pointings
90
+ import matplotlib.pyplot as plt
91
+ plt.figure(figsize=(12, 6))
92
+ plt.scatter(df["target_ra"], df["target_dec"], s=4, alpha=0.6)
93
+ plt.xlabel("RA (deg)"); plt.ylabel("Dec (deg)")
94
+ plt.gca().invert_xaxis()
95
+ plt.title("EUVE pointings (1992–2001)")
96
+ plt.show()
97
+ ```
98
+
99
+ ## Data source
100
+
101
+ https://archive.stsci.edu/missions-and-data/euve
102
+
103
+ ## Update schedule
104
+
105
+ Quarterly (1st of Jan/Apr/Jul/Oct at 16:30 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
106
+
107
+ ## Related datasets
108
+
109
+ - [juliensimon/fuse-observations](https://huggingface.co/datasets/juliensimon/fuse-observations)
110
+
111
+ - [juliensimon/iue-observations](https://huggingface.co/datasets/juliensimon/iue-observations)
112
+
113
+ - [juliensimon/galex-observations](https://huggingface.co/datasets/juliensimon/galex-observations)
114
+
115
+ - [juliensimon/hst-observations](https://huggingface.co/datasets/juliensimon/hst-observations)
116
+
117
+ - [juliensimon/chandra-x-ray-sources](https://huggingface.co/datasets/juliensimon/chandra-x-ray-sources)
118
+
119
+ > 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.
120
+
121
+ ## About the author
122
+
123
+ Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
124
+
125
+ ## Citation
126
+
127
+ ```bibtex
128
+ @dataset{euve_observations,
129
+ title = {EUVE Observation Catalog},
130
+ author = {juliensimon},
131
+ year = {2026},
132
+ url = {https://huggingface.co/datasets/juliensimon/euve-observations},
133
+ publisher = {Hugging Face}
134
+ }
135
+ ```
136
+
137
+ ## License
138
+
139
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: d6fb662edbb2eecb382acdb0f2a75ed4481ae598f54c8bdaf68e53025c78a47e
  • Pointer size: 131 Bytes
  • Size of remote file: 157 kB
data/euve_observations.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ded7367c0035f0eaed0620507a3b40a1877609c559271554809d432be813a51c
3
+ size 31326