Skip to main content

A python decoder for ESA Sentinel-1 Level0 files

Project description

sentinel1decoder

PyPI version PyPI

A Python decoder for Sentinel-1 Level 0 files. The Level 0 format consists of the raw space packets downlinked from the Sentinel-1 spacecraft. This package decodes these packets and produces the raw I/Q sensor output from the SAR instrument, which can then be further processed to focus a SAR image.

An example Jupyter notebook demonstrating the process of decoding Level 0 data and forming an image is available on GitHub here or on nbviewer.org here.

This code is based on an implementation in C by jmfriedt, which can be found here.

Performance

Version 1.1.0 features a complete rewrite of the core decoding functions in Rust, delivering dramatic performance improvements:

  • ~80x faster decoding: Typical burst decoding time reduced to ~30 seconds
  • Multithreaded batch processing: Multiple packets are decoded in parallel for optimal performance
  • Optimized algorithms: Improved FDBAQ decoding with lookup tables and efficient bit manipulation

The API remains fully backwards compatible - upgrade to enjoy the performance boost without changing your code.

Installation

This package is available on PyPI.

In a terminal window:

pip install sentinel1decoder

This package requires Python 3.8 or higher. NumPy and Pandas are also required.

Usage

High-level API

The Level0File class provides a high-level interface that automatically breaks the file into "bursts" (consecutive packets with constant swath number and number of quads) for easy handling. For more fine-grained control, see the Low-level API section below.

Import the package:

import sentinel1decoder

Initialize a Level0File object:

l0file = sentinel1decoder.Level0File(filename)

This class contains a DataFrame with the packet metadata:

l0file.packet_metadata

A DataFrame containing the ephemeris:

l0file.ephemeris

The metadata is indexed by burst as well as packet number. Metadata on individual bursts can be accessed via:

l0file.get_burst_metadata(burst)

The I/Q array for each burst can be generated via:

iq_data = l0file.get_burst_data(burst)

Returns a NumPy array of complex64 with shape (slow_time, fast_time) or (echo_num, sample_num). Each row represents one radar echo return; each column represents a sample within that echo.

By default, this method will attempt to load cached data from an .npy file if available (created using save_burst_data). You can disable this behavior by passing try_load_from_file=False.

This data can be cached in an .npy file using:

l0file.save_burst_data(burst)

Low-level API

The individual decoding functions can also be used directly:

Initialize a Level0Decoder object:

decoder = sentinel1decoder.Level0Decoder(filename)

Generate a Pandas DataFrame containing the header information associated with the Sentinel-1 downlink packets:

df = decoder.decode_metadata()

Decode the satellite ephemeris data from the packet headers:

ephemeris = sentinel1decoder.utilities.read_subcommed_data(df)

Extract the data payload from specific packets. This method takes a Pandas DataFrame as input and only decodes packets whose headers are present in the input DataFrame. This allows you to select which packets to decode, rather than always decoding the full file.

The method uses multithreaded batch processing for optimal performance. You can control the batch size (default: 256 packets) using the optional batch_size parameter.

For example, to decode only the first 100 packets:

selection = df.iloc[0:100]
iq_array = decoder.decode_packets(selection)

Or with a custom batch size:

iq_array = decoder.decode_packets(selection, batch_size=512)

Returns a NumPy array of complex64 with shape (slow_time, fast_time) or (echo_num, sample_num). Each row represents one radar echo return; each column represents a sample within that echo.

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

sentinel1decoder-1.1.1.tar.gz (25.8 kB view details)

Uploaded Source

Built Distributions

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

sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (591.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (626.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (657.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (564.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl (392.8 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_s390x.whl (405.7 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl (515.6 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_i686.whl (409.7 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl (387.2 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (382.3 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (588.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl (622.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (654.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (559.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_s390x.whl (402.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_ppc64le.whl (513.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_armv7l.whl (384.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_aarch64.whl (377.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp314-cp314-win_amd64.whl (212.7 kB view details)

Uploaded CPython 3.14Windows x86-64

sentinel1decoder-1.1.1-cp314-cp314-win32.whl (200.6 kB view details)

Uploaded CPython 3.14Windows x86

sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (588.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_i686.whl (621.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (654.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (559.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_x86_64.whl (390.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_s390x.whl (403.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_ppc64le.whl (512.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_i686.whl (406.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_armv7l.whl (384.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_aarch64.whl (378.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp314-cp314-macosx_11_0_arm64.whl (334.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sentinel1decoder-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl (342.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (588.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl (621.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (653.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (558.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_s390x.whl (402.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_ppc64le.whl (514.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_armv7l.whl (383.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_aarch64.whl (377.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp313-cp313-win_amd64.whl (212.2 kB view details)

Uploaded CPython 3.13Windows x86-64

sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (588.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_i686.whl (621.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (654.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (558.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_x86_64.whl (389.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_s390x.whl (403.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_ppc64le.whl (513.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_i686.whl (406.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_armv7l.whl (383.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (334.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sentinel1decoder-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl (341.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sentinel1decoder-1.1.1-cp312-cp312-win_amd64.whl (212.2 kB view details)

Uploaded CPython 3.12Windows x86-64

sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (588.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (621.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (654.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (559.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_x86_64.whl (389.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_s390x.whl (403.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_ppc64le.whl (514.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_i686.whl (406.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_armv7l.whl (384.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (334.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sentinel1decoder-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (341.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sentinel1decoder-1.1.1-cp311-cp311-win_amd64.whl (213.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (624.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (656.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_x86_64.whl (392.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_s390x.whl (404.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_ppc64le.whl (516.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_i686.whl (409.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_armv7l.whl (386.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_aarch64.whl (380.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (336.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sentinel1decoder-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (343.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sentinel1decoder-1.1.1-cp310-cp310-win_amd64.whl (213.8 kB view details)

Uploaded CPython 3.10Windows x86-64

sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (624.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (656.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (563.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_x86_64.whl (392.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_s390x.whl (405.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_ppc64le.whl (516.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_i686.whl (409.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_armv7l.whl (387.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_aarch64.whl (380.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp39-cp39-win_amd64.whl (215.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (593.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (626.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (657.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (565.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_x86_64.whl (394.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_s390x.whl (407.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_ppc64le.whl (518.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_i686.whl (411.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_armv7l.whl (388.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_aarch64.whl (383.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (592.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (626.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (657.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (565.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_x86_64.whl (394.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_s390x.whl (407.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_ppc64le.whl (515.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_i686.whl (411.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_armv7l.whl (388.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_aarch64.whl (382.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ ARM64

File details

Details for the file sentinel1decoder-1.1.1.tar.gz.

File metadata

  • Download URL: sentinel1decoder-1.1.1.tar.gz
  • Upload date:
  • Size: 25.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sentinel1decoder-1.1.1.tar.gz
Algorithm Hash digest
SHA256 8d1263ee8a0c5a8fc6e099958b6630b05da7fc2486f30c82b1295caf132c797f
MD5 8f24060636f009bbadb7f0cd8ad32d16
BLAKE2b-256 19f1bd24ae79c346489155682b5cc327529fb65518eec9f5f44dbf5747683657

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccaf203d198edcc9253e575ff046700f486f5540c09f38f6f67076144dcf9999
MD5 edc931ec392122ff7df72530f380ea6a
BLAKE2b-256 1a75e3effde54c20502a93b1304f3d5187fbff039f96bbbf5478bb09eecc0327

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9395940d89b3090aed6f9e76331d2482cc30e21f563ed84325031495c1921986
MD5 246e3de70697f0d6b6dff59ce44630ce
BLAKE2b-256 17e9b50935968d375d419975a5c03d71890770cb413693a8682c29225d3ce6f4

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f968c693e493d6b525a25fa2c9ace822284bbfcccf23141b1e1d0e92c4da598b
MD5 74a8340981330bdfc6313fbbc004fccf
BLAKE2b-256 61b715c78ca65a63d03fcfa5f42f4764b5fae48b25d125ed94c0661f97563e03

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32ddad39d0b2ceecf7a6eb4ef1caca21f6c139fc7cd2131b5b5aa17d021f8fbb
MD5 43f233ffc3aa8791091f8ef24ed89bff
BLAKE2b-256 39ad4f8c140ed3d0398b102dfb84f2b96a6cd0a6c50162f0e48995fa40cbabe8

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 95d5b5cebf149904088334c8c24580bab9b3669ca14de74f80839c259de6b605
MD5 a6e95d699c04bfd8fee96af1af0bbccd
BLAKE2b-256 b6367d3107e64d4e92fcb570ff46d5eed08aca23a5b26aca7d9d2ca0daf993b3

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 71fcd37b94e7d45e786b488809d0aa5ede00bdf9749c18f7bd103f45dbb808ee
MD5 8f795bc5734cd31bff5cfb32b162d529
BLAKE2b-256 0118ef0e0fdd31b121f8b90f4ff39f2c2d0d085cdf61a66f3a7e4f32c8a46bb0

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 7998c4d8aabcd52416ee168d33d7896c50aad7f721f5659699211bd0093147e4
MD5 d5d3defc7c0d1274f9c943d1f1818ea4
BLAKE2b-256 9984ba48c096a5adc304f29e478413451f12ffebfcd6af835796839fb91bcb53

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 22385383151090ac19f9d71e14cff67de82c7a0e7c1171a467c917e1286e3466
MD5 da8a5213c0f679fa3a7eadcc67007b53
BLAKE2b-256 cb49bf55b9b881690a1d6aa7db7a2c7c8c8f36eaed6b9f42614d3f1fe0e80c14

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 ba9ece848163aa21f51273a644d8655e489ab156759344068d4f937db515c40d
MD5 d93f51c6dfd9b5a1232d7971998324b3
BLAKE2b-256 dcc66088d37e291b6cd1b7dbf0139a92f7c152628b4394e1b306aac3a0fcc470

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f38a76bce104d784659f90d47b8c2dfde8dd69c31cf96aa7835d63fc91b6880f
MD5 13c964017d4da3ea72decf684f9cb082
BLAKE2b-256 78e46ab8380437de88d474d88f5c6baa71bda6c2ebd8680ad296f2c6cfe976ce

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 45e182f2e1e3cb6c3cc34e4f85b0c505bb0f5be14b97626336e5a42fc97a61a6
MD5 7d72cb5b47dd9f52da040d7d4dc4c3b2
BLAKE2b-256 abb6994ef35b652b08be70b35fb80fd557dbb869a7fb4a03abacac4b782884f9

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3d482b3607f4f3b701d27c985fa3420a35806b7ce594c500e8c851e306dde7d
MD5 bf29349950c6ec997c9444eebff8ea54
BLAKE2b-256 3d33fb9fc45b295fe40157f7356229b6ce28c815cec1142206bc7ac6982474f6

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60fc829bd4f732332c8869885d85ca7143bb5a17d94b7494c102ad61703b9f3d
MD5 7bf788c8a460ac2a9a8e8bbfb5bfa0ef
BLAKE2b-256 f12f2e88a262f1c98bd0bbebf83ec45ef48b7cee606277a6459839463ba0ddaf

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58b2884ca9d0694dcfab7c481dbfefb3e9750d617a62a73e097cc7a59059ee59
MD5 b06a8b1c5acd87af3da9ab68cf2154a7
BLAKE2b-256 5bac288262754483cc4e7d44656dc71908bc7c6890bac729c80281c14b95ed26

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 14b113f45fd48f291dca6e532bbbbed160ab2a2720de7fb61808539f483473f1
MD5 ea5b002da401b703e5a5b625431f9541
BLAKE2b-256 40dedb3cb75ac8ca6fa32ee1ed77e9cdc579c36fa4f7fd29f55e20b664c52746

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 720480ade00be7b2c81af905e02ba144269999185e1cd6822a0cebb25df3d679
MD5 eccf66033a6575a5f8c148ad9e81cc47
BLAKE2b-256 ce6e069fbef85b28463f6e671fa6464369e86330e1c246a0532d559d3dab5e30

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 ebdf46687b57ced5bd599debf4df6a781e5c0f2e7c311641db158ded9d6d0aa1
MD5 7faea5ab648615aa33848b472383eeb2
BLAKE2b-256 53b485f8a6bac64f77b9219a0101febe94c6b383e2fba7c029e0ff6b54b18d61

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9683c15429d75da6d2086ab9e8b5cf6864a704227379711dd83710e89f6a3d6e
MD5 ec13162917f42aa3f1bb2b905b7b8455
BLAKE2b-256 dd3e7e46d039b61f7a08c298c0d5688e7614e3e96b421e555c86590889e24db5

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8b79c33bb466229305884a4fe7eeba90145acd9b0ef23905cc8ff2cf63fac9d
MD5 b588c47e355d61f8f470ba55812718ea
BLAKE2b-256 e4bac1e4b88de4b8836c398ed3cfc9cc9a96b7cbf9226e58f7f3ba403c656a23

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e52f6f06277d8e3d276ef8956eaaa3f065a00aff6556ab0ef3af29b7b276142d
MD5 8c8f84d3c69d154e4d5a3bd295548be3
BLAKE2b-256 0dcadd7c5004770660d2f431a307527cb49feb59ac89fc52013bc3202fd4452b

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fe4eb33b214a99852eaac909853957ee0bce53bee782b9e685c53b9f92fa1f7
MD5 1695d47708d98803317a752d4cc75dd7
BLAKE2b-256 f76f30389a5932be092d6ac4bb0935a14733f31e252a0fb5f3114b8989f5de59

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23b8f4f8eb88b88a2cccc7760df2f1ef65f4a586f501a819c44d330e83fb6a0b
MD5 5cb9f5a6649540dda65b771a91f2952d
BLAKE2b-256 1ffb75b37f28512186c95e30b52117374ec9efd5787bfefd96a4c232c529fead

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 195468ebb3e844b0ccbc61ae08f579a728ad517e99d72f43dcfc106a72536663
MD5 fb202ec9a96107206e701310e9913a72
BLAKE2b-256 a0ed10c45d1bd2f61e15c557879b30d9583e07d927f9b5c6193a9dbcd02507eb

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46e1d71950b780094be44df52ecbeb770055e4cb2ee6fc5c7792db02ae5efe9f
MD5 515eaa2adfb4fede4a835fb58c524719
BLAKE2b-256 6116758dcae59210932d20ad8b66623af9cfcee4e262bacc15b0be800fc37163

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e4a70d3c52d08f17e0c1146549cec82c7c586b663802759bf50de768651a2c32
MD5 3bb6bf51faac2d6c0a390d8d49c46ace
BLAKE2b-256 9ac568fa9f4807809b4d560f5690cc76c3643462be8525bdcd6fec3f215f1ed4

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 7f2bab4f0c57eeb9e8ff7b93c2021b0e460f4dca3f386a092fa292be39189662
MD5 bb59dd239bbbd2eddf83c42dd5fcb39c
BLAKE2b-256 f8cabe6b657bc94c7a897bf192d4dc2eaf9a4ae0d2e08626d4740e2abb46b66f

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 672abd395705ff34cfdf525b6cb9ab2fdc6617052b912fea84a9afff90bf261f
MD5 1c8d4054ce59569ac51f14d2ed969a3e
BLAKE2b-256 d2389a656ffd9588825e8a834504e10f5b1e70bf6d2c221c0af670a4fb4b62ed

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 d4a67cf892bef2f3c6fd21da07933740e4ab67dd10dfbaa9ce2a186c5171aa9a
MD5 13b9f16e97f1f7a8c70372e790fa450c
BLAKE2b-256 936aa9404de8e3397cec47fad959a8654b074e6e8afb6b57b143c37d284bee67

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 f0301f05a4e6e085214302dcc11ff89bdad770053d2a546275427ba6c94b987d
MD5 4f2de7f0e7d89d792f1dbad2faad3793
BLAKE2b-256 333c073cec58fa72fc2591042e04e0ba7f8b62d7f4046fab4a1633f2d7b52110

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 bac4c64daaf8f518fd2c8b1639de544f81641bb8e1f6f30c340b14a05b2c410d
MD5 de26ece18577d349937f86d82424a7ca
BLAKE2b-256 ce5d13442efc407f3d931e80d1677a1be7c472f563d4950e3bd8c3fc329b385d

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec4e611eb41efec6cf2d4a1e59dc998f8013705f9b3daeae43edbd3a776f7212
MD5 a96ca1dc17a5bf7b7c2696df4e02bfa0
BLAKE2b-256 6d279e0c014f40c7c8434959da3cffca10f77c939274cffa22c6e7a478ad30cd

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb9a44f6347326a6060d26b4c1023d057788bc693552530b25b7ac3ff416d5f1
MD5 cb3cb500beb478a8820744c5a760f3c8
BLAKE2b-256 4e812c95071a230c505adf1cbb2010c4d39ad0728a0c6d312f0776447be0198e

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efaaab1c5cccf6593126251480d6ce95074e3840f306ea5c1b9f22a73a5aa035
MD5 6bb9af6e3589c529d95eec4779c56d5c
BLAKE2b-256 d6a173f6b8db0e692e59c68debd29441273cd6167ca3800f7da8ae6f6589f4ee

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a8d980e3e524697a815e1657c51e93dc32e9445b7d1779310a11609013c0766
MD5 6b1b8edbd639d55334e824a3f04a1749
BLAKE2b-256 6b2a7d178edd83640021944138123c4ffd10633b4754b41b11d4bea310070a06

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 590de82bcc50f6db53d3cc96777f346b09163cc5ef41a2beeb3a2a2fb3367c27
MD5 f0b6d271e1eb3a5049cdd5db01a2d6dd
BLAKE2b-256 48434dcbde829cdf96a0321590e368d75f693406224a3c17abf1e0fe625314e9

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b9d19752eba9560a1be09abe9cf8f4e501a325bcf9c63050fd550994d78cd22
MD5 0619c34149343bc29adb373edb689f7e
BLAKE2b-256 9121d110b38a069c60ee4975d906cb93641e16a6a9a71bcb53b8e98a1a6ad7c3

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c1853d63bb79a8e3e3f44ab34c6d0e7cf1557111c423c4cab4d0ce62454978cc
MD5 c10f210d7b14218400a1a28f27da1f17
BLAKE2b-256 69bd9a2431606375312ebed28ace00b0e7565c106fff7d2d210cc46e044381aa

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 f1ada37d8f7ff2dece9a0a515599e85eeaded4903c339151bab41a7fb0e5e003
MD5 2f1e8597bbd097b9df97b14d479cb695
BLAKE2b-256 f9a19f78c0775be093aa70a1a7a90718d87012e931d09cdb3ef91a0fc8ec5ff5

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 064eef8dc48d1ad2bc4b78bbbe72c31bc0082bf9a432fa6040014b2bba1c76d7
MD5 65237c18050acf96fc1e60a0c0c7b0eb
BLAKE2b-256 bfd4a5b45a76967dd8be199d4bb9967773b3eedc6aa784a93a343e90d4acc129

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 9ca4a172acbd7402350a77f1268b537806b9506fc76d9c939422db09f11f4bb4
MD5 c64921b8e76f448b5896c3e4d8f3bfbc
BLAKE2b-256 9baaaec63441e845364101ca2bbbeeda9c0bdafddedcc7da5ebc17842fecba87

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2679b31e007a6744fb2d2cdad566cca4648cf25eca3f558cb1c9f1f3fe1d960e
MD5 e58834a0cae3aef9ffb3ffbf85fb87cc
BLAKE2b-256 6a1565b1e4ce4e39835a1052a152fe634e693f449ea39bfe2281672480e961b7

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef3132c6e1fde660da92c0690d14cf45910143af7354a835889eafcd3acd56a6
MD5 ce461373f5463130984c4c7f75d5a2e6
BLAKE2b-256 22aae8d335b0553e13f8d91ba765872ec3eb29db82fccecc2e13af10243633c0

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4533287fcf97755eb7d72008fac33d177c58b8dc410e0c019cbf5abbbf6f527
MD5 5f3fa11880c925836f2e15e9890acee9
BLAKE2b-256 8380da92cfc6886fd710b8b484ce31f54ab99039007dd1b6f7e971be668200f4

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7f425092a130d2c82e113705f7284e37394322f5da20d7369cfe371ed0a6b3e
MD5 339a5e4e7bde01440a75e34f977d610b
BLAKE2b-256 939d0ec0a2e9d116da83a304d53dc4e98df0bc0ebca7b49ef33a5e21edfb5f26

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 976f701c316e92af9aa1ef6820fb00035e699f06aafb95da0f50b9dfe60ccb68
MD5 054cedf0910912817368fd0c95cf8454
BLAKE2b-256 f02d2c4af998d01e97b38ae51587e6977339f82981e9b8df9bfdf66acdeb65ff

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2b52e7309f23a9a836247aaa1cbb6eb76c3248e1b4d8e73672dbd859696ca055
MD5 22bf7980304ae8184abd263f229bef7d
BLAKE2b-256 ffc78fda58e2d5967e29f270e0a4dbd6e076780ba7a3c6ae70a277231ec1476d

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 13d4dab4a816c88641952547e64d382c2a53a66bec1055023e7d2c811132892b
MD5 15614c77b544de903c5b3849fe666f41
BLAKE2b-256 448789d754ee89f9475fb6610e6f8ea08a6a827084ba42911e1ed8d6feacce8b

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 7eca3e383d630fd7848b9c442d58156d2969cc6bd2d2c34652e9cabe3f661801
MD5 7b4818708029e062cca1d628f7e656d2
BLAKE2b-256 7bc5a3fb6ba7c5cf1dbf65acb31a62ce691f504406900397fa98044375bda508

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 e0eb10666d78fc940ec064a742f09583b56621934dd491406ea4081a0bddff6f
MD5 fe95f1080629c3e553e986e4a85b70db
BLAKE2b-256 f23d832fec55ffa4943a0ec10d1886435f9fb3d82b366b78a46838d9611174d5

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 a79e733c79c08689f3604eb36b49d1f87700a3cd8ab6b14c333a9406b486e324
MD5 6ede6b5abed9bc6f49a2848a12d8ef50
BLAKE2b-256 df98a8026f9063929ad1faa4627d79c70f9e3735fa80f473947a535fe6662682

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3ddb6290da7b0a6f3e6fa96d411b0f823e8c12d7e66d2c0da82b7e85c11bd751
MD5 afb0aeca779a739613d063ad7cdfefbb
BLAKE2b-256 54f6dffcaeadcae2aa33f1d94b62856461e9b9352bff8c7ff43ec03804174ed6

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c1e95c66fdc1af67d9b1b32b1e73ff812552773e608526d5aada15e639f4374
MD5 1c7e34edfbee94d4ee96f945351e5797
BLAKE2b-256 5842a025a4fd5c6399162c0570cc507e697638d26bcda5b7a4b54297424439fc

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce36078ca3f6abebad253a0021e55d3ea5dfe7a3344dbf0179a628ecde6cb89b
MD5 89a759d3e1e9230f71869b5253968dd6
BLAKE2b-256 20299fc280c73d7c10c8e60c78166ec875a114227cc669b1f959adf9cf3cedc8

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce5a020b728b179240a6fe25764b23f6f74f59d823d99161bdc61508f4236b53
MD5 37c9e49c58f57386954f208284094a13
BLAKE2b-256 3ac82d8d982e87109a9e67021f0e8a0fa517decb1bb85a2a56b05a979cbbf9a6

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e952c9cc52af366209406cdacc39c088805b1319eaf28dad4ec0e73be4369d25
MD5 1b971b88533aa4ad7061807e073d8514
BLAKE2b-256 d24ff779e8220d66072e9414ded40889eada044c7ee94679d1e47118ef06ca15

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31e910d12f0199070d490a6f111d196320630aebfe2f2ead1feeb3411ea95869
MD5 2d908be15a0ee662c43993162de89abc
BLAKE2b-256 537833eae2b17ec5472b6d6ce4c214ebed807e00dc7ac3b7fc75453fdaae774c

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b7ba3c9baf651e13fd29d8cf37f86308f8f7a64cbd0ee1b902baa027e5da340
MD5 cc1ce7f00f5f827ac8e8fce883a8d9b9
BLAKE2b-256 9a8c6ff5e8d8ae0052ecde83c1d35e2d480a9d39d9d2337e5a8e273b62bfdd79

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7474e8bc043dee8b99f98decea33c995eeeeebb3cb342c972a1777c92107ff8
MD5 3732d6ce6c0a9b762bf8767a7cd238bb
BLAKE2b-256 23f7d9e82a44d39c2f697b67013efc4ad9affacda9e71b42a48c8c6dccdeccf1

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 800e05007d72a44a838a9650610ecb6b227a22803205f0c763b2fafb4fbb0844
MD5 2509d1abfae5900d9981b2970e688629
BLAKE2b-256 9a21a8c5b651bf4609e7e9401ae19c004723af3ee1691b9fa74a9816a3ea3312

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 8c56754206fecf2b0337001a8ee3bd67faef8f9b8632cd66c81e3c609c2146ba
MD5 2654131afd3e02e59bc8a75ee259654c
BLAKE2b-256 effddbd004faa032b0f5e9b69122bd4d91b9227c8b00393c29972e19517621bf

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 d0649466b946ce95a12397250fdb81a491537ece762c5b62bd9a867f7c83ec2f
MD5 60fc619c27e32546c414364634727b20
BLAKE2b-256 36a202a9baae9e095d742bf171895cfd7baa707f9189ac2c8c343ff2b80a3f41

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 57275cfb7f01f07ecf5389ae75ff04a6a01446e42c47d5346488c53220d4b464
MD5 7d0588faf2c291283edffec3258013aa
BLAKE2b-256 eea53d6c564cc3923c502815a3252d5f4c1a5ab5f7cfcb12f803a7e6dff5182c

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 1850085b3511b0c5b713894553107bce03f1092b0078101ccba0341923e794c9
MD5 862ca831f1304629fbe75584b72e14c5
BLAKE2b-256 feeacc3ba6ad27d9b5ac8a30354139212b96cc0d390a749d564e83622e0ac89b

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 45a3c14d3029f0440eb74188ea38b00723399dfc0f2fb33dc4c688dfb57ed8f2
MD5 e5c4ac5d40ea4b917ee56808175f0931
BLAKE2b-256 37b3c1629650c7b3b13d5f6d783aabdd10fead2b15b0895e54b505e11ecbc034

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d31bc669c3a8d85e9dadb35485218eabcc0a4d93bf3830f1700ea064a29161e
MD5 b8f379c9143913de3f150b697c7a8e00
BLAKE2b-256 2403bf1990244a919c5aed22cd34e165c17ccdcfbefafae26770bbe8d30e0016

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7fdf2479bf109d7ad4c11a46a5baee9f95396f5e1373b9cbd55e832803c02a5
MD5 f969454dbbdfde95297d63494fe112eb
BLAKE2b-256 3aacc29b9d6069ec60e78e4f5eec8574b95a69525a4316c8869d4f24a1103437

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 faae06477028d321237b2c089643c49366ae729b5ecad91dc756b1a621d5e768
MD5 ef50a31c33c4d80982568ccde0b186f9
BLAKE2b-256 b61db32493a43af1ee0977b9810b92815ec0330bac17aced9f3a6b23e25b6a3f

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fadaa0f8c2abba8a97e39f8b148869159ae4a43ae7e4918984f3d1bc0072341
MD5 8e91829949347363770ae29f510c77cc
BLAKE2b-256 d25680a1d5d8634154026d92567beef7c3b863751a5fd9cf4cedd5849ac0ff1f

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f6e8962adf3f759b127aef07d8d856d90f21ce29dff89f265a21eead87e53c7
MD5 c24b0ddb7ef42fdf06b53a4f5e8f5400
BLAKE2b-256 3bb800a4f2cb6f437b2785621b9c6e48b3abb4d88360b875a2a5763e21e67e7b

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26ee74d7dee4a0360c7b586af2cc93f27c43c8db79af912038631e4a4dbbf4b1
MD5 811a268bd2b8d6abc9366b364de76cac
BLAKE2b-256 f049597acee904ad90f63732f8445c61517c2d68f100cabeb268cee0eca91ea5

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3c93a3ff2c4fc98522f61ef462ed69f40e8f48764ddbd6643112c91e7a8104a
MD5 6288babd13492b1aee28fed188b77d75
BLAKE2b-256 3f26a381a5b008360427498a19f360e0ce73cf327d2fa02f80df21c25bdccf24

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 15fa209a90688900972d7212ac7701f784a7f4ef4f24718837c667a68358ea44
MD5 b5046bee55004c9709f6248232237e3a
BLAKE2b-256 d0e746104d0940855d1e0954ed19a10d9bed961517b0ec2fdc3da79572890668

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 f013aff35e3f1686a65e9483b9c52c0761201183358f7666279e3a010246c840
MD5 74d6e93c18a88682030f41b3172460c6
BLAKE2b-256 9776545edce91fd80f88cd1a4187eb26d8ac00b071c903a2800c3cd1cf6031dd

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 abd248d3aaa0c67ff0afe5196473c362af73d45ab2a76e248a79cd66e048bdbf
MD5 df84956276e1237b664a44d6f5e54c15
BLAKE2b-256 216afbd7d149e4c9a9174ab488ad9925d3e172d5ca89140aa3daf6a6ae423404

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 90b5141cc3c1bd0460e34bc65346a4f4e7b4abde5da98acaecb4ed32029a1e76
MD5 9d9385dd151210c95f715b7a5cfba103
BLAKE2b-256 1e5da83f325fcd91edb6ddeaeb5580767ef85ef67f94cf6e52330ea039d20f73

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 6f9b137b79b2c9e95488fc9617c9f2106818b840727a67f19a8b2b0e019063d9
MD5 e5fd31297d33fb8f0a8da86b21fcd620
BLAKE2b-256 e1073abc1ee5f0a153084aa443765cc17371f9df80288be49081e948b867efb9

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0b4a4eb66aa70581279117b97e831c08d3045e24fdc65a9d445275842524c214
MD5 e5bb45f8a4730b3a3b96e1410276bb1e
BLAKE2b-256 d39ff2d58da438a98e8170fff25b9a69f7a7efc551fce26137a5a2f469fcf656

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aca58bd2db5ea1795de909420834f7c103e305f9bf23618232b87b8a16148e56
MD5 fecb9b5dd7a1c087591c3f288ac03293
BLAKE2b-256 db9969d69ead46d9e0131f6c9051d602e4ad3bc88a3f25c0797bab500e65ad17

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a0d312f06ac6ffca0b84b29fe2283b383bd1a07deda5b41c68eacae414b1763
MD5 131a7dfaf59cdcd592f9ae8c52346f28
BLAKE2b-256 493a316defd9ffe52f25fafd15929712c96d508cf5607eef717efaabf5e299c1

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 08430d8a88ec8e2684281f40149d9916202588a01285524a2da547544ba5b1fd
MD5 724a3ee4966e5dc3d6c1e50b4fc88a31
BLAKE2b-256 342e61b3689d98a1d1ae7f2093bb14343dd52213dc7a3a635c16a1fbb2f667d4

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e47e156c6611a017c82335fd559466add57ea2bfc45a092d8b49817717cd15b8
MD5 faaf41898d8a663e7963e2393724718d
BLAKE2b-256 b07668b414b685f7fb85b34c45b83f3f966092149a594784d91c8c5de16a2615

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16ec5002b09d40997bb63e09f31d6c111b40ae349930609c57f2fabaeec70bf5
MD5 11f95b1e73cf6587ef9da323ce576fb4
BLAKE2b-256 de8f126ad80f4ce08728a8a4708c6c60d44f87cdb8bab9f738bf5c41cb220240

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 522291e04a2c593a864f9cc3d3512b9cc38b784c53ad5c0899d48cfe44147cef
MD5 9227dc63281d4e8f4eb846e80a113575
BLAKE2b-256 41da2c5e90610bca950ec9a38f48a94d056d94460eaf0f878b440c38437e28b2

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 067ac76dd9d87cd715afbd2faccd5ffd1b5b0fafdb9e4acaa49dd5ddb0af569d
MD5 b1e1f13a7c92355a2813b8a0295269bc
BLAKE2b-256 bf7d485a9af5abf182c3cab6d27ef73f54197f088a1da267d73a23e1230b7ef7

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 7962ce6199c347a1f8abf3545224c493e071cfdf3ed324115382e0b80252df3d
MD5 2322dfe2b19dcbe30dce1084fabc638a
BLAKE2b-256 091759028f52b59c809ebbc6889a9a2c2bcf3c1af9fba732915c66d39fb0fe2c

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 10cb5a6d0944d38082b7dce8b854c1db03fc642f179fea12a80d2a66a6dd2de5
MD5 027ad260a0ccb4d3e9bcb809ecc1b178
BLAKE2b-256 baed48811a34095ad25c19e65086e2a0fd7bbbce2af223118d909fa0eeaa5bf9

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 0146080426add423808d2e5aba26efb45f24797bd755e554d49007b130afd5cb
MD5 c1a5bdd266bc9c412cdd9bdbd59311af
BLAKE2b-256 a978f5210fe995e8b98dbe21eaebeb3db2ff0ceaff2fbe772f7515012feabd01

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 f4ede877d44aafe230979d912e5b09af35ecea659eae775c2ca8f272c6ac1bd6
MD5 f0bfe66432232c845af497f6cf27e722
BLAKE2b-256 b03788c069dba39ca577bc3cfdb352000bbc60856c9762e410ef28c78ce195c0

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 1d2479fc8f81a480be9f1a3d3f40f683ed590e36141e812d54fe6dec5546eeed
MD5 4675cb23efcf8572a38dce2d45ad624b
BLAKE2b-256 38cb2c23dd31f614ecb053ad87ef7e7a7dcf479347056029695a000aef5b2109

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 293692aae827b808fbc202205f4ca27db7504105c6349280a5ee64878366ff19
MD5 1760c6d346810913d470987bfd8c3cee
BLAKE2b-256 a569d8068d3c503a1c3128c3cef4ea7696fdb7c8735abbfa538f64da6b5b8abb

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ca6e7e8e663a6789edbac6c45d667b936bdb16fecc7d17666599558a5d2f71bb
MD5 8276b7c54d4bba044c8fbeeb0a303dec
BLAKE2b-256 a98603f40a65370bbc1ee35b4de63968650a3d38c7aa735891faa041b82f1357

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0f5a190e1e7e47d23ab68b649186a8d29c2597fac92acfb25fc95b91fcd9f59
MD5 9dc286672f5076a9768d24131a2f88d7
BLAKE2b-256 6142d82329ef210cd18f3b1278edfaf20626fb1b05d598964b6dac319b0c8abb

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d28213a91828f90eff44b068cc50182db29c8811e2f410dd37cd0785491c811
MD5 18561c0292b7fade85bc7031a70b0800
BLAKE2b-256 b9c003e0a3f8e98eb04f1bf2ca8208e63d8a7bc30921765ecd9f0a488fe63f42

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eeb34e5b891b59289707cae231ac580d9f38416db2f2528ce25303258a727cc1
MD5 a733c7d86513b9a609da3de5dbe4d1b0
BLAKE2b-256 8963fdd047119aab79678a4df5f808767e0ed114397da97b5dc7cea810ddf30d

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57baa82664fbbdfec03c7945d4005301c27f56300997bab68e11dd5dc7b12b25
MD5 ad3c3ea489f4c0890a2a5c25d95a9367
BLAKE2b-256 f56cf2fe53aab7bc3cfccaaa73a500abad4ba3843b462480afb6bcd4f2017d92

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 07c29f18dba72a862cc61febddc2d437af2b79ef86db2045a40516447d35c3a8
MD5 f2c044b5c8f7ddb4f29896a78032236a
BLAKE2b-256 df0078f6188872b5418406d5fa141482674c5cf6cd62f59c15f18f2b734ab9b9

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 907fd864c502843d5c1ec7080aa6054e63ed09694a25d7ffb7a8e9cda642855c
MD5 d477cf7e868f1b54228dea447af7da2d
BLAKE2b-256 0086b253cf102864fe415e4b349575020a1a78e31f4b2a828d2886b9ef9d2280

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 864de6d002a3e0517b881c42ebfff4db97fe9a6d2815ce0a8f8c84e5d5940f68
MD5 0fbf1f62089b817a1efe47ba5fe5a11c
BLAKE2b-256 1c7f7db8a94588f0254bcce7d4d7ff87428dab56761db5e7af9288c10267ccc6

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 8608389a233fd586d1ee8ed774fd4561f92549495198a9c62aa67c612d61f9d0
MD5 79c6cb86d7a76f8f3ce8e46652d559c8
BLAKE2b-256 0a21d7ba823673feed702f1bbdbc073895fd30ebe077d92e443ecb773c471bfb

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 5eb6806d96658e8325fc607cd428dc84f8387198945799c338c3afe865dae0cc
MD5 4ec8181aefcac2ddf599ff15897d39f1
BLAKE2b-256 ff6fadebb0d1e2671d0ff21b41d8fbc1b54b7484e176dd3ebfe6dc134c54b411

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp39-cp39-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 03714dad1deecefb73130b04ae8a6457dd9f5c541e06d504db4014af8ace54a9
MD5 7048c8e1291c5764bc933a991f48c8e3
BLAKE2b-256 beca1e199cbeff93a2026001554d90315d67650df6dc0ab5bb0166b55164723e

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 228582c6c1a3b640d82e81c8c3fbd78e8f443ede89122c1a84581fb73bcfa24e
MD5 5c296e8fd5781a4c6382a4c481d984c6
BLAKE2b-256 3c83f89b31653443f61f520e78fe6b3bc53a87474331850cd69248dbc42d2fa0

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2df7d24420c8366499504b8b37187ae2e625f46bfff8fc7b0ef2ad4bb21df815
MD5 fecede5c00a0b21ba77321e5a5a0f6f3
BLAKE2b-256 9d9a76536684b3f7c1daf27d82b32021e585171622e5f1da5ebd7929f26ac410

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aad84bce46582470875cbb26f174e7a93c4b947770eaff1ffa0d15b1a52984e0
MD5 6656a0f7e71c5e01db1ce4dab5e4d071
BLAKE2b-256 76da626aed098bb21f45e439b8e41043f0fa839312d30119f7b5a5cee6b8ede4

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e80a9d14ba8a305651f5ad36d86127f6310252c43c729a4af2d3400db28d8cf
MD5 53838649fa1d6038d72435a27e405726
BLAKE2b-256 4bf17955932a9d7a6e11c51d25e134f845bc3e72dffca2e5d6adf4e1792879ee

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d7ccbaefe60fe4c85abe03cb9aabca865732118972159fc90030c33b95dec840
MD5 ab44f74ccc9fe19fa002ef4f32c8cc24
BLAKE2b-256 1d0d2102c85e5ce5b31ca8671e1a466ebac091a7cad37bedf8aa2745e934299c

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_s390x.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 f2abbafd9d86ba799abfaf84f7b443097b4f8673b315da88cd92eec91bd3a16c
MD5 57692b823571956d0debd9b7a1bf7dda
BLAKE2b-256 d82670b650d7bc1c45bfd10e58e58bb8974a25cd7a4cca3b3c91163b75d3ed37

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_ppc64le.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 da0f1f2aad3e21ec5e8838fb8245f218ded589f391040067b50ba4296e8885d4
MD5 3e267e351c7b6654ad0988fb88cee753
BLAKE2b-256 ce5e654df1967358b7667e0f025131199f04e6db28eca8706709ab2c5475895a

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 e57c4977088b771c08fa855e5f78c5fd7d8d70467559d7e8a55736b32b23d9cc
MD5 aed6b9e333be4d90881dfd7331e812fd
BLAKE2b-256 3c666889fb103c3203bce85437c6158045731a71c7c2be19ffd77ca843b2e5ba

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_armv7l.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 e69ab62f8ef3179908aae1ae59750139e14d2cf17643953e5e4b4f005a9a8aad
MD5 351c43a779ba6699ebaae27fff32b902
BLAKE2b-256 c4030525e3c1caa91316661b9187c659f4b836ecdacbcf7b7a2eafbcce377b7e

See more details on using hashes here.

File details

Details for the file sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_aarch64.whl.

File metadata

File hashes

Hashes for sentinel1decoder-1.1.1-cp38-cp38-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 2155a7cb3826b84af67dde7f848da9b020aba7ee5126efdad0c3fd5e63f06270
MD5 0631d464048a95eb98a3f65d8c741a83
BLAKE2b-256 4886c6dca3f8b312dd101c2078c8b9810d2c1904934ccec73c2c61ba4bab91f8

See more details on using hashes here.

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