I'm trying to create a large NetCDF file that I can load into ArcMap 10.0For smaller files (eg 100 MB) it works, but for larger files (eg 5GB) the Make NetCDF Raster Layer tool either takes hours, or hangs indefinitely (possibly because I give up after a few hours).Are there any limitations on how large a NetCDF file can be?Are there any particular requirements for ArcMap to load the file in a reasonable time?The 5GB file I'm trying to load at the moment has this header (from ncdump -h)netcdf largeFillValue { // format variant: 64bit
dimensions:
x = 39393 ;
y = 17766 ;
variables:
double x(x) ;
double y(y) ;
double z(x, y) ;
z:_FillValue = 9.96920996838687e+036 ;
}
Do I need to add any specific parameters to the file?The values are all eastings/northings, not lon/lat.