How to open a .bin file S12 and S11 generated from POLSARpro softwere from sentinel 1 data in python. I need to run some filter after the access of the data.
import numpy as np
data = np.fromfile(file_path, dtype=np.complex128)
this shows data type str with size 110
with open(file_path, “rb”) as b_file:
binary_data = b_file.read()
print(binary_data)
it shows invalid argument
New contributor
Partha Debroy is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.