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
Permuted Cubes of type SubCubePerm{Union{Missing, T}} cannot be saved as there is no method definition for SubCubePerm to be used by saveCube. @Fgans Is it possible to add a new mathod to saveCube?
Minimal Example to reproduce the error:
using ESDL
c = "/Path/2Cube"
cdata = getCubeData(c, variable = "gross_primary_productivity", region = "Belgium")
perm_cdata = permutedims(cdata, (3,1,3))
saveCube(perm_cdata, "/scratch/path2saveCube")
The text was updated successfully, but these errors were encountered:
It would not be trivial, do you want the values to be stored in the permuted order? Otherwise, you could save the unpermuted cube and then permute after loading? Otherwise, just doing a non-operation and then saving should work:
Permuted Cubes of type SubCubePerm{Union{Missing, T}} cannot be saved as there is no method definition for SubCubePerm to be used by saveCube. @Fgans Is it possible to add a new mathod to saveCube?
Minimal Example to reproduce the error:
The text was updated successfully, but these errors were encountered: