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
using YAXArraysToolbox
using NetCDF
using YAXArrays
using DimensionalData
lst_monthly_high =open_dataset("/home/dpabon/Documents/MYD21C3_2017_cut_issue.nc") # years 2002 to 2011
lst_monthly_high =Cube(lst_monthly_high[["__xarray_dataarray_variable__"]])
lst_monthly_high
I got 0x0000 instead of NaN or missing values. Most likely because in Julia missing and NaN cannot be Int. But also because the scale factor is not applied.
The text was updated successfully, but these errors were encountered:
In the following netCDF:
MYD21C3_2017_cut_issue.zip
when I try:
I got:
here "_FillValue" => 0x0000
However when I check the data:
I got
0x0000
instead of NaN or missing values. Most likely because in Julia missing and NaN cannot be Int. But also because the scale factor is not applied.The text was updated successfully, but these errors were encountered: