• Stars
    star
    345
  • Rank 120,154 (Top 3 %)
  • Language
    Ruby
  • License
    GNU General Publi...
  • Created about 9 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Rails API for photo data from NASA's Mars Rovers

Mars Rover Photo API

API Version: Version

Build status: CircleCI

Test coverage: Test Coverage

This API is designed to collect image data gathered by NASA's Perseverance, Curiosity, Opportunity, and Spirit rovers on Mars and make it more easily available to other developers, educators, and citizen scientists.

API Keys

You can use the API key DEMO_KEY to check things out. However, if you will be intensively using the APIs to, say, support a mobile application, then you should sign up for a NASA developer key. You can include this API key in a request with a query parameter api_key=<YOUR_KEY>.

Photo Attributes

Each rover has its own set of photos stored in the database, which can be queried separately. There are several possible queries that can be made against the API. Photos are organized by the sol (Martian rotation or day) on which they were taken, counting up from the rover's landing date. A photo taken on Curiosity's 1000th Martian sol exploring Mars, for example, will have a sol attribute of 1000. If instead you prefer to search by the Earth date on which a photo was taken, you can do that too.

Along with querying by date, results can also be filtered by the camera with which it was taken. Each camera has a unique function and perspective, and they are named as follows:

Cameras

Perseverance rover

Abbreviation Camera
EDL_RUCAM Rover Up-Look Camera
EDL_RDCAM Rover Down-Look Camera
EDL_DDCAM Descent Stage Down-Look Camera
EDL_PUCAM1 Parachute Up-Look Camera A
EDL_PUCAM2 Parachute Up-Look Camera B
NAVCAM_LEFT Navigation Camera - Left
NAVCAM_RIGHT Navigation Camera - Right
MCZ_RIGHT Mast Camera Zoom - Right
MCZ_LEFT Mast Camera Zoom - Left
FRONT_HAZCAM_LEFT_A Front Hazard Avoidance Camera - Left
FRONT_HAZCAM_RIGHT_A Front Hazard Avoidance Camera - Right
REAR_HAZCAM_LEFT Rear Hazard Avoidance Camera - Left
REAR_HAZCAM_RIGHT Rear Hazard Avoidance Camera - Right
SKYCAM MEDA Skycam
SHERLOC_WATSON SHERLOC WATSON Camera

Other rovers

Abbreviation Camera Curiosity Opportunity Spirit
FHAZ Front Hazard Avoidance Camera βœ” βœ” βœ”
RHAZ Rear Hazard Avoidance Camera βœ” βœ” βœ”
MAST Mast Camera βœ”
CHEMCAM Chemistry and Camera Complex βœ”
MAHLI Mars Hand Lens Imager βœ”
MARDI Mars Descent Imager βœ”
NAVCAM Navigation Camera βœ” βœ” βœ”
PANCAM Panoramic Camera βœ” βœ”
MINITES Miniature Thermal Emission Spectrometer (Mini-TES) βœ” βœ”

Querying the API

Substitute https://api.nasa.gov/mars-photos/ with https://mars-photos.herokuapp.com/ if you want to query the API from a web application. The heroku version allows cross-origin requests and doesnt require an API key.

The API can be queried in the following format:

Photo Endpoint

Queries by Martian sol:

Queries by sol can range from 0, which is the date of landing, up to the current maximum in the database. The current max sol for each rover can be found at that rover's endpoint.

https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?api_key=DEMO_KEY&sol=1000

Querying by Earth date:

Dates should be formatted as 'yyyy-mm-dd'. The earliest date available is the date of landing for each rover.

https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?api_key=DEMO_KEY&earth_date=2015-6-3

Filtering Queries by Camera:

The camera parameter is not case sensitive, but must be one of the camera abbreviations listed in the table above for the respective rover.

https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/photos?api_key=DEMO_KEY&sol=1000&camera=fhaz

https://api.nasa.gov/mars-photos/api/v1/rovers/opportunity/photos?api_key=DEMO_KEY&earth_date=2015-6-3&camera=pancam

Query For Latest Photos

If you just want to receive photo data for the most recent Sol for which photos exist for a particular rover, you can visit the /latest_photos endpoint.

