Corrected an inconsistency between the documentation and the example.

This commit is contained in:
Ward Fisher 2016-01-08 15:29:32 -07:00
parent 592860ff93
commit 5ef5ffc2bc
2 changed files with 4 additions and 5 deletions

View File

@ -22,8 +22,8 @@ http://www.unidata.ucar.edu/netcdf/docs
#define FILE_NAME "simple_xy_nc4.nc"
/* We are reading 2D data, a 6 x 12 grid. */
#define NX 60
#define NY 120
#define NX 6
#define NY 12
/* Handle errors by printing an error message and exiting with a
* non-zero status. */

View File

@ -21,8 +21,8 @@ http://www.unidata.ucar.edu/netcdf/docs
/* We are writing 2D data, a 6 x 12 grid. */
#define NDIMS 2
#define NX 60
#define NY 120
#define NX 6
#define NY 12
/* Handle errors by printing an error message and exiting with a
* non-zero status. */
@ -89,4 +89,3 @@ main()
printf("*** SUCCESS writing example file simple_xy_nc4.nc!\n");
return 0;
}