# RadFiled3D
Project description
RadFiled3D
This Repository contains the file format and API according to the Paper: "RadField3D: A Data Generator and Data Format for Deep Learning in Radiation-Protection Dosimetry for Medical Applications".
The aim of this library is, to provide a simple to use API for a structured, binary file format, that can store all relevant information from a three dimensional radiation field calculated by applications that use algorithms like Monte-Carlo radiation transport simulations. Such a binary file format is useful, when one needs to process a huge amount of radiation field files like when training a neural network. With that use-case in mind, RadFiled3D also provides a python interface with a pyTorch integration. In order to directly iterate a dataset generated with the RadField3D tool, just jump to the section RadField3D Datasets.
🌟 Why Use RadFiled3D
- Efficient Storage: Structured, binary file format for storing large amounts of radiation field data.
- Easy Integration: Simple API for C++ and Python with pyTorch support.
- High Performance: Optimized for fast data access and manipulation.
- Versatile: Supports both Cartesian and Polar coordinate systems.
- Extensible: Easily extendable to include additional metadata and data types.
Table of Contents
Building and Installing
Installing from PyPi
Prebuilt versions of this module for python 3.11, 3.12 and 3.13 for Windows and most Linuxsystems can be installed directly by using pip.
pip install RadFiled3D
Installing from Source
You can build and install this library and python module from source by using CMake and a C++ compiler. The CMake Project will be built automatically, but will take some time.
Prerequisites
- C++ Compiler
- g++ or clang for Linux
- MSVC or clang from Visual Studio 2022 for Windows
- CMake >= 3.30
- Python >= 3.11
CMake
In order to use the module directly from another C++ Project, you can integrate it by adding the local location of this repository via add_submodule() and then link against the target libRadFiled3D. All classes are then available from the namespace RadFiled3D. Check the Example or the First Test File as a first reference.
Python
In order to use the Module from Python, we provide a setup.py file that handles the compilation and integration automatically from the python setuptools.
Installing locally
python -m pip install .
Building a wheel
python -m build --wheel
Getting Started
Disclaimer: Not all methods support keyword arguments as they need to be defined manually in the bindings. For some methods like add_layer or the Metadata methods those are implemented.
From Python
Simple example on how to create and store a radiation field. Find more in the example file: Example
from RadFiled3D.RadFiled3D import CartesianRadiationField, FieldStore, StoreVersion, DType
from RadFiled3D.metadata.v1 import Metadata
# Creating a cartesian radiation field
field = CartesianRadiationField(vec3(2.5, 2.5, 2.5), vec3(0.05, 0.05, 0.05))
# defining a channel and a layer on it
field.get_channel("channel1").add_layer("layer1", "unit1", DType.FLOAT32)
# accessing the voxels by using numpy arrays
array = field.get_channel("channel1").get_layer_as_ndarray("layer1")
assert array.shape == (50, 50, 50)
# modify voxels content by using numpy array as no data is copied, just referenced
array[2:5, 2:5, 2:5] = 2.0
# addressing a voxel by providing a point in space
voxel = field.get_channel("channel1").get_voxel_by_coord("layer1", 0.1, 2.4, 5)
# Store changes to a file
metadata = Metadata.default()
FieldStore.store(field, metadata, "test01.rf3", StoreVersion.V1)
# load data
field2 = FieldStore.load("test01.rf3")
metadata2 = FieldStore.load_metadata("test01.rf3")
Integrating with pyTorch
RadFiled3D comes with a submodule at RadFiled3D.pytorch. This module provides some dataset classes to support the usage. Datasets can be loaded from folders or .zip-Files.
from RadFiled3D.pytorch.datasets import MetadataLoadMode
from RadFiled3D.pytorch.datasets.cartesian import CartesianFieldSingleLayerDataset
from RadFiled3D.pytorch import DataLoaderBuilder
from RadFiled3D.pytorch.helpers import RadiationFieldHelper
from RadFiled3D.RadFiled3D import VoxelGrid
from torch import Tensor
from RadFiled3D.metadata.v1 import Metadata
from RadFiled3D.pytorch.types import TrainingInputData, DirectionalInput
# Extend one of the provided dataset classes to match the output to the current needs
class MyLayerDataset(CartesianFieldSingleLayerDataset):
def __getitem____(self, idx: int) -> TrainingInputData:
layer, metadata = super().__getitem__(idx)
tube_dir = metadata.get_header().simulation.tube.radiation_direction
# transform the layers data to a tensor
return TrainingInputData(
input=DirectionalInput(direction=torch.tensor([tube_dir.x, tube_dir.y, tube_dir.z]))
ground_truth=RadiationFieldHelper.load_tensor_from_layer(layer)
)
def finalize_dataset(dataset: MyLayerDataset)
dataset.set_channel_and_layer("test_channel", "test_layer")
dataset.metadata_load_mode = MetadataLoadMode.HEADER
# Pass the dataset class and other options to the DataLoaderBuilder
builder = DataLoaderBuilder(
"./test_dataset.zip",
train_ratio=0.7,
val_ratio=0.15,
test_ratio=0.15,
dataset_class=MyLayerDataset,
on_dataset_created=finalize_dataset # Optional: provide a finalizer to perform configuration of the dataset once it was created by the builder
)
# Build the training dataset
train_dl = builder.build_train_dataloader(
batch_size=8,
shuffle=True,
worker_count=4
)
# iterate over the dataset
for field, metadata in train_dl:
pass
Direct integration with RadField3D datasets
Directly iterate RadField3D datasets either by loading whole fields or iterating each voxel independently. The dataset classes will return pyTorch compatible NamedTuples, that preserve the structure of the raw radiation fields and layers.
from RadField3D.pytorch.datasets.radfield3d import RadField3DDataset
from RadField3D.pytorch.datasets.radfield3d import RadField3DVoxelwiseDataset
# import the pyTorch compatible datatypes
from RadField3D.pytorch import RadiationField, DataLoaderBuilder
builder = DataLoaderBuilder(
"./test_dataset_folder/",
train_ratio=0.7,
val_ratio=0.15,
test_ratio=0.15,
dataset_class=RadField3DDataset
)
train_dl = builder.build_train_dataloader(
batch_size=8,
shuffle=True,
worker_count=4
)
# iterate over the dataset using fully useable pyTorch classes
for field, metadata in train_dl:
pass
Tracing paths in Cartesian Coordinate Systems
In order to integrate RadFiled3D with other simulation frameworks or applications, one can either take the final results and write it voxel-wise to RadFiled3D or one can already use RadFiled3D during the particle tracking. Therefore, this library offers GridTracers. Each of them implements a different line-segment tracing algorithm to find consecutive voxels that are intersected.
The following GridTracers exists:
SamplingGridTracer: Traces a line between two points in the grid using a sampling approach. In this approach the minimum sampling size is the length of the line segment. If the line segment is longer than the minimum sampling size, which is half the L2-Norm of the voxel size, the line is divided into segments of the minimum sampling size. This approach counts the hits if the line segment is incident to a voxel, only!BresenhamGridTracer: Traces a line between two points in the grid using the Bresenham algorithm. This algorithm is a line rasterization algorithm that is used to trace a line between two points in a grid. The starting point is excluded as this can only exit a voxel.LinetracingGridTracer: This class traces a line between two points in the grid using a combination of theSamplingGridTracerand a line tracing algorithm. First the lossy sampling tracer is used to trace the line. Then all adjacent voxels to the voxels that were hit are tested using a line-segment intersection test algorithm.
All those tracers can be created by calling the GridTracerFactory.construct(..) method. The tracers share one single interface method:
def trace(self, p1: vec3, p2: vec3) -> list[int]:
This method takes two points as the definition of the considered line-segment and returns the flat indices of all voxels intersected, that are inside the grid.
Example usage:
from RadFiled3D.RadFiled3D import vec3, GridTracerFactory, GridTracerAlgorithm, CartesianRadiationField, DType
field = CartesianRadiationField(vec3(1.0, 1.0, 1.0), vec3(0.01, 0.01, 0.01))
field.add_channel("test").add_layer("hits", "counts", DType.INT32)
hits_counts = field.get_channel("test").get_layer_as_ndarray("hits")
hits_counts = hits_counts.flatten()
tracer = GridTracerFactory.construct(field, GridTracerAlgorithm.SAMPLING)
indices = tracer.trace(vec3(0.5, 0.5, 0.0), vec3(0.5, 0.85, 1.0))
hits_counts[indices] += 1
grid_shape = field.get_voxel_counts()
hits_counts.reshape((grid_shape.x, grid_shape.y, grid_shape.z))
Faster loading of field series
As the RadFiled3D format possesses a dynamic structure, the loading of a radiation field requires the discovery of channels and layers as well as calculating the binary entry points of channels, layers and voxels. When loading datasets for machine learning, the structure of the fields loaded will likely be constant for each dataset. Therefore, the binary entry points can be precalculated to access only those parts of the RadFiled3D files that are really needed to increase the loading speed and to reduce the needed memory. This is relealized by the FieldAccessors objects.
from RadFiled3D.RadFiled3D import CartesianFieldAccessor, FieldStore, FieldType, uvec3
accessor: CartesianFieldAccessor = FieldStore.construct_field_accessor("a_file.rf3")
field_type = accessor.get_field_type()
assert field_type == FieldType.CARTESIAN
print(accessor)
field = accessor.access_field("a_similar_file.rf3")
layer = accessor.access_layer("a_similar_file.rf3", "channel1", "layer1")
voxel = accessor.access_voxel("a_similar_file.rf3", "channel1", "layer1", uvec3(0, 0, 0))
FieldAccessors are implemented for the two currently supported coordinate systems: CartesianFieldAccessor and PolarFieldAccessor. Depending on the actual field type, FieldStore.construct_field_accessor(AFile) returns one of them. The pyTorch Datasets are implemented using the FieldAccessor objects to allow for quicker access of datasets. The tests shall act as example code see test_field_accessor.py.
From C++
Simple example on how to create and store a radiation field. Find more in the example file: Example
#include <RadFiled3D/storage/RadiationFieldStore.hpp>
#include <RadFiled3D/RadiationField.hpp>
using namespace RadFiled3D;
using namespace RadFiled3D::Storage;
void main() {
auto field = std::make_shared<CartesianRadiationField>(glm::vec3(2.5f), glm::vec3(0.05f)); // field extents: 2.5 m x 2.5 m x 2.5 m and voxel extents: 5 cm x 5 cm x 5 cm
auto metadata = std::make_shared<RadFiled3D::Storage::V1::RadiationFieldMetadata>(
// learn about the existing data fields from the example file in ./examples/cxx/examples01.cpp
)
FieldStore::store(field, metadata, "test_field.rf3", StoreVersion::V1);
auto field2 = FieldStore::load("test_field.rf3");
}
Field Structure
RadFiled3D defines a field structure, that provides the user with the possibility to first define in which kind of space he wants to operate. Therefore one can choose between CartesianRadiationField and PolarRadiationField.
- CartesianRadiationField: Segments a room defined by an extent of the room itself and each cuboid voxel into a set of voxels. Each voxel can be addressed by a 3D position (coordinate: x, y, z), a 3D index (number of the voxel in each dimension) or a flat 1D index.
- PolarRadiationField: Segements the surface of a unit sphere into surface segments. Each segment (voxel) can be addressed by a 2D position (coordinate: theta, phi), a 2D index (number of the segment in each dimension) or a flat 1D index.
Fields are then partitioned into channels (VoxelGridBuffer/PolarSegmentsBuffer). All channels share the same size and resolution. A channel is again partitioned into layers (VoxelGrid/PolarSegment). Each layer holds the actual voxel data and can be constructed from various data types (float, double, uint32_t, uint64_t, glm::vec2, glm::vec3, glm::vec4, N-D-Histogram (list of floats)). Additionally, a layer has a unit string assigned to it as well as a statistical uncertainty to perserve those information.
Dependencies
RadFiled3D comes with a possibly low amount of dependencies. We integrated the OpenGL Math Library (GLM) just to provide those datatypes out of the box and as GLM is a head-only library we suspect no issues by doing so.
All C++ dependencies (Will be fetched by CMake):
All python dependencies:
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 radfiled3d-1.1.1.tar.gz.
File metadata
- Download URL: radfiled3d-1.1.1.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88ff79b16aae3e193da430b7a54e8ff46568565c621ec64b965b449c40e9991b
|
|
| MD5 |
55afa272515979f094db5c14489a310a
|
|
| BLAKE2b-256 |
8b6ff8aaa4e4ebaec89bd3e93fb80c6a1e3538f9b9386ade868ee4a971f265f0
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1.tar.gz:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1.tar.gz -
Subject digest:
88ff79b16aae3e193da430b7a54e8ff46568565c621ec64b965b449c40e9991b - Sigstore transparency entry: 229537749
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 494.8 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
123fcf63b6056f6f5064774e40f46a0bc15642b0ae4647af1a9a07c713993021
|
|
| MD5 |
4a386e42389bee1e3d339d12ecdbd74c
|
|
| BLAKE2b-256 |
3b34463df3ab892ae81847cb63668ee2e62f0a744c7755239b17dcb1ad6ea680
|
File details
Details for the file radfiled3d-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c9b9e1d71db6759ccfb76a47af6087d7bc7774d2137c9908ae556276ad5319a
|
|
| MD5 |
91f87d08efa04a45aab104b76daa712d
|
|
| BLAKE2b-256 |
8fc01c7f63def689996788487fc2f33ea432c460cf1022ec93a8c976a78368e0
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
5c9b9e1d71db6759ccfb76a47af6087d7bc7774d2137c9908ae556276ad5319a - Sigstore transparency entry: 229537769
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c001106e85e146a6edb0131252651a900b30e3d56bfff987fcf8a4417497955
|
|
| MD5 |
f6f4bd360d7e6f0b6e7c055bc05fdb29
|
|
| BLAKE2b-256 |
e72ee0b9aff286345e41aa5070f16b1f9cbe1a57cff5d935ca88aee35b631323
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
3c001106e85e146a6edb0131252651a900b30e3d56bfff987fcf8a4417497955 - Sigstore transparency entry: 229537772
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4288cf51a5ba9fca24af8c328e4c6144e2c7b37e7ce850f1298688e49b354c3d
|
|
| MD5 |
5138aa96c6fe1479beab8f08890d90d6
|
|
| BLAKE2b-256 |
c5959ac1df0ade918a66c5beaf21c6982bb011c19a678251a7927db3782e2aea
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
4288cf51a5ba9fca24af8c328e4c6144e2c7b37e7ce850f1298688e49b354c3d - Sigstore transparency entry: 229537771
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 494.8 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ddc287beba2c232ab8953d54b313cff8c86a63b1f0b1e3d41ade24652f0e90d
|
|
| MD5 |
941405daaa26643e7e4fdb364f554d28
|
|
| BLAKE2b-256 |
384c2cb17f8ac53a181aea04edeabdd5f1bbc412c50f8a23f4ecd976bf434a47
|
File details
Details for the file radfiled3d-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f45e43bb75645142823b3c368f8a7bc3a947ccde57a6ea5c434e7bbc7bab002
|
|
| MD5 |
25218c74812b4f620ef29558e1cdc1e0
|
|
| BLAKE2b-256 |
50abbe6277edfc78294298b4ddba83d68fe380751fe5217d5b957761571908c9
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
1f45e43bb75645142823b3c368f8a7bc3a947ccde57a6ea5c434e7bbc7bab002 - Sigstore transparency entry: 229537768
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccdc2aa68d40464b2854d06a0b6889aafec5b092e87a38d0883a9ab051167cf0
|
|
| MD5 |
920af8ff2a2e6940c935ebad552ff7f6
|
|
| BLAKE2b-256 |
8ce47d669e8e56a659ac65f741dca91b9b2716977b511f7944dd4085c1d623f9
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ccdc2aa68d40464b2854d06a0b6889aafec5b092e87a38d0883a9ab051167cf0 - Sigstore transparency entry: 229537762
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2910d6587824231ab6ca64c34de09d5ae4818dec58f816297759845f73ee4f4f
|
|
| MD5 |
bf84a07b29212938c0fee7de01bdd46a
|
|
| BLAKE2b-256 |
6b96c29b710a8b8dcf5c8c120233e13a2f2ebc9f7fb049e1ba139dd979703557
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
2910d6587824231ab6ca64c34de09d5ae4818dec58f816297759845f73ee4f4f - Sigstore transparency entry: 229537766
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a2787c5791e85d5416a465b112c62a585fa9b7cc62d2122dade050827dd71c
|
|
| MD5 |
603dbbc6695052830cc0bf4ce6e0c222
|
|
| BLAKE2b-256 |
3ea05bdc628721a22d63862076b06ce3e6be04e2e456915f52af42f1cebf4d81
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
28a2787c5791e85d5416a465b112c62a585fa9b7cc62d2122dade050827dd71c - Sigstore transparency entry: 229537743
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7687dfff4f42f1e77019eff1fc1654a7f65dadd86bd5af5779ec2036dcd429ae
|
|
| MD5 |
1a0325b743ffc0fff3ef5c4d3586aac1
|
|
| BLAKE2b-256 |
db6d77e1d3e4f054a38378b8caa40c70d716ac82b55a11a12e9f35755ee9a590
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
7687dfff4f42f1e77019eff1fc1654a7f65dadd86bd5af5779ec2036dcd429ae - Sigstore transparency entry: 229537745
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type:
File details
Details for the file radfiled3d-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: radfiled3d-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28600ef4406fe46ce52f25301addc28f911db2d71810e3ba8a9d6c3911076083
|
|
| MD5 |
5893d5021ab59a465718d04603ec2b1d
|
|
| BLAKE2b-256 |
b46ee4dc1ee54f639840d6161e17893fd91592b43c163c13365c97652a55be84
|
Provenance
The following attestation bundles were made for radfiled3d-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
package-test-publish.yml on Centrasis/RadFiled3D
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
radfiled3d-1.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl -
Subject digest:
28600ef4406fe46ce52f25301addc28f911db2d71810e3ba8a9d6c3911076083 - Sigstore transparency entry: 229537746
- Sigstore integration time:
-
Permalink:
Centrasis/RadFiled3D@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Branch / Tag:
refs/tags/1.1.1 - Owner: https://github.com/Centrasis
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
package-test-publish.yml@19f146f29a9c709f0e0e86c4e2490eb79980b069 -
Trigger Event:
push
-
Statement type: