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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5571390aec814a0f443c6780ba13593f3f5a8f317ec87c2674baaefc612ce052
|
|
| MD5 |
6131a9a0de40f7b389c5918a760028a6
|
|
| BLAKE2b-256 |
babc4af7c59e2d427b55b6f2a051d9ba9d4234fd0d65fbba027a38c00026c843
|
Provenance
The following attestation bundles were made for rodeo_bufr_tools-0.4.6.tar.gz:
Publisher:
build.yml on EUMETNET/rodeo-bufr-library
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6.tar.gz -
Subject digest:
5571390aec814a0f443c6780ba13593f3f5a8f317ec87c2674baaefc612ce052 - Sigstore transparency entry: 1096805386
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2056ad5a6825b5fa851183d04f342b5696c6e9cfadc1c423b7185f8b2b256a84
|
|
| MD5 |
dbb6916973d9aef98305d8b389d89860
|
|
| BLAKE2b-256 |
09543bb151dd80a25f8d7365dad54189be52aa70bceae94a6eda25062cac0f78
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314t-win_amd64.whl -
Subject digest:
2056ad5a6825b5fa851183d04f342b5696c6e9cfadc1c423b7185f8b2b256a84 - Sigstore transparency entry: 1096805424
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79fcb3345d5e14ea43c7c4a6780f948d232be521c5f81af78fa1d8495bc2733e
|
|
| MD5 |
a97b3f464a193194e490874065fb42fa
|
|
| BLAKE2b-256 |
1a0b62e118c971826c887e45ef4adef1f9baf32ead32501f653f1c28d7ef2d01
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
79fcb3345d5e14ea43c7c4a6780f948d232be521c5f81af78fa1d8495bc2733e - Sigstore transparency entry: 1096805400
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.14t, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f96ec6461f00e1d4979cf094bbbe42fa674d2556232a03c082fbc3153c6f2010
|
|
| MD5 |
e56095d83a1a12c2b86ad9a8ccc89d11
|
|
| BLAKE2b-256 |
cab5585cd8826d5ecc63f12483be4d55a978351bfbb9dc724975a10955c0a157
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f96ec6461f00e1d4979cf094bbbe42fa674d2556232a03c082fbc3153c6f2010 - Sigstore transparency entry: 1096805415
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4619faf0f5ee78d76938b270cb4bba1c10e19e054ade6761ef14881a90e8bc70
|
|
| MD5 |
536285d5cf65dcf4694557eeed21aa22
|
|
| BLAKE2b-256 |
ae607bee484c063c27c1e1c12cb10477efd36b808907e2223582cfad1b4bfb81
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
4619faf0f5ee78d76938b270cb4bba1c10e19e054ade6761ef14881a90e8bc70 - Sigstore transparency entry: 1096805389
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3cad3ccd8af1e5524a31721ae19f26d89b0ea4459d4d78b45c8f9378bc611f5
|
|
| MD5 |
d1749822ac319e2835d52993bbf31702
|
|
| BLAKE2b-256 |
69e7774ca0b0b8a26da8f22697d77ef8f848a5ef6789de4bee05e0d99dadea4a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314-win_amd64.whl -
Subject digest:
f3cad3ccd8af1e5524a31721ae19f26d89b0ea4459d4d78b45c8f9378bc611f5 - Sigstore transparency entry: 1096805446
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.14, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1c88458d3de6d87944b138061d72956e096462f0a722550fdf3e99ae3055961
|
|
| MD5 |
b416996e25683d52b8d162c36cc2b351
|
|
| BLAKE2b-256 |
2d4f4bc9996c0ac1c76a08dd04f157f1de5a6d004390fdbb7f5b1dcda9b323c9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d1c88458d3de6d87944b138061d72956e096462f0a722550fdf3e99ae3055961 - Sigstore transparency entry: 1096805409
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.14, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6360ea0a97a4e5800dfca9453a553f0c703f6bb0113cd6ddbc0756eb1439c221
|
|
| MD5 |
08adefdb9c7027f7a6d8480166008658
|
|
| BLAKE2b-256 |
694cb9402504c6b850f26d101741adc13585f3e8723ed570bdd3beab3744ef67
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
6360ea0a97a4e5800dfca9453a553f0c703f6bb0113cd6ddbc0756eb1439c221 - Sigstore transparency entry: 1096805434
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5be05513c2969de89d1033598326bafc51f20625fcf55c3bf095d2b6083794ac
|
|
| MD5 |
a78ddb584b1293a4aa2a8a9658488841
|
|
| BLAKE2b-256 |
975a7cbd23f893e2405c045418a511673431838756ba413367823fd93032c4f0
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
5be05513c2969de89d1033598326bafc51f20625fcf55c3bf095d2b6083794ac - Sigstore transparency entry: 1096805392
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
898c96019b87bbd3e3f51eb40645a0ec92fdbc509f1662878b11fc244f66292c
|
|
| MD5 |
6a26a98417fc6bdb49ef8f5043034f25
|
|
| BLAKE2b-256 |
5e2bd2868d146e180a59889b508655650d1c98ca400797d082ae100b12111a8b
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp313-cp313-win_amd64.whl -
Subject digest:
898c96019b87bbd3e3f51eb40645a0ec92fdbc509f1662878b11fc244f66292c - Sigstore transparency entry: 1096805408
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.13, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d91494cead4c9f1455e4ad827256440b08ca22a49aba095b930d625a7eccae0d
|
|
| MD5 |
fc719139d7d8769404ba60620813f656
|
|
| BLAKE2b-256 |
593afe99280df029077a31f2a3dbeee631130513eba0dcee490251f0e52b3d97
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d91494cead4c9f1455e4ad827256440b08ca22a49aba095b930d625a7eccae0d - Sigstore transparency entry: 1096805412
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.13, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4700da81dbbf28b1566c5924c9eff1b74c2a739fc72b4b303e2cbec3425054d7
|
|
| MD5 |
e8df68e568e3ae1d2450c407cc35eb72
|
|
| BLAKE2b-256 |
440efb42fd53bb38b96d3f709b8696ef2fe518096a59f785a65f747414b7aa4d
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
4700da81dbbf28b1566c5924c9eff1b74c2a739fc72b4b303e2cbec3425054d7 - Sigstore transparency entry: 1096805405
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
132c00d35bba4fd3761cce4a08559ca07f2317776db8dde7d4046f87d7e45640
|
|
| MD5 |
275c5edf62329cae6e61ebb450ff8349
|
|
| BLAKE2b-256 |
f5af112a22a7d84ce34a65c14ebee733fbf2c2c4bd2a20ce615f63bff4df970a
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
132c00d35bba4fd3761cce4a08559ca07f2317776db8dde7d4046f87d7e45640 - Sigstore transparency entry: 1096805420
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8dbd6582affccaddfdd08e4d2e15b0b94e89dece49829caca8f95e31723db34c
|
|
| MD5 |
a144e42b415cb6591865f99a5b89d0fb
|
|
| BLAKE2b-256 |
e48a64e4e0ea9ca47fa1986e4d86ef7aa2e144a2d8061d30ce72b464379b67af
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp312-cp312-win_amd64.whl -
Subject digest:
8dbd6582affccaddfdd08e4d2e15b0b94e89dece49829caca8f95e31723db34c - Sigstore transparency entry: 1096805396
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cecd09a62331b877e482f0358f38ba332975bfb023c576870a1257918ca89b41
|
|
| MD5 |
7bcadc3a0e7c8eda2122e4a6a3758b26
|
|
| BLAKE2b-256 |
7e01410831631eeb074b6b99e5aa24f7691f902abad47c28594eb659c042948c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
cecd09a62331b877e482f0358f38ba332975bfb023c576870a1257918ca89b41 - Sigstore transparency entry: 1096805430
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14fc936c044ccb32abe3ed25f1e25bc0845601691db713428dedc1765d6ab36a
|
|
| MD5 |
fc7ff817c39fa20b63fd46d87bb1a426
|
|
| BLAKE2b-256 |
62266743ea236283243c259fabd661e77ce1436189eb1da66c4242caa3127739
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
14fc936c044ccb32abe3ed25f1e25bc0845601691db713428dedc1765d6ab36a - Sigstore transparency entry: 1096805407
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
607a21aa2e4083db70e4141b1e9171fc8364f3a5df79fb1ef932cf8fbb994fca
|
|
| MD5 |
192e0f88cfae5c7351af5b246a9c110c
|
|
| BLAKE2b-256 |
6a84a342ccee604f1c6c7e9ef81af2c41a8e2de33bb65402ea4193210a5ab930
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
607a21aa2e4083db70e4141b1e9171fc8364f3a5df79fb1ef932cf8fbb994fca - Sigstore transparency entry: 1096805402
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d50262dd9e83c6160b18b70cf1fd340b251d632f1b6a460e48d6d1b59838ee4
|
|
| MD5 |
1d373e7cd3068ff3860e2b7012f9c29d
|
|
| BLAKE2b-256 |
a978f0a8d9d0b69e8c4fcdd4150768dcf1cccad6061c6586247d3f4e17ddb425
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp311-cp311-win_amd64.whl -
Subject digest:
1d50262dd9e83c6160b18b70cf1fd340b251d632f1b6a460e48d6d1b59838ee4 - Sigstore transparency entry: 1096805426
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.7 MB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8dcc1959e2d41ad36a7c815996b40ace434dd9d07e5f74ab9ec2f71d3dc180a
|
|
| MD5 |
c56ffb6823cf3132a383155c186cb74d
|
|
| BLAKE2b-256 |
5306dda4ac36fe76bded00687b02149136a5d2a157a467c7cf0afa27c920ec23
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d8dcc1959e2d41ad36a7c815996b40ace434dd9d07e5f74ab9ec2f71d3dc180a - Sigstore transparency entry: 1096805443
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
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
- Download URL: rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.24+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1dde27a0143efa4bd2d7ae04a9284adab836843aa95bef4970059f93e1e5350
|
|
| MD5 |
4a2da4c2f2f90174511be9d50aa6d806
|
|
| BLAKE2b-256 |
0f23144f7d640a37d6cc2308cc39c28f7c08f026e86c56482c6f88c37e25a77c
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
a1dde27a0143efa4bd2d7ae04a9284adab836843aa95bef4970059f93e1e5350 - Sigstore transparency entry: 1096805438
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type:
File details
Details for the file rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98c89d50595c573d28ff4c9685fe9a1ddcdc6421eb24d09b55fb8351e7ddceee
|
|
| MD5 |
b9c1d0fcbec045d1f136d8386cb2e9d7
|
|
| BLAKE2b-256 |
d7e8c96ea6fbdaf7658e10bbf904e3adde5676a9814cb126695fa20c866ad4d9
|
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
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rodeo_bufr_tools-0.4.6-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
98c89d50595c573d28ff4c9685fe9a1ddcdc6421eb24d09b55fb8351e7ddceee - Sigstore transparency entry: 1096805431
- Sigstore integration time:
-
Permalink:
EUMETNET/rodeo-bufr-library@eb86a6deae59f93618f025f41620fba156beab5f -
Branch / Tag:
refs/tags/v0.4.6 - Owner: https://github.com/EUMETNET
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build.yml@eb86a6deae59f93618f025f41620fba156beab5f -
Trigger Event:
push
-
Statement type: