Skip to content

Latest commit

 

History

History
104 lines (82 loc) · 3.93 KB

File metadata and controls

104 lines (82 loc) · 3.93 KB

ECMWF Software EnginE Maturity Level Licence Latest Release

Quick StartDocumentation

Important

This software is Emerging and subject to ECMWF's guidelines on Software Maturity.

earthkit-climate is the package responsible for the climate index calculation within the earthkit ecosystem. It includes a wrapper prototype that allows the use of the xclim python package to compute a large amount of pre-defined climate indices used by the climate science community, and to define new ones.

Quick Start

Install the package from PyPI:

pip install earthkit-climate

Example usage:

import earthkit.climate as ekc
# Example: compute a precipitation indicator
sdii = ekc.indicators.daily_pr_intensity(precip_data)

Documentation

For full documentation, including API reference and example notebooks, visit the earthkit-climate ReadTheDocs page

Development

See the development guidelines in the documentation.

Project Structure

earthkit-climate/
├── .github/
│   ├── workflows/             # GitHub Actions (push/release)
├── docs/                      # Sphinx-based documentation
├── src/earthkit/
│   ├── climate/
│   │   ├── indicators/        # Climate indicators
│   │   │   ├── xarray/        # xarray-based implementations
│   │   └── utils/
│   │   │   ├── climatology/
├── tests/
│   ├── docs/                  # Documentation tests
│   ├── unit/                  # Unit tests
│   ├── integration/           # Integration tests
└── tools/                     # Scripts for code generation, etc.

License

Copyright 2022-, European Centre for Medium Range Weather Forecasts.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

In applying this licence, ECMWF does not waive the privileges and immunities
granted to it by virtue of its status as an intergovernmental organisation
nor does it submit to any jurisdiction.