Skip to main content

geozl

License: BSD-3-Clause Coverage Platform C11 Built on OpenZL

What is OpenZL and GeoZL?

OpenZL is a new compression framework that treats compression as a graph of codecs. Each frame carries the recipe needed to decode it, which lets a universal OpenZL decoder follow the graph without knowing how the data was originally encoded.

That model works well for one-dimensional streams, but it does not know that a raster has rows, columns, neighbours, or spatial structure. geozl adds that missing spatial layer.

A geozl codec is an OpenZL graph node that understands raster tiles. It transforms a typed numeric stream, stores the metadata needed to reverse that transform in the codec header, and lets the rest of the OpenZL graph continue as usual.

If you want to implement a new codec, see docs/adding-a-codec.md.

Status

geozl is experimental.

[!WARNING] geozl codecs are not part of OpenZL.

They are registered at runtime as OpenZL custom transforms and use CTids in the 0x72D700-0x72D7FF range. A frame that uses geozl codecs can only be decoded by a reader that has geozl registered. Frames that use only built-in OpenZL codecs remain portable OpenZL frames.

Install

pip install geozl

Example

geozl has two entry points: a high-level API that compresses a tile in one call, and a low-level API that places individual codecs in an OpenZL graph.

High-level API

geozl.compress takes a tile and returns a frame. With the default method it sweeps every predictor and keeps the smallest one.

import numpy as np
import geozl

tile = np.random.randint(0, 4096, (1024, 1024), dtype=np.uint16)

frame = geozl.compress(tile)                 # sweep, keep the smallest frame
frame = geozl.compress(tile, method="med")   # or name one predictor
frame = geozl.compress(tile, max_error=2)    # near-lossless, absolute bound

Low-level API

For anything else, place the codecs in an openzl.ext graph yourself, alongside regular OpenZL nodes.

import openzl.ext as zl
import geozl

c = zl.Compressor()
g = zl.graphs.Compress()

g = zl.nodes.Zigzag()(c, g)
g = geozl.lossless.Planar(width=512)(c, g)

c.select_starting_graph(g)

Decoding

Either way, a reader has to register the geozl decoders before it can follow the frame.

import openzl.ext as zl
import geozl

d = zl.DCtx()
geozl.register_decoders(d)
tile = d.decompress(frame)[0].content.as_nparray()

Codecs

geozl currently provides two codec families:

  • near-lossless codecs, under geozl.lossy
  • lossless codecs, under geozl.lossless

Both families are registered as OpenZL custom codecs and can be chained with other OpenZL graph nodes.

The call column shows the Python call used to place the codec in a graph.

Near-lossless codecs

Near-lossless codecs quantize the tile once, then store enough information in the frame to report and bound the reconstruction error. A near-lossless frame is no longer bit-exact, it declares the bound it holds to instead.

A frame carries at most one near-lossless codec, as the head transform, so the loss happens once and every stage after it is lossless.

codec call CTid error
quant_linear geozl.lossy.QuantLinear(max_error, dtype) 0x72D780 every value reconstructs within max_error, an absolute tolerance

Lossless codecs

Lossless codecs are bit-exact transforms over a raster tile. After decoding, the reconstructed tile is identical to the original input.

Predictors replace each sample with its residual against a prediction from neighbours the decoder already holds. They take the row width, and one successor.

codec call CTid what it does
delta_w geozl.lossless.DeltaW(width) 0x72D701 stores each value as a difference from its west neighbour
delta_n geozl.lossless.DeltaN(width) 0x72D702 stores each value as a difference from its north neighbour
planar geozl.lossless.Planar(width) 0x72D703 predicts each pixel from W + N - NW
med geozl.lossless.Med(width) 0x72D705 uses the median edge detector predictor
average geozl.lossless.Average(width) 0x72D706 predicts from the floor average of west and north neighbours
wp_static geozl.lossless.WpStatic(width) 0x72D707 fits a static weighted predictor and stores the weights in the frame

Splits cut one stream into two lanes, so they take two successors, one per lane, and each lane can go on to its own graph.

codec call CTid lanes what it does
deinterleave geozl.lossless.Deinterleave() 0x72D704 both to one successor separates a two-lane interleaved stream; for complex, view the tile through geozl.lossless.component_dtype first, OpenZL has no complex type

License

BSD-3-Clause


Made with ♥ by

Asterisk Labs

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

geozl-0.7.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.1 MB view details)

Uploaded Python 3manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

geozl-0.7.6-py3-none-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded Python 3macOS 11.0+ ARM64

File details

Details for the file geozl-0.7.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for geozl-0.7.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3298efb6248e91f65f9cba6b2254b0a9e5b3fc262390b75ef895842a07e2069d
MD5 dbe9fe483c8cd9365b4f5fd81573ad69
BLAKE2b-256 d066c421515dbf5af1492839d30b8c446edb5eb9e27781f92f1277232bdb0066

See more details on using hashes here.

Provenance

The following attestation bundles were made for geozl-0.7.6-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on asterisk-labs/geozl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file geozl-0.7.6-py3-none-macosx_11_0_arm64.whl.

File metadata

  • Download URL: geozl-0.7.6-py3-none-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: Python 3, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for geozl-0.7.6-py3-none-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbd458cef3973e33a4711c50b1a5097814024f24892861dbe986a03a9dae3882
MD5 c9483cc5b3a063d24d1f9261031b303f
BLAKE2b-256 18d1ee7936420419491fb74000cc99cc70febf8bbda22432469cd1c9dfaa49e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for geozl-0.7.6-py3-none-macosx_11_0_arm64.whl:

Publisher: release.yml on asterisk-labs/geozl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page