├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── matrix-tests.yaml │ └── package.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── ci ├── environment-dev-py3.7.yml ├── environment-dev-py3.8.yml └── environment-dev-py3.9.yml ├── dinosar ├── __init__.py ├── archive │ ├── __init__.py │ ├── asf │ │ └── __init__.py │ └── plot │ │ └── __init__.py ├── cli │ ├── __init__.py │ ├── get_inventory_asf.py │ ├── plot_inventory_asf.py │ └── prep_topsApp_local.py └── isce │ ├── __init__.py │ ├── amplitude-cog.cpt │ ├── coherence-cog.cpt │ ├── topsApp-dinosar-template.yml │ └── unwrapped-phase-cog.cpt ├── docker ├── isce-2.2.0 │ ├── Dockerfile │ ├── SConfigISCE │ └── build.sh ├── isce-2.3.1 │ ├── Dockerfile │ ├── SConfigISCE │ └── build.sh ├── isce-2.3.1_gpu │ ├── Dockerfile │ ├── SConfigISCE │ └── build.sh ├── isce-2.3.2 │ ├── Dockerfile │ ├── SConfigISCE │ └── fetch_and_run.sh ├── isce-2.3.3 │ ├── Dockerfile │ ├── SConfigISCE │ └── entrypoint.sh ├── isce-2.4.0 │ ├── Dockerfile │ ├── SConfigISCE │ └── fetch_and_run.sh ├── isce-2.4.1 │ ├── Dockerfile │ ├── SConfigISCE │ └── fetch_and_run.sh ├── isce-2.5.2 │ ├── Dockerfile │ ├── SConfigISCE │ └── fetch_and_run.sh └── readme.md ├── docs ├── Makefile ├── api.rst ├── conf.py ├── contributing.rst ├── environment-docs.yml ├── examples.rst ├── index.rst ├── install.rst ├── quickstart.rst └── topics │ ├── cloud-computing.rst │ └── index.rst ├── environment-poetry.yml ├── poetry.lock ├── pyproject.toml ├── readthedocs.yml └── tests ├── data ├── UnionGap.dbf ├── UnionGap.kml ├── UnionGap.prj ├── UnionGap.qpj ├── UnionGap.shp ├── UnionGap.shx ├── poeorb.txt ├── query.geojson ├── query_S1A.json ├── query_S1B.json ├── snwe.json ├── topsApp-batch-uniongap.yml └── topsApp-template-uniongap.yml ├── test_asf.py └── test_isce.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/matrix-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.github/workflows/matrix-tests.yaml -------------------------------------------------------------------------------- /.github/workflows/package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.github/workflows/package.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/README.md -------------------------------------------------------------------------------- /ci/environment-dev-py3.7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/ci/environment-dev-py3.7.yml -------------------------------------------------------------------------------- /ci/environment-dev-py3.8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/ci/environment-dev-py3.8.yml -------------------------------------------------------------------------------- /ci/environment-dev-py3.9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/ci/environment-dev-py3.9.yml -------------------------------------------------------------------------------- /dinosar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/__init__.py -------------------------------------------------------------------------------- /dinosar/archive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/archive/__init__.py -------------------------------------------------------------------------------- /dinosar/archive/asf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/archive/asf/__init__.py -------------------------------------------------------------------------------- /dinosar/archive/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/archive/plot/__init__.py -------------------------------------------------------------------------------- /dinosar/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Dinosar.""" 2 | -------------------------------------------------------------------------------- /dinosar/cli/get_inventory_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/cli/get_inventory_asf.py -------------------------------------------------------------------------------- /dinosar/cli/plot_inventory_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/cli/plot_inventory_asf.py -------------------------------------------------------------------------------- /dinosar/cli/prep_topsApp_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/cli/prep_topsApp_local.py -------------------------------------------------------------------------------- /dinosar/isce/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/isce/__init__.py -------------------------------------------------------------------------------- /dinosar/isce/amplitude-cog.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/isce/amplitude-cog.cpt -------------------------------------------------------------------------------- /dinosar/isce/coherence-cog.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/isce/coherence-cog.cpt -------------------------------------------------------------------------------- /dinosar/isce/topsApp-dinosar-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/isce/topsApp-dinosar-template.yml -------------------------------------------------------------------------------- /dinosar/isce/unwrapped-phase-cog.cpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/dinosar/isce/unwrapped-phase-cog.cpt -------------------------------------------------------------------------------- /docker/isce-2.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.2.0/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.2.0/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.2.0/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.2.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.2.0/build.sh -------------------------------------------------------------------------------- /docker/isce-2.3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.3.1/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.3.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1/build.sh -------------------------------------------------------------------------------- /docker/isce-2.3.1_gpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1_gpu/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.3.1_gpu/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1_gpu/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.3.1_gpu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.1_gpu/build.sh -------------------------------------------------------------------------------- /docker/isce-2.3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.2/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.3.2/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.2/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.3.2/fetch_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.2/fetch_and_run.sh -------------------------------------------------------------------------------- /docker/isce-2.3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.3/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.3.3/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.3/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.3.3/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.3.3/entrypoint.sh -------------------------------------------------------------------------------- /docker/isce-2.4.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.0/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.4.0/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.0/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.4.0/fetch_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.0/fetch_and_run.sh -------------------------------------------------------------------------------- /docker/isce-2.4.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.1/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.4.1/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.1/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.4.1/fetch_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.4.1/fetch_and_run.sh -------------------------------------------------------------------------------- /docker/isce-2.5.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.5.2/Dockerfile -------------------------------------------------------------------------------- /docker/isce-2.5.2/SConfigISCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.5.2/SConfigISCE -------------------------------------------------------------------------------- /docker/isce-2.5.2/fetch_and_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/isce-2.5.2/fetch_and_run.sh -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/environment-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/environment-docs.yml -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/topics/cloud-computing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/topics/cloud-computing.rst -------------------------------------------------------------------------------- /docs/topics/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/docs/topics/index.rst -------------------------------------------------------------------------------- /environment-poetry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/environment-poetry.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /tests/data/UnionGap.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.dbf -------------------------------------------------------------------------------- /tests/data/UnionGap.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.kml -------------------------------------------------------------------------------- /tests/data/UnionGap.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.prj -------------------------------------------------------------------------------- /tests/data/UnionGap.qpj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.qpj -------------------------------------------------------------------------------- /tests/data/UnionGap.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.shp -------------------------------------------------------------------------------- /tests/data/UnionGap.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/UnionGap.shx -------------------------------------------------------------------------------- /tests/data/poeorb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/poeorb.txt -------------------------------------------------------------------------------- /tests/data/query.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/query.geojson -------------------------------------------------------------------------------- /tests/data/query_S1A.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/query_S1A.json -------------------------------------------------------------------------------- /tests/data/query_S1B.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/query_S1B.json -------------------------------------------------------------------------------- /tests/data/snwe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/snwe.json -------------------------------------------------------------------------------- /tests/data/topsApp-batch-uniongap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/topsApp-batch-uniongap.yml -------------------------------------------------------------------------------- /tests/data/topsApp-template-uniongap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/data/topsApp-template-uniongap.yml -------------------------------------------------------------------------------- /tests/test_asf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/test_asf.py -------------------------------------------------------------------------------- /tests/test_isce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottyhq/dinosar/HEAD/tests/test_isce.py --------------------------------------------------------------------------------