API Reference

pysarflow

It includes functions for handling Ground Range Detected (GRD) datasets.

sum_grd(a, b)

Dockstring here.

Source code in pysarflow/grd.py
5
6
7
def sum_grd(a, b):
    """Dockstring here."""
    return a + b

It includes functions for handling Single Look Complex (SLC) datasets.

sum_slc(a, b)

Dockstring here.

Source code in pysarflow/slc.py
6
7
8
def sum_slc(a, b):
    """Dockstring here."""
    return a + b

It includes common functionalities that would be used in other modules.