Skip to content

pysteps v1.3.1

Choose a tag to compare

@dnerini dnerini released this 18 May 05:53
· 276 commits to master since this release

Summary of main changes and new features:

  • Add an interface to the feature.blob_* methods from scikit-image. A blob is defined as a local maximum of a Gaussian-filtered image. This new utils.images.blob_detection feature detection method can be used in the motion.lucaskanade module to track cells in radar data.
  • Fix installation errors in windows which caused permissions errors in datasets.download_pysteps_data and datasets.download_mrms_data functions.
  • Fix bug with the precipitation mask of nowcasts.anvil. This caused the method to produce too much rain in non-rainy areas when rain rate was used as input.
  • Run Black on the whole source code for consistent, reproducible code formatting.
  • Add pre-commit hooks as part of the development workflow.
  • Improve documentation.

Pysteps v1.3.1 changelog:

  • dataset
    • Fix permissions errors in download_pysteps_data and download_mrms_data functions
    • Update installation instructions for Windows systems
  • motion.lucaskanade.dense_lucaskanade
    • Add option to use blob_detection as feature detection method
  • nowcasts.anvil
    • Implement precipitation mask when rainrate is set to None
    • Minor changes to default values, masking and thresholding
  • utils.images
    • Add blob_detection method