Skip to main content

Tools for working with JSON-BUFR conversion in the E-SOH proejct.

Project description

E-SOH

EURODEO

The RODEO project develops a user interface and Application Programming Interfaces (API) for accessing meteorological datasets declared as High Value Datasets (HVD) by the EU Implementing Regulation (EU) 2023/138 under the EU Open Data Directive (EU) 2019/1024. The project also fosters the engagement between data providers and data users for enhancing the understanding of technical solutions being available for sharing and accessing the HVD datasets. This project provides a sustainable and standardized system for sharing real-time surface weather observations in line with the HVD regulation and WMO WIS 2.0 strategy. The real-time surface weather observations are made available through open web services, so that they can be accessed by anyone.

Near real-time observational data

E-SOH is part of the RODEO project. The goal for this project is to make near real-time weather observations from land based station easily available. The data will be published on both a message queue using MQTT and EDR compliant APIs. Metadata will also be made available through OGC Records APIs. The system architecture is portable, scalable and modular for taking into account possible future extensions to existing networks and datasets (e.g. 3rd party surface observations).

RODEO BUFR Tools

This tool handles the BUFR messages:

  • ecoding the messages for E-SOH/openradardata ingestion
  • providing E-SOH API output in BUFR format

The library suports ECMWF ecCodes, WMO and OPERA BUFR tables.

Installation

Create virtual environment

python3 -m venv bufr-venv

Activate

source bufr-venv/bin/activate

Install rodeo-bufr-tools

pip install rodeo-bufr-tools

Install BUFR table files:

  • WMO(for example version 44)
    wget https://github.com/wmo-im/BUFR4/archive/refs/tags/v44.zip
    unzip v44.zip
    export BUFR_TABLE_DIR=./BUFR4-44/txt/
    
  • ECMWF Eccodes
    sudo apt install libeccodes-data
    export BUFR_TABLE_DIR=/usr/share/eccodes/definitions/bufr/tables/0/wmo
    

Usage

Dump BUFR content

# Dump BUFR file(s)

import os
import sys

from bufr_tools import bufr2txt

if __name__ == "__main__":

    msg = ""

    if len(sys.argv) > 1:
        for i, file_name in enumerate(sys.argv[1:]):
            if os.path.exists(file_name):
                msg = bufr2txt.bufr2text(file_name)
                print(msg)
                print(file_name)
            else:
                print("File not exists: {0}".format(file_name))
                exit(1)
    else:
        print(f"Usage: python3 {sys.argv[0]} <bufr_file1> <bufr_file2> ...", file=sys.stderr)
        sys.exit(1)

    sys.exit(0)

Create E-SOH message(s)

Print E-SOH message

# Extract BUFR file(s) to E-SOH ingest json format

import os
import sys

from bufr_tools import create_mqtt_message_from_bufr

if __name__ == "__main__":

    msg = ""

    if len(sys.argv) > 1:
        for i, file_name in enumerate(sys.argv[1:]):
            if os.path.exists(file_name):
                msg = create_mqtt_message_from_bufr.bufr2mqtt(file_name)
                for m in msg:
                    print("======")
                    print(m)
            else:
                print("File not exists: {0}".format(file_name))
                exit(1)
    else:
        print(f"Usage: python3 {sys.argv[0]} <bufr_file1> <bufr_file2> ...", file=sys.stderr)
        sys.exit(1)

    sys.exit(0)

Encode BUFR content from Coverage json

# Convert E-SOH coverage json to BUFR format

import os
import sys

from bufr_tools import covjson2bufr

