You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello:
I am working with some grib files and experimenting with Rasters and YAXArrays.
Rasters uses GRIBDatasets in order to work with grib files.
If I need to convert longitudes in the range [0, 360] to the range [-180, 180], I do
When you use lazy=false, the data are actually loaded into memory. That's why you're able to setindex! on the memory Array. However, it is important to keep in mind that the GRIB file data won't be updated. As mentioned here, it is not possible to write to GRIB files with GRIBDatasets.jl (which is used behind Rasters.jl for reading GRIB files).
Hello:
I am working with some grib files and experimenting with Rasters and YAXArrays.
Rasters uses GRIBDatasets in order to work with grib files.
If I need to convert longitudes in the range [0, 360] to the range [-180, 180], I do
So that longitude is a variable, not a coordinate (this is the structure of my data). Then, in order to change any latitude:
If I convert the Rasters dataset into a YAXSArrays dataset, I get the same error.
So, I think that a setindex method is needed.
The text was updated successfully, but these errors were encountered: