Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
0.2-incubating
-
None
-
*nix
Description
When loading a dataset from local.py the returned OCW Dataset object has a value attribute with a 4 dimensional array, when it should be 3 dimensions.
Current Shape:
(time, height?, lat, lon)
Instead it should be:
:param values: Three dimensional numpy array of parameter values with shape [timesLength, latsLength, lonsLength]. Per Dataset class documentation.
The local.py code needs to be updated to ensure the values are constructed and passed into the Dataset constructor.