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

Uploaded CPython 3.14tWindows x86-64

rodeo_bufr_tools-0.4.8-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.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rodeo_bufr_tools-0.4.8-cp314-cp314-win_amd64.whl (6.2 MB view details)

Uploaded CPython 3.14Windows x86-64

rodeo_bufr_tools-0.4.8-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.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

rodeo_bufr_tools-0.4.8-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.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

rodeo_bufr_tools-0.4.8-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.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

rodeo_bufr_tools-0.4.8-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.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (6.7 MB view details)

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

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

File metadata

  • Download URL: rodeo_bufr_tools-0.4.8.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.8.tar.gz
Algorithm Hash digest
SHA256 6595f8f8a08cb1d5e8ea1d984ba5426922e5260ccf1c6f512594079842570273
MD5 c947ed4224685744e1876e9ef3dfb8d7
BLAKE2b-256 7aaa2e6bdc6ca14f62563567941669b10c095ed25072eda9c514b8c065bcbca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 9b3a421b591cabbf332af94004617cc90c68f180e93b9f3e2b2a5164faa72802
MD5 5f17b9257089d06d93fc3f7a4f09ed67
BLAKE2b-256 1ac76e0abf1cfd72a63b3f277cb658bd7b60d071b86b9aa9d74c0f6fd513e24e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8056e0277055bd5dd279a15435a4648229fb59608dea9c50ea5a835d71fec068
MD5 79493823b34679c754d28524473f78e4
BLAKE2b-256 0912b2cd7be6314194fac94896d1159ad25fa13a2d619c9aa90b6ab9cf0872d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b711af162a04e44b4d84844214002099060c3ddb15f594ef35a4a5176640e781
MD5 03929836cfbc0157a0272e546dbb2d7b
BLAKE2b-256 0dcf4995b4f810318af9a5791efaa747da8b5796977a41bf309d533eb76c6663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99ff55e32d6248a63c5be9a01a4ea7619e1879775738368354de65887bba6d20
MD5 10767aa370a71398531445b7a3d8a3b2
BLAKE2b-256 86e0b8ca17e17ad756813ad5184ee3177674e326dcf15ffc4a3606844b8b00a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dfa149007b612cc18408b04d7dfa2a6589ed5a231f6fbf5d8cce18718f283058
MD5 27e271c9d3f1e8d1e313f368a94e40a4
BLAKE2b-256 84d2cea8a8afb40147eb5c04fef0a287991b6574cc07e77d834f29fe51dd2137

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01c1c8242091eb3e192cee9228571ce901331177e26568215c8d828920f34c32
MD5 940d853dafeffdccce781563657982ef
BLAKE2b-256 bac1960854d277a2bc28672ed7fdd1d721d9574b889f92de3870727d8b171e10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 748007c1724eb5212b7e153f0bc8da54860817e6b984fd9ae0cd924a6d71a2b0
MD5 066df2a3b23a7bf01d5b7f5492376031
BLAKE2b-256 b168d160061e4cbfbacafc140296f61ae59614017a08875b0e1eef32c8b44c48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c070527d0b9677584c8c8cb9b21dea4f9dc0a145242b4dc47772d12233c0f5d
MD5 93fa17d3782cee49d389a1eccf66d0b6
BLAKE2b-256 2f0095ee1993741daa259da16a414afad65e4723b72543968d542a7961ad2cf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 96898e97471340ca5ef1d0957b924325f39348a289d1c18db716d5d6cb69647f
MD5 ee7c303dcf56b86e3d55ef813bd7dab9
BLAKE2b-256 2eeb239634999a87d1cd99284d461653e6f84ebc7a91b879b2d88919b282f029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e631e2fb6b058fb363575d2abb3fe1d371ee77fe9c11228bf6ba98b3412a1c9
MD5 e492b0af2d49e1584febfddf7f6736a5
BLAKE2b-256 0e0a6498e2d9e9bdd257b5b96a279a9d52463b26a5605570760339ac0f861239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6391e052e663f084de21f391046cba2ccff3e8e6413d95b0556bb47f9e82afd
MD5 f970476e2de3bac12e15f29f50e56d3e
BLAKE2b-256 25b587644a911572fed1e7c7a2ff3995ea3a5afcd63b6fe98e661f5647f3f83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19cb51b096ba932cdcc1c5924477579080e64b180ac29986cb996e7bd2dbbaba
MD5 1c9f325312c2201703cac0770a28a588
BLAKE2b-256 5619175a220d36f3c2ce9857c7f9fb93c3b2c1cd285a098ed864fbee3ff43f7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79854cd179f07abc31558c5d291cdd9737a203c6e2ae6656ab709c83559c5d06
MD5 0aba17af0d4ebe4c8b0d6ded920f18fa
BLAKE2b-256 3e658966a48209abe0cb18e2a34d3a3a2bb43de7c154b68a0ca9147a78269c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 977f1460ef875105045066111b910a2abb4fdbc58765ad37cc4085b0fd2bd964
MD5 5d744c9d84b51ec45b6de0078c78b180
BLAKE2b-256 d510cc986d25d1f9eec27310898f107fc2007e71497fb06be565db18374dc352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ab2299c0b471fa11697a74259e32178f75ca124ec40cf50cdd2fdc6a516ffae
MD5 ad305c08666132057eb86551fc5060bd
BLAKE2b-256 9ac57b5d92dcc4b558e4045e075cdaa255d976799ca9de6008f31dcf3b78fa15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b4f9b23a508c6ddf93a67bed589454c2d5d62446b6f58afbc57b2a95e0ec1a2
MD5 cc805aec6ac2deaea6f93596330d5392
BLAKE2b-256 d8192f72892a1c9eb80f02199e59b5b28c59e175782213562d55883bba160167

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6bd7b57d0dd23a7e88ab399375922140c2b35a9c30a2b62e58a7ba3378595bee
MD5 cd3014290ca19de7261dfca07d9c8c38
BLAKE2b-256 c23324d38f455c195474b732725fde671381110c4768dda4e56b1874a45a9a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3320cdc55cafc48473e0d11e82f4b9095588f102b1b32fe9c961621a60b6de7f
MD5 fb390d3544725110b2282af631d6f423
BLAKE2b-256 bacc7d1c72775c64c0ece36e3eaa13f61a10e1f03f5abe6474636bc5326e6cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6947c7207785073006eb95ea778863c5eff587e94423447a319236e00d15b8f
MD5 2698e57a07cffa9c50c2780cc85d2c5c
BLAKE2b-256 a7ec748df6f28beafb1b3f658f5f7feff8ecbeb8ff2242f19eb5a00818879c50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rodeo_bufr_tools-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53679b3178d01e9f77cac84ca11f7a3b1f9055310bbc7272f6ecd1077c89af1d
MD5 506d5e7460bd1cc2f457e6fbc3be42ba
BLAKE2b-256 ed48441d57f0fed7b6d169d3f2ee92e24a13b9f3dbbaeb5aaa93dc8e2f24b37f

See more details on using hashes here.

Provenance

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