juliensimon commited on
Commit
98793db
·
verified ·
1 Parent(s): 6a479a4

Update Mars rover images: 400,000 total (200,000 Perseverance, 200,000 Curiosity)

Browse files
Files changed (3) hide show
  1. README.md +144 -0
  2. banner.jpg +3 -0
  3. data/mars_rover_images.parquet +3 -0
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "NASA Mars Rover Image Catalog"
4
+ language:
5
+ - en
6
+ description: "Metadata for every raw image captured by Perseverance (Mars 2020) and Curiosity (MSL) rovers on Mars, including camera, sol, position, and download URLs."
7
+ size_categories:
8
+ - 100K<n<1M
9
+ task_categories:
10
+ - tabular-classification
11
+ tags:
12
+ - space
13
+ - mars
14
+ - perseverance
15
+ - curiosity
16
+ - mars2020
17
+ - msl
18
+ - rover
19
+ - nasa
20
+ - images
21
+ - open-data
22
+ - tabular-data
23
+ - parquet
24
+ configs:
25
+ - config_name: default
26
+ data_files:
27
+ - split: train
28
+ path: data/mars_rover_images.parquet
29
+ default: true
30
+ - config_name: mars2020
31
+ data_files:
32
+ - split: train
33
+ path: data/mars_rover_images.parquet
34
+ - config_name: msl
35
+ data_files:
36
+ - split: train
37
+ path: data/mars_rover_images.parquet
38
+ ---
39
+
40
+ # NASA Mars Rover Image Catalog
41
+
42
+ <div align="center">
43
+ <img src="banner.jpg" alt="NASA's Curiosity rover on the surface of Mars" width="400">
44
+ <p><em>Credit: NASA/JPL-Caltech/MSSS</em></p>
45
+ </div>
46
+
47
+ *Part of the [Solar System Datasets](https://huggingface.co/collections/juliensimon/solar-system-datasets-69c24ca3c76c541ab1f1abe7) and [Planetary Science Datasets](https://huggingface.co/collections/juliensimon/planetary-science-datasets-69c24cb75fbb91ebe51f2e24) collections on Hugging Face.*
48
+
49
+ ![Update Mars Rovers](https://github.com/juliensimon/space-datasets/actions/workflows/update-mars-rovers.yml/badge.svg)
50
+ ![Updated](https://img.shields.io/badge/dynamic/json?url=https://raw.githubusercontent.com/juliensimon/space-datasets/main/status.json&query=$.mars-rovers&label=updated&color=brightgreen)
51
+
52
+ Image metadata from NASA's Mars rovers: **200,000** Perseverance images (sol 4,859) and **200,000** Curiosity images (sol 4,859), totaling **400,000** records across **11** camera instruments.
53
+
54
+ ## Dataset description
55
+
56
+ The NASA Mars Rover Image Catalog contains metadata for every raw image captured by the Perseverance (Mars 2020) and Curiosity (MSL) rovers on the surface of Mars. Perseverance has been exploring Jezero Crater since February 2021, investigating an ancient river delta for signs of past microbial life and caching samples for future Earth return. Curiosity has been climbing Mount Sharp in Gale Crater since August 2012, discovering evidence that Mars once had long-lived lakes and rivers with conditions suitable for life. Together, these rovers have captured over 2 million raw images using a variety of cameras: engineering cameras for navigation and hazard avoidance, science cameras for geological investigation, and specialized instruments like SuperCam and Mastcam-Z. This metadata catalog includes image timestamp, sol number, camera instrument, rover position (XYZ site frame), pointing angles, and download URLs — enabling large-scale analysis of imaging patterns, traverse mapping, and targeted image retrieval without downloading terabytes of raw image data.
57
+
58
+ ## Schema
59
+
60
+ | Column | Type | Description |
61
+ |--------|------|-------------|
62
+ | `id` | int | Unique image ID from NASA |
63
+ | `mission` | string | Mission identifier: "mars2020" (Perseverance) or "msl" (Curiosity) |
64
+ | `sol` | int | Martian sol number (days since landing) |
65
+ | `instrument` | string | Camera instrument name |
66
+ | `date_taken` | string | UTC datetime when image was captured |
67
+ | `date_received` | string | UTC datetime when image was received on Earth |
68
+ | `site` | int | Site number along the rover traverse |
69
+ | `drive` | int | Drive number within the site |
70
+ | `rover_x` | float | Rover X position in site frame (meters) |
71
+ | `rover_y` | float | Rover Y position in site frame (meters) |
72
+ | `rover_z` | float | Rover Z position in site frame (meters) |
73
+ | `mast_azimuth` | float | Mast azimuth angle (degrees) |
74
+ | `mast_elevation` | float | Mast elevation angle (degrees) |
75
+ | `sample_type` | string | Image sample type (full, subframe, thumbnail) |
76
+ | `filter_name` | string | Camera filter name |
77
+ | `local_mean_solar_time` | string | Local Mean Solar Time on Mars |
78
+ | `image_url` | string | Direct HTTPS URL to download the raw image |
79
+ | `is_thumbnail` | bool | Whether this is a thumbnail image |
80
+ | `title` | string | Image title/caption |
81
+
82
+ ## Usage
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ # Load all images
88
+ ds = load_dataset("juliensimon/nasa-mars-rover-images", split="train")
89
+ df = ds.to_pandas()
90
+
91
+ # Perseverance images only
92
+ m2020 = df[df["mission"] == "mars2020"]
93
+
94
+ # Curiosity Mastcam images
95
+ mastcam = df[(df["mission"] == "msl") & (df["instrument"].str.contains("MAST", na=False))]
96
+
97
+ # Images per sol for Perseverance
98
+ sol_counts = m2020.groupby("sol").size()
99
+ sol_counts.plot(title="Perseverance images per sol")
100
+
101
+ # Rover traverse (XYZ positions)
102
+ positions = m2020.dropna(subset=["rover_x", "rover_y"])
103
+ positions.plot.scatter(x="rover_x", y="rover_y", s=0.1, title="Perseverance traverse")
104
+ ```
105
+
106
+ ## Data source
107
+
108
+ [NASA Mars Raw Image API](https://mars.nasa.gov/raw_images/). Images are captured by cameras aboard
109
+ the Perseverance (Mars 2020) and Curiosity (MSL) rovers and transmitted to Earth via Mars orbiters
110
+ and the Deep Space Network.
111
+
112
+ ## Update schedule
113
+
114
+ Weekly (Monday at 11:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
115
+ Incremental updates fetch only images added since the last run.
116
+
117
+ ## Related datasets
118
+
119
+ - [esa-exomars-tgo-observations](https://huggingface.co/datasets/juliensimon/esa-exomars-tgo-observations) -- ExoMars Trace Gas Orbiter observations
120
+ - [esa-mars-express-observations](https://huggingface.co/datasets/juliensimon/esa-mars-express-observations) -- ESA Mars Express observations
121
+ - [mars-craters-robbins](https://huggingface.co/datasets/juliensimon/mars-craters-robbins) -- 384K+ Martian impact craters
122
+ - [meda-weather](https://huggingface.co/datasets/juliensimon/meda-weather) -- Perseverance MEDA weather station
123
+ - [chemcam](https://huggingface.co/datasets/juliensimon/chemcam) -- Curiosity ChemCam LIBS spectra
124
+
125
+ ## Pipeline
126
+
127
+ Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
128
+
129
+ ## Support
130
+
131
+ If you find this dataset useful, please give it a ❤️ on the [dataset page](https://huggingface.co/datasets/juliensimon/nasa-mars-rover-images) and share feedback in the Community tab! Also consider giving a ⭐️ to the [space-datasets](https://github.com/juliensimon/space-datasets) repo.
132
+
133
+ ## Citation
134
+
135
+ ```bibtex
136
+ @dataset{nasa_mars_rover_images,
137
+ author = {Simon, Julien},
138
+ title = {NASA Mars Rover Image Catalog},
139
+ year = {2026},
140
+ publisher = {Hugging Face},
141
+ url = {https://huggingface.co/datasets/juliensimon/nasa-mars-rover-images},
142
+ note = {Based on NASA Mars Raw Image API data}
143
+ }
144
+ ```
banner.jpg ADDED

Git LFS Details

  • SHA256: fa95a1659beead74b438f643b2499730819643199632ccfe42f7d11d45d6152e
  • Pointer size: 130 Bytes
  • Size of remote file: 38.6 kB
data/mars_rover_images.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c0ce3ddd15ca88076f318d8c7e67b743d7dda0af7d010f18a3196922aa35ba4
3
+ size 4714627