0

I am moving from

"edu.ucar" % "netcdfAll" % "5.0.0-beta2"

to

"edu.ucar" % "netcdfAll" % "5.4.1"

and I see that function, which I use to open .grib2 files

NetcdfDataset.openDataset(path)

is marked as deprecated. What is new way to open it?

Kuba Wenta
  • 580
  • 1
  • 5
  • 25
  • 1
    You should probably ask the maintainer of this library on GitHub if they haven't provided an explanation for the deprecation in the scaladoc. I doubt this is a library sufficiently known for someone here to be able to answer. – Gaël J May 16 '21 at 18:57
  • Thank you for a tip I found answer on their github :) – Kuba Wenta May 16 '21 at 19:15

1 Answers1

1

Ok after digging I found it.. according to https://github.com/Unidata/netcdf-java/wiki/Common-Client-Changes it was moved to NetcdfDatasets.openDataset(path)

Kuba Wenta
  • 580
  • 1
  • 5
  • 25