gitextract_9rn0un2a/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ ├── conda-install.yml │ └── python-publish.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── appveyor.yml ├── datacube_prepare.ipynb ├── docs/ │ ├── Makefile │ ├── make.bat │ └── source/ │ ├── about/ │ │ ├── changelog.rst │ │ ├── projects.rst │ │ ├── publications.rst │ │ └── references.rst │ ├── api/ │ │ ├── ancillary.rst │ │ ├── archive.rst │ │ ├── auxdata.rst │ │ ├── datacube.rst │ │ ├── drivers.rst │ │ ├── examine.rst │ │ ├── figures/ │ │ │ ├── snap_geocode.graphml │ │ │ └── workflow_readme.txt │ │ ├── gamma/ │ │ │ ├── api.rst │ │ │ ├── auxil.rst │ │ │ ├── dem.rst │ │ │ ├── error.rst │ │ │ ├── figures/ │ │ │ │ └── gamma_geocode.graphml │ │ │ ├── index.rst │ │ │ └── util.rst │ │ ├── sentinel-1.rst │ │ └── snap.rst │ ├── conf.py │ ├── general/ │ │ ├── DEM.rst │ │ ├── OSV.rst │ │ ├── configuration.rst │ │ ├── filenaming.rst │ │ ├── installation.rst │ │ ├── logging.rst │ │ ├── processing.rst │ │ └── snap.rst │ ├── index.rst │ └── references.bib ├── environment-dev.yml ├── environment-doc.yml ├── environment.yml ├── pyproject.toml ├── pyroSAR/ │ ├── ERS/ │ │ ├── __init__.py │ │ ├── auxil.py │ │ └── mapping.py │ ├── S1/ │ │ ├── __init__.py │ │ ├── auxil.py │ │ ├── linesimplify.py │ │ └── polysimplify.py │ ├── __init__.py │ ├── ancillary.py │ ├── archive.py │ ├── auxdata.py │ ├── config.py │ ├── datacube_util.py │ ├── drivers.py │ ├── examine.py │ ├── gamma/ │ │ ├── __init__.py │ │ ├── api.py │ │ ├── auxil.py │ │ ├── dem.py │ │ ├── error.py │ │ ├── parser.py │ │ ├── parser_demo.py │ │ └── util.py │ ├── install/ │ │ ├── download_egm96_15.gtx.sh │ │ ├── download_testdata.sh │ │ └── install_deps.sh │ ├── patterns.py │ ├── snap/ │ │ ├── __init__.py │ │ ├── auxil.py │ │ ├── data/ │ │ │ ├── collect_suffices.py │ │ │ ├── snap.auxdata.properties │ │ │ └── snap.suffices.properties │ │ ├── recipes/ │ │ │ ├── base.xml │ │ │ └── blank.xml │ │ └── util.py │ └── xml_util.py ├── readthedocs.yml ├── requirements-dev.txt ├── requirements.txt └── tests/ ├── conftest.py ├── data/ │ ├── ASA_IMS_1PNESA20040703_205338_000000182028_00172_12250_00001672562030318361237.N1 │ ├── S1A__IW___A_20150309T173017_VV_grd_mli_geo_norm_db.tif │ ├── S1A__IW___A_20150309T173017_VV_grd_mli_geo_norm_db.tif.aux.xml │ ├── SAR_IMP_1PXESA19960808_205906_00000017G158_00458_26498_2615.E1 │ ├── archive_outdated.csv │ ├── dem.par │ └── mli.par ├── installtest_gdal_geos.py ├── installtest_ogr_sqlite.py ├── installtest_spatialite.py ├── test_ancillary.py ├── test_archive.py ├── test_auxdata.py ├── test_config.py ├── test_drivers.py ├── test_examine.py ├── test_gamma.py ├── test_gamma_args.py ├── test_license.py ├── test_osv.py ├── test_snap.py ├── test_snap_exe.py └── test_xml_util.py