diff options
author | Frank Baker <fbaker@hdfgroup.org> | 2000-12-22 20:47:59 (GMT) |
---|---|---|
committer | Frank Baker <fbaker@hdfgroup.org> | 2000-12-22 20:47:59 (GMT) |
commit | c1d537db2b803d6908fe3f21f62c592c9cd2bf70 (patch) | |
tree | 56a6cb7f00a6fbec3b071722df9705e744368073 /doc/html/Tutor/api.html | |
parent | d4c3773742b8dee426e7325fee4e8fc4015f2802 (diff) | |
download | hdf5-c1d537db2b803d6908fe3f21f62c592c9cd2bf70.zip hdf5-c1d537db2b803d6908fe3f21f62c592c9cd2bf70.tar.gz hdf5-c1d537db2b803d6908fe3f21f62c592c9cd2bf70.tar.bz2 |
[svn-r3196]
Purpose:
Adding Tutorial to development branch (R 1.4)
Platforms tested:
IE 5
Diffstat (limited to 'doc/html/Tutor/api.html')
-rw-r--r-- | doc/html/Tutor/api.html | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/doc/html/Tutor/api.html b/doc/html/Tutor/api.html new file mode 100644 index 0000000..3ed0a84 --- /dev/null +++ b/doc/html/Tutor/api.html @@ -0,0 +1,140 @@ +<HTML><HEAD> +<TITLE>The HDF5 API +</TITLE> +</HEAD> + +<body bgcolor="#ffffff"> + +<!-- BEGIN MAIN BODY --> + +<A HREF="http://www.ncsa.uiuc.edu/"><img border=0 +src="http://www.ncsa.uiuc.edu/Images/NCSAhome/footerlogo.gif" +width=78 height=27 alt="NCSA"><P></A> + + [ <A HREF="title.html"><I>HDF5 Tutorial Top</I></A> ] +<H1> +<BIG><BIG><BIG><FONT COLOR="#c101cd">The HDF5 API</FONT> +</BIG></BIG></BIG></H1> + + +<hr noshade size=1> + +<BODY> +<P> +The HDF5 library provides several interfaces, and is currently implemented in +C. The APIs provide routines for accessing HDF5 files and creating and +manipulating HDF5 objects. All C routines in the HDF5 library begin with +a prefix of the form H5*, where * is a single letter indicating the object on +which the operation is to be performed. The APIs are listed below: +<P> +<table width="65%" border="2" cellpadding="4"> + <tr bgcolor="#FFCC99" bordercolor="#FFFFFF"> + <td width="11%"> + <div align="center"><b>API </b></div> + </td> + <td width="89%"> + <div align="left"><b>DESCRIPTION</b> </div> + </td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5</b></div> + </td> + <td width="89%">Library Functions: the general-purpose H5 functions.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5A</b></div> + </td> + <td width="89%">Annotation Interface: attribute access and manipulating routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5D</b></div> + </td> + <td width="89%">Dataset Interface: dataset access and manipulating routines. + </td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5E</b></div> + </td> + <td width="89%">Error Interface: error handling routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5F</b></div> + </td> + <td width="89%">File Interface: file access routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5G</b></div> + </td> + <td width="89%">Group Interface: group creating and operating routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5I</b></div> + </td> + <td width="89%">Identifier Interface: identifier routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5P</b></div> + </td> + <td width="89%">Property List Interface: object property list manipulating + routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5R</b></div> + </td> + <td width="89%">Reference Interface: reference routines.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5S</b></div> + </td> + <td width="89%">Dataspace Interface: routines for defining dataspaces.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5T</b></div> + </td> + <td width="89%">Data type Interface: routines for creating and manipulating + the data type of dataset elements.</td> + </tr> + <tr bordercolor="#FFFFFF"> + <td width="11%" bgcolor="#99CCCC"> + <div align="center"><b>H5Z</b></div> + </td> + <td width="89%">Compression Interface: compression routine(s).</td> + </tr> +</table> + +<!-- BEGIN FOOTER INFO --> + +<P><hr noshade size=1> +<font face="arial,helvetica" size="-1"> + <a href="http://www.ncsa.uiuc.edu/"><img border=0 + src="http://www.ncsa.uiuc.edu/Images/NCSAhome/footerlogo.gif" + width=78 height=27 alt="NCSA"><br> + The National Center for Supercomputing Applications</A><br> + <a href="http://www.uiuc.edu/">University of Illinois + at Urbana-Champaign</a><br> + <br> +<!-- <A HREF="helpdesk.mail.html"> --> +<A HREF="mailto:hdfhelp@ncsa.uiuc.edu"> +hdfhelp@ncsa.uiuc.edu</A> +<BR> <H6>Last Modified: July 30, 1999</H6><BR> +<!-- modified by Barbara Jones - bljones@ncsa.uiuc.edu --> +</FONT> +<BR> +<!-- <A HREF="mailto:hdfhelp@ncsa.uiuc.edu"> --> + +</BODY> +</HTML> + + + |