Module: sarpyx.processor.data.writers
File: sarpyx/processor/data/writers.py
SAR data writers for various output formats. This module contains writers for exporting processed SAR data to different formats including GeoTIFF, HDF5, and binary formats.
Exported Symbols (__all__)
write_geotiffwrite_hdf5write_binary
Public Functions (3)
write_geotiff function
Writer for GeoTIFF format.
File location: sarpyx/processor/data/writers.py:8
Signature
write_geotiff()
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
- | - | no | - | No explicit public parameters; behavior inferred from implementation. |
Return Type
inferred from implementation
inferred from implementation.
Exceptions
None explicitly documented; inferred from implementation.
Side Effects
- inferred from implementation
Example Usage
from sarpyx.processor.data.writers import write_geotiff
result = write_geotiff()
Edge Cases
No explicit edge-case section found; behavior is inferred from implementation.
write_hdf5 function
Writer for HDF5 format.
File location: sarpyx/processor/data/writers.py:12
Signature
write_hdf5()
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
- | - | no | - | No explicit public parameters; behavior inferred from implementation. |
Return Type
inferred from implementation
inferred from implementation.
Exceptions
None explicitly documented; inferred from implementation.
Side Effects
- inferred from implementation
Example Usage
from sarpyx.processor.data.writers import write_hdf5
result = write_hdf5()
Edge Cases
No explicit edge-case section found; behavior is inferred from implementation.
write_binary function
Writer for binary formats.
File location: sarpyx/processor/data/writers.py:16
Signature
write_binary()
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
- | - | no | - | No explicit public parameters; behavior inferred from implementation. |
Return Type
inferred from implementation
inferred from implementation.
Exceptions
None explicitly documented; inferred from implementation.
Side Effects
- inferred from implementation
Example Usage
from sarpyx.processor.data.writers import write_binary
result = write_binary()
Edge Cases
No explicit edge-case section found; behavior is inferred from implementation.
Public Classes (0)
No public classes detected.