-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Addition S1 SLC processing for InSAR coherence, Dual-pol H-Alpha and backscatter #152
base: main
Are you sure you want to change the base?
Conversation
Hi @jmarkloew. The function |
For the time being I converted this PR to a draft (in hopes of disabling all the CI tests for now), we'll reactivate it once ready. |
Fine by me. No the doubling of a function was not intended. this looks like a copy and paste error to me ;) I'll provide the intended code asap |
Hi @jmarkloew. Next thing on the list is directory concatenation.. tmpdir + "/" + sensor always do this: import os
os.path.join(tmpdir, sensor) Please adjust your code accordingly. This is essential for running the code on Windows (where the separator is |
…into jmarkloew_master
fps_lst = [info.scene] | ||
info = [info] | ||
elif isinstance(infiles, list): | ||
info = pyroSAR.identify_many(infiles, verbose=False, sortkey='start') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not a SAR expert, but at least I can point few bugs on top of pyroSAR v0.18.0
verbose variable does not exists on pyroSAR.identify_many
else: | ||
raise RuntimeError("Please provide a valid filepath") | ||
|
||
final_out_fp = os.path.join(out_dir_p, tpm_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be os.path.join(out_dir_fp, tpm_name)
tc.parameters["pixelSpacingInMeter"] = t_res | ||
tc.parameters["mapProjection"] = t_crs | ||
tc.parameters["saveSelectedSourceBand"] = True | ||
tc.parameters["outputComplex"] = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems that "outputComplex" key does not exists in the Terrain-Correction node
…to jmarkloew_master
No description provided.