Expand description

Jet Propulsion Laboratory

Example usage with FireballClient

use voyager_client::jpl::*;

// Instantiate Base Client
let mut base = FireballClient::new();
 
// Optionally limit the number of responses
base.limit(10);

base.query().unwrap();

Example usage with MissionDesign

use voyager_client::jpl::*;
 
// Instantiate Base Client
let mut base = MissionDesign::new();
 
base.query(QueryType::DES, "2012%20TC4").unwrap();

Structs

Atmospheric Impact Data

Base Client for the JPL Mission Design API in Query Mode.

Base Client for Mission Design in Accessible Mode (A)

Base Client for Mission Design in Map Mode (M)

Enums