Top Banner
www.hdfgroup.org The HDF Group 10/17/15 1 HDF5 Tools Tutorial ICALEPCS 2015
16

Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

Jan 21, 2016

Download

Documents

Jason Quinn
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org

The HDF Group

10/17/15 1

HDF5 Tools Tutorial

ICALEPCS 2015

Page 2: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 2

HDF5 Tools

• Supported by The HDF Grouphttps://www.hdfgroup.org/tools/

• GUI-based Browsers• HDF Compass (prototype)• HDFView

• HDF5 command-line tools• Distributed with the HDF5 library

• h5dump, h5ls, h5repack, h5diff, h5jam, h5copy, h5debug

• Distributed as stand-alone tools• h5check, converters between HDF4 and HDF5

• Supported on variety of platforms

ICALEPCS 2015

Page 3: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 3

Aside: UNIX commands can be useful!

• head• View superblock

• strings• View character data (attributes, datasets)• View some HDF5 metadata

• hexdump• The last resort to troubleshoot issues

ICALEPCS 2015

Page 4: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org4

HDF Compass

10/17/15

https://github.com/HDFGroup/hdf-compass/Please try it and let us know what do you think!

ICALEPCS 2015

Page 5: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 5

HDFView

• Java-based tool to access HDF4 and HDF5

• Used for• Viewing and modifying file content• Creating data in HDF files • Exporting and importing data

• Getting data to/from Excel• Supports features used in the JPSS files

• User block• Supports object and region references

ICALEPCS 2015

Page 6: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org

The HDF Group

10/17/15 6

HDF5 command-line tools

ICALEPCS 2015

Page 7: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 7

HDF5 command-line tools info

See HDF5 Reference Manual

https://www.hdfgroup.org/HDF5/doc/RM/Tools.html

Flag Used for-V (--version) Printing version of the

HDF5 library-h (--help) Displaying online help--enable-error-stack Troubleshooting

ICALEPCS 2015

Page 8: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 8

h5dump

• Displays HDF5 file according Data Description Language (DDL)

• Human readable and most comprehensive

Flag Used for

-H (--header) Suppressing data printing

-p (--properties) Displaying properties of the objects, e.g., compression ratio

-B Printing superblock to find user block info

-M (--packedbits) Displaying JPSS quality flags

-R (--region) Displaying data pointed by region reference

-N Searching for the object specified by “name”

ICALEPCS 2015

Page 9: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 9

h5ls

• Provides some internal information, such as objects offsets in the file to pass to h5debug

Flag(s) Used for

-v Verbose output

-g Displaying information about the group

-r Listing objects recursively

-d Printing data for the dataset

ICALEPCS 2015

Page 10: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 10

h5jam/h5unjam

• Adds/removes user blockh5unjam -i <Input HDF5 File> -o <Output HDF5 File> -u <User Block File>

ICALEPCS 2015

Page 11: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 11

h5repack

• Creates new file with different properties

Flag(s) Used for

No flags Deleting non-used space in the file

-l Changing storage layout of the datasets in the file

-f Applying (or removing) compression

ICALEPCS 2015

Page 12: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 12

h5diff

• Finds differences in two files• Not good at comparing file structures

Flag(s) Used for

-N (--nan) Disabling NaN detection

---exclude-path Disabling comparison of specified objects

ICALEPCS 2015

Page 13: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 13

h5diff

• Finds differences in two files

Flag(s) Used for

-l Changing storage layout of the datasets in the file

-f Applying (or removing) compression

ICALEPCS 2015

Page 14: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 14

h5copy

• Copies a specified content within an HDF5 file or to a new HDF5 file

• Easy to extract data to the new HDF5 file• Limitation – cannot copy to “/” root group

Flag(s) Used for

-f Controlling “copy” options

-f ref Coping references and the objects they referenced

ICALEPCS 2015

Page 15: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org10/17/15 15

h5check

• Uses file specification to checks file format consistency

• Useful with corrupted files to see if any data can be salvaged

ICALEPCS 2015

Page 16: Www.hdfgroup.org The HDF Group 10/17/151 HDF5 Tools Tutorial ICALEPCS 2015.

www.hdfgroup.org

The HDF Group

Thank You!

Questions?

1610/17/15 ICALEPCS 2015