mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-24 16:04:40 +08:00
example documentation cleanup
This commit is contained in:
parent
1ad17d71e0
commit
42bcf4594b
@ -1,16 +1,22 @@
|
||||
/** \file
|
||||
Write the simple_xy file, with some of the features of netCDF-4.
|
||||
|
||||
This is a very simple example which is based on the simple_xy example,
|
||||
but whch uses netCDF-4 features, such as compression. Please see the
|
||||
simple_xy example to learn more about the netCDF-3 API.
|
||||
|
||||
Like simple_xy_wr.c, this program writes a 2D netCDF variable (called
|
||||
"data") and fills it with sample data. It has two dimensions, "x" and
|
||||
"y".
|
||||
|
||||
Full documentation for netCDF can be found at:
|
||||
http://www.unidata.ucar.edu/netcdf/docs
|
||||
/* Copyright 2019 University Corporation for Atmospheric
|
||||
Research/Unidata. See COPYRIGHT file for conditions of use. */
|
||||
/**
|
||||
* @file
|
||||
* Write the simple_xy file, with some of the features of netCDF-4.
|
||||
*
|
||||
* This is a very simple example which is based on the simple_xy
|
||||
* example, but whch uses netCDF-4 features, such as
|
||||
* compression. Please see the simple_xy example to learn more about
|
||||
* the netCDF-3 API.
|
||||
*
|
||||
* Like simple_xy_wr.c, this program writes a 2D netCDF variable
|
||||
* (called "data") and fills it with sample data. It has two
|
||||
* dimensions, "x" and "y".
|
||||
*
|
||||
* Full documentation for netCDF can be found at:
|
||||
* http://www.unidata.ucar.edu/netcdf/docs.
|
||||
*
|
||||
* @author Ed Hartnett
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
@ -1,12 +1,17 @@
|
||||
/** \file
|
||||
Write a file demonstrating some of the features of netCDF-4.
|
||||
|
||||
This is a simple example which reads a small dummy array, which was
|
||||
written by simple_xy_wr.c. This is intended to illustrate the use of
|
||||
the netCDF C API.
|
||||
|
||||
Full documentation for netCDF can be found at:
|
||||
http://www.unidata.ucar.edu/netcdf/docs
|
||||
/* Copyright 2019 University Corporation for Atmospheric
|
||||
Research/Unidata. See COPYRIGHT file for conditions of use. */
|
||||
/**
|
||||
* @file
|
||||
* Write a file demonstrating some of the features of netCDF-4.
|
||||
*
|
||||
* This is a simple example which reads a small dummy array, which was
|
||||
* written by simple_xy_wr.c. This is intended to illustrate the use
|
||||
* of the netCDF C API.
|
||||
*
|
||||
* Full documentation for netCDF can be found at:
|
||||
* http://www.unidata.ucar.edu/netcdf/docs.
|
||||
*
|
||||
* @author Ed Hartnett
|
||||
*/
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
Loading…
Reference in New Issue
Block a user