unwrapping
Stitch burst interferograms (optional) and unwrap them.
run(ifg_file_list, cor_file_list, nlooks, unwrap_options, temporal_coherence_filename=None, similarity_filename=None, mask_file=None, add_overviews=True)
Run the displacement workflow on a stack of SLCs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ifg_file_list
|
Sequence[Path]
|
Sequence interferograms files to unwrap. |
required |
cor_file_list
|
Sequence[Path]
|
Sequence interferometric correlation files, one per file in |
required |
nlooks
|
float
|
Effective number of looks used to form the input correlation data. |
required |
unwrap_options
|
UnwrapOptions
|
|
required |
temporal_coherence_filename
|
Filename
|
Path to temporal coherence file from phase linking. |
None
|
similarity_filename
|
Filename
|
Path to phase cosine similarity file from phase linking. |
None
|
mask_file
|
PathOrStr
|
Path to boolean mask indicating nodata areas. 1 indicates valid data, 0 indicates missing data. |
None
|
add_overviews
|
bool
|
If True, creates overviews of the unwrapped phase and connected component labels. |
= True
|
Returns:
| Name | Type | Description |
|---|---|---|
unwrapped_paths |
list[Path]
|
list of Paths to unwrapped interferograms created. |
conncomp_paths |
list[Path]
|
list of Paths to connected component files created. |
Source code in src/dolphin/workflows/unwrapping.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | |