You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
read/write/resample: improved support for GDAL complex file (#1000)
+ `readfile`:
- `read_gdal()`: add `.cos` to the know list (for TerraSAR-X SLC data)
- `read_binary_file()`: support returning complex data using `datasetName=complex`.
- `read_binary_file()`: move `cpx_band` checking to expand its applicability from isce2 to generic files, including GDAL complex files.
+ `resample`: adjust size calculation in block-by-block IO for complex data type
+ `save_gdal`:
- refactor `array2raster()` to `write_gdal()`, to be consistent with `utils.writefile.write()` in terms of input args.
- use `readfile.DATA_TYPE_NUMPY2GDAL` to support non-float32 types, such as complex64
+ docs:
- update Yunjun's contact email from Gmail to Outlook
- README: simplify styles for Yunjun et al. (2019)
- CONTRIBUTING: add links to the to-do list and roadmap
Copy file name to clipboardExpand all lines: docs/CONTRIBUTING.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,3 +108,7 @@ It takes about 15 mins to finish.
108
108
## Things you should NOT do ##
109
109
110
110
(For anyone with push rights to github.com/insarlab/MintPy) Never modify a commit or the history of anything that has been committed to the `main` branch.
111
+
112
+
## Looking for ideas to contribute? ##
113
+
114
+
Feel ready and look for something to try? Check our [to-do list](https://github.com/insarlab/MintPy/wiki/To-do-list) and [roadmap](https://github.com/insarlab/MintPy/wiki/version-2-roadmap) for the next major version 2.0!
@@ -110,6 +110,6 @@ _This disclaimer was adapted from the [MetPy project](https://github.com/Unidata
110
110
111
111
### 6. Citing this work ###
112
112
113
-
Yunjun, Z., Fattahi, H., and Amelung, F. (2019), Small baseline InSAR time series analysis: Unwrapping error correction and noise reduction, _Computers & Geosciences_, _133_, 104331, doi:[10.1016/j.cageo.2019.104331](https://doi.org/10.1016/j.cageo.2019.104331), [arXiv](https://eartharxiv.org/9sz6m/), [data](https://doi.org/10.5281/zenodo.3464190), [notebooks](https://github.com/geodesymiami/Yunjun_et_al-2019-MintPy).
113
+
Yunjun, Z., Fattahi, H., and Amelung, F. (2019), Small baseline InSAR time series analysis: Unwrapping error correction and noise reduction, _Computers & Geosciences_, _133_, 104331. [[doi](https://doi.org/10.1016/j.cageo.2019.104331)\|[arxiv](https://doi.org/10.31223/osf.io/9sz6m)\|[data](https://doi.org/10.5281/zenodo.3464190)\|[notebook](https://github.com/geodesymiami/Yunjun_et_al-2019-MintPy)]
114
114
115
115
In addition to the above, we recommend that you cite the original publications that describe the algorithms used in your specific analysis. They are noted briefly in the [default template file](../mintpy/defaults/smallbaselineApp.cfg) and listed in the [references.md file](./references.md).
Copy file name to clipboardExpand all lines: docs/dask.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Most computations in MintPy are operated in either a pixel-by-pixel or a epoch-b
5
5
+**local cluster:** on a single machine (laptop or computing node) with multiple CPU cores, suitable for laptops, local cluster/stations and distributed High Performance Cluster (HPC). No job scheduler is required.
6
6
+**non-local cluster:** on a distributed HPC with job scheduler installed, including PBS, LSF and SLURM.
7
7
8
-
Below is a brief description of the required options and recommended best practices for each cluster/scheduler.
8
+
[Here](https://github.com/2gotgrossman/dask-rsmas-presentation) is an entry-level presentation on parallel computing using Dask by David Grossman. Below we brief describe for each cluster/scheduler the required options and recommended best practices.
0 commit comments