import xarray as xr
ds = xr.open_dataset("https://thredds.niva.no/thredds/dodsC/datasets/loggers/langtjern-inlet.nc")
ds.head() # also see https://docs.xarray.dev/en/stable/index.html
library(ncdf4)
nc_data <- nc_open("https://thredds.niva.no/thredds/dodsC/datasets/loggers/langtjern-inlet.nc")
print(nc_data) # also see https://cran.r-project.org/web/packages/ncdf4/index.html
using NCDatasets
ds = NCDataset("https://thredds.niva.no/thredds/dodsC/datasets/loggers/langtjern-inlet.nc")
println(ds) # also see https://alexander-barth.github.io/NCDatasets.jl/stable/
url = "https://thredds.niva.no/thredds/dodsC/datasets/loggers/langtjern-inlet.nc";
ncdisp(url); % display variable, attributes ++
% data = ncread(url, 'variable_name'); % Read a specific variable
% also see https://www.mathworks.com/help/matlab/network-common-data-form.html