ex-maas - A wrapper for the Mars Atmospheric Weather System API
This package (and module) is a thin wrapper around the MAAS (Mars Atmospheric Aggregation System) API.
The API consists of two endpoints, latest/0, and
archive/1, which (quite obviously) return the latest weather report, and a
paginated list of old weather reports.
For more information, visit the MAAS website.
Installation
The usual stuff! Add maas to the deps in your mix.exs:
def deps do
[{:maas, "~> 0.0.1"}]
endand to your applications:
def application do
[applications: [:maas]]
endand you should be good to go! 🚀