I have made two local changes in sar_wind.py to be able to process wind:
- replaced
except OptionError: with except: after calls to aux_wind._get_band_number()
- changed
look_dir = self[self._get_band_number({'standard_name': 'sensor_azimuth_angle'})] to
look_dir = self[self._get_band_number({'name':'look_direction'})] as standard_name sensor_azimuth_angle seems no more to be present for S1 files.
Wind is now produced, but results look very wrong, and sometimes gives coredumps.
I have made two local changes in sar_wind.py to be able to process wind:
except OptionError:withexcept:after calls toaux_wind._get_band_number()look_dir = self[self._get_band_number({'standard_name': 'sensor_azimuth_angle'})]tolook_dir = self[self._get_band_number({'name':'look_direction'})]as standard_name sensor_azimuth_angle seems no more to be present for S1 files.Wind is now produced, but results look very wrong, and sometimes gives coredumps.