if __name__ == "__main__":
    bufr_schema = "default"

    if len(sys.argv) > 1:
        for i, file_name in enumerate(sys.argv):
            if i > 0:
                if os.path.exists(file_name):
                    with open(file_name, "rb") as file:
                        coverage_str = file.read()
                        bufr_content = covjson2bufr.covjson2bufr(coverage_str, bufr_schema)
                        with open("test_out.bufr", "wb") as file:
                            file.write(bufr_content)
                else:
                    print("File not exists: {0}".format(file_name))
                    exit(1)
    else:
        print("Usage: python3 covjson2bufr.py coverage.json")

    exit(0)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rodeo_bufr_tools-0.4.6.tar.gz (5.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14Windows x86-64

rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.13Windows x86-64

rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.12Windows x86-64

rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl (6.5 MB view details)

Uploaded CPython 3.11Windows x86-64

rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file rodeo_bufr_tools-0.4.6.tar.gz.

File metadata

  • Download URL: rodeo_bufr_tools-0.4.6.tar.gz
  • Upload date:
  • Size: 5.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for rodeo_bufr_tools-0.4.6.tar.gz
Algorithm Hash digest
SHA256 5571390aec814a0f443c6780ba13593f3f5a8f317ec87c2674baaefc612ce052
MD5 6131a9a0de40f7b389c5918a760028a6
BLAKE2b-256 babc4af7c59e2d427b55b6f2a051d9ba9d4234fd0d65fbba027a38c00026c843

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6.tar.gz:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2056ad5a6825b5fa851183d04f342b5696c6e9cfadc1c423b7185f8b2b256a84
MD5 dbb6916973d9aef98305d8b389d89860
BLAKE2b-256 09543bb151dd80a25f8d7365dad54189be52aa70bceae94a6eda25062cac0f78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79fcb3345d5e14ea43c7c4a6780f948d232be521c5f81af78fa1d8495bc2733e
MD5 a97b3f464a193194e490874065fb42fa
BLAKE2b-256 1a0b62e118c971826c887e45ef4adef1f9baf32ead32501f653f1c28d7ef2d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f96ec6461f00e1d4979cf094bbbe42fa674d2556232a03c082fbc3153c6f2010
MD5 e56095d83a1a12c2b86ad9a8ccc89d11
BLAKE2b-256 cab5585cd8826d5ecc63f12483be4d55a978351bfbb9dc724975a10955c0a157

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4619faf0f5ee78d76938b270cb4bba1c10e19e054ade6761ef14881a90e8bc70
MD5 536285d5cf65dcf4694557eeed21aa22
BLAKE2b-256 ae607bee484c063c27c1e1c12cb10477efd36b808907e2223582cfad1b4bfb81

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f3cad3ccd8af1e5524a31721ae19f26d89b0ea4459d4d78b45c8f9378bc611f5
MD5 d1749822ac319e2835d52993bbf31702
BLAKE2b-256 69e7774ca0b0b8a26da8f22697d77ef8f848a5ef6789de4bee05e0d99dadea4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1c88458d3de6d87944b138061d72956e096462f0a722550fdf3e99ae3055961
MD5 b416996e25683d52b8d162c36cc2b351
BLAKE2b-256 2d4f4bc9996c0ac1c76a08dd04f157f1de5a6d004390fdbb7f5b1dcda9b323c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6360ea0a97a4e5800dfca9453a553f0c703f6bb0113cd6ddbc0756eb1439c221
MD5 08adefdb9c7027f7a6d8480166008658
BLAKE2b-256 694cb9402504c6b850f26d101741adc13585f3e8723ed570bdd3beab3744ef67

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5be05513c2969de89d1033598326bafc51f20625fcf55c3bf095d2b6083794ac
MD5 a78ddb584b1293a4aa2a8a9658488841
BLAKE2b-256 975a7cbd23f893e2405c045418a511673431838756ba413367823fd93032c4f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 898c96019b87bbd3e3f51eb40645a0ec92fdbc509f1662878b11fc244f66292c
MD5 6a26a98417fc6bdb49ef8f5043034f25
BLAKE2b-256 5e2bd2868d146e180a59889b508655650d1c98ca400797d082ae100b12111a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d91494cead4c9f1455e4ad827256440b08ca22a49aba095b930d625a7eccae0d
MD5 fc719139d7d8769404ba60620813f656
BLAKE2b-256 593afe99280df029077a31f2a3dbeee631130513eba0dcee490251f0e52b3d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4700da81dbbf28b1566c5924c9eff1b74c2a739fc72b4b303e2cbec3425054d7
MD5 e8df68e568e3ae1d2450c407cc35eb72
BLAKE2b-256 440efb42fd53bb38b96d3f709b8696ef2fe518096a59f785a65f747414b7aa4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 132c00d35bba4fd3761cce4a08559ca07f2317776db8dde7d4046f87d7e45640
MD5 275c5edf62329cae6e61ebb450ff8349
BLAKE2b-256 f5af112a22a7d84ce34a65c14ebee733fbf2c2c4bd2a20ce615f63bff4df970a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dbd6582affccaddfdd08e4d2e15b0b94e89dece49829caca8f95e31723db34c
MD5 a144e42b415cb6591865f99a5b89d0fb
BLAKE2b-256 e48a64e4e0ea9ca47fa1986e4d86ef7aa2e144a2d8061d30ce72b464379b67af

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cecd09a62331b877e482f0358f38ba332975bfb023c576870a1257918ca89b41
MD5 7bcadc3a0e7c8eda2122e4a6a3758b26
BLAKE2b-256 7e01410831631eeb074b6b99e5aa24f7691f902abad47c28594eb659c042948c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14fc936c044ccb32abe3ed25f1e25bc0845601691db713428dedc1765d6ab36a
MD5 fc7ff817c39fa20b63fd46d87bb1a426
BLAKE2b-256 62266743ea236283243c259fabd661e77ce1436189eb1da66c4242caa3127739

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 607a21aa2e4083db70e4141b1e9171fc8364f3a5df79fb1ef932cf8fbb994fca
MD5 192e0f88cfae5c7351af5b246a9c110c
BLAKE2b-256 6a84a342ccee604f1c6c7e9ef81af2c41a8e2de33bb65402ea4193210a5ab930

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d50262dd9e83c6160b18b70cf1fd340b251d632f1b6a460e48d6d1b59838ee4
MD5 1d373e7cd3068ff3860e2b7012f9c29d
BLAKE2b-256 a978f0a8d9d0b69e8c4fcdd4150768dcf1cccad6061c6586247d3f4e17ddb425

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8dcc1959e2d41ad36a7c815996b40ace434dd9d07e5f74ab9ec2f71d3dc180a
MD5 c56ffb6823cf3132a383155c186cb74d
BLAKE2b-256 5306dda4ac36fe76bded00687b02149136a5d2a157a467c7cf0afa27c920ec23

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1dde27a0143efa4bd2d7ae04a9284adab836843aa95bef4970059f93e1e5350
MD5 4a2da4c2f2f90174511be9d50aa6d806
BLAKE2b-256 0f23144f7d640a37d6cc2308cc39c28f7c08f026e86c56482c6f88c37e25a77c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c89d50595c573d28ff4c9685fe9a1ddcdc6421eb24d09b55fb8351e7ddceee
MD5 b9c1d0fcbec045d1f136d8386cb2e9d7
BLAKE2b-256 d7e8c96ea6fbdaf7658e10bbf904e3adde5676a9814cb126695fa20c866ad4d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on EUMETNET/rodeo-bufr-library

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page