mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
Corrected an inconsistency between the documentation and the example.
This commit is contained in:
parent
592860ff93
commit
5ef5ffc2bc
@ -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. */
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user