This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
>To: address@hidden >From: Matt Pocernich <address@hidden> >Subject: Error message. >Organization: UCAR/Unidata >Keywords: 200212091637.gB9GbR416745 Hi Matt, > Hello, I receive the following error when trying to open a netCDF file in > R. From the following, can you tell if the problem lies in my commands or > in the file. How would I specify a dimension vector? You can check if the file is OK by using the ncdump program. ncdump is one of the utility programs that comes with the netCDF distribution. A simple check would just use the "-c" option to just dump the structure of the netCDF data and its coordinate variables (if any), for example: ncdump -c /scratch/pocernic/int_fcst.20021201.0010.nc If there are no errors emitted by ncdump, then the file is probably fine. I haven't used the R interface to access netCDF data, but doesn't the read command require more arguments to specify which variable is being read? Something like: read.netCDF(aaa, name="dewpt") although I don't know the right R syntax for providing a variable name. The R documentation contains no examples, so I can't be much more help with using it ... --Russ