juliensimon commited on
Commit
960d1b4
·
verified ·
1 Parent(s): ea1e353

Update Mars rover images: 405,876 total (202,938 Perseverance, 202,938 Curiosity)

Browse files
Files changed (2) hide show
  1. README.md +66 -54
  2. data/mars_rover_images.parquet +2 -2
README.md CHANGED
@@ -3,9 +3,7 @@ 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:
@@ -21,68 +19,75 @@ tags:
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,008** Perseverance images (sol 4,859) and **200,008** Curiosity images (sol 4,859), totaling **400,016** 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
- | `local_mean_solar_time` | string | Local Mean Solar Time on Mars |
77
- | `image_url` | string | Direct HTTPS URL to download the raw image |
78
- | `is_thumbnail` | bool | Whether this is a thumbnail image |
79
- | `title` | string | Image title/caption |
 
 
 
 
 
 
 
80
 
81
  ## Usage
82
 
83
  ```python
84
  from datasets import load_dataset
85
 
 
 
 
 
 
 
 
86
  # Load all images
87
  ds = load_dataset("juliensimon/nasa-mars-rover-images", split="train")
88
  df = ds.to_pandas()
@@ -94,50 +99,57 @@ m2020 = df[df["mission"] == "mars2020"]
94
  mastcam = df[(df["mission"] == "msl") & (df["instrument"].str.contains("MAST", na=False))]
95
 
96
  # Images per sol for Perseverance
 
97
  sol_counts = m2020.groupby("sol").size()
98
  sol_counts.plot(title="Perseverance images per sol")
 
 
 
99
 
100
  # Rover traverse (XYZ positions)
101
  positions = m2020.dropna(subset=["rover_x", "rover_y"])
102
  positions.plot.scatter(x="rover_x", y="rover_y", s=0.1, title="Perseverance traverse")
 
103
  ```
104
 
105
  ## Data source
106
 
