From 4d57b9df226af87f092ea6833bff13c588e80caa Mon Sep 17 00:00:00 2001 From: Frank Baker Date: Wed, 8 Mar 2000 17:14:46 -0500 Subject: [svn-r2006] RM_H5D.html H5Dopen: Corrected description of 'loc_id' parameter. RM_H5T.html H5Tset_strpad: Corrected string padding values list (replaced 'H5T_STR_NULL & H5T_STR_SPACE' with ''H5T_STR_NULLTERM, 'H5T_STR_NULLPAD, & H5T_STR_SPACEPAD'. Added notes re conversion from shorter to longer strings and from longer to shorter strings. Other minor edits and formatting. H5Tget_class Corrected H5T_ENUM and H5T_REFERENCE entries in class identifiers table (they were reversed). Tools.html h5dump: Added note that '-bb' option is not yet implemented. Changed 'boot block' to 'super block'. --- doc/html/RM_H5D.html | 3 +-- doc/html/RM_H5T.html | 39 +++++++++++++++++++++++++++++---------- doc/html/Tools.html | 4 +++- 3 files changed, 33 insertions(+), 13 deletions(-) diff --git a/doc/html/RM_H5D.html b/doc/html/RM_H5D.html index 94ba4f5..1473dc3 100644 --- a/doc/html/RM_H5D.html +++ b/doc/html/RM_H5D.html @@ -204,8 +204,7 @@ facilitate moving easily between them.
Parameters:
hid_t loc_id -
Identifier of the dataset to open or the file or group - to access the dataset within. +
Identifier of the file or group to access the dataset within.
const char * name
The name of the dataset to access.
diff --git a/doc/html/RM_H5T.html b/doc/html/RM_H5T.html index 3dde985..f49c490 100644 --- a/doc/html/RM_H5T.html +++ b/doc/html/RM_H5T.html @@ -880,8 +880,8 @@ H5Tget_overflow ()
  • H5T_BITFIELD (4)
  • H5T_OPAQUE (5)
  • H5T_COMPOUND (6) -
  • H5T_ENUM (7) -
  • H5T_REFERENCE (8) +
  • H5T_REFERENCE (7) +
  • H5T_ENUM (8)
    Parameters:
    @@ -1918,17 +1918,36 @@ zero.
    Purpose:
    Defines the storage mechanism for character strings.
    Description: -
    The method used to store character strings differs with the - programming language: C usually null terminates strings while - Fortran left-justifies and space-pads strings. - H5Tset_strpad defines the storage mechanism for the string. - Valid string padding values are: +
    H5Tset_strpad defines the storage mechanism for the string. +

    + The method used to store character strings differs with the + programming language: +

      +
    • C usually null terminates strings while +
    • Fortran left-justifies and space-pads strings. +
    + Valid string padding values, as passed in the parameter + strpad, are as follows:
      -
      H5T_STR_NULL (0) -
      Pad with zeros (as C does) -
      H5T_STR_SPACE (1) +
      H5T_STR_NULLTERM (0) +
      Null terminate (as C does) +
      H5T_STR_NULLPAD (1) +
      Pad with zeros +
      H5T_STR_SPACEPAD (2)
      Pad with spaces (as FORTRAN does)
    +

    + When converting from a longer string to a shorter string, + the behavior is as follows. + If the short string is H5T_STR_NULLPAD or + H5T_STR_SPACEPAD, then the string is simply truncated. + If the short string is H5T_STR_NULLTERM, it is + truncated and a null terminator is appended. +

    + When converting from a shorter string to a longer string, + the long string is padded on the end by appending nulls or spaces. + +

    Parameters:
    hid_t type_id diff --git a/doc/html/Tools.html b/doc/html/Tools.html index ed23ea9..d86414c 100644 --- a/doc/html/Tools.html +++ b/doc/html/Tools.html @@ -130,8 +130,10 @@ These tools enable the user to examine HDF5 files interactively.
    -h
    Prints information on this command and exits.
    -bb -
    Displays the contents of the boot block. The default is +
    Displays the contents of the super block. The default is not to display. +
    + (This option is not yet implemented.)
    -header
    Displays header information only; no data is displayed.
    -V -- cgit v0.12