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
- Prepare input products and grid files.
- Run decode/focus (or mission pipeline via worldsar).
- Export products and inspect metrics.
- 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.