netcdf mslp { dimensions: lat = 6 ; lon = 4 ; time = UNLIMITED ; // (2 currently) variables: float lat(lat) ; lat:units = "degrees_north" ; float lon(lon) ; lon:units = "degrees_east" ; double time(time) ; time:units = "seconds since 2009-01-01" ; float pr(time, lat, lon) ; pr:standard_name = "air_pressure_at_sea_level" ; pr:units = "hPa" ; // global attributes: :title = "example for workshop" ; data: lat = 25, 30, 35, 40, 45, 50 ; lon = -125, -110, -95, -80 ; time = "2009-04-01", "2009-06-30" ; pr = // pr(1-4 ,1,1) 900.5, 901, 902, 903, // pr(1-4 ,2,1) 904, 905, 906, 907, // pr(1-4 ,3,1) 908, 909, 910, 911, // pr(1-4 ,4,1) 912, 913, 914, 915, // pr(1-4 ,5,1) 916, 917, 918, 919, // pr(1-4 ,6,1) 920, 921, 922, 923, // pr(1-4 ,1,2) 972, 973, 974, 975, // pr(1-4 ,2,2) 976, 977, 978, 979, // pr(1-4 ,3,2) 980, 981, 982, 983, // pr(1-4 ,4,2) 984, 985, 986, 987, // pr(1-4 ,5,2) 988, 989, 990, 991, // pr(1-4 ,6,2) 992, 993, 994, 995 ; }