https://api.nasa.gov/mars-photos/api/v1/rovers/curiosity/latest_photos?api_key=DEMO_KEY

Mission Manifest Endpoint

A mission manifest is available for each Rover at the /manifests/<rover_name>. This manifest will list details of the Rover's mission to help narrow down photo queries to the API. The information in the manifest includes:

  • name
  • landing_date
  • launch_date
  • status
  • max_sol
  • max_date
  • total_photos

It also includes a list of objects under the photos key which are grouped by sol, and each of which contains:

  • sol
  • total_photos
  • cameras

An example entry from /manifests/Curiosity might look like:

{
  sol: 0,
  earth_date: "2012-08-06"
  total_photos: 3702,
  cameras: [
    "CHEMCAM",
    "FHAZ",
    "MARDI",
    "RHAZ"
  ]
}

This would tell you that this rover, on sol 0, took 3702 photos, and those are from among the CHEMCAM, FHAZ, MARDI, and RHAZ cameras.

The database will be updated regularly with the latest photos from the red planet.

Contributing

If you would like to contribute to Mars Rover Photo API, feel free to create a pull request. If you'd like to contact me, you can reach me at [email protected] or on Twitter @chrisccerami.

  1. Fork it ( https://github.com/chrisccerami/mars-photo-api/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

More Repositories

1

ascii_art

A drawing app for ASCII art written in Ruby with Curses
Ruby
5
star
2

explore_mars

A Ruby gem for browsing photos from the Mars Rover Photo API
Ruby
4
star
3

nsq-example

An example of using NSQ to queue data for batching
JavaScript
2
star
4

ferro_ruby

A Ruby built with Rust
Rust
2
star
5

mars-photo-ember

A single page Ember app to serve as the front end for the Mars Photo API
HTML
2
star
6

pizza_reviews

Pizza Review web app written in Ruby on Rails
Ruby
2
star
7

scene-hub-v2

A Ruby on Rails app designed to help people find local music
Ruby
2
star
8

opportunity_api

Ruby
1
star
9

rust-blackjack

Rust
1
star
10

ember_dockyard_tutorial

Ruby
1
star
11

search_engine_rails

Ruby
1
star
12

launcher_dj

Submit songs to build a community playlist
Ruby
1
star
13

rust-connect-four

A Connect Four clone built in Rust
Rust
1
star
14

Learn-To-Program-Pine

Exercises from Learn to Program by Chris Pine
Ruby
1
star
15

libcore

A libcore for intermezzOS
Rust
1
star
16

ceramicc

TypeScript
1
star
17

ember-rails-portfolio

Portfolio Web App built with a Rails backend and Ember frontend
Ruby
1
star
18

sample_app2

Ruby
1
star
19

churn-obyl-rust

Rust
1
star
20

mars-curiosity-api

A Rails API for photo data from NASA's Mars Rovers
Ruby
1
star
21

sample_app

Sample app from railstutorial.org
Ruby
1
star
22

lre

rails exercise
Ruby
1
star
23

demo_app

Demo app from railstutorial
Ruby
1
star
24

os-rust

Assembly
1
star
25

breakable_toybox

Rails app for viewing and commenting on other students' web apps
Ruby
1
star
26

gitly

URL shortener app in Rails
Ruby
1
star
27

portfolio

Ruby
1
star
28

Horizon

Horizon challenges from Launch Academy
Ruby
1
star
29

LA_contact_manager

Contact Manager activerecord exercise for Launch Academy
Ruby
1
star
30

OSdef

A Kernel written while reading through Steve Klabnik's IntermezzOS
Assembly
1
star
31

mars_photos_data_scraper

Data scraper to gather photos from NASA's Curiosity rover's image gallery
Ruby
1
star
32

curses-maze

A simple maze game written with Curses in Ruby
Ruby
1
star
33

LA-rescue-mission

Rescue Mission challenge for Launch Academy
Ruby
1
star
34

scene-hub

Rails app for tracking local bands and musicians
Ruby
1
star
35

queer-vn

A visual novel about queer online dating
JavaScript
1
star