1netcdf tst_mslp {
2dimensions:
3	lat = 6 ;
4	lon = 4 ;
5	time = UNLIMITED ; // (0 currently)
6variables:
7	float lat(lat) ;
8		lat:units = "degrees_north" ;
9	float lon(lon) ;
10		lon:units = "degrees_east" ;
11	double time(time) ;
12		time:units = "seconds since 2009-01-01" ;
13	float pr(time, lat, lon) ;
14		pr:standard_name = "air_pressure_at_sea_level" ;
15		pr:units = "hPa" ;
16
17// global attributes:
18		:title = "example for workshop" ;
19		:_Format = "classic" ;
20data:
21
22 lat = _, _, _, _, _, _ ;
23
24 lon = _, _, _, _ ;
25}
26