juliensimon commited on
Commit
5c478c3
·
verified ·
1 Parent(s): 9071579

Update NASA APOD: 11,268 entries

Browse files
Files changed (3) hide show
  1. README.md +140 -0
  2. banner.jpg +3 -0
  3. data/apod.parquet +3 -0
README.md ADDED
@@ -0,0 +1,140 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "NASA Astronomy Picture of the Day"
4
+ language:
5
+ - en
6
+ description: "Daily astronomy images and explanations from NASA's Astronomy Picture of the Day (APOD) program, the longest-running astronomy outreach initiative on the internet. Each entry features a curated astron"
7
+ task_categories:
8
+ - tabular-classification
9
+ - text-classification
10
+ tags:
11
+ - space
12
+ - nasa
13
+ - astronomy
14
+ - apod
15
+ - natural-language-processing
16
+ - image
17
+ - open-data
18
+ - tabular-data
19
+ - parquet
20
+ size_categories:
21
+ - 10K<n<100K
22
+ configs:
23
+ - config_name: default
24
+ data_files:
25
+ - split: train
26
+ path: data/apod.parquet
27
+ default: true
28
+ ---
29
+
30
+ # NASA Astronomy Picture of the Day
31
+
32
+
33
+ <div align="center">
34
+ <img src="banner.jpg" alt="Blue Marble — high-definition image of Earth from space" width="400">
35
+ <p><em>Credit: NASA/GSFC/Suomi NPP</em></p>
36
+ </div>
37
+
38
+
39
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/astronomy-datasets-69c24caf2f17e36128946743) on Hugging Face.*
40
+
41
+ ## Dataset description
42
+
43
+ Daily astronomy images and explanations from NASA's Astronomy Picture of the Day (APOD) program, the longest-running astronomy outreach initiative on the internet. Each entry features a curated astronomical image or video with a written explanation by a professional astronomer.
44
+
45
+ APOD has published one entry every day since June 16, 1995 — an unbroken 30-year record spanning more than 10,000 entries. The subjects range from the mundane to the profound: sunsets, aurora, meteor showers, deep galaxy fields from the Hubble Space Telescope, gravitational wave detections, exoplanet atmosphere spectroscopy, and images from every NASA mission. Each explanation is written in accessible but scientifically accurate language, making the corpus particularly valuable for training and evaluating astronomy language models.
46
+
47
+ This dataset captures the full structured metadata for every APOD entry: date, title, explanation text, media URL, copyright status, and media type. Roughly 70% of entries feature NASA or ESA imagery in the public domain; the remaining ~30% are copyrighted contributions from amateur astrophotographers around the world. The url and hdurl fields provide stable links to the original images, enabling this metadata to be used as an index for downloading visual training data. The explanation field alone constitutes roughly 2 million words of expert-authored astronomy prose.
48
+
49
+
50
+ This dataset is suitable for **tabular classification, text classification** tasks.
51
+
52
+ ## Schema
53
+
54
+ | Column | Type | Description | Sample | Null % |
55
+ |--------|------|-------------|--------|--------|
56
+ | `date` | object | Date of the APOD entry in ISO format (YYYY-MM-DD); one entry per day since 1995-06-16; the primary key | 1995-06-16 | 0.0% |
57
+ | `title` | string | Title of the astronomical image or media as chosen by the APOD editorial team; typically includes the object name or event described | Neutron Star Earth | 0.0% |
58
+ | `explanation` | string | Scientific explanation (~150-300 words) written by a professional astronomer; covers the physics, history, and significance of the featured subject; suitable for NLP, summarization, and astronomy education tasks | Today's Picture: Explanation: If ... | 0.1% |
59
+ | `url` | string | Primary media URL — direct image link or YouTube video URL; images are typically JPEG/PNG hosted on NASA GSFC servers | https://apod.nasa.gov/apod/image/e_le... | 0.2% |
60
+ | `hdurl` | string | Full-resolution (HD) image URL; null for video entries; typically 2000-8000px; may be very large | https://apod.nasa.gov/apod/image/e_le... | 3.7% |
61
+ | `media_type` | string | Content type: 'image' (majority) or 'video' (YouTube embeds); determines which URL fields are populated | image | 0.0% |
62
+ | `copyright` | string | Attribution string for the image author/photographer; null when the image is NASA, ESA, or other government agency public domain; ~30% of entries are copyrighted (amateur astrophotographers) | 1989 by The University of Chicago. A... | 50.7% |
63
+ | `thumbnail_url` | string | YouTube thumbnail URL for video entries; null for image entries; useful for visual preview without loading the full video | https://img.youtube.com/vi/M6-iC_aYcu... | 96.8% |
64
+ | `is_public_domain` | bool | True when copyright is null or empty, indicating NASA/ESA/public agency imagery with no usage restrictions; False for copyrighted astrophotography | True | 0.0% |
65
+ | `year` | Int32 | Calendar year of the entry (1995–present); derived from date; useful for time-series analysis and filtering by solar cycle or mission era | 1995 | 0.0% |
66
+ | `month` | Int32 | Month (1–12) of the entry; derived from date; useful for seasonal sky analysis (e.g., summer Milky Way, winter Orion) | 6 | 0.0% |
67
+
68
+ ## Quick stats
69
+
70
+ - **11,268** entries (1995-06-16 to 2026-04-26)
71
+ - **10,847** images, **396** videos
72
+ - **5,717** public domain entries (NASA/ESA), **5,551** copyrighted
73
+ - Most common subjects in titles: **nebula** (1,029), **galaxy** (731), **moon** (627), **mars** (479), **star** (465)
74
+
75
+ ## Usage
76
+
77
+ ```python
78
+ from datasets import load_dataset
79
+
80
+ ds = load_dataset("juliensimon/nasa-apod", split="train")
81
+ df = ds.to_pandas()
82
+ ```
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+ import pandas as pd
87
+
88
+ ds = load_dataset("juliensimon/nasa-apod", split="train")
89
+ df = ds.to_pandas()
90
+
91
+ # Public domain images only (safe to download/use)
92
+ public = df[df["is_public_domain"] == True]
93
+ print(f"{len(public):,} public domain entries with hdurl")
94
+
95
+ # Most popular topics by year
96
+ df["year"] = pd.to_numeric(df["year"])
97
+ topics = df[df["title"].str.contains("Galaxy|Nebula|Star|Comet|Moon", case=False, na=False)]
98
+ topics.groupby("year").size().plot(title="Cosmic Objects in APOD by Year")
99
+
100
+ # Recent entries
101
+ recent = df.sort_values("date").tail(10)[["date", "title", "media_type", "is_public_domain"]]
102
+ print(recent.to_string())
103
+ ```
104
+
105
+
106
+ ## Data source
107
+
108
+ https://apod.nasa.gov/apod/
109
+
110
+ ## Update schedule
111
+
112
+ Daily at 07:00 UTC
113
+
114
+ ## Related datasets
115
+
116
+ - [juliensimon/hubble-space-telescope-observations](https://huggingface.co/datasets/juliensimon/hubble-space-telescope-observations)
117
+
118
+ - [juliensimon/james-webb-space-telescope-observations](https://huggingface.co/datasets/juliensimon/james-webb-space-telescope-observations)
119
+
120
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/nasa-apod) on Hugging Face. It helps others discover it.
121
+
122
+ ## About the author
123
+
124
+ Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
125
+
126
+ ## Citation
127
+
128
+ ```bibtex
129
+ @dataset{nasa_apod,
130
+ title = {NASA Astronomy Picture of the Day},
131
+ author = {juliensimon},
132
+ year = {2026},
133
+ url = {https://huggingface.co/datasets/juliensimon/nasa-apod},
134
+ publisher = {Hugging Face}
135
+ }
136
+ ```
137
+
138
+ ## License
139
+
140
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
banner.jpg ADDED

Git LFS Details

  • SHA256: 7b448ac0756e2890ef8c5b8201845137064abe13f4683f87ae6be6b6daa71a96
  • Pointer size: 131 Bytes
  • Size of remote file: 245 kB
data/apod.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b76d4a3c00c61689ea71e2fa56b954070f334d101505d03784799de3ec0b2d8
3
+ size 4290675