Hi!
Thank you for the feedback! We'll work on updating the notebook to show how this is done.
In the meantime, the wavelengths themselves are stored in the "sensor_band_parameters" group in the file. So, if you want to pull an array of them, you'd run:
dataset_band_pars = xr.open_dataset(paths[0], group="sensor_band_parameters")
wavelength_3d = dataset_band_pars["wavelength3d"]
And then index out your wavelengths of choice using the .isel method. I hope this helps!
Thank you for the feedback! We'll work on updating the notebook to show how this is done.
In the meantime, the wavelengths themselves are stored in the "sensor_band_parameters" group in the file. So, if you want to pull an array of them, you'd run:
dataset_band_pars = xr.open_dataset(paths[0], group="sensor_band_parameters")
wavelength_3d = dataset_band_pars["wavelength3d"]
And then index out your wavelengths of choice using the .isel method. I hope this helps!
Statistics: Posted by jamesgallen — Mon Jul 08, 2024 3:42 pm America/New_York