home *** CD-ROM | disk | FTP | other *** search
/ Photo CD Demo 1 / Demo.bin / hdf / docs / hdfvstpd.e < prev    next >
Text File  |  1980-02-06  |  2KB  |  67 lines

  1. E.1    NCSA HDF Vset
  2.  
  3.  
  4. NCSA HDF Vset Calls Summary    E.1
  5.  
  6.  
  7. National Center for Supercomputing Applications
  8.  
  9.  
  10. November 1990
  11.  
  12.  
  13.                                                                 
  14.  
  15.  
  16. November 1990
  17.  
  18.  
  19.  
  20.  
  21.  
  22. Appendix  E    Compatibility Information for 1.0 Users
  23.  
  24.  
  25.  
  26. Overview
  27.  
  28. This appendix explains how to convert HDF Vset 1.0 files so they 
  29. will be compatible with HDF Vset 2.0.
  30.  
  31.  
  32. Source Files
  33.  
  34. Since the release of HDF Vset 1.0, the data structures associated 
  35. with Vsets (ie HDF representations of vgroups and vdatas) have 
  36. been revised to allow new features to be incorporated in future. 
  37. Thus files created by release 2.0 cannot be read by applications that 
  38. use the earlier 1.0 release of the HDF Vset library.
  39.  
  40. The conversion program, vcompat, should be used to convert an 
  41. existing HDF Vset file (that was created using release 1.0 ) so that 
  42. it is compatible with this and future releases.  This program is 
  43. included in this release as a C-source file.
  44.  
  45. The conversion merely creates new data description elements in 
  46. the same file. As a result, that same file may still be used with 
  47. existing applications (that uses the release 1.0 Vset library)  as 
  48. well as new applications (that uses the release 2.0 library).  Note 
  49. that after the conversion, the original file will become slightly 
  50. bigger.
  51.  
  52. Existing applications may link to the release 2.0 Vset library with 
  53. no modifications needed.
  54.  
  55. vcompat may be created as follows:
  56.  
  57.     cc vcompat.c -o vcompat libdf.a libvg.a
  58.  
  59. To convert an existing HDF Vset file, type:
  60.  
  61.     vcompat <existing-file>
  62.  
  63. vcompat will not convert a HDF file that is already compatible 
  64. with release 2.0.
  65.  
  66.  
  67.