rainymotion:
Python library for radar-based precipitation nowcasting based on optical flow techniques
The main idea of the rainymotion library is to provide an open baseline solution for radar-based precipitation nowcasting.
rainymotion is based only on free and open source software -- we tried to make a clue between the best scientific libraries to make them work together for providing reliable precipitation nowcasts.
rainymotion documentation is hosted by Read the Docs.
To obtain precipitation nowcasts using the rainymotion models you need to follow the only three steps:
- initialize the model (you have 4 variants)
- load data to the model's placeholder
- run the model
# import rainymotion model
from rainymotion.models import Dense
# initialize model instance
model = Dense()
# load the data using your custom DataLoader function
model.input_data = DataLoader("/path/to/data")
# run the model
nowcasts = model.run()Please cite rainymotion as Ayzel, G., Heistermann, M., and Winterrath, T.: Optical flow models as an open benchmark for radar-based precipitation nowcasting (rainymotion v0.1), Geosci. Model Dev., 12, 1387-1402, https://doi.org/10.5194/gmd-12-1387-2019, 2019.

