diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-15 18:58:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1997-10-15 18:58:35 (GMT) |
commit | 4ebe80e038350609c21f339a19962b2ff1b8a176 (patch) | |
tree | 7c33bc2ca9523dd6cf1eb39c67acf6b23c370cc8 /RELEASE | |
parent | 6d96cec1badc282ad167f61b67563d6f5e955c21 (diff) | |
download | hdf5-4ebe80e038350609c21f339a19962b2ff1b8a176.zip hdf5-4ebe80e038350609c21f339a19962b2ff1b8a176.tar.gz hdf5-4ebe80e038350609c21f339a19962b2ff1b8a176.tar.bz2 |
[svn-r124] Initial revision for prototype release.
Diffstat (limited to 'RELEASE')
-rw-r--r-- | RELEASE | 48 |
1 files changed, 48 insertions, 0 deletions
@@ -0,0 +1,48 @@ +Release information for the 10/10/97 prototype release: + + This release is intended primarily as a proof of concept and as a method +of familiarizing users with the intended functionality. A list of the +limitations of the prototype is as follows: + o - Multiple datasets may be created/read/written in an HDF5 file, but + access must be as an entire dataset, i.e. no slab/slice/subset code is + implemented yet. The datasets must also be homogeneous, orthogonal + datasets, similar to the datasets which are able to be created in the + HDF4 "SD" interface. Reducing these restrictions will be a major + effort of further development on the library. + o - Datasets can be located in a hierarchy of groups in the file, however + user-level features for transitioning through the groups are not + implemented in this release. Each dataset must be accessed through + its full "pathname" in the file, ie. "/foo/bar/dataset1", + "/foo/bar/dataset2", "/foo/data" + + A list of the API functions currently supported follows. [This list is +short, mainly as a method of providing feedback before significant direction +changes must be made] + H5 (library) interface + o - H5version + H5F (file) interface + o - H5Fis_hdf5 + o - H5Fcreate + o - H5Fopen + o - H5Fclose + H5M (meta) interface + o - H5Mcreate (for datatype, dataspace & dataset objects) + o - H5Mendaccess + H5P (dataspace) interface + o - H5Pis_simple + o - H5Pset_space + o - H5Pnelem + o - H5Pget_lrank + o - H5Pget_ldims + H5T (datatype) interface + o - H5Tis_atomic + o - H5Tset_type + o - H5Tget_type + o - H5Tsize + o - H5Tarch + H5D (dataset) interface + o - H5Mfind_name (to attach to a dataset) + o - H5Dset_info + o - H5Dget_info + o - H5Dread + o - H5Dwrite |