hypertidy/ncmeta

order of vars as seen via grid is wrong

mdsumner opened this issue · 1 comments

Should be sst, ice, err, anom as per meta$variable

 meta$grid
# A tibble: 8 x 2
  variable grid       
  <chr>    <chr>      
1 anom     D3,D2,D1,D0
2 err      D3,D2,D1,D0
3 ice      D3,D2,D1,D0
4 sst      D3,D2,D1,D0
5 time     D0         
6 zlev     D1         
7 lat      D2         
8 lon      D3         

time, zlev, lat, lon is correct

Strictly, it should be using variable rather than grid to get this native order, but might as well fix it

Fixed in da81085