Revision baed9049556d50b7193b6e2400c01b9aa0f1a590 authored by Yujie Zheng on 02 December 2022, 23:05:52 UTC, committed by GitHub on 02 December 2022, 23:05:52 UTC
+ update `objects.stack.ifgramStack.get_sequential_closure_phase()`:
   - prefer the use of wrapped phase, only use unwrapped phase when no wrapped phase is found
   - eliminates the need for a reference point for the computation of the wrapped closure phase

+ closure_phase_bias: give some info regarding the necessity of a reference point for action quick_estimate and estimate.

+ docs/install: fix the order of `conda activate mintpy` and `mamba install isce2`
1 parent 4fcc33d
Raw File
environment.yml
# create environment : conda env create -f environment.yml
# update dependencies: conda env update -f environment.yml
# remove environment : conda env remove -n mintpy
# enter  environment : conda activate mintpy
# exit   environment : conda deactivate
name: mintpy
channels:
  - conda-forge
  - defaults
dependencies:
  - python>=3.6
  - pip
  - cartopy
  - cvxopt
  - dask>=1.0
  - dask-jobqueue>=0.3
  - gdal>=3      # for ISCE, ARIA, FRInGE, HyP3, GMTSAR users
  - h5py
  - joblib
  - lxml
  - matplotlib
  - numpy
  - pre-commit   # for developers
  - pyaps3>=0.3
  - pykml>=0.2
  - pyproj
  - pyresample
  - pysolid
  - rich
  - scikit-image
  - scipy
back to top