2017-03-09 08:01:10 +08:00
|
|
|
netcdf test_misc1 {
|
|
|
|
dimensions:
|
|
|
|
lat = 6 ;
|
|
|
|
lon = 4 ;
|
|
|
|
time = UNLIMITED ; // (0 currently)
|
|
|
|
unlim = UNLIMITED ; // (3 currently)
|
|
|
|
variables:
|
|
|
|
float lat(lat) ;
|
2022-11-14 04:15:11 +08:00
|
|
|
lat:units = "degrees_north" ;
|
2017-03-09 08:01:10 +08:00
|
|
|
float lon(lon) ;
|
2022-11-14 04:15:11 +08:00
|
|
|
lon:units = "degrees_east" ;
|
2017-03-09 08:01:10 +08:00
|
|
|
double time(time) ;
|
2022-11-14 04:15:11 +08:00
|
|
|
time:units = "seconds since 2009-01-01" ;
|
2017-03-09 08:01:10 +08:00
|
|
|
float pr(time, lat, lon) ;
|
2022-11-14 04:15:11 +08:00
|
|
|
pr:standard_name = "air_pressure_at_sea_level" ;
|
|
|
|
pr:units = "hPa" ;
|
2017-03-09 08:01:10 +08:00
|
|
|
float var(unlim) ;
|
|
|
|
|
|
|
|
// global attributes:
|
2022-11-14 04:15:11 +08:00
|
|
|
:title = "example for workshop" ;
|
2017-03-09 08:01:10 +08:00
|
|
|
data:
|
|
|
|
|
|
|
|
lat = _, _, _, _, _, _ ;
|
|
|
|
|
|
|
|
lon = _, _, _, _ ;
|
|
|
|
|
|
|
|
var = 0, 1, 3 ;
|
|
|
|
}
|