<?xml version="1.0" encoding="UTF-8"?>
<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" location="T:/GALEON/SimpleSamples/SampleNetCDFbens.nc">
  <dimension name="lat" length="5" />
  <dimension name="lon" length="10" />
  <dimension name="level" length="4" />
  <dimension name="time" length="1" isUnlimited="true" />
  <attribute name="source" type="String" value="Fictional Model Output" />
  <attribute name="Conventions" type="String" value="CF-1.0" />
  <variable name="time" shape="time" type="short">
    <attribute name="standard_name" type="String" value="time" />
    <attribute name="units" type="String" value="hours since 1996-1-1" />
  </variable>
  <variable name="lat" shape="lat" type="int">
    <attribute name="units" type="String" value="degrees_north" />
    <attribute name="standard_name" type="String" value="latitude" />
  </variable>
  <variable name="lon" shape="lon" type="int">
    <attribute name="units" type="String" value="degrees_east" />
    <attribute name="long_name" type="String" value="longitude" />
  </variable>
  <variable name="level" shape="level" type="int">
    <attribute name="standard_name" type="String" value="air_pressure" />
    <attribute name="units" type="String" value="millibars" />
  </variable>
  <variable name="temp" shape="time level lat lon" type="float">
    <attribute name="long_name" type="String" value="temperature" />
    <attribute name="standard_name" type="String" value="air_temperature" />
    <attribute name="units" type="String" value="celsius" />
  </variable>
  <variable name="rh" shape="time lat lon" type="float">
    <attribute name="long_name" type="String" value="relative humidity" />
    <attribute name="valid_range" type="double" value="0.0 1.0" />
  </variable>
</netcdf>


