Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vlouf/dealias
Radar Doppler velocity dealiasing technique using 3D continuity.
https://github.com/vlouf/dealias
dealiasing py-art radar velocity
Last synced: 4 days ago
JSON representation
Radar Doppler velocity dealiasing technique using 3D continuity.
- Host: GitHub
- URL: https://github.com/vlouf/dealias
- Owner: vlouf
- License: mit
- Created: 2018-01-29T03:25:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-23T02:34:51.000Z (3 months ago)
- Last Synced: 2024-10-29T04:16:30.129Z (17 days ago)
- Topics: dealiasing, py-art, radar, velocity
- Language: Python
- Homepage:
- Size: 310 KB
- Stars: 29
- Watchers: 5
- Forks: 14
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![DOI](https://zenodo.org/badge/119326382.svg)](https://zenodo.org/badge/latestdoi/119326382)
# UNRAVEL
UNRAVEL (UNfold RAdar VELocity) is an open-source modular Doppler velocity dealiasing algorithm for weather radars. This algorithm does not require external reference velocity data, making it highly versatile and easily applicable across various contexts. UNRAVEL consists of eleven core modules and two dealiasing strategies, enabling iterative processing. It starts with the strictest continuity tests in azimuth and range, progressively relaxing the parameters to include more results from a growing number of reference points. Additionally, UNRAVEL includes modules for performing 3D continuity checks. This modular design allows for the expansion of dealiasing strategies to optimize results further.
## Changelog:
Version 1.2.5:
- New box check using a fast and robust striding window algorithm, up to 10x faster for that function call.
Version 1.2.0:
- Multiprocessing using `unravel_3D_pyart_multiproc`
- Various optimization and speed up.## Installation
UNRAVEL is available on [PyPI](https://pypi.org/project/unravel/). The easiest method for installing UNRAVEL is to use pip:
```pip install unravel```
## Dependencies
Mandatory dependencies:
- [numpy][1]
- [numba][2]
- [Py-ART][3][1]: http://www.scipy.org/
[2]: http://numba.pydata.org
[3]: https://github.com/ARM-DOE/pyart# References:
Louf, V., Protat, A., Jackson, R. C., Collis, S. M., & Helmus, J. (2020). UNRAVEL: A Robust Modular Velocity Dealiasing Technique For Doppler Radar. Journal of Atmospheric and Oceanic Technology, 4(1), 741–758. [https://doi.org/10.1175/jtech-d-19-0020.1]