<?xml version="1.0" encoding="UTF-8"?>
<netcdf xmlns="http://www.unidata.ucar.edu/namespaces/netcdf/ncml-2.2" location="example1.nc">

  <dimension name="time" length="2" isUnlimited="true"/>
  <dimension name="lat" length="3"/>
  <dimension name="lon" length="4"/>

  <attribute name="title" type="String" value="Example Data"/>

  <variable name="rh" shape="time lat lon" type="int">
    <attribute name="long_name" type="String" value="relative humidity"/>
    <attribute name="units" type="String" value="percent"/>
  </variable>

  <variable name="T" shape="time lat lon" type="double">
    <attribute name="long_name" type="String" value="surface temperature"/>
    <attribute name="units" type="String" value="C"/>
  </variable>

  <variable name="lat" shape="lat" type="float">
    <attribute name="units" type="String" value="degrees_north"/>
    <values>41.0 40.0 39.0</values>
  </variable>

  <variable name="lon" shape="lon" type="float">
    <attribute name="units" type="String" value="degrees_east"/>
    <values>-109.0 -107.0 -105.0 -103.0</values>
  </variable>

  <variable name="time" shape="time" type="int">
    <attribute name="units" type="String" value="hours"/>
    <values>6 18</values>
  </variable>
</netcdf>