Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 697 Bytes

File metadata and controls

18 lines (11 loc) · 697 Bytes

Meteorology Calculator

Python package providing meteorological calculation kernels, including heatwave and coldwave detection, anomaly and z score computation, plotting helpers, and correlation utilities.

Install for local development

From the repository root:

  1. Create and activate a virtual environment
    python -m venv .venv && .\\.venv\\Scripts\\activate

  2. Install the package in editable mode (plus dependencies as needed)
    pip install -e backend/meteorology_calculator

Structure

  • src/meteorology_calculator/: Library code grouped by domain (heatwaves, coldwaves, anomaly detectors, plotting, and related utilities).
  • setup.py: Editable install entry point.