We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some SAR data providers provide binary complex data in two files, separating real and imaginary part.
For example check this path: ls /project/caroline/Share/users/caroline-fvanleijen/projects/saocom/saocom_test/20230415/merged.data
ls /project/caroline/Share/users/caroline-fvanleijen/projects/saocom/saocom_test/20230415/merged.data
files:
i_HH_mst_28Mar2023.hdr i_HH_slv1_13Apr2023.hdr q_HH_mst_28Mar2023.hdr q_HH_slv1_13Apr2023.hdr i_HH_mst_28Mar2023.img i_HH_slv1_13Apr2023.img q_HH_mst_28Mar2023.img q_HH_slv1_13Apr2023.img
files starting with i are real data, q are imagenary data. img are binary files, hdr are metadata files.
i
q
img
hdr
Now the from_binary function assumes complex data are saved in one binary. We should consider expand it for this case.
from_binary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some SAR data providers provide binary complex data in two files, separating real and imaginary part.
For example check this path:
ls /project/caroline/Share/users/caroline-fvanleijen/projects/saocom/saocom_test/20230415/merged.data
files:
files starting with
i
are real data,q
are imagenary data.img
are binary files,hdr
are metadata files.Now the
from_binary
function assumes complex data are saved in one binary. We should consider expand it for this case.The text was updated successfully, but these errors were encountered: