Hello All,
I'm trying to configure TDS (version 4.1.20100428.1437 - 20100428.1437)
to serve the sample 4D file found at
http://www.unidata.ucar.edu/software/netcdf/examples/programs/pres_temp_4D.cdl.
Header is listed below.
The GetCapabilities response does not seem to recognize the dataset.
Should WMS be able to serve 4D files using the TIME, ELEVATION dimensions?
Thanks!
--john
netcdf pres_temp_4D {
dimensions:
level = 2 ;
latitude = 6 ;
longitude = 12 ;
time = UNLIMITED ; // (2 currently)
variables:
float latitude(latitude) ;
latitude:units = "degrees_north" ;
float longitude(longitude) ;
longitude:units = "degrees_east" ;
float pressure(time, level, latitude, longitude) ;
pressure:units = "hPa" ;
float temperature(time, level, latitude, longitude) ;
temperature:units = "celsius" ;
}