stitching_bursts
Stitch burst interferograms (optional) and unwrap them.
StitchedOutputs
dataclass
Output rasters from stitching step.
Source code in src/dolphin/workflows/stitching_bursts.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | |
amp_dispersion_file
instance-attribute
Path to amplitude dispersion file created.
closure_phase_files
instance-attribute
List of Paths to closure phase files created.
crlb_paths
instance-attribute
List of Paths to Cramer Rao Lower Bound (CRLB) files created.
ifg_paths
instance-attribute
List of Paths to the stitched interferograms.
interferometric_corr_paths
instance-attribute
List of Paths to interferometric correlation files created.
ps_file
instance-attribute
Path to ps mask file created.
shp_count_files
instance-attribute
List of paths to SHP count files created.
similarity_files
instance-attribute
List of paths to cosine similarity files created.
temp_coh_files
instance-attribute
List of paths to temporal correlation file created.
run(ifg_file_list, temp_coh_file_list, ps_file_list, crlb_file_list, closure_phase_file_list, amp_dispersion_list, shp_count_file_list, similarity_file_list, stitched_ifg_dir, output_options, file_date_fmt='%Y%m%d', corr_window_size=(11, 11), num_workers=3)
Stitch together spatial subsets from phase linking.
For Sentinel-1 processing, these can be burst-wise interferograms.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ifg_file_list
|
Sequence[Path]
|
Sequence of interferograms files to stitch. |
required |
temp_coh_file_list
|
Sequence[Path]
|
Sequence of paths to the temporal coherence files. |
required |
ps_file_list
|
Sequence[Path]
|
Sequence of paths to the (looked) ps mask files. |
required |
crlb_file_list
|
Sequence[Path]
|
Sequence of paths to the (looked) Cramer Rao Lower Bound (CRLB) files. |
required |
closure_phase_file_list
|
Sequence[Path]
|
Sequence of paths to the (looked) closure phase files. |
required |
amp_dispersion_list
|
Sequence[Path]
|
Sequence of paths to the (looked) amplitude dispersion files. |
required |
shp_count_file_list
|
Sequence[Path]
|
Sequence of paths to the SHP counts files. |
required |
similarity_file_list
|
Sequence[Path]
|
Sequence of paths to the spatial phase cosine similarity files. |
required |
stitched_ifg_dir
|
Path
|
Location to store the output stitched ifgs and correlations |
required |
output_options
|
OutputOptions
|
|
required |
file_date_fmt
|
str
|
Format of dates contained in filenames. default = "%Y%m%d" |
'%Y%m%d'
|
corr_window_size
|
tuple[int, int]
|
Size of moving window (rows, cols) to use for estimating correlation. Default = (11, 11) |
(11, 11)
|
num_workers
|
int
|
Number of threads to use for stitching in parallel. Default = 3 |
3
|
Returns:
| Name | Type | Description |
|---|---|---|
stitched_outputs |
StitchedOutputs
|
|
Source code in src/dolphin/workflows/stitching_bursts.py
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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 | |