Trying to read netCDF4 file with NetCDF.jl

Hello!
Trying to read a NetCDF4 file, using NetCDF.jl, and although I can read it in Python with netCDF4 package (so I conclude the file is ok), in Julia I can’t even get general information with ncinfo(filename), as my print shows. Any guess on the problem?

(any file from here can be used for testing)

my environment:

  • macOS Catalina (10.15.5)
  • Julia v1.4.2
  • Atom v0.12.15
  • Juno v0.8.2
  • NetCDF v0.10.2

Ha, I just answered your issue on https://github.com/JuliaGeo/NetCDF.jl/issues/124. In short; groups don’t work in NetCDF.jl, but do work in NCDatasets.jl, so it’s best to use that.

On a side note, it’s probably best not to simulateously post the same question on GitHub and Discourse. Others that didn’t know about the GitHub issue could have put time into answering here, not knowing it was already answered.

Hi @visr!
I’ll check your reply, didn’t see you answered there. But as a general guideline, I will avoid simultaneous posting. Thanks!