netcdf test {
types:
  compound integers_t {
    ubyte b ;
    int i32 ;
    uint ui32 ;
    short i16 ;
    ushort ui16 ;
  }; // integers_t
  compound floats_t {
    float f32 ;
    double f64 ;
  }; // floats_t
  compound strings_t {
    string s ;
    string u ;
  }; // strings_t
  compound types_t {
    integers_t integers ;
    floats_t floats ;
    strings_t strings ;
  }; // types_t
variables:
	types_t types ;
data:

 types = 
    {{0, 1, 0, 0, 0}, {0, 1000}, {"This is a data test string (pass 0).", "http://www.dods.org"}} ;
}