Quick Start • Installation • Documentation
[!IMPORTANT] This software is Graduated and subject to ECMWF's guidelines on Software Maturity.
earthkit-meteo is a Python package providing meteorological computations using array (NumPy, Torch and CuPy), xarray or fieldlist. It is part of the earthkit ecosystem.
Quick Start
from earthkit.meteo import thermo
# using Numpy arrays
import numpy as np
t = np.array([264.12, 261.45]) # Kelvins
p = np.array([850, 850]) * 100.0 # Pascals
theta = thermo.potential_temperature(t, p)
# using Torch tensors
import torch
t = torch.tensor([264.12, 261.45]) # Kelvins
p = torch.tensor([850.0, 850.0]) * 100.0 # Pascals
theta = thermo.potential_temperature(t, p)
Installation
Install via pip with:
$ pip install earthkit-meteo
Alternatively, install via conda with:
$ conda install earthkit-meteo -c conda-forge
Licence
Copyright 2023, 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.
Release files for earthkit-meteo 1.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| earthkit_meteo-1.1.1.tar.gz | 3.3 MB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| earthkit_meteo-1.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 3.5 MB
Release files / earthkit_meteo-1.1.1.tar.gz
| Download URL | earthkit_meteo-1.1.1.tar.gz |
|---|---|
| Size | 3.3 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
49719b29abd063ed62f94a3ae104398eb1147852a1d93b5be56ca60669c4b94c
|
|
BLAKE2b-256 checksum How to use checksums |
4551cedcf6056587bf6e4b38c50f602d07e99d34f5008240ec68a519921696f5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.7
|
Release files / earthkit_meteo-1.1.1-py3-none-any.whl
| Download URL | earthkit_meteo-1.1.1-py3-none-any.whl |
|---|---|
| Size | 184.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
31073204cf397a131991ca99b81bb8d053ab3d727bf3233e96d8b7ec8b5a3ba6
|
|
BLAKE2b-256 checksum How to use checksums |
188c7a8e2e49f35880491c97c63ecef7327e0e3443c7a88bfd7929cf50c4cf1f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.7
|