isce-framework / fringe

Fine Resolution InSAR With Generalized Eigenvectors (FRInGE)
Apache License 2.0
80 stars 42 forks source link

Make slc file from individual despeckled amplitude band and MLE phase #59

Closed stoormgeo closed 2 years ago

stoormgeo commented 2 years ago

Hi, I'm looking a simple way to constract slc's (like files in /merged) from individual despeckled amplitude band and MLE phase for further PS-like analysis. So far I can't get a correct result with imageMath.py like: imageMath.py -e='a_0;b_0' --a="despeck_test;45772;float;1" --b="20180715.slc;45772;cfloat;1" -o test.slc -t cfloat Can you suggest any solution? Thx

piyushrpt commented 2 years ago

You probably want -e=a_0 * exp(J * b_0)

piyushrpt commented 2 years ago

gdal_calc.py might give you more options related to formats and you wont need to specify dimensions manually either

stoormgeo commented 2 years ago

You probably want -e=a_0 * exp(J * b_0)

Thanks Piyushrpt! It looks like the right one.