Revision 4ee67f9ac5ed09809c15996820ec22102e9aeff0 authored by Zhang Yunjun on 26 July 2019, 05:13:14 UTC, committed by GitHub on 26 July 2019, 05:13:14 UTC
* Update contributing docs

* connectComponent: byte to int16

prep_aria.py and objects/stackDict.py:

+ change the data type of connectComponent dataset from BYTE to INT16 to support up to 32767 reliable regions/connected components for single interferograms.

+ turn ON compression of "lzf" while writing connectComponent to HDF5 file to save disk space

prep_aria.py:
+ add FILE_TYPE metadata
+ add MODIFICATION_TIME metadata to 3D datasets
+ turn ON chunks while writing HDF5 to speedup file IO
+ turn ON maxshape for 3D datasets to support updatable ifgramStack.h5: feature not used anyway yet; just to be consistent with mintpy.

update default plot settings for connectComponent dataset in view.py and  plot.py
1 parent 4745acf
Raw File
readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
#sphinx:
#  configuration: docs/conf.py

# Build documentation with MkDocs
mkdocs:
  configuration: mkdocs.yml

# Optionally build your docs in additional formats such as PDF and ePub
formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.6
  install:
    - requirements: docs/requirements.txt

formats: []
back to top