How to read a netCDF file (.nc) with python gdal ?
import gdal
# Path of netCDF file
netcdf_fname = "/filepath/PREVIMER_WW3-GLOBAL-30MIN.nc"
# Specify the layer name to read
layer_name = "hs"
# Open netcdf file.nc with gdal
ds = gdal.Open("NETCDF:{0}:{1}".f...