107
- [NASA Mars Raw Image API](https://mars.nasa.gov/raw_images/). Images are captured by cameras aboard
108
- the Perseverance (Mars 2020) and Curiosity (MSL) rovers and transmitted to Earth via Mars orbiters
109
- and the Deep Space Network.
110
 
111
  ## Update schedule
112
 
113
- Weekly (Monday at 11:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets).
114
- Incremental updates fetch only images added since the last run.
115
 
116
  ## Related datasets
117
 
118
- - [esa-exomars-tgo-observations](https://huggingface.co/datasets/juliensimon/esa-exomars-tgo-observations) -- ExoMars Trace Gas Orbiter observations
119
- - [esa-mars-express-observations](https://huggingface.co/datasets/juliensimon/esa-mars-express-observations) -- ESA Mars Express observations
120
- - [mars-craters-robbins](https://huggingface.co/datasets/juliensimon/mars-craters-robbins) -- 384K+ Martian impact craters
121
- - [meda-weather](https://huggingface.co/datasets/juliensimon/meda-weather) -- Perseverance MEDA weather station
122
- - [chemcam](https://huggingface.co/datasets/juliensimon/chemcam) -- Curiosity ChemCam LIBS spectra
123
 
124
- ## Pipeline
125
 
126
- Source code: [juliensimon/space-datasets](https://github.com/juliensimon/space-datasets)
127
 
128
- ## Support
129
 
130
- 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.
 
 
131
 
132
  ## Citation
133
 
134
  ```bibtex
135
  @dataset{nasa_mars_rover_images,
136
- author = {Simon, Julien},
137
  title = {NASA Mars Rover Image Catalog},
 
138
  year = {2026},
139
- publisher = {Hugging Face},
140
  url = {https://huggingface.co/datasets/juliensimon/nasa-mars-rover-images},
141
- note = {Based on NASA Mars Raw Image API data}
142
  }
143
  ```
 
 
 
 
 
3
  pretty_name: "NASA Mars Rover Image Catalog"
4
  language:
5
  - en
6
+ description: "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 Jeze"
 
 
7
  task_categories:
8
  - tabular-classification
9
  tags:
 
19
  - open-data
20
  - tabular-data
21
  - parquet
22
+ size_categories:
23
+ - 100K<n<1M
24
  configs:
25
  - config_name: default
26
  data_files:
27
  - split: train
28
  path: data/mars_rover_images.parquet
29
  default: true
 
 
 
 
 
 
 
 
30
  ---
31
 
32
  # NASA Mars Rover Image Catalog
33
 
34
+
35
  <div align="center">
36
  <img src="banner.jpg" alt="NASA's Curiosity rover on the surface of Mars" width="400">
37
  <p><em>Credit: NASA/JPL-Caltech/MSSS</em></p>
38
  </div>
39
 
 
 
 
 
40
 
41
+ *Part of a [dataset collection](https://huggingface.co/collections/juliensimon/space-probe-and-mission-datasets-69c3fe82d410a42b1e313167) on Hugging Face.*
42
 
43
  ## Dataset description
44
 
45
+ 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.
46
+
47
+ This dataset is suitable for **tabular classification** tasks.
48
 
49
  ## Schema
50
 
51
+ | Column | Type | Description | Sample | Null % |
52
+ |--------|------|-------------|--------|--------|
53
+ | `id` | Int64 | NASA-assigned unique integer image ID; monotonically increasing per mission | 1376809 | 0.0% |
54
+ | `mission` | str | Mission identifier: "mars2020" (Perseverance, Jezero Crater, landed Feb 18 2021) or "msl" (Curiosity, Gale Crater, landed Aug 6 2012) | mars2020 | 0.0% |
55
+ | `sol` | Int64 | Martian solar day since rover landing (sol 0 = landing date, ~1.0275 Earth days per sol) | 4305 | 0.0% |
56
+ | `instrument` | str | Camera instrument name (e.g. "FRONT_HAZCAM_LEFT_A", "NAVCAM_LEFT", "MCZ_RIGHT", "MASTCAM_LEFT"; null rare) | MAST_RIGHT | 0.0% |
57
+ | `date_taken` | str | UTC datetime when image was captured on Mars | 2024-09-15T09:31:32.000Z | 0.0% |
58
+ | `date_received` | str | UTC datetime when image was received on Earth via Deep Space Network | 2024-09-16T18:31:47.000Z | 0.0% |
59
+ | `site` | Int64 | Terrain site index along the rover traverse; increments when the rover drives to a new location | 108 | 49.4% |
60
+ | `drive` | Int64 | Drive sequence number within a site; tracks individual driving sessions | 2528 | 49.4% |
61
+ | `rover_x` | float64 | Rover X position in local site frame (meters); coordinate origin at site establishment point | -69.7806 | 49.4% |
62
+ | `rover_y` | float64 | Rover Y position in local site frame (meters) | -30.7345 | 49.4% |
63
+ | `rover_z` | float64 | Rover Z position in local site frame (meters); typically near zero on flat terrain | -3.16259 | 49.4% |
64
+ | `mast_azimuth` | float64 | Remote sensing mast azimuth angle in degrees (0-360, clockwise from north) | 89.9076 | 49.4% |
65
+ | `mast_elevation` | float64 | Remote sensing mast elevation angle in degrees; positive = above horizon, negative = below | -28.6214 | 49.4% |
66
+ | `sample_type` | str | Image sampling mode: "full" (full-resolution), "subframe" (cropped region), "thumbnail" (reduced-resolution preview) | thumbnail | 0.0% |
67
+ | `local_mean_solar_time` | str | Local Mean Solar Time at image capture (format "sol HH:MM:SS"); approximates the position of the sun in the sky | Sol-04306M12:32:28.094 | 49.4% |
68
+ | `image_url` | str | Direct HTTPS URL to download the raw image from the NASA Mars Raw Images server | https://mars.nasa.gov/msl-raw-images/... | 0.0% |
69
+ | `is_thumbnail` | bool | True if this row represents a thumbnail image (lower resolution preview), False for full/subframe images | True | 0.0% |
70
+ | `title` | str | Human-readable image title composed from instrument, sol, and sequence identifiers; may be null | Sol 4305: Mast Camera (Mastcam) | 0.0% |
71
+
72
+ ## Quick stats
73
+
74
+ - **405,876** total images
75
+ - **202,938** Perseverance images (through sol 4,864)
76
+ - **202,938** Curiosity images (through sol 4,864)
77
+ - **11** camera instruments
78
 
79
  ## Usage
80
 
81
  ```python
82
  from datasets import load_dataset
83
 
84
+ ds = load_dataset("juliensimon/nasa-mars-rover-images", split="train")
85
+ df = ds.to_pandas()
86
+ ```
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+
91
  # Load all images
92
  ds = load_dataset("juliensimon/nasa-mars-rover-images", split="train")
93
  df = ds.to_pandas()
 
99
  mastcam = df[(df["mission"] == "msl") & (df["instrument"].str.contains("MAST", na=False))]
100
 
101
  # Images per sol for Perseverance
102
+ import matplotlib.pyplot as plt
103
  sol_counts = m2020.groupby("sol").size()
104
  sol_counts.plot(title="Perseverance images per sol")
105
+ plt.xlabel("Sol")
106
+ plt.ylabel("Image count")
107
+ plt.show()
108
 
109
  # Rover traverse (XYZ positions)
110
  positions = m2020.dropna(subset=["rover_x", "rover_y"])
111
  positions.plot.scatter(x="rover_x", y="rover_y", s=0.1, title="Perseverance traverse")
112
+ plt.show()
113
  ```
114
 
115
  ## Data source
116
 
117
+ https://mars.nasa.gov/raw_images/
 
 
118
 
119
  ## Update schedule
120
 
121
+ Weekly (Monday at 11:00 UTC) via [GitHub Actions](https://github.com/juliensimon/space-datasets). Incremental updates fetch only images added since the last run.
 
122
 
123
  ## Related datasets
124
 
125
+ - [juliensimon/esa-exomars-tgo-observations](https://huggingface.co/datasets/juliensimon/esa-exomars-tgo-observations)
126
+
127
+ - [juliensimon/esa-mars-express-observations](https://huggingface.co/datasets/juliensimon/esa-mars-express-observations)
128
+
129
+ - [juliensimon/mars-craters-robbins](https://huggingface.co/datasets/juliensimon/mars-craters-robbins)
130
 
131
+ - [juliensimon/mars-perseverance-weather](https://huggingface.co/datasets/juliensimon/mars-perseverance-weather)
132
 
133
+ - [juliensimon/mars-chemcam-compositions](https://huggingface.co/datasets/juliensimon/mars-chemcam-compositions)
134
 
135
+ > If you find this dataset useful, please consider [giving it a like](https://huggingface.co/datasets/juliensimon/nasa-mars-rover-images) on Hugging Face. It helps others discover it.
136
 
137
+ ## About the author
138
+
139
+ Created by [Julien Simon](https://julien.org) — AI Operating Partner at Fortino Capital. Part of the [Space Datasets](https://julien.org/datasets) collection.
140
 
141
  ## Citation
142
 
143
  ```bibtex
144
  @dataset{nasa_mars_rover_images,
 
145
  title = {NASA Mars Rover Image Catalog},
146
+ author = {juliensimon},
147
  year = {2026},
 
148
  url = {https://huggingface.co/datasets/juliensimon/nasa-mars-rover-images},
149
+ publisher = {Hugging Face}
150
  }
151
  ```
152
+
153
+ ## License
154
+
155
+ [CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)
data/mars_rover_images.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d3bc2d0ea7772c2eee8458d0d7a1e0ad275bf7fb9743813a2e3fb342b8e3591c
3
- size 4719654
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48239905c000a00c2c890bd573d12e00f2ded3f540993b7a1cc6699fa301e2ba
3
+ size 4703292