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
.pre-commit-config.yaml
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
ci:
  autofix_prs: false

fail_fast: true

repos:
  - repo: https://github.com/pre-commit/pre-commit-hooks
    rev: "v4.4.0"
    hooks:
      - id: check-added-large-files
        args: ['--maxkb=20']
        exclude_types: [image]
        exclude: src/mintpy/data/plate_boundary
      - id: check-ast
      - id: check-case-conflict
      - id: check-docstring-first
      - id: check-merge-conflict
      - id: check-json
      - id: check-toml
      - id: check-yaml
      - id: debug-statements
      - id: end-of-file-fixer
      - id: mixed-line-ending
      - id: trailing-whitespace
        exclude: tests/data/

  - repo: https://github.com/PyCQA/isort
    rev: "5.12.0"
    hooks:
      - id: isort
        name: sort imports
        args: ['--multi-line=VERTICAL_HANGING_INDENT',
               '--trailing-comma',
               '--combine-as']

  - repo: https://github.com/asottile/pyupgrade
    rev: "v3.4.0"
    hooks:
      - id: pyupgrade
        name: modernize python
        args: ['--py36-plus']


  ############################################################
  #- repo: https://github.com/psf/black
  #  rev: "22.6.0"
  #  hooks:
  #    - id: black

  #- repo: https://github.com/PyCQA/flake8
  #  rev: "5.0.4"
  #  hooks:
  #    - id: flake8

  #- repo: https://github.com/pre-commit/mirrors-mypy
  #  rev: "v0.971"
  #  hooks:
  #    - id: mypy

  #- repo: https://github.com/hadialqattan/pycln
  #  rev: "v2.1.1"
  #  hooks:
  #    - id: pycln

  #- repo: https://github.com/PyCQA/pydocstyle
  #  rev: "6.1.1"
  #  hooks:
  #    - id: pydocstyle
  #      additional_dependencies: [toml]
  #      exclude: test

  #- repo: https://github.com/sirosen/texthooks
  #  rev: "0.3.1"
  #  hooks:
  #    - id: fix-ligatures
  #    - id: fix-smartquotes
back to top