diff --git a/doxygen/dox/Overview.dox b/doxygen/dox/Overview.dox
index 6caffd147aa..bbdb6c6466c 100644
--- a/doxygen/dox/Overview.dox
+++ b/doxygen/dox/Overview.dox
@@ -21,7 +21,7 @@ documents cover a mix of tasks, concepts, and reference, to help a specific
audience succeed.
\par Offline reading
- You can download it as an archive for offline reading.
+ You can download it as an archive for offline reading.
\par ToDo List
There is plenty of unfinished business.
diff --git a/doxygen/dox/UsersGuide.dox b/doxygen/dox/UsersGuide.dox
index 03151473d2a..14481a10f69 100644
--- a/doxygen/dox/UsersGuide.dox
+++ b/doxygen/dox/UsersGuide.dox
@@ -335,6 +335,23 @@
\ref sec_map
+\section sec_hl HDF5 High Level APIs
+\li \ref H5DO_UG
+
Table 2. Standard Attributes for a stored Dimension Scale dataset.
+ *
+ * Attribute Name |
+ * Datatype and Dimensions |
+ * Value |
+ * Required / Optional |
+ * Notes |
+ *
+ *
+ * CLASS |
+ * #H5T_STRING length = 16 |
+ * “DIMENSION_SCALE” |
+ * Required |
+ * This attribute distinguishes the dataset as a Dimension scale object. This is set by
+ * #H5DSset_scale |
+ *
+ *
+ * NAME |
+ * #H5T_STRING length = <user defined> |
+ * <user defined> The name does not have to be the same as the HDF5 path name for the dataset.
+ * The name does not have to be related to any labels. Several Dimension Scales may have the same name. |
+ * Optional, (Maximum of 1) |
+ * The user defined label of the Dimension Scale. This is set by #H5DSset_label |
+ *
+ *
+ * REFERENCE_LIST |
+ * Array of Dataset Reference Type (Compound Datatype), variable length. |
+ * [ {dataset1, ind1 }, …] [,…] ….] |
+ * Optional, required when scale is attached |
+ * See Table 3. This is set by #H5DSattach_scale. |
+ *
+ *
+ * SUB_CLASS |
+ * #H5T_STRING length = <profile defined> |
+ * “HDF4_DIMENSION”, “NC4_DIMENSION”, |
+ * Optional, defined by other profiles |
+ * This is used to indicate a specific profile was used. |
+ *
+ *
+ * <Other attributes> |
+ * |
+ * |
+ * Optional |
+ * For example, UNITS. |
+ *
+ *
+ *
+ * Table 4. Standard Attributes of a Dataset with associated Dimension Scale.
+ *
+ * Attribute Name |
+ * Datatype and Dimensions |
+ * Value |
+ * Required / Optional |
+ * Notes |
+ *
+ *
+ * DIMENSION_LIST |
+ * The HDF5 datatype is ARRAY of Variable Length #H5T_STD_REF_OBJ with rank of the dataspace. |
+ * [[{object__ref1, object__ref2, … object__refn}, …] […] ..] |
+ * Optional, required if scales are attached |
+ * Set by #H5DSattach_scale. Entries removed by #H5DSdetach_scale. |
+ *
+ *
+ * DIMENSION_LABELLIST |
+ * The HDF5 datatype is ARRAY of #H5T_STRING with rank of the dataspace. |
+ * [ <Label1>, <Label2>, …, <Label3>] |
+ * Optional, required for scales with a label |
+ * Set by #H5DSset_label. |
+ *
+ *
+ *
+ * \subsection subsec_dim_scales_spec_lab Dimension Scale Names and Labels
+ * Dimension scales are often referred to by name, so Dimension Scales may have names.
+ * Since some applications do not wish to apply names to dimension scales, Dimension Scale
+ * names be optional. In addition, some applications will have a name but no associated data
+ * values for a dimension (i.e., just a label). To support this, each dimension may have a
+ * label, which may be but need not be the same as the name of an associated Dimension Scale.
+ *
+ *