Joleen Feltz

Results 5 comments of Joleen Feltz

We are discussing if this current filename (with the original resolution tag from H8 filename) is appropriate (CLAVRx is 2km resolution). I am going to hold off on changing the...

I just was asked to try the caliop reader and came across this error. So the conclusion is the caliop reader is officially not supported?

The example code is taken from the Scene documentation. I am also confused by the documentation code. Not certain if the "Dataset" referred to a Dataset from xarray, I used...

Sorry, I had missed the "to_xarray" mention. `to_xarray()` works with `to_netcdf()` for me.

``` import xarray as xr from satpy import Scene from xarray import DataArray g16 = Scene(["clavrx_OR_ABI-L1b-RadC-M6C01_G16_s20231461636171.level2.nc"], reader="clavrx") g18 = Scene(["clavrx_OR_ABI-L1b-RadC-M6C01_G18_s20231531721182.level2.nc"], reader="clavrx") g16.load(["cloud_mask"]) g18.load(["cloud_mask"]) area_def18 = g18["cloud_mask"].attrs["area"] g16_ol_in_g18space = g16.resample(area_def18, resampler="nearest")...