Quick Start

Minimal Example

# 1) decode
sarpyx decode --input /data/product.dat --output /data/decoded

# 2) focus
sarpyx focus --input /data/decoded/product.zarr --output /data/focused

CLI Usage

sarpyx --help
sarpyx decode --help
sarpyx focus --help
sarpyx shipdet --help
sarpyx worldsar --help

Common Workflow

  1. Prepare input products and grid files.
  2. Run decode/focus (or mission pipeline via worldsar).
  3. Export products and inspect metrics.
  4. Optionally upload outputs using sarpyx upload.

Python API Minimal

from sarpyx.utils.zarr_utils import ZarrManager

manager = ZarrManager("/data/focused/product.zarr")
arr = manager.load()
print(arr.shape)

Behavior and imports above are inferred from implementation and current public exports.