Tools to read and process Mars Climate Sounder files.
Download or clone the repo:
$ git clone https://github.com/cloudspotting-on-mars/com-analysis-tools
Setup a virtual environment with python3 -m venv env
and install with pip install -e .
See https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/MARS/atmosphere_temp_prof.html
To read in an L1B file as a DataFrame:
from mcstools import L1BReader
reader = L1BReader()
reader.read(path_to_file)
To load data from PDS:
from mcstools import L1BLoader
loader = L1BLoader(pds=True)
loader.load_date_range("2016-01-01", "2016-01-02")