https://github.com/insarlab/MintPy
Raw File
Tip revision: 81f9ff0c29675c992927c231ff0fb31d6bc34125 authored by Zhang Yunjun on 14 July 2020, 20:14:24 UTC
wrap-up before new release
Tip revision: 81f9ff0
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:
        - Example datasets: demo_dataset.md
        - Example directory structure: dir_structure.md
        - Example template files: examples/input_files/README.md
        - Parallel processing with Dask: dask.md
        - Tutorials in Jupyter Notebook: https://github.com/insarlab/MintPy-tutorial
    - Output:
        - Google Earth KMZ: google_earth.md
        - HDF-EOS5: hdfeos5.md
        - QGIS: QGIS.md
    - API Documentation:
        - Attributes: api/attributes.md
        - Colormaps: resources/colormaps/README.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