mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
fec4cdb230
NCF-42: _Format attribute sometimes being ignored NCF-43: Fixed unsigned long long parsing. NCF-47: Make opendap code properly handle illegal names like "x.y" by supressing them NCF-49: check for uint type NCF-50: properly handle username:pwd embedded in urls.
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
#include "config.h"
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <netcdf.h>
|
|
#define FILE_NAME "http://nomads.ncdc.noaa.gov:80/dods/SEAWINDS/clm/uvclm95to05"
|
|
#define ERRCODE 2
|
|
#define ERR(e) {printf("Error: %s\n", nc_strerror(e)); exit(ERRCODE);}
|
|
|
|
#undef DEBUG
|
|
|
|
int
|
|
main()
|
|
{
|
|
int ncid, varid;
|
|
int retval,i;
|
|
size_t indx;
|
|
double timevals[2][12];
|
|
double expected[2][2] = {{14.0, 14.0},{45.0, 45.0}};
|
|
|
|
memset((void*)timevals,0,sizeof(timevals));
|
|
if ((retval = nc_open(FILE_NAME, NC_NOWRITE, &ncid)))
|
|
ERR(retval);
|
|
if ((retval = nc_inq_varid(ncid, "time", &varid)))
|
|
ERR(retval);
|
|
for(indx=0;indx<2;indx++) {
|
|
for(i=0;i<2;i++) {
|
|
if ((retval = nc_get_var1_double(ncid, varid, &indx, &timevals[indx][i])))
|
|
ERR(retval);
|
|
#ifdef DEBUG
|
|
printf("expected[%d][%d]=%g timevals[%d][%d]=%g\n",
|
|
indx,i,expected[indx][i],indx,i,timevals[indx][i]);
|
|
#endif
|
|
if(expected[indx][i] != timevals[indx][i]) {
|
|
printf("*** FAIL: expected[%d][%d]=%g timevals[%d][%d]=%g\n",
|
|
indx,i,expected[indx][i],indx,i,timevals[indx][i]);
|
|
exit(1);
|
|
}
|
|
}
|
|
}
|
|
if ((retval = nc_close(ncid)))
|
|
ERR(retval);
|
|
printf("*** PASS\n");
|
|
return 0;
|
|
}
|