NetCDF  4.9.2
sfc_pres_temp_wr.c File Reference

A simple example of writing a netCDF file. More...

#include <stdio.h>
#include <string.h>
#include <netcdf.h>
Include dependency graph for sfc_pres_temp_wr.c:

Go to the source code of this file.

Macros

#define DEGREES_EAST   "degrees_east"
 
#define DEGREES_NORTH   "degrees_north"
 
#define ERR(e)   {printf("Error: %s\n", nc_strerror(e)); return 2;}
 
#define FILE_NAME   "sfc_pres_temp.nc"
 
#define LAT_NAME   "latitude"
 
#define LON_NAME   "longitude"
 
#define NDIMS   2
 
#define NLAT   6
 
#define NLON   12
 
#define PRES_NAME   "pressure"
 
#define SAMPLE_PRESSURE   900
 
#define SAMPLE_TEMP   9.0
 
#define START_LAT   25.0
 
#define START_LON   -125.0
 
#define TEMP_NAME   "temperature"
 
#define UNITS   "units"
 

Functions

int main ()
 

Detailed Description

A simple example of writing a netCDF file.

This example writes some surface pressure and temperatures. It is intended to illustrate the use of the netCDF C API. The companion program sfc_pres_temp_rd.c shows how to read the netCDF data file created by this program.

Author
Ed Hartnett

Definition in file sfc_pres_temp_wr.c.