Raytracing Atmospheric Delay Estimation for RADAR
RAiDER-tools is a package in Python which contains tools to calculate tropospheric corrections for Radar using a raytracing implementation. Its development was funded under the NASA Sea-level Change Team (NSLCT) program, the Earth Surface and Interior (ESI) program, and the NISAR Science Team (NISAR-ST) (NTR-51433). U.S. Government sponsorship acknowledged.
Copyright (c) 2019-2022, California Institute of Technology ("Caltech"). All rights reserved.
THIS IS RESEARCH CODE PROVIDED TO YOU "AS IS" WITH NO WARRANTIES OF CORRECTNESS. USE AT YOUR OWN RISK.
- Getting Started
- Setup of third party weather model access
- Running RAiDER and Documentation
- Citing
- Development
RAiDER has been tested on the following systems:
- Ubuntu v.16 and up
- Mac OS v.10 and up
RAiDER does not currently run on arm64 processors on Mac. We will update this note once the build becomes available.
RAiDER is available on conda-forge. Conda is a cross-platform way to use Python that allows you to setup and use "virtual environments." These can help to keep dependencies for different sets of code separate. We recommend using Miniforge, a conda environment manager that uses conda-forge as its default code repo. Alternatively,see here for help installing Anaconda and here for installing Miniconda.
Installing RAiDER:
conda env create --name RAiDER -c conda-forge raider
conda activate RAiDER
RAiDER provides a docker container image with all the necessary dependencies pre-installed. To get the latest released version:
docker pull ghcr.io/dbekaert/raider:latest
a specific release version (>=v0.2.0 only):
docker pull ghcr.io/dbekaert/raider:0.2.0
or the current development version:
docker pull ghcr.io/dbekaert/raider:test
To run raider.py
inside the container:
docker run -it --rm ghcr.io/dbekaert/raider:latest
To mount your current directory inside the container so that files will be written back to your local machine:
docker run -it -v ${PWD}:/home/raider/work --rm ghcr.io/dbekaert/raider:latest
cd work
To jump into a bash
shell inside the container:
docker run -it --rm --entrypoint /bin/bash ghcr.io/dbekaert/raider:latest -l
For more docker run options, see: https://docs.docker.com/engine/reference/run/.
RAiDER has the ability to download weather models from third-parties; some of which require license agreements. See here for details.
For detailed documentation, examples, and Jupyter notebooks see the RAiDER-docs repository.
We welcome contributions of other examples on how to leverage the RAiDER (see here for instructions).
raiderDelay.py -h
provides a help menu and list of example commands to get started.
The RAiDER scripts are highly modularized in Python and allows for building your own processing workflow.
TODO
Contributions are welcome and heartily encourage! See our contributing guide.
For development, we recommend installing directly from source.
git clone https://github.com/dbekaert/RAiDER.git
cd RAiDER
conda env create -f environment.yml
conda activate RAiDER
python -m pip install -e .
For more details on installing from source see here.
- David Bekaert
- Jeremy Maurer
- Raymond Hogenson
- Piyush Agram (Descartes Labs)
- Yang Lei
- Rohan Weeden
- Simran Sangha
- other community members
We welcome community contributions! For instructions see here.