-
Notifications
You must be signed in to change notification settings - Fork 299
Description
Description of the issue
There are a few things that are hardcoded and sometimes do not adapt with full res data.
So I sometimes get error or the step is skipped. I am listing two here:
-
The step size in solid earth tide function (It is a large value, when I set it to 3e2, it works):
MintPy/mintpy/solid_earth_tides.py
Line 308 in 4357b8c
step_size=3e3, -
The min_area in label_conn_comp (It is a large value, when I set it to 2.5e2, it works):
MintPy/mintpy/unwrap_error_phase_closure.py
Line 402 in 4357b8c
label_img, num_label = conncomp.label_conn_comp(cc_mask, min_area=2.5e3, print_msg=True)
Describe the solution you'd like
I am not sure what is a good solution, whether to change the hardcoded values or make them as an option in template.
@yunjunz please let me know what you think may solve this issue and I will be happy to help. Although you know better where else this could happen.