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.0.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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (591.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (626.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (564.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.34+ x86-64

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

Uploaded PyPymanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl (515.8 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_i686.whl (409.6 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ i686

sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl (387.3 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl (382.2 kB view details)

Uploaded PyPymanylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (588.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (654.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_ppc64le.whl (513.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (559.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-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.0-cp314-cp314-manylinux_2_34_s390x.whl (403.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_ppc64le.whl (512.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_armv7l.whl (384.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_aarch64.whl (378.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

sentinel1decoder-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl (342.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (587.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (653.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (558.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_s390x.whl (402.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_ppc64le.whl (514.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_armv7l.whl (383.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_aarch64.whl (376.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (654.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-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.0-cp313-cp313-manylinux_2_34_s390x.whl (403.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_ppc64le.whl (513.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_armv7l.whl (383.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_aarch64.whl (377.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

sentinel1decoder-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (587.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_i686.whl (621.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (559.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-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.0-cp312-cp312-manylinux_2_34_s390x.whl (403.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_ppc64le.whl (514.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_i686.whl (406.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_armv7l.whl (383.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_aarch64.whl (377.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (334.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sentinel1decoder-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl (341.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_i686.whl (625.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (655.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (562.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_x86_64.whl (392.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_s390x.whl (405.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_ppc64le.whl (517.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_i686.whl (408.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_aarch64.whl (380.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (336.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sentinel1decoder-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl (343.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (590.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_i686.whl (625.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (655.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-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.0-cp310-cp310-manylinux_2_34_s390x.whl (405.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_ppc64le.whl (516.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_i686.whl (408.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ i686

sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_armv7l.whl (387.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_aarch64.whl (380.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.0-cp39-cp39-win_amd64.whl (215.5 kB view details)

Uploaded CPython 3.9Windows x86-64

sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (593.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_i686.whl (626.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (657.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (565.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_x86_64.whl (394.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_s390x.whl (407.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_i686.whl (410.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_aarch64.whl (382.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ ARM64

sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (592.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_i686.whl (626.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl (657.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (564.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

sentinel1decoder-1.1.0-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.0-cp38-cp38-manylinux_2_34_s390x.whl (407.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ s390x

sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_ppc64le.whl (515.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ ppc64le

sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_i686.whl (410.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ i686

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

Uploaded CPython 3.8manylinux: glibc 2.34+ ARMv7l

sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_aarch64.whl (382.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ ARM64

File details

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

File metadata

  • Download URL: sentinel1decoder-1.1.0.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.0.tar.gz
Algorithm Hash digest
SHA256 daa200e0f50c526fca5b8bc340896ce4baa48d6a0f78549935f2cf30f53b730b
MD5 252f0f07d2638398afe761c314bfc94c
BLAKE2b-256 1e8379f8ed626dc35e3589a09cb9e87164d1d33eabc0a10ae508fd95bbcac054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85cfb76a7f31af3809e657b5a0221b09ffa375d0a8a2828a39d64a4ca974c54e
MD5 5bc499c67e38601ef46848de2e2b291d
BLAKE2b-256 166e05b70435052148fbcc9473bd0d9d30da8d6a5fed60197cf69843927ec6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15b3d4087e70f978b770d32c99c93f0a6d370ee79e223daff027cf23372a38ed
MD5 2d487a1bc4dc54f5e6c7ae57fe449034
BLAKE2b-256 c7cb14c0f4d505768f7cd605acb28088dee2dc6b656e7d8b844868ae96333262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 211019ce91b23489cb76d8b33dc05f1befb0b8461a70da7edb38020621271c28
MD5 403fbc5b429a1deb60f541ec0675cbb6
BLAKE2b-256 62d5edc85b6e304474505b06502816eae9d1f1d4d58e1139c81b1ea8df4f0519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0c03e6087c215da85b9cc04e76ad7f854f6022b97314cc2866e130c51ca97c5
MD5 fe49a669a199737eaed89e3f7c521238
BLAKE2b-256 9617e1d9e829acc3fb033beefb167fe5f52dd0027bd2b9f4f1456e2b9ae938df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 af51d5d854ce1b9c539c177c7865755aa025c5b4e1664f787acf82c282f067ed
MD5 e5efc0e6f3f5ff3e03b57a4e4e3b32b4
BLAKE2b-256 315fe697593b1ed3b7cf30f79ed7e9b4496c2690c70501c163e499b0531518ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 387089768412ab6529ecc4464cbf6dde8077274e20e2670fff32a9e015b39cf8
MD5 154cf12a0e5f24877f7cd892969ee0b6
BLAKE2b-256 9b4662ddb8f5e635e1ce1e278c297a0a24daaa4affbbeaac6ffc031f714d10b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 8a08845002bdfc4f0a20877ffd2cecd02c38ca70200054a439b8ecca70a5d1b5
MD5 a8a0961ad86ad794721f96e3765f90cc
BLAKE2b-256 e91111a9f261f792450fe857cd2d80e9dfb522adc94e72dd690d230789d658ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 226d66866a2e7cde4590748b61ae2831353402e71e24f0b864c2094cae448aab
MD5 871ffcdc46cd1cb73515c5ac60cd6884
BLAKE2b-256 b030b90e162ed3db7034c33973ae263e374ece8f0b164546a0d971fbf74fa579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 add70049e37484305dc2c5da0a630150ee731714045d2e7d367264e2eab48d7a
MD5 be7a89639983e64f2948f50ca32677c4
BLAKE2b-256 a2c13ba61e1fae306cc1f1f1138ab73e1cd9daf2dd50c462e3a2576a29d92962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-pp311-pypy311_pp73-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 65d28795bf7357ff1f44031c7a53295847932cda8443a2e77bd1145c9c71df02
MD5 1fbd0833f8f4574c206bffec0f71dc7f
BLAKE2b-256 356522566a87e662fcfc90f95502bc0720cfaac0a3ba990ea79a2b7e3fc75b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91386c871992a5d033a705c319e758c0b3453a197076b77827e2e2d5be6cd8cf
MD5 ab7014b697a000ceab4c3a5c2b49f411
BLAKE2b-256 df69a07fbbd50a2b92c6df2f37fbb8096cca79823b17ec3ef88514b7ac541339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e5c143689776538f52cb651ffaf45edbc8d7314545cc099eec636fad6a6beed
MD5 d984c5ce8ca5da02736159fdc95cdca9
BLAKE2b-256 effdd66edb69e5afcd1869dc1490c2eb43a81895dca8fe67f08a53b805acfe6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45fe4d8f6ba088ef8dc4c44405fc12ec7b75faab23ad6e73805023f4989ffd63
MD5 e9d093554913eda86a1df69e324d6022
BLAKE2b-256 1d086ca4f3e4fb65839fa48a8c06a7b4651c6853c4942efc5dc4153224d0e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf12ee7ea5c0350f1fcce6577d1ad3d1e71d7897f0a25460966bc17a13f010d8
MD5 00ca35f6c42db07e1e87c0dddf1c3c06
BLAKE2b-256 63c713313b3c12495c6887b236c84e72a75a2ffde83a4a5f72dae4ebbaaf53a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 cab32b757f9a398a93b4e99a45c4cf441d5916d8429934faf6bee991dc51bdd3
MD5 f7291ac47d765d4a307dc7a039fb4c70
BLAKE2b-256 7c2c0781072cc0b62a3b235f3f4636241d2e168c2797928ed835864d5472e7a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 2f6e3e1c8dd9e7d04c50a83dfb3252db6461c3445cc0b84e4cb4cf8c945c5760
MD5 2e7ec167458ae520b19567ae1992e48d
BLAKE2b-256 c0747cfab0d812b590eb06767400a4549e1545f48d8b03ed6a43f4109da9b5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 b812eefb07646f6f56d3e260a484151191d49f9f50ab63e800a55c3d83ba6bc4
MD5 14cc726f2cf943ee20974ed2aa82af9d
BLAKE2b-256 803d5159a803a773acdbf52b6b31168ae849c5d2571db58118d065a07a73ebe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 c739f96795c9d8ff8f08c22ce245c46cfb85d4705fc9e5a535e08cdbeea0bacc
MD5 881b0c816f4be5a5b2c67f6c95a3e768
BLAKE2b-256 c285baba0441cf0833250c254d03ce0e95c22712aed40fd4c4a6d7b827c7ef99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f0088502bf23bb08befe666a793a69d09a8690cf6779a0423f9dbc715fec7a3e
MD5 9e6ac1f5cdf3c68bf7d72cd058085096
BLAKE2b-256 e419fc8aca067eb4906c935e76984251164e1d5c5e80da3bd2b732cf6c09532a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 374eab1c3d78ce8250ea6ca1516664d46ee3b936de2af85d3126b01f51600c20
MD5 71985184a75cfcc2fd81983899bc965f
BLAKE2b-256 91af137ec7bb63044e12bff781addae061b85f1b6f1aa9970fc89c99d1fbe617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 925b990677451ff9b6176b972601323d5fd15aa4647cc8cf7dd7f5f1af5b74f0
MD5 ae1c00a536a4cdec3face33766b61c8f
BLAKE2b-256 93417f75c105c1c5d3a0868d2cbd16f0d8d58c1d41e8a3d92ec7b8808ef90315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f1b11802f07171f887993124b6898a1ae4992ae9356dd8447fe67b897a3f1bdd
MD5 58306cb420d0ba8152d0f338c68bfe47
BLAKE2b-256 b649f01f89d5e45c805dfb50c2027dfec1388dd145c8a2b4601ee13f23cc279f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82f66e2d180aca38f10859ebca7fc9844fefbcbbd91be8355d6f845d99e3e7cd
MD5 6ca1ff91bb00cc27259efc56627532c6
BLAKE2b-256 5ab396edbf30478c9f6f6d62217d8342e5e32645bdd3cbfd9e7c2657884f8a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 643390972eb7a3f6206045e0c36a2af6b3b7d542bfa805e16b364cf4ff9ede4d
MD5 44d8003b9edae085fd37106133b10e31
BLAKE2b-256 ea23d5914781b424c6473b82432ac92a5bdc96c7a821a89db8bc1050ff582c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 550dc19152d0df7bc668258b7d9d5e2b32059dc6e4bf66f51f9aae80f289be6b
MD5 ec4e06fa88df5054dab4e87e24cb671c
BLAKE2b-256 9d3e10b7f1f278e2901f8a35c083a0fbb85141179a2ae94f04ab8b7fdf72d0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 8115dd0ea422a089879c938c81f1b3e4c5f9a5d55e90ab2dd1dd9bba3cbd40c9
MD5 46c254a001fd5fa7f46c2007cb3f08a1
BLAKE2b-256 939bad17e8659c5402fbbe89b55f3cea69e3e4f5f739493b6e21d7acaa15ceb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 2be9ecad1e9ec4d73fb724790006902bdd563fc9651ba13af2d62d2d563ea972
MD5 29b79feed65794d5a0cc9633c8a1b6db
BLAKE2b-256 7da990d2e3239a058a892f075cce6bbd9efd3d4c5de9af07b8e6bb5e4b0f8177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a992a91841d2d52ec51550d8d83be10433f3ccecde7b0f94ffc9536224b8016c
MD5 6cba6997b4743247436434eadb8b8f37
BLAKE2b-256 e0c9b84602ee5d5f2e6fa1a4e70ea00b54a43aab6cc61d8d5a4a0e136e02e372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 641f4e58e9027a09a4da85c7ce1af09429e6bd93d469257d7982f26ff1510da6
MD5 f9b7a9fcaefbbb6749c6bad3a83a05ca
BLAKE2b-256 b5072f9bd4094d080a330f98e83f25de4a5ec987959643bcddea47be3601308f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 e109997dc864f04f3d886c104c275acc300e533063feab6b19e572d48b6acd30
MD5 d660e94ecb6bbf79fad70a3a4047902d
BLAKE2b-256 06af24a706ebb500f03223946d250ee7bd786476417bed18085fc9bcd7ab9ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6965eb4fbaa0995d8e733216b708d89567d313bac193e2615e8fe021cee950ac
MD5 19bc957cc8ae389dceee449c44c8ce23
BLAKE2b-256 04f8129b2eb34a7cb9d852953bbfda9d6c252efc25e52c6cdb39161bb1977301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52a3fb9af5912e16694f7f49fe35b404f8e6c6770dbf0cf1fa630b2e1030d1ae
MD5 9ec40a24c51c24c9db221c88c83cb99c
BLAKE2b-256 fe95e2e0de80ddb51aae988a970acebba70a4d1c4f750e1b21dbd29a423568f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2becad74d9be46b789e401a3a28200351639694a072e03ef4a2e948cbc70e169
MD5 408c4229e646511b5c6b50831c68616b
BLAKE2b-256 8981c05ef61c1edfab8452a86a8635e1f6d19d2b8bdebf21ff59f6fa9cca3885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79291415fe26aaa0b4f6d7b32936545f6b1eb30a7ceb2977b6c8e0d6446a06cd
MD5 997f76fc617ae4501adb5dde31da259a
BLAKE2b-256 b050abece032eab9730921441657eda1aa007e8b255e27a47cf355846a810698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3e3a20179bf1531c0bc9699b1763aaff351431577f8447105ee22ca1afeb227
MD5 d9df0e436da07e800e028e8e3307c0b5
BLAKE2b-256 2b0cf7300613745522d18b82304372c4bc008a65799acb11f2702ffc6f99c7c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6773ad4eef2de96edbba9bcc86ad7e8ae9de65798d6ca9e6fbd243e5fef22871
MD5 e68ff65dd26220250d790d8b31ee2041
BLAKE2b-256 5e5a2b05109a3313be9e5278bf2ae123a4e0666523bb83ab5a4ff70ba73b4b6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 00b5fdbc142c120ee8a2ec2992a62972cf9ec96b036b4949506c0e0a1272b058
MD5 541204fc1c93a2578a31cc7bcf9155e2
BLAKE2b-256 35290a4899b45c8bdae515523cd530fe8f8f271f3428a61d0715554cea1a24c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 f350dd148a3e7ebacccd9e7ef6a122b9051adec35521ec10417aca9146468e82
MD5 3456e8470dc73ece0f591b6ab9a4f364
BLAKE2b-256 5fd5bb0a05bc1bccb7a239c1943615789c181cc4d89cc386655b8bb512897000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 7bc19cf93fb9debfa89ad52830ee457193b01b1fd5ee1bd33f029b5a3b6d9355
MD5 36c943aa6643cd1dd3c93f2b66d02241
BLAKE2b-256 15f8422745f8bbfc9c5f5133a273b057cbf2c90d9c1a15ab2b78cf3ce013ea4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313t-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 3cdc0175e6de59cb257126e287f8bbb049910bf987093e783a90828efa7fd757
MD5 48b651da3beb0034b7424bca34427ae8
BLAKE2b-256 007eb7b298ccc7c8059244647a98afdef0cab179a29bbb4811ecf5c6c47376ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c2bfe2412b8ea914aae853150e1d8d534f4d99e702abdb6a8afbffca4ebe480
MD5 188af886ad0ae0304e0eb055d7c4dcd8
BLAKE2b-256 cd0b3ad5a3ff48fcb121642a650ea3ebfc807e8c4861c2136a9bcccaf2c89ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34d2e8c57dda5ad0563e7a718af2dfa07ee09a7a0a58402a11c2bac2257467a3
MD5 aa86e7e20800b82c31a490d89f09db38
BLAKE2b-256 88d2200f3ec7e0fe427a031d25f365e1a0abf4246674ceac820f2b2b5a6b4009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb4065193800b5b943bdca5f93a1756de8f3c50ccad33b9004da169edf9987ec
MD5 346f3647b3eae14775b6d0987d476496
BLAKE2b-256 f107ec77f8cb96e3ae67a1168427549ac0ca5a5a11cc70d24ad99a7b13e287f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ee6a1a0a7f88273cbf82dd1b8b56569dbc21a99e7f1457dc230fdedf58e210b
MD5 61e376f44030131da76a1bfd538c245b
BLAKE2b-256 b06a57483c2128afadcaa8593ff570bed42dbe5f8ceb0f507247533a785426b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b67135096dc3aa772401479d6695e3f9a736ae99c8c3f4e20e7e9bdd2be1511
MD5 ce6ed488dd3efd88773a239fc4cf5c5a
BLAKE2b-256 abea75cc015f235f89143c4a646d36532a71458cf89c8c92f01e3c5324243791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f6342cee1e81c0b265a40ca565ea2ebcd783a2454c2e3b8c34dcd16856f501b0
MD5 3ef18d10e19ed9224f13ce9ceec776f3
BLAKE2b-256 b5d070a6f603f8664b3fd30cc293067dc81431f321e7de0392636892d55af0f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 b7d4a1bc5ad16978531fa1747e48accb850e559a640f5fc1939fb80643da6474
MD5 77362afa850346fcaaa32a97ce923556
BLAKE2b-256 dd6c75caf202a2dd0078d1c60879aeba55b66329de0a491b27fdc00b2daaaa97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 18cde007917fb09c83f8a6a5eda2271988e42b5513b04cf99969facb13602a9f
MD5 5f33e5230724306293e6fd016f64037b
BLAKE2b-256 d681c29155ceecfedb2c0d828f75ff0df73d0bd99650cb8b9f96b60dbcaf7b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a7a09ca6f01062f4166ba269287f914fb63a94b60e7536086fd45997d61c0423
MD5 7deecf4d20476e10d87e7eb3f1f111a4
BLAKE2b-256 3fde07c3cb19ba70ba5c466c412105b9caf9deb5d43a49cb4aca0face75ca36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 2131eb8e128ad16a3c25b55c5f648d7b63e60333362c71f98722dcae17412a33
MD5 2376cae564b7a0200b5814d44b792268
BLAKE2b-256 d2da6a3ad40b5c15681078b4502b8deb83578415a5396c1867b9ac3e0a0854b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 0089b7ecda6143e404e0d38199195799a01be3f3e4b810f66a13218bf610a27b
MD5 d5ed50bf2d350b72bb04c44a8b9d9370
BLAKE2b-256 55b25b839ddfd6a19ab0cddc10ddfbee7664d512f301b4843e24cbba63e503a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04d2f3782efee6f494eabd7b8020cf170d8849ea5ee4a55d4d97a1de94a97b23
MD5 16ee78bece070a5cb452854271c8f53a
BLAKE2b-256 12c2a6146895f40b01bb05a5b9504ea789f5032828e4b99ca77798c3b68b0a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9733c61e5dbf681bd0dd1a884f88b9245fddf6e76a9e60117b574a1a9ffa8b3
MD5 019290dc5e4e83941ebaddffe17dbdc3
BLAKE2b-256 f4de43c480ca88b5013bf0b77c5d85394da2604e560251945e6730c0c4a3b5cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c698743d619d0f5aaeb10eef63ba9e6332d9234218b0e3793254547c9131345
MD5 10bf2c731ec0706ce9ce6d2c35803741
BLAKE2b-256 49004637b2a486e5b3fb7fb492bd0e8f56d4c3205aa48a255a9a325188265510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf5588e45ba55fa8fcfb6c614d5cfd2b358ec5945048722aa45509a1b012d00c
MD5 22f12828bfc6fb5183bdfec67e011775
BLAKE2b-256 e0a2b968b500a245828a1bbf45e2bbf99aafb3b4a1e44be91c2daa79748f5f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d73e06679f89cdeedc156f65af4c06180f448a7bb6233f4769f2f4f42377bd79
MD5 db40e106babeca545d94c8fcc65328c9
BLAKE2b-256 1c74665874dcc973159af62855a754b39ae2f96d6fc3770440f277dac2ccf708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c423d18f05cfca9e822b60eb1e89de97fc43d80404c745edc6488bd3c65d3294
MD5 61c95a1e0df3dca6fe5778c9544506e4
BLAKE2b-256 7d3ebe545c5537322fa5653b77b40a56d75c1c3e661d0f925858615e1f8c0ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7d9a0586a78a6af47e2715f2dd155efe3ea76bb6849083e42e4bc367471ced9
MD5 efa4321421e1af881dc80305a0a83a92
BLAKE2b-256 26159620d1f66b870891c2c54feab67988d346698580d72f02ad01f468ec8363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 eda62d10dc70be6f6a6e29a3eea0e91e3c90d6054a56b5763e9be8a96605819c
MD5 5f8e1acd76be410ba791a034e47bd43c
BLAKE2b-256 fd7064a7501bf6771bbeb4e986a24714e3f70eb44e09b7ba977ccfb1b2d63a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 9d023aa7694a6b8f2949adf05775e5aca733357d6e83f5bde48f68fe1d44dc1c
MD5 eb0d638faf410e2ea01eb39301892e0d
BLAKE2b-256 f071e33f52a5477c924ae56d420a78b65260fc57e176925c20ec495c4beea770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 a4f65420fb9a695647da6b2357d8f400a93af142e56dc5a29422382f0c2f05f7
MD5 9f7106a0bc3de457a3b52f0c86f4ee98
BLAKE2b-256 2efae2aa4a585ed47bc6ac86b68cf670e8bd5f43b43a8568775268c8880393f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 459e5cf7765f5f0e629144446e1e32f9a1b019d6b37ef28b5946df77b54a80be
MD5 780402b6bd7949645f26fcaa1cad3ac4
BLAKE2b-256 1671beb4400110c72484a2d0df611c1e6a7713d4606adcfd0e097b78df8a2bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 540cfa64c8c719046c80860bbddc46d109ba412a84a271d6fd9c844af4a3479f
MD5 5d85718210ca89cb6c7d82157de86fba
BLAKE2b-256 100cc8e5192d6671265d276379ef86dcc6eb826a5ac83b695a6d708fe7f89b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 708495d6cc4b4e028d4da0cd466049983085ac58d1cc0684935aa331e819033c
MD5 b651fdd6fc798a58015cfc3eb6fddd18
BLAKE2b-256 aee4bf379d05d5d4a5cfb810500e6c46923ea42b3e317cf708c21b5a1a3317f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb03013708929aa76d7414eec093ff0560a345d5fe47876bbe2a43f017d9f5a5
MD5 233b3b2ac4accc2ab5f02e885f214f56
BLAKE2b-256 b89b5aec89db69a5de523e2169c43ba846ff11e0bc2b8cdf76c6d4de440fa606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad8abf1a572bbb3584d3cf874c4c0737f98dd0ffa99d1fd6c1495761c67fa27b
MD5 82f86b96769fdbd74d36b456a6bad5f9
BLAKE2b-256 8647898199fbad5423dec0023e1ad22a430b52f310b101b2fa60557c7d0c7983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9633245248cc1f4b90fa93770fb6d0a970d32f8b271d9307d45c5a33ba027f7
MD5 64f7964b87b71e4a8b095727da7de991
BLAKE2b-256 7f4599528abe1cfb716e62e9475f27318da3691de6fbe9bbcc483e9032ab4597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47548863104f53fe7ce8a41c922e2d060ebd0ff20ca87e9975606e8aa39ff4b9
MD5 a73a63cc274a0845cd931f2695879560
BLAKE2b-256 b536e36d27510978d96afcfb0153b6dba9457a8b5675aadf60df140ae66c45ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ce09741f0b43aa3e3e3218a181f75bf84702fb22117bbea0262ac2d74663233
MD5 89c42718f498a4df1712d0d923158ce5
BLAKE2b-256 a943a76fa028dcdbfd31ec282821dfb34e50dade7de6e31208094d949457596e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 374d6b27f4c2d570f8f2a1067f288cffaa541364599658e21944d927cd66014a
MD5 2ef1f547a31c2c1189b280732b12281b
BLAKE2b-256 e5a88912fd40c61cbbe22eca0718f1e593ab23cb045ac082dc8ec7ab4ab3a4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 742e7df04314921cf90ea169f3b0311fbc26e3422c41cfc4c58c78809af1485f
MD5 ec7b89c9e10333857a3a7fd0b6b3103e
BLAKE2b-256 88d9dc8efa4f4f4be6e28a6b38bf7fa26188abcd58b9e8b349e8a5d8eb4f8f63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d35e92d9270aa7fd0390c38b42c00924291e5f0b51e45fd2d61fe39cd5e31790
MD5 a92646f86bddb88aab4d50bcc65ad168
BLAKE2b-256 0a14db38106895563cc4b42b9083b841c524675d3d44f61c3d3ac001a6215d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 9907780fbb92d70e2dd5f73f548b270b8fa3d5ae93ec3d1e47c738a35e168d2c
MD5 9afd3a682ea412749b4f12655fa75347
BLAKE2b-256 ef7e81ea538aaffca2491ad7dcdea8cd2e117c1dc8751e4eed7391ba446f31e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 b10cdfdce35c77131b49c267ea7f44d41dc0f83fc2e6b41c0db913686ec287b6
MD5 64cc52d2b5d12ad636c173b752c54507
BLAKE2b-256 f471b23f64cb35d9ddab0f2bbbe8872d3397d6d4bc643eebb1f3918d688d1db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 8bc0302422f3e7cb6f906174de35943680c877dc578a9fd984a617969a7a4809
MD5 e52bd770b3b6c48788d3a7bf3e0fee44
BLAKE2b-256 83b75e22fc80c3a30165da85c9641e00323b03fb9fe49c5aee43ebc0c313b792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 350aefc40054a9416d644f893d4ca07104dfcefdddf0f4766f8e12bba8f169de
MD5 a670c568a9dd4741d101166c90e0ed86
BLAKE2b-256 12e45d56d7136926f74a5cb7dcf512471c3cbcb759f5beb57fb1241371242b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 f6a3bb7dcc4abd0014983cea6c4157346da18be5e91eb11d3bbbc88f06288046
MD5 62c8a6a46b9f9482ff173d27ade8bfe0
BLAKE2b-256 64bff0338f4bb79e3450c0ead4d68fc74af4a7888793007b20c5e253cf7450b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9705a6497290cabbb76deda8a5838ab8e6fb3ab849e925444374be8e7b8fcf4
MD5 938232de467115d3f84af6a5ff4fdb08
BLAKE2b-256 b2ba87236664b465e14c26a51631ace2546c723c0fcdfd8703f15266fbdc71eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c2ee4f3dd15d52c52a8842380526799483a8ce87cc0cca0f933405c03d0bef2
MD5 f1f5988117207b5bb2943a2d6e6d4f39
BLAKE2b-256 ea827faeaf10b6bda60b19a96a5319158967ccb97a165f31eb0856ed5ab57911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fc01683c5eedffe39ed75be7a5776f983cafb5ff4b5616a673888346f638187b
MD5 99ccca782a9f66b56e68847baa7eb25b
BLAKE2b-256 0a481b0891bc30a151074ddce64564435d3b5b59cb2f280562b378b42fd31fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a759abcbdd5420d8d33935c261146cb1ffe0e176dc9ca2509bae8ec4585d7bc
MD5 e6b4113286d7e05b9b8f393a3d8b1793
BLAKE2b-256 3ca06dcb0918aa9b3a2d210a78e0083577369e680d5444edc64e2d9b64fbbb67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd790ad47b34efcd300c9ae3a321a867d535a0356ddc0ff13149e9db2fae8406
MD5 566ea6cb8c770350ee8b75115fa91b72
BLAKE2b-256 62d7e234f7bbe10c5b5543a3a2914c45d8f85eb98cb4de63960136e049cc7971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c54c77d4b0fa88680c487036b0d410bde65918b877cefb0a1c48e76837a0c513
MD5 6ea69da522c417dd407bd3ae835a1488
BLAKE2b-256 3367eafb2f997a1b46e9e1907f5ddd1840fcbe63a42109055f225e7083b2112f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 616d5bb1d7257b1d3d5cff1848d52b6f6fb916fdc99e1ee87696858f595d4e8c
MD5 209ab8fe2fd2a4f4a1367ad3e78e8de0
BLAKE2b-256 d74c2e2082627f1fb130eb92472fb12fbea7c85a39e54308d1c5b527322f38f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 805e11dd9701030d214e94293e5ba2b6cf43e4428eff486fb3c79dec73fdc8b3
MD5 41f4c658d617adb600d2572f18bd7962
BLAKE2b-256 33045b1cb1f3c3797ccfbf9d279cd3fddf9249db201e540eded5c3e77454defe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 c9b67d3fb66e44c00d4bfed00298d41c09f5a935b52d5a39ef88f2ffec341b02
MD5 4b853cb21c97feb216db8e792f08882c
BLAKE2b-256 a723644cf61a786e0655d54914fd7cf0f921dc287a624b96024d6e1df8cfca50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 7633de1012a8086272f55cc92fc3a86dc3319b6b9edf35510727b7375c971123
MD5 17eb2334e02ffb98483ea04477f7e9c3
BLAKE2b-256 6f664970ba0b63a7c20d450c06c261afca320990dfda63cf2ef37c0c7ecb6f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 0f649342cab8d129fe026a8ddeb82f817d83076dd1c17d3b9ae28ebf5f9eb12e
MD5 ce69bf8f083eb3ca9728ea946762164f
BLAKE2b-256 47105ee93884c298513aa7a4780ed1d024b08cb3b305be3bd0f6d389352c5d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 c9aba07fd40ae271ebb49fc7ec671c48e3423fc88c7b4623782ea693ae050a03
MD5 d4bc5c281dcd521ad9f0f48f613df740
BLAKE2b-256 c2212cb672292ed8e900cb7d3f3c5b6ed94ad184a9bf7dfcaa41fcc97d221e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp310-cp310-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 cac2e6e775b1c3b81a0266128e5dae8cd2727ea9d38fcbf3f2b552117b3ddfb3
MD5 8e9ff74176587c07e0c22926c33e0733
BLAKE2b-256 1c668034b9447b8eed594cc88fbc81bc5669c80fe8cbfd08c92a416e6165c5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d4f8a4ded9121a40c15f533cfa52114f057713a46e61f0557009d1737ac7c221
MD5 61c595631d3ac43ed673c4510e50930c
BLAKE2b-256 9bacd85fe95d0c0abaee050bb5d65ccae6ab417a808cf2f8a4cbb4714324e3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3f7312d07fc038cb15f234311096044196148131b2bab0075a44250498ba7e8
MD5 c725230ba8b8b5b1478a3168aea12fc9
BLAKE2b-256 15ded530cd7c4cf6b4f62ceafb8da3bfe123248a8c7234abd82da27e2592bc6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca0b4da8311c0d455b2e5ba9e8f1eedbd2627d72500af61f346d84145f55bcee
MD5 0aa7fdffc3a971105d57b65e027dca77
BLAKE2b-256 aac8fdd5659966f4437907b979935d5d2819c2113d7c9b28f2b429f3f3f0f207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8890217ecd5a4182417336458b0e4c1a2643c16d1df40e37df32d9cff84d0547
MD5 ff7c076781f003cc95e5119b325b863a
BLAKE2b-256 1bc84fc243604f07d209e067cb666e2e575bc571360160fce12e6ba200525b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e1cb036677dcdf1efa2a94cd134af418d3363a8fc8b571373284e90745569d6
MD5 c2f2c08fd5569c33f6139533e2cc1051
BLAKE2b-256 eaba4e7ab89f0ec6930b92d0fdcaf0dc7c9a8d51156dbfd3fa9b8439ff4d9ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a8471b2966a113cb4b9e9c1c72d447f979848d1762dcabe4fe3a44afaa1da03c
MD5 751b4dbe90553f62a41e5436a3a3676a
BLAKE2b-256 d966869062f193f8a1541bd4e0835817da8aa685c4537bf662df9bc2429f3d8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 1e5dcb3e190b29380625ffb54b547532ba27ff7722c63355dd0c02c855c1bcff
MD5 e0790e42d0bd5eb9245bcbcccb1a85c7
BLAKE2b-256 fec4ac2f77763667ed7152daca172a3304fdfc24b32afd0b4ebe5e85846eb264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 3ab128ef286c11ae6944a6ba251207c10c09dbe8dae783c84b53dc2df955b790
MD5 aaa014f8df7ba92bc4bfdb235005619e
BLAKE2b-256 1d7b2628660d7921d08d266444f35d84132fdf6f5b4be4c0d077d5bc7833e1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 5dbd7a47d8044d920d3b33d7e0d2a78cd81ff69237f659a215178f8c1d93783a
MD5 15fd078568510f8302da604fc569c78a
BLAKE2b-256 a88e657309c6966c51106f3fd803a72fdfec734313c8f953acf2b8882579551d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 43a88bf55b22f82bc725523fa1f71f8ab9d17893b37e1830c0c55f8aea1904f9
MD5 97f67ddb52d570d829ef72ca3a4a1599
BLAKE2b-256 e3deede1ef418c54d2cde7c8f4fc9d7830f8442cf1eff2aa42aaafbad0cc72b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp39-cp39-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 bc50625da6aa3243593b32d69d8867835cc51689c785007bc223c85cf928edce
MD5 3acd21991c9af1ca08642f7cc0aadc11
BLAKE2b-256 6cf9f0d4efa26f57f402ce9e9a68c07d78258e6e8cd1502c75e25a1f37852f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4edbb1cccc41ec1efff6d3d9033a980d268fa141fe783d4dd5675ec88f122a1
MD5 6ad753b2a22751709cecad3b68112bb8
BLAKE2b-256 503ec069360cb69bc5907ca0d1dc3bd30955e781a1a344cd2076225546cdf4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8bfc9c3b9e4b418898963fa7c4049bdeffca5f12b441666b217d6205d0ce429
MD5 fa5416aed411d68b5cb8efc07be37f76
BLAKE2b-256 d7a47d203575bce6b1ceaeb5a5a4df7a7907820e9348e0cbf5d3f0528f3bb92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a85af1fdd8bda3c484f1a25830691218b6c0240d7cf9b0bb128243d83cec68f
MD5 fe92e087ca849431f7a862da5289a572
BLAKE2b-256 226ffa30ea5394226f4f6a670d6b62561f4708296f168a01d8b97423ac73c663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a0ae27c4640f4179bb649a8da898e1fcb9f5844aa4342a452267f535ea434ea
MD5 5612831a7307401bf1a2dc8dc8d32097
BLAKE2b-256 9d6df47bc52f6e9078d373543222a3dff9173bb980125eb4ad33758ea69a655f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 61b5ac24394b208496131f3d998601b68fa1560a909fd520cb92fd784d70de04
MD5 a98a0f2a55751a5154730938686b5dd8
BLAKE2b-256 d28e54ea435f6bfc1d39e5f231d17bdd93bf6c15b2aa5436163e23833f351de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_s390x.whl
Algorithm Hash digest
SHA256 a8f2f0567403459a4f23d81294948470aa87220445260160d3ae22fd797e6117
MD5 9b01e8d6ef448ae3924b3db2435cc3f3
BLAKE2b-256 e7ae331b9a0360eac95e825edd8cc433db61a9a1698fccec008a62d836f63d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_ppc64le.whl
Algorithm Hash digest
SHA256 c1ad47ee155f5da7ac7b56699cf63cb4b595f844d806bdc2b96d09b5827bee11
MD5 035fdfc44ad729f9a9e8a6598e7a642e
BLAKE2b-256 343b7da67a91b0d452152049edae371ebe41464ac70fc5a6dfec0feac1742c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 a1429f7185e9d798d515e8b85f21901c614b3562da4fa1a22deec2fa86b4f61e
MD5 2ef53bc7866f814b2278e75c67373096
BLAKE2b-256 b51356736a5ff03e565cde8b582d178a2ce429b7a0777e9e72832853cadb1339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_armv7l.whl
Algorithm Hash digest
SHA256 74078e0479c8fed3e726ff716961e8d7158aa0a3ed31975cf4e2c22e8a7b822f
MD5 3f5c6184dc4c334cb0c541ce4bdf6a62
BLAKE2b-256 c93aa559b0eadb2ab3d0976158a2a50fa0fbfccb49d28ed9ad186006b6c8ef93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sentinel1decoder-1.1.0-cp38-cp38-manylinux_2_34_aarch64.whl
Algorithm Hash digest
SHA256 a1bc6aa49c842cf48bf6f26726eea2401ed1800e9e7d9269d9187d73df0275b2
MD5 0c03a6fec39442ef9bd6a214cf6b2148
BLAKE2b-256 2b3fe239a97e8409cb05eb6fcc68abdd72d950dabc4559b7cb263e6f7eeff7b0

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