Root dimensions missing on large deep nested file #154
Description
Hello
I am working with EUMETSAT satellite data and i have a large netcdf with many nested groups. The entire dataset is available here at eumetsat website but i uploaded a single file to my google drive here, since the whole dataset is like 40gb and takes a long time to download.
My only issue so far is that the dimensions are missing from the root. Everything else seems ok and consistent with the netcdf file.
If i do
ncdump test_vii.nc >> dump.txt
I can see the overlap dimensions in the output:
netcdf test_vii{
dimensions:
overlaps = 2 ;
// global attributes:
string :Conventions = "CF-1.6" ;
But when i generate the datatree using:
tree = datatree.open_datatree(test_vii.nc, engine='netcdf4', mask_and_scale = False)
I get:
DataTree('None', parent=None)
Dimensions: ()
Data variables:
*empty*
Attributes: (12/21)
Conventions: CF-1.6
metadata_conventions: Unidata Dataset Discovery v1.0
product_name: W_XX-EUMETSAT-Darmstadt,SAT,SGA1-3MI-1C-RAD_C__2...
title: 3MI L1C Gridded Reflectance facto
Sorry for the complicated netcdf file but it is the only one i have here with groups nested this deeply.
Let me know if you need any other info.