A simple Rust client for interacting with the Massachusetts Bay Transport Authority's V3 API*
*This project is not affiliated with any official development work from the MBTAThe MBTA V3 API is described as:
A fast, flexible, standards-based API for schedules, arrival predictions, vehicle locations, and service alerts.
This project provides a simple synchronous client and data models to easily consume data from the API within your Rust code.
Why provide a synchronous client rather than an asynchronous one?
async
runtimeureq
crate for its simple API and small size, and it only provides a synchronous clientWhy not auto-generate a client, given that the OpenAPI/Swagger client code-generators exists?
It is highly recommended to have the API Swagger docs handy, as it generally contains more detailed and thorough documentation for model field than what is provided here.
In your Cargo.toml
file:
```toml
[dependencies]
mbta-rs = "*"
chrono = "" serde_json = "" ```
Simple example usage: ```rust use std::env; use mbta_rs::Client;
let client = match env::var("MBTATOKEN") { Ok(token) => Client::withkey(token), Err() => Client::withoutkey() };
let query_params = [ ("page[limit]", "3") ];
let alertsresponse = client.alerts(&queryparams); if let Ok(response) = alerts_response { for alert in response.data { println!("MBTA alert: {}", alert.attributes.header); } } ```
This library comes with an optional module for plotting location-related data models (stops, vehicles, shapes, etc.) onto a simple tile map.
In your Cargo.toml
file:
```toml
[dependencies]
mbta-rs = { version = "*", features = ["map"] }
staticmap = "*" ```
Simple example usage: ```rust use std::{collections::HashMap, env}; use staticmap::StaticMapBuilder; use mbta_rs::{Client, map::{Plottable, PlotStyle}};
let client = match env::var("MBTATOKEN") { Ok(token) => Client::withkey(token), Err() => Client::withoutkey() };
let routes = client.routes(&[("filter[type]", "0,1")]).expect("failed to get routes"); let mut map = StaticMapBuilder::new() .width(1000) .height(1000) .zoom(12) .latcenter(42.326768) .loncenter(-71.100099) .build() .expect("failed to build map");
for route in routes.data { let queryparams = [("filter[route]", &route.id)]; let shapes = client .shapes(&queryparams) .expect("failed to get shapes"); for shape in shapes.data { shape .plot(&mut map, true, PlotStyle::new((route.attributes.color.clone(), 3.0), Some(("#FFFFFF".into(), 1.0)))) .expect("failed to plot shape"); } let stops = client .stops(&query_params) .expect("failed to get stops"); for stop in stops.data { stop.plot( &mut map, true, PlotStyle::new((route.attributes.color.clone(), 3.0), Some(("#FFFFFF".into(), 1.0))), ) .expect("failed to plot stop"); } }
// save to file... ```
See CONTRIBUTE.md to get started!
README
and CONTRIBUTE
layouts