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.7.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.7-cp314-cp314t-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

rodeo_bufr_tools-0.4.7-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.7-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.7-cp314-cp314t-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

rodeo_bufr_tools-0.4.7-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.7-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.7-cp314-cp314-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

rodeo_bufr_tools-0.4.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

rodeo_bufr_tools-0.4.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

rodeo_bufr_tools-0.4.7-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.7-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.7-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.7.tar.gz.

File metadata

  • Download URL: rodeo_bufr_tools-0.4.7.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.7.tar.gz
Algorithm Hash digest
SHA256 1bee595c82a9602edf95f2df33600320808adcb73129c6fb9192118b7b396232
MD5 03cd691d505646bb9e1cae8b48f06ac7
BLAKE2b-256 61cb0c73b7fa7287aecb3d606a4c072559e0a0051130f6772c53d47331020aeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7.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.7-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8099ddbce55af4fb3a936560fc17e001bdbbcf7a10604c2ab10a27dab9226b83
MD5 1ddf5ea34b5b6e170848d58ea11fdf3c
BLAKE2b-256 86261311ac572b288fe61da010e960bb87a6780918a8fe89008dc06e4ca7e061

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8139aec8f3cf6513e492b564f7a6bc991fe58a0e776d4634a3584c215ef255c
MD5 28c05e729e02a1628d4c47dd71eeec16
BLAKE2b-256 9d26f4cbb875284a53c25c46a561ba595811798852d288ad1d4d3c60c2533749

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 899dc81078ec906d140d028d3913751615b8056a8a20e7f7a03cfd294684c1d6
MD5 b84af5f079a250e14cb0f6034993cbca
BLAKE2b-256 f2d0c7b9295fd5e02f24fb95a91679e01d7a7430b997f0216517a10b1b5f351b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901d92ecf22cbbdce193385ee9424436f4b3983cce7eae9c9a0e0cdc42ce966a
MD5 4ed9ca6024318e5412a3160238e9341e
BLAKE2b-256 0bbc4c797f907bac9d13c3697c996f7eb2479d876096eada725c460d04b41d3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bf4bd6102828c880860b933df36860f06fb4c777f92ad920e90cfe12b8a7c525
MD5 19611206350bd0652a8b175571e6eaad
BLAKE2b-256 be37d4728638caee13b810b8907a40fa1d79fe0e602f652be8a45a4a23c36688

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6db53b8c023f15305d36aa9db4b10289fd793aa9b8d6d9c53d09a177fc395dfa
MD5 f80728db6c2f1ef8e8f6d48bd2495af5
BLAKE2b-256 3ae66f5c0a7e61b50fb84aad2531d11fd8507749d90c831c36ed021d29752703

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88213b1add5a6c428f3f02cf20ebdb9fc796632fcf9584e931aca2dcd3017f63
MD5 14ac1d7efae969edd464b7c4e9b8324d
BLAKE2b-256 e411f2a6d25a7e59bee6996cd4664f05f5caea66b77bd505b03e136452729dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98a48ceb16d2e8ea71a7aa24f01a8c55b9dc840ad340f9109c9e27e82bef3436
MD5 a2955fea09415f8c28e5f2954efbbfc9
BLAKE2b-256 a945b3ee5e98fa202c7b9f83d962f572e09e042c1a5d0e2b0e4d6c4080cecd19

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9337bc89f094cc6ecef2fa7463c8a5c5702811352f633db10e3d84af0e649d9c
MD5 64ec52adc27936c4ef0f4a3f3bd0ee87
BLAKE2b-256 b81732ff9a6da4b399411c1789122436c1931e9130573145bf0d03c998202961

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16276188bbf9ede3b04cf787fa9bcf1fa38665788c03eb4993c1629f41852985
MD5 3e938949de102b62d54c8181794d5032
BLAKE2b-256 e4e7dfa8a276de1cffc5a8d716ea7552869d9b2d7b3810a37ccc7e7a11d81e3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 254365f995b9e22402d3e2aaebce8fcf3e0ddf66593e41bc0f6a53f53dc207a8
MD5 2385f1166ca4c343fe77ccb24bac8f1e
BLAKE2b-256 cbac9f2b98794d70580dec151a99cafb62a7bece5ceb5c8f77188154a4374e7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cba1660c21a7f1b8f6f345be6b27f56a782ac8dc7080595308a6fac83bb07d72
MD5 5e7023167b3ad350fe011104bc60b66b
BLAKE2b-256 8e0779d082cb41ee7271cb776f035a4968b6d6e3e21eb27b6034b0701ee32c9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5be8219150707c455069288c00ee84f18afc090677122a8cdffd39e83695078e
MD5 1a6631058ccd541d56c177ff20285f8e
BLAKE2b-256 cddf003b38d9d7f3f534b596632e1a3794e4bde937796318031981a494c7d225

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4d72827d7f8f89d8b9c4d42ef5f29eb7d8e0ae84a08f2c1911257660d5a8aab
MD5 f4cd3d4e5e7d37fb6a41ba98ff8effbf
BLAKE2b-256 b5477b10fb95b3365175f01153e7116d0004c53d4b7b83ef833f4518b7d45409

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f53b7e4627c307112352a8314973c92ef85f043de061d5fc434b3834a559c259
MD5 6fe2962342462b246ed72b3f1b658cbb
BLAKE2b-256 4b0c2a0b2e5461fd2ae0fba5989ab7eb7ef9fb75a2c323aa2ace0818b72a6738

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e680c675b18bae912ec09855a6b96e083d998f26cbcb5f19a1868eae353fafa
MD5 004918e0029c8406bbba6088bc59486f
BLAKE2b-256 ed33515a6e3250317e4ee480acf174ce5e4e2941fc5bf30dd8c1e17a4bf9a6d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7c21cedd483b32aa07099d5931e142c2ba30eb2ecaff334c6c99f114d35bc0cc
MD5 048bdfc79ab7df1ddc0a3d2e5fa01c0c
BLAKE2b-256 694877199be95b2e6f59f06bdfcd06de7d234bfc3100f8a91d7e57e115fb67a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22b152fea6471afee07912c66294bcc3f55018c61dbdcd026a6762d9ff19760a
MD5 0320c2da0e302ba973fec5be89e98ebc
BLAKE2b-256 6e1c9b1997e09b17eff1bd0a1b9ab64f4e748f35c24d7e8fd1751edc7af97ea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 de0124ea6456d42c4bb0fe958d1199e2ba5f0f8d9358a7f41cba8ad83f6b0586
MD5 552ff446b13e71d9bd47208982a38f3d
BLAKE2b-256 7d4eeb89680b0359e4b43205fdbac98ee8e41030b4699f33d14f7dd64f51f313

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49cc425e80d7bdaed8aa5f6fe979c84576e5822055304d30ec0220cf88619f42
MD5 68725ae40b3a25e8a32d71a4479e339d
BLAKE2b-256 2abfe1dcfad032236e1dd6fcc3276a3c70b0465cba6e300f17109778ef59c62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rodeo_bufr_tools-0.4.7-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