I have a dataset that has the missing_value attribute of its data variables set to NaN. This is serialized as {..., "missing_value": NaN, ...}, which is not valid json. Json does not have a NaN value.
This seems to be an issue with the defaults of the python json library: https://stackoverflow.com/questions/6601812/sending-nan-in-json
I have a dataset that has the missing_value attribute of its data variables set to NaN. This is serialized as
{..., "missing_value": NaN, ...}, which is not valid json. Json does not have a NaN value.This seems to be an issue with the defaults of the python json library: https://stackoverflow.com/questions/6601812/sending-nan-in-json