I am having a problem dealing with wind analysis CCMP_Wind_Analysis_yyyymmdd_V02.0_L3.0_RSS.nc downloaded from ftp.ssmi.com.
NetCDF fortran library successfully opened the climatology but not the individual daily data with the provided sample code.
program open
USE netcdf
IMPLICIT NONE
INTEGER(KIND=4) :: ierr !Open netCDF file
ierr=nf90_open(path='infile', mode=nf90_nowrite, ncid=ncid)
ierr=nf90_close(ncid)
end program open
It returned
error code -51, "NetCDF: Unknown file format "
The failed file seems created by Matlab and it's version was netCDF-4 classic model
$ ncdump -k Data/CCMP/200408/CCMP_Wind_Analysis_20040801_V02.0_L3.0_RSS.nc
$ netCDF-4 classic model
and climatology was created by IDL and it's version was clasic
$ ncdump -k Data/CCMP/CCMP_Wind_Analysis_climatology_V02.0_L3.5_RSS.nc
$ classic
The both daily and climatology data can be opened by ncdump or by grads, but I want to binary dump the daily data and it's much faster if I can use fortran.
Does anyone know why and how it can be solved?
Thanks in advance.