Revision 6cbbf296af17bba3fbf511f57d589af495abc5ad authored by Zhang Yunjun on 24 May 2023, 11:08:10 UTC, committed by GitHub on 24 May 2023, 11:08:10 UTC
+ `diff.py`:
   - support the differencing between a *.unw (or offset file with FILE_TYPE of displacement) file and a time-series file, as used frequently in phase correction procedures, by adding a sub-function `diff_ifgram_and_timeseries()`
   - split `diff_timeseries()` and `diff_ifgram_stack()` out of `diff_file()` for clarity.
   - prepare isce metadata file, to be consistent with mask.py and subset.py

+ call `diff.py` to handle the correction procedure in the following scripts:
   - iono_tec.py
   - legacy/tropo_pyaps.py
   - solid_earth_tides.py
   - tropo_gacos.py
   - tropo_pyaps3.py

+ `cli/geocode.py`: if `--lat-file` is specified, honor this manually set file as the default lookupFile, rather than searching for the default file patterns, which could be NOT consistent with input files.
1 parent a52256d
Raw File
mkdocs.yml
site_name: MintPy
site_url: https://github.com/insarlab/MintPy
site_description: Miami InSAR Time-series software in Python
site_author: Zhang Yunjun, Heresh Fattahi
repo_url: https://github.com/insarlab/MintPy/
google_analytics: ['UA-104225904-1', 'mkdocs.org']

theme:
    name: readthedocs
    highlightjs: true
    hljs_languages:
        - yaml
        - rust

markdown_extensions:
    - smarty
    - toc:
        permalink: "#"
        baselevel: 2
        separator: "_"
    - sane_lists

nav:
    - Home: README.md
    - User Guide:
        - Installation: installation.md
        - Example datasets: demo_dataset.md
        - Example directory structure: dir_structure.md
        - Example template files: templates/README.md
        - Parallel processing with Dask: dask.md
        - Tutorials in Jupyter Notebook: https://github.com/insarlab/MintPy-tutorial
        - Frequently Asked Questions: FAQs.md
    - Output:
        - Google Earth KMZ: google_earth.md
        - HDF-EOS5: hdfeos5.md
        - QGIS: QGIS.md
    - API Documentation:
        - Attributes: api/attributes.md
        - Colormaps: api/colormaps.md
        - Coordinates: api/coord.md
        - Data structure: api/data_structure.md
        - Docker: docker.md
        - Documents generation: api/doc_generation.md
        - Module hierarchy: api/module_hierarchy.md
    - About:
        - Contributing: CONTRIBUTING.md
        - Code of conduct: CODE_OF_CONDUCT.md
        - References: references.md
back to top