Search found 1 match
- Thu May 22, 2025 3:10 pm America/New_York
- Forum: Home
- Question: NC File and Difficulty Opening/Downloading Data
- Replies: 8
Re: NC File and Difficulty Opening/Downloading Data
Nowadays you can read L3b files in R with the `ncdfCF` package. That is as easy as: > library(ncdfCF) > ds <- open_ncdf(A20020012002365.L3b_YR_CHL.nc) # a CFDataset object > chl <- ds[["CHL']] # a CFVariable object > aoi <- chl$subset(lat = c(20., 40.), lon = c(10., 30.)) # Create a CFArray for...