mrrpropy

Top-level package for mrrpropy.

The project provides:

  • a high-level MRRProData API for loading, processing and plotting METEK MRR-PRO datasets,
  • the published RaProMPro scientific processing implementation,
  • utilities for microphysical process analysis and hexagram-based classification.

The public API is intentionally concentrated around mrrpropy.raw_class.MRRProData. The lower-level RaProMPro_* modules are retained mainly for scientific reference and workflow-controlled optimization work.

 1"""
 2Top-level package for `mrrpropy`.
 3
 4The project provides:
 5
 6- a high-level `MRRProData` API for loading, processing and plotting METEK MRR-PRO
 7  datasets,
 8- the published RaProMPro scientific processing implementation,
 9- utilities for microphysical process analysis and hexagram-based classification.
10
11The public API is intentionally concentrated around `mrrpropy.raw_class.MRRProData`.
12The lower-level `RaProMPro_*` modules are retained mainly for scientific reference and
13workflow-controlled optimization work.
14"""
15
16from pathlib import Path
17
18PACKAGE_DIR = Path(__file__).resolve().parent
19__version__ = "0.1.1"
20
21__all__ = ["PACKAGE_DIR", "__version__"]
PACKAGE_DIR = PosixPath('/home/runner/work/mrrpropy/mrrpropy/mrrpropy')
__version__ = '0.1.1'