mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r21953] HDDFV-7560: h5dump refactoring
Tested: local linux
This commit is contained in:
parent
5b03d4b08d
commit
fb762aa6b0
8
MANIFEST
8
MANIFEST
@ -1107,6 +1107,12 @@
|
||||
./tools/h5dump/Makefile.in
|
||||
./tools/h5dump/h5dump.c
|
||||
./tools/h5dump/h5dump.h
|
||||
./tools/h5dump/h5dump_defines.h
|
||||
./tools/h5dump/h5dump_extern.h
|
||||
./tools/h5dump/h5dump_ddl.c
|
||||
./tools/h5dump/h5dump_ddl.h
|
||||
./tools/h5dump/h5dump_xml.c
|
||||
./tools/h5dump/h5dump_xml.h
|
||||
./tools/h5dump/h5dumpgentest.c
|
||||
./tools/h5dump/testh5dump.sh.in
|
||||
./tools/h5dump/testh5dumpxml.sh.in
|
||||
@ -1214,6 +1220,8 @@
|
||||
./tools/lib/h5trav.h
|
||||
./tools/lib/h5tools.c
|
||||
./tools/lib/h5tools.h
|
||||
./tools/lib/h5tools_dump.c
|
||||
./tools/lib/h5tools_dump.h
|
||||
./tools/lib/h5tools_filters.c
|
||||
./tools/lib/h5tools_str.c
|
||||
./tools/lib/h5tools_str.h
|
||||
|
@ -10,7 +10,11 @@ INCLUDE_DIRECTORIES (${HDF5_PROJECT_DIR}/test)
|
||||
# --------------------------------------------------------------------
|
||||
# Add the h5dump executables
|
||||
# --------------------------------------------------------------------
|
||||
ADD_EXECUTABLE (h5dump ${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump.c)
|
||||
ADD_EXECUTABLE (h5dump
|
||||
${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump.c
|
||||
${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_ddl.c
|
||||
${HDF5_TOOLS_H5DUMP_SOURCE_DIR}/h5dump_xml.c
|
||||
)
|
||||
TARGET_NAMING (h5dump ${LIB_TYPE})
|
||||
TARGET_LINK_LIBRARIES (h5dump ${HDF5_TOOLS_LIB_TARGET} ${HDF5_LIB_TARGET})
|
||||
SET_TARGET_PROPERTIES (h5dump PROPERTIES FOLDER tools)
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,148 +16,97 @@
|
||||
#define H5DUMP_H__
|
||||
|
||||
#include "hdf5.h"
|
||||
#include "H5private.h"
|
||||
#include "h5tools.h"
|
||||
#include "h5tools_utils.h"
|
||||
#include "h5tools_ref.h"
|
||||
#include "h5trav.h"
|
||||
#include "h5dump_defines.h"
|
||||
|
||||
#define H5DUMP_MAX_RANK H5S_MAX_RANK
|
||||
/**
|
||||
** This is the global dispatch table for the dump functions.
|
||||
**/
|
||||
/* the table of dump functions */
|
||||
typedef struct dump_functions_t {
|
||||
void (*dump_group_function) (hid_t, const char *);
|
||||
void (*dump_named_datatype_function) (hid_t, const char *);
|
||||
void (*dump_dataset_function) (hid_t, const char *, struct subset_t *);
|
||||
void (*dump_dataspace_function) (hid_t);
|
||||
void (*dump_datatype_function) (hid_t);
|
||||
herr_t (*dump_attribute_function) (hid_t, const char *, const H5A_info_t *, void *);
|
||||
void (*dump_data_function) (hid_t, int, struct subset_t *, int);
|
||||
} dump_functions;
|
||||
|
||||
#define ATTRIBUTE_DATA 0
|
||||
#define DATASET_DATA 1
|
||||
#define ENUM_DATA 2
|
||||
#define COL 3
|
||||
/* List of table structures. There is one table structure for each file */
|
||||
typedef struct h5dump_table_list_t {
|
||||
size_t nalloc;
|
||||
size_t nused;
|
||||
struct {
|
||||
unsigned long fileno; /* File number that these tables refer to */
|
||||
hid_t oid; /* ID of an object in this file, held open so fileno is consistent */
|
||||
table_t *group_table; /* Table of groups */
|
||||
table_t *dset_table; /* Table of datasets */
|
||||
table_t *type_table; /* Table of datatypes */
|
||||
} *tables;
|
||||
} h5dump_table_list_t;
|
||||
|
||||
/* Strings for output */
|
||||
#define ATTRIBUTE "ATTRIBUTE"
|
||||
#define BLOCK "BLOCK"
|
||||
#define SUPER_BLOCK "SUPER_BLOCK"
|
||||
#define COMPRESSION "COMPRESSION"
|
||||
#define CONCATENATOR "//"
|
||||
#define COMPLEX "COMPLEX"
|
||||
#define COUNT "COUNT"
|
||||
#define CSET "CSET"
|
||||
#define CTYPE "CTYPE"
|
||||
#define DATA "DATA"
|
||||
#define DATASPACE "DATASPACE"
|
||||
#define EXTERNAL "EXTERNAL"
|
||||
#define FILENO "FILENO"
|
||||
#define HARDLINK "HARDLINK"
|
||||
#define NLINK "NLINK"
|
||||
#define OBJID "OBJECTID"
|
||||
#define OBJNO "OBJNO"
|
||||
#define S_SCALAR "SCALAR"
|
||||
#define S_SIMPLE "SIMPLE"
|
||||
#define S_NULL "NULL"
|
||||
#define SOFTLINK "SOFTLINK"
|
||||
#define EXTLINK "EXTERNAL_LINK"
|
||||
#define UDLINK "USERDEFINED_LINK"
|
||||
#define START "START"
|
||||
#define STRIDE "STRIDE"
|
||||
#define STRSIZE "STRSIZE"
|
||||
#define STRPAD "STRPAD"
|
||||
#define SUBSET "SUBSET"
|
||||
#define FILTERS "FILTERS"
|
||||
#define DEFLATE "COMPRESSION DEFLATE"
|
||||
#define DEFLATE_LEVEL "LEVEL"
|
||||
#define SHUFFLE "PREPROCESSING SHUFFLE"
|
||||
#define FLETCHER32 "CHECKSUM FLETCHER32"
|
||||
#define SZIP "COMPRESSION SZIP"
|
||||
#define NBIT "COMPRESSION NBIT"
|
||||
#define SCALEOFFSET "COMPRESSION SCALEOFFSET"
|
||||
#define SCALEOFFSET_MINBIT "MIN BITS"
|
||||
#define STORAGE_LAYOUT "STORAGE_LAYOUT"
|
||||
#define CONTIGUOUS "CONTIGUOUS"
|
||||
#define COMPACT "COMPACT"
|
||||
#define CHUNKED "CHUNKED"
|
||||
#define EXTERNAL_FILE "EXTERNAL_FILE"
|
||||
#define FILLVALUE "FILLVALUE"
|
||||
#define FILE_CONTENTS "FILE_CONTENTS"
|
||||
#define PACKED_BITS "PACKED_BITS"
|
||||
#define PACKED_OFFSET "OFFSET"
|
||||
#define PACKED_LENGTH "LENGTH"
|
||||
h5dump_table_list_t table_list = {0, 0, NULL};
|
||||
table_t *group_table = NULL, *dset_table = NULL, *type_table = NULL;
|
||||
int dump_indent = 0; /*how far in to indent the line */
|
||||
|
||||
#define BEGIN "{"
|
||||
#define END "}"
|
||||
int unamedtype = 0; /* shared datatype with no name */
|
||||
hbool_t hit_elink = FALSE; /* whether we have traversed an external link */
|
||||
size_t prefix_len = 1024;
|
||||
char *prefix = NULL;
|
||||
const char *fp_format = NULL;
|
||||
|
||||
typedef struct h5dump_header_t {
|
||||
const char *name;
|
||||
const char *filebegin;
|
||||
const char *fileend;
|
||||
const char *bootblockbegin;
|
||||
const char *bootblockend;
|
||||
const char *groupbegin;
|
||||
const char *groupend;
|
||||
const char *datasetbegin;
|
||||
const char *datasetend;
|
||||
const char *attributebegin;
|
||||
const char *attributeend;
|
||||
const char *datatypebegin;
|
||||
const char *datatypeend;
|
||||
const char *dataspacebegin;
|
||||
const char *dataspaceend;
|
||||
const char *databegin;
|
||||
const char *dataend;
|
||||
const char *softlinkbegin;
|
||||
const char *softlinkend;
|
||||
const char *extlinkbegin;
|
||||
const char *extlinkend;
|
||||
const char *udlinkbegin;
|
||||
const char *udlinkend;
|
||||
const char *subsettingbegin;
|
||||
const char *subsettingend;
|
||||
const char *startbegin;
|
||||
const char *startend;
|
||||
const char *stridebegin;
|
||||
const char *strideend;
|
||||
const char *countbegin;
|
||||
const char *countend;
|
||||
const char *blockbegin;
|
||||
const char *blockend;
|
||||
/* things to display or which are set via command line parameters */
|
||||
int display_all = TRUE;
|
||||
int display_oid = FALSE;
|
||||
int display_data = TRUE;
|
||||
int display_attr_data = TRUE;
|
||||
int display_char = FALSE; /*print 1-byte numbers as ASCII */
|
||||
int usingdasho = FALSE;
|
||||
int display_bb = FALSE; /*superblock */
|
||||
int display_dcpl = FALSE; /*dcpl */
|
||||
int display_fi = FALSE; /*file index */
|
||||
int display_ai = TRUE; /*array index */
|
||||
int display_escape = FALSE; /*escape non printable characters */
|
||||
int display_region = FALSE; /*print region reference data */
|
||||
int enable_error_stack= FALSE; /* re-enable error stack */
|
||||
int disable_compact_subset= FALSE; /* disable compact form of subset notation */
|
||||
int display_packed_bits = FALSE; /*print 1-8 byte numbers as packed bits*/
|
||||
|
||||
const char *fileblockbegin;
|
||||
const char *fileblockend;
|
||||
const char *bootblockblockbegin;
|
||||
const char *bootblockblockend;
|
||||
const char *groupblockbegin;
|
||||
const char *groupblockend;
|
||||
const char *datasetblockbegin;
|
||||
const char *datasetblockend;
|
||||
const char *attributeblockbegin;
|
||||
const char *attributeblockend;
|
||||
const char *datatypeblockbegin;
|
||||
const char *datatypeblockend;
|
||||
const char *dataspaceblockbegin;
|
||||
const char *dataspaceblockend;
|
||||
const char *datablockbegin;
|
||||
const char *datablockend;
|
||||
const char *softlinkblockbegin;
|
||||
const char *softlinkblockend;
|
||||
const char *extlinkblockbegin;
|
||||
const char *extlinkblockend;
|
||||
const char *udlinkblockbegin;
|
||||
const char *udlinkblockend;
|
||||
const char *strblockbegin;
|
||||
const char *strblockend;
|
||||
const char *enumblockbegin;
|
||||
const char *enumblockend;
|
||||
const char *structblockbegin;
|
||||
const char *structblockend;
|
||||
const char *vlenblockbegin;
|
||||
const char *vlenblockend;
|
||||
const char *subsettingblockbegin;
|
||||
const char *subsettingblockend;
|
||||
const char *startblockbegin;
|
||||
const char *startblockend;
|
||||
const char *strideblockbegin;
|
||||
const char *strideblockend;
|
||||
const char *countblockbegin;
|
||||
const char *countblockend;
|
||||
const char *blockblockbegin;
|
||||
const char *blockblockend;
|
||||
/* sort parameters */
|
||||
H5_index_t sort_by = H5_INDEX_NAME; /*sort_by [creation_order | name] */
|
||||
H5_iter_order_t sort_order = H5_ITER_INC; /*sort_order [ascending | descending] */
|
||||
|
||||
const char *dataspacedescriptionbegin;
|
||||
const char *dataspacedescriptionend;
|
||||
const char *dataspacedimbegin;
|
||||
const char *dataspacedimend;
|
||||
#define PACKED_BITS_MAX 8 /* Maximum number of packed-bits to display */
|
||||
#define PACKED_BITS_SIZE_MAX 8*sizeof(long long) /* Maximum bits size of integer types of packed-bits */
|
||||
/* mask list for packed bits */
|
||||
unsigned long long packed_mask[PACKED_BITS_MAX]; /* packed bits are restricted to 8*sizeof(llong) bytes */
|
||||
|
||||
} h5dump_header_t;
|
||||
/* packed bits display parameters */
|
||||
int packed_offset[PACKED_BITS_MAX];
|
||||
int packed_length[PACKED_BITS_MAX];
|
||||
|
||||
/*
|
||||
* The global table is set to either ddl_function_table or
|
||||
* xml_function_table in the initialization.
|
||||
*/
|
||||
const dump_functions *dump_function_table;
|
||||
|
||||
#ifdef __cplusplus
|
||||
"C" {
|
||||
#endif
|
||||
|
||||
void add_prefix(char **prfx, size_t *prfx_len, const char *name);
|
||||
hid_t h5_fileaccess(void);
|
||||
ssize_t table_list_add(hid_t oid, unsigned long file_no);
|
||||
ssize_t table_list_visited(unsigned long file_no);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !H5DUMP_H__ */
|
||||
|
1931
tools/h5dump/h5dump_ddl.c
Normal file
1931
tools/h5dump/h5dump_ddl.c
Normal file
File diff suppressed because it is too large
Load Diff
50
tools/h5dump/h5dump_ddl.h
Normal file
50
tools/h5dump/h5dump_ddl.h
Normal file
@ -0,0 +1,50 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
||||
* terms governing use, modification, and redistribution, is contained in *
|
||||
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic HDF5 document set and *
|
||||
* is linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
#ifndef H5DUMP_DDL_H__
|
||||
#define H5DUMP_DDL_H__
|
||||
|
||||
/* callback function used by H5Literate() */
|
||||
static herr_t dump_all_cb(hid_t group, const char *name, const H5L_info_t *linfo, void *op_data);
|
||||
static int dump_extlink(hid_t group, const char *linkname, const char *objname);
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* The dump functions of the dump_function_table */
|
||||
/* standard format: no change */
|
||||
void dump_group(hid_t, const char *);
|
||||
void dump_named_datatype(hid_t, const char *);
|
||||
void dump_dataset(hid_t, const char *, struct subset_t *);
|
||||
void dump_dataspace(hid_t space);
|
||||
void dump_datatype(hid_t type);
|
||||
void dump_data(hid_t, int, struct subset_t *, int);
|
||||
void dump_fcpl(hid_t fid);
|
||||
void dump_fcontents(hid_t fid);
|
||||
|
||||
/* callback function used by H5Aiterate2() */
|
||||
herr_t dump_attr_cb(hid_t loc_id, const char *attr_name, const H5A_info_t *info, void *_op_data);
|
||||
|
||||
void handle_datasets(hid_t fid, const char *dset, void *data, int pe, const char *display_name);
|
||||
void handle_attributes(hid_t fid, const char *attr, void UNUSED * data, int UNUSED pe, const char UNUSED *display_name);
|
||||
void handle_groups(hid_t fid, const char *group, void UNUSED *data, int pe, const char *display_name);
|
||||
void handle_links(hid_t fid, const char *links, void UNUSED * data, int UNUSED pe, const char UNUSED *display_name);
|
||||
void handle_datatypes(hid_t fid, const char *type, void UNUSED * data, int pe, const char *display_name);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !H5DUMP_DDL_H__ */
|
54
tools/h5dump/h5dump_defines.h
Normal file
54
tools/h5dump/h5dump_defines.h
Normal file
@ -0,0 +1,54 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
||||
* terms governing use, modification, and redistribution, is contained in *
|
||||
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic HDF5 document set and *
|
||||
* is linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
#ifndef H5DUMP_DEFINES_H__
|
||||
#define H5DUMP_DEFINES_H__
|
||||
|
||||
#define H5DUMP_MAX_RANK H5S_MAX_RANK
|
||||
|
||||
#define ATTRIBUTE_DATA 0
|
||||
#define DATASET_DATA 1
|
||||
#define ENUM_DATA 2
|
||||
#define COL 3
|
||||
|
||||
/* Macros for displaying objects */
|
||||
#define begin_obj(obj,name,begin) \
|
||||
do { \
|
||||
if (name) \
|
||||
HDfprintf(stdout, "%s \"%s\" %s", (obj), (name), (begin)); \
|
||||
else \
|
||||
HDfprintf(stdout, "%s %s", (obj), (begin)); \
|
||||
} while(0);
|
||||
|
||||
#define end_obj(obj,end) \
|
||||
do { \
|
||||
if(HDstrlen(end)) { \
|
||||
HDfprintf(stdout, "%s", end); \
|
||||
if(HDstrlen(obj)) \
|
||||
HDfprintf(stdout, " "); \
|
||||
} \
|
||||
if(HDstrlen(obj)) \
|
||||
HDfprintf(stdout, "%s", obj); \
|
||||
} while(0);
|
||||
|
||||
|
||||
/* 3 private values: can't be set, but can be read.
|
||||
Note: these are defined in H5Zprivate, they are
|
||||
duplicated here.
|
||||
*/
|
||||
#define H5_SZIP_LSB_OPTION_MASK 8
|
||||
#define H5_SZIP_MSB_OPTION_MASK 16
|
||||
#define H5_SZIP_RAW_OPTION_MASK 128
|
||||
|
||||
#endif /* !H5DUMP_DEFINES_H__ */
|
112
tools/h5dump/h5dump_extern.h
Normal file
112
tools/h5dump/h5dump_extern.h
Normal file
@ -0,0 +1,112 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
||||
* terms governing use, modification, and redistribution, is contained in *
|
||||
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic HDF5 document set and *
|
||||
* is linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
#ifndef H5DUMP_EXTERN_H__
|
||||
#define H5DUMP_EXTERN_H__
|
||||
|
||||
#include "hdf5.h"
|
||||
#include "H5private.h"
|
||||
#include "h5tools.h"
|
||||
#include "h5tools_utils.h"
|
||||
#include "h5tools_ref.h"
|
||||
#include "h5trav.h"
|
||||
#include "h5dump_defines.h"
|
||||
|
||||
/**
|
||||
** This is the global dispatch table for the dump functions.
|
||||
**/
|
||||
/* the table of dump functions */
|
||||
typedef struct dump_functions_t {
|
||||
void (*dump_group_function) (hid_t, const char *);
|
||||
void (*dump_named_datatype_function) (hid_t, const char *);
|
||||
void (*dump_dataset_function) (hid_t, const char *, struct subset_t *);
|
||||
void (*dump_dataspace_function) (hid_t);
|
||||
void (*dump_datatype_function) (hid_t);
|
||||
herr_t (*dump_attribute_function) (hid_t, const char *, const H5A_info_t *, void *);
|
||||
void (*dump_data_function) (hid_t, int, struct subset_t *, int);
|
||||
} dump_functions;
|
||||
|
||||
/* List of table structures. There is one table structure for each file */
|
||||
typedef struct h5dump_table_list_t {
|
||||
size_t nalloc;
|
||||
size_t nused;
|
||||
struct {
|
||||
unsigned long fileno; /* File number that these tables refer to */
|
||||
hid_t oid; /* ID of an object in this file, held open so fileno is consistent */
|
||||
table_t *group_table; /* Table of groups */
|
||||
table_t *dset_table; /* Table of datasets */
|
||||
table_t *type_table; /* Table of datatypes */
|
||||
} *tables;
|
||||
} h5dump_table_list_t;
|
||||
|
||||
extern h5dump_table_list_t table_list;
|
||||
extern table_t *group_table, *dset_table, *type_table;
|
||||
extern int dump_indent; /*how far in to indent the line */
|
||||
|
||||
extern int unamedtype; /* shared datatype with no name */
|
||||
extern hbool_t hit_elink; /* whether we have traversed an external link */
|
||||
extern size_t prefix_len;
|
||||
extern char *prefix;
|
||||
extern const char *fp_format;
|
||||
|
||||
/* things to display or which are set via command line parameters */
|
||||
extern int display_all;
|
||||
extern int display_oid;
|
||||
extern int display_data;
|
||||
extern int display_attr_data;
|
||||
extern int display_char; /*print 1-byte numbers as ASCII */
|
||||
extern int usingdasho;
|
||||
extern int display_bb; /*superblock */
|
||||
extern int display_dcpl; /*dcpl */
|
||||
extern int display_fi; /*file index */
|
||||
extern int display_ai; /*array index */
|
||||
extern int display_escape; /*escape non printable characters */
|
||||
extern int display_region; /*print region reference data */
|
||||
extern int enable_error_stack; /* re-enable error stack */
|
||||
extern int disable_compact_subset; /* disable compact form of subset notation */
|
||||
extern int display_packed_bits; /*print 1-8 byte numbers as packed bits*/
|
||||
|
||||
/* sort parameters */
|
||||
extern H5_index_t sort_by; /*sort_by [creation_order | name] */
|
||||
extern H5_iter_order_t sort_order; /*sort_order [ascending | descending] */
|
||||
|
||||
#define PACKED_BITS_MAX 8 /* Maximum number of packed-bits to display */
|
||||
#define PACKED_BITS_SIZE_MAX 8*sizeof(long long) /* Maximum bits size of integer types of packed-bits */
|
||||
/* mask list for packed bits */
|
||||
extern unsigned long long packed_mask[PACKED_BITS_MAX]; /* packed bits are restricted to 8*sizeof(llong) bytes */
|
||||
|
||||
/* packed bits display parameters */
|
||||
extern int packed_offset[PACKED_BITS_MAX];
|
||||
extern int packed_length[PACKED_BITS_MAX];
|
||||
|
||||
/*
|
||||
* The global table is set to either ddl_function_table or
|
||||
* xml_function_table in the initialization.
|
||||
*/
|
||||
extern const dump_functions *dump_function_table;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void add_prefix(char **prfx, size_t *prfx_len, const char *name);
|
||||
hid_t h5_fileaccess(void);
|
||||
ssize_t table_list_add(hid_t oid, unsigned long file_no);
|
||||
ssize_t table_list_visited(unsigned long file_no);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !H5DUMP_EXTERN_H__ */
|
4456
tools/h5dump/h5dump_xml.c
Normal file
4456
tools/h5dump/h5dump_xml.c
Normal file
File diff suppressed because it is too large
Load Diff
128
tools/h5dump/h5dump_xml.h
Normal file
128
tools/h5dump/h5dump_xml.h
Normal file
@ -0,0 +1,128 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
||||
* terms governing use, modification, and redistribution, is contained in *
|
||||
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic HDF5 document set and *
|
||||
* is linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
#ifndef H5DUMP_XML_H__
|
||||
#define H5DUMP_XML_H__
|
||||
|
||||
extern const char *xmlnsprefix;
|
||||
|
||||
/*
|
||||
* Alternative formating for data dumped to XML
|
||||
* In general, the numbers are the same, but separators
|
||||
* except spaces are not used.
|
||||
*
|
||||
* Some of these are not used, as some kinds of data are
|
||||
* dumped in completely new subroutines.
|
||||
*
|
||||
* Some of this formatting may yet need to change.
|
||||
*
|
||||
* This table only affects XML output.
|
||||
*/
|
||||
static h5tool_format_t xml_dataformat = {
|
||||
0, /*raw */
|
||||
|
||||
"", /*fmt_raw */
|
||||
"%d", /*fmt_int */
|
||||
"%u", /*fmt_uint */
|
||||
"%hhd", /*fmt_schar */
|
||||
"%u", /*fmt_uchar */
|
||||
"%d", /*fmt_short */
|
||||
"%u", /*fmt_ushort */
|
||||
"%ld", /*fmt_long */
|
||||
"%lu", /*fmt_ulong */
|
||||
NULL, /*fmt_llong */
|
||||
NULL, /*fmt_ullong */
|
||||
"%g", /*fmt_double */
|
||||
"%g", /*fmt_float */
|
||||
|
||||
0, /*ascii */
|
||||
0, /*str_locale */
|
||||
0, /*str_repeat */
|
||||
|
||||
"", /*arr_pre */
|
||||
"", /*arr_sep */
|
||||
"", /*arr_suf */
|
||||
1, /*arr_linebreak */
|
||||
|
||||
"", /*cmpd_name */
|
||||
"", /*cmpd_sep */
|
||||
"", /*cmpd_pre */
|
||||
"", /*cmpd_suf */
|
||||
"", /*cmpd_end */
|
||||
|
||||
" ", /*vlen_sep */
|
||||
" ", /*vlen_pre */
|
||||
"", /*vlen_suf */
|
||||
"", /*vlen_end */
|
||||
|
||||
"%s", /*elmt_fmt */
|
||||
"", /*elmt_suf1 */
|
||||
" ", /*elmt_suf2 */
|
||||
|
||||
"", /*idx_n_fmt */
|
||||
"", /*idx_sep */
|
||||
"", /*idx_fmt */
|
||||
|
||||
80, /*line_ncols *//*standard default columns */
|
||||
0, /*line_per_line */
|
||||
"", /*line_pre */
|
||||
"%s", /*line_1st */
|
||||
"%s", /*line_cont */
|
||||
"", /*line_suf */
|
||||
"", /*line_sep */
|
||||
1, /*line_multi_new */
|
||||
" ", /*line_indent */
|
||||
|
||||
1, /*skip_first */
|
||||
|
||||
1, /*obj_hidefileno */
|
||||
" "H5_PRINTF_HADDR_FMT, /*obj_format */
|
||||
|
||||
1, /*dset_hidefileno */
|
||||
"DATASET %s ", /*dset_format */
|
||||
"%s", /*dset_blockformat_pre */
|
||||
"%s", /*dset_ptformat_pre */
|
||||
"%s", /*dset_ptformat */
|
||||
0, /*array indices */
|
||||
0 /*escape non printable characters */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* internal functions used by XML option */
|
||||
static void xml_print_datatype(hid_t, unsigned);
|
||||
static void xml_print_enum(hid_t);
|
||||
static int xml_print_refs(hid_t, int);
|
||||
static int xml_print_strs(hid_t, int);
|
||||
static char *xml_escape_the_string(const char *, int);
|
||||
static char *xml_escape_the_name(const char *);
|
||||
|
||||
/* The dump functions of the dump_function_table */
|
||||
/* XML format: same interface, alternative output */
|
||||
|
||||
void xml_dump_group(hid_t, const char *);
|
||||
void xml_dump_named_datatype(hid_t, const char *);
|
||||
void xml_dump_dataset(hid_t, const char *, struct subset_t *);
|
||||
void xml_dump_dataspace(hid_t space);
|
||||
void xml_dump_datatype(hid_t type);
|
||||
herr_t xml_dump_attr(hid_t, const char *, const H5A_info_t *, void *);
|
||||
void xml_dump_data(hid_t, int, struct subset_t *, int);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* !H5DUMP_XML_H__ */
|
1450
tools/h5ls/h5ls.c
1450
tools/h5ls/h5ls.c
File diff suppressed because it is too large
Load Diff
@ -14,6 +14,7 @@ SET (H5_TOOLS_LIB_SRCS
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5diff_dset.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5diff_util.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_dump.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_filters.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_ref.c
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_str.c
|
||||
@ -25,6 +26,7 @@ SET (H5_TOOLS_LIB_SRCS
|
||||
SET (H5_TOOLS_LIB_HDRS
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5trav.h
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools.h
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_dump.h
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_utils.h
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_str.h
|
||||
${HDF5_TOOLS_LIB_SOURCE_DIR}/h5tools_ref.h
|
||||
|
@ -26,7 +26,7 @@ INCLUDES=-I$(top_srcdir)/src
|
||||
# This is our main target, the h5tools library.
|
||||
noinst_LTLIBRARIES=libh5tools.la
|
||||
|
||||
libh5tools_la_SOURCES=h5tools.c h5tools_str.c h5tools_utils.c h5diff.c \
|
||||
libh5tools_la_SOURCES=h5tools.c h5tools_dump.c h5tools_str.c h5tools_utils.c h5diff.c \
|
||||
h5diff_array.c h5diff_attr.c h5diff_dset.c h5diff_util.c h5trav.c \
|
||||
h5tools_filters.c h5tools_ref.c h5tools_type.c
|
||||
|
||||
|
2666
tools/lib/h5tools.c
2666
tools/lib/h5tools.c
File diff suppressed because it is too large
Load Diff
@ -84,6 +84,9 @@
|
||||
#define EXTERNAL_FILE "EXTERNAL_FILE"
|
||||
#define FILLVALUE "FILLVALUE"
|
||||
#define FILE_CONTENTS "FILE_CONTENTS"
|
||||
#define PACKED_BITS "PACKED_BITS"
|
||||
#define PACKED_OFFSET "OFFSET"
|
||||
#define PACKED_LENGTH "LENGTH"
|
||||
|
||||
#define BEGIN "{"
|
||||
#define END "}"
|
||||
@ -509,17 +512,25 @@ struct subset_t {
|
||||
|
||||
#include "h5tools_str.h"
|
||||
|
||||
extern h5tool_format_t h5tools_dataformat;
|
||||
extern const h5tools_dump_header_t h5tools_standardformat;
|
||||
extern const h5tools_dump_header_t* h5tools_dump_header_format;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
H5TOOLS_DLLVAR int packed_bits_num; /* number of packed bits to display */
|
||||
H5TOOLS_DLLVAR int packed_data_offset; /* offset of packed bits to display */
|
||||
H5TOOLS_DLLVAR int packed_bits_num; /* number of packed bits to display */
|
||||
H5TOOLS_DLLVAR int packed_data_offset; /* offset of packed bits to display */
|
||||
H5TOOLS_DLLVAR int packed_data_length; /* lengtht of packed bits to display */
|
||||
H5TOOLS_DLLVAR unsigned long long packed_data_mask; /* mask in which packed bits to display */
|
||||
H5TOOLS_DLLVAR FILE *rawdatastream; /* output stream for raw data */
|
||||
H5TOOLS_DLLVAR int bin_output; /* binary output */
|
||||
H5TOOLS_DLLVAR int bin_form; /* binary form */
|
||||
H5TOOLS_DLLVAR int region_output; /* region output */
|
||||
H5TOOLS_DLLVAR int oid_output; /* oid output */
|
||||
H5TOOLS_DLLVAR int data_output; /* data output */
|
||||
H5TOOLS_DLLVAR int attr_data_output; /* attribute data output */
|
||||
|
||||
/* Strings for output */
|
||||
#define H5_TOOLS_GROUP "GROUP"
|
||||
@ -527,41 +538,45 @@ H5TOOLS_DLLVAR int region_output; /* region output */
|
||||
#define H5_TOOLS_DATATYPE "DATATYPE"
|
||||
|
||||
/* Definitions of useful routines */
|
||||
H5TOOLS_DLL void h5tools_init(void);
|
||||
H5TOOLS_DLL void h5tools_close(void);
|
||||
H5TOOLS_DLL hid_t h5tools_fopen(const char *fname, unsigned flags, hid_t fapl,
|
||||
const char *driver, char *drivername, size_t drivername_len);
|
||||
H5TOOLS_DLL int h5tools_dump_dset(FILE *stream, const h5tool_format_t *info, hid_t dset,
|
||||
hid_t p_typ, struct subset_t *sset, int indentlevel);
|
||||
H5TOOLS_DLL int h5tools_dump_mem(FILE *stream, const h5tool_format_t *info, hid_t obj_id,
|
||||
hid_t type, hid_t space, void *mem, int indentlevel);
|
||||
H5TOOLS_DLL hid_t h5tools_get_native_type(hid_t type);
|
||||
H5TOOLS_DLL hid_t h5tools_get_little_endian_type(hid_t type);
|
||||
H5TOOLS_DLL hid_t h5tools_get_big_endian_type(hid_t type);
|
||||
H5TOOLS_DLL void h5tools_init(void);
|
||||
H5TOOLS_DLL void h5tools_close(void);
|
||||
H5TOOLS_DLL hid_t h5tools_fopen(const char *fname, unsigned flags, hid_t fapl,
|
||||
const char *driver, char *drivername, size_t drivername_len);
|
||||
H5TOOLS_DLL hid_t h5tools_get_native_type(hid_t type);
|
||||
H5TOOLS_DLL hid_t h5tools_get_little_endian_type(hid_t type);
|
||||
H5TOOLS_DLL hid_t h5tools_get_big_endian_type(hid_t type);
|
||||
H5TOOLS_DLL htri_t h5tools_detect_vlen(hid_t tid);
|
||||
H5TOOLS_DLL htri_t h5tools_detect_vlen_str(hid_t tid);
|
||||
H5TOOLS_DLL hbool_t h5tools_is_obj_same(hid_t loc_id1, const char *name1, hid_t loc_id2, const char *name2);
|
||||
H5TOOLS_DLL void init_acc_pos(h5tools_context_t *ctx, hsize_t *dims);
|
||||
H5TOOLS_DLL hbool_t h5tools_is_zero(const void *_mem, size_t size);
|
||||
H5TOOLS_DLL int h5tools_canreadf(const char* name, hid_t dcpl_id);
|
||||
H5TOOLS_DLL int h5tools_can_encode(H5Z_filter_t filtn);
|
||||
|
||||
H5TOOLS_DLL htri_t h5tools_detect_vlen(hid_t tid);
|
||||
H5TOOLS_DLL htri_t h5tools_detect_vlen_str(hid_t tid);
|
||||
H5TOOLS_DLL hbool_t h5tools_is_obj_same(hid_t loc_id1, const char *name1, hid_t loc_id2, const char *name2);
|
||||
H5TOOLS_DLL void h5tools_simple_prefix(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx, hsize_t elmtno, int secnum);
|
||||
H5TOOLS_DLL void h5tools_region_simple_prefix(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx, hsize_t elmtno, hsize_t *ptdata, int secnum);
|
||||
|
||||
H5TOOLS_DLL void h5tools_dump_simple_data(FILE *stream, const h5tool_format_t *info, hid_t container,
|
||||
h5tools_context_t *ctx/*in,out*/, unsigned flags,
|
||||
hsize_t nelmts, hid_t type, void *_mem);
|
||||
H5TOOLS_DLL int do_bin_output(FILE *stream, hid_t container, hsize_t nelmts, hid_t tid, void *_mem);
|
||||
H5TOOLS_DLL int render_bin_output(FILE *stream, hid_t container, hid_t tid, void *_mem);
|
||||
H5TOOLS_DLL int render_bin_output_region_data_blocks(hid_t region_id, FILE *stream,
|
||||
hid_t container, int ndims, hid_t type_id, hssize_t nblocks, hsize_t *ptdata);
|
||||
H5TOOLS_DLL hbool_t render_bin_output_region_blocks(hid_t region_space, hid_t region_id,
|
||||
FILE *stream, hid_t container);
|
||||
H5TOOLS_DLL hbool_t render_bin_output_region_points(hid_t region_space, hid_t region_id,
|
||||
FILE *stream, hid_t container);
|
||||
|
||||
H5TOOLS_DLL int h5tools_canreadf(const char* name,
|
||||
hid_t dcpl_id);
|
||||
H5TOOLS_DLL int h5tools_can_encode(H5Z_filter_t filtn);
|
||||
|
||||
void init_acc_pos(h5tools_context_t *ctx, hsize_t *dims);
|
||||
/*
|
||||
* new functions needed to display region reference data
|
||||
*/
|
||||
void h5tools_dump_datatype(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t type);
|
||||
int h5tools_print_dataspace(h5tools_str_t *buffer/*in,out*/, hid_t space);
|
||||
int h5tools_print_datatype(h5tools_str_t *buffer/*in,out*/,
|
||||
const h5tool_format_t *info, h5tools_context_t *ctx/*in,out*/,
|
||||
hid_t type);
|
||||
int h5tools_print_enum(h5tools_str_t *buffer/*in,out*/, hid_t type);
|
||||
H5TOOLS_DLL hbool_t h5tools_render_element(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx, h5tools_str_t *buffer, hsize_t *curr_pos,
|
||||
size_t ncols, hsize_t local_elmt_counter, hsize_t elmt_counter);
|
||||
H5TOOLS_DLL hbool_t h5tools_render_region_element(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/,
|
||||
h5tools_str_t *buffer/*string into which to render */,
|
||||
hsize_t *curr_pos/*total data element position*/,
|
||||
size_t ncols, hsize_t *ptdata,
|
||||
hsize_t local_elmt_counter/*element counter*/,
|
||||
hsize_t elmt_counter);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
3920
tools/lib/h5tools_dump.c
Normal file
3920
tools/lib/h5tools_dump.c
Normal file
File diff suppressed because it is too large
Load Diff
85
tools/lib/h5tools_dump.h
Normal file
85
tools/lib/h5tools_dump.h
Normal file
@ -0,0 +1,85 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* All rights reserved. *
|
||||
* *
|
||||
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
||||
* terms governing use, modification, and redistribution, is contained in *
|
||||
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
||||
* of the source code distribution tree; Copyright.html can be found at the *
|
||||
* root level of an installed copy of the electronic HDF5 document set and *
|
||||
* is linked from the top-level documents page. It can also be found at *
|
||||
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
||||
* access to either file, you may request a copy from help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*
|
||||
* Purpose: Support h5dump functions for the various tools.
|
||||
*/
|
||||
#ifndef H5TOOLS_DUMP_H__
|
||||
#define H5TOOLS_DUMP_H__
|
||||
|
||||
#include "h5tools_utils.h"
|
||||
|
||||
/* 3 private values: can't be set, but can be read.
|
||||
Note: these are defined in H5Zprivate, they are
|
||||
duplicated here.
|
||||
*/
|
||||
#define H5_SZIP_LSB_OPTION_MASK 8
|
||||
#define H5_SZIP_MSB_OPTION_MASK 16
|
||||
#define H5_SZIP_RAW_OPTION_MASK 128
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
H5TOOLS_DLLVAR table_t *h5dump_type_table; /*type table reference for datatype dump */
|
||||
|
||||
/* Definitions of useful routines */
|
||||
H5TOOLS_DLL void h5tools_dump_init(void);
|
||||
|
||||
H5TOOLS_DLL int h5tools_dump_dset(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t dset,
|
||||
hid_t p_typ, struct subset_t *sset);
|
||||
H5TOOLS_DLL int h5tools_dump_mem(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t obj_id,
|
||||
hid_t type, hid_t space, void *mem);
|
||||
H5TOOLS_DLL void h5tools_dump_simple_data(FILE *stream, const h5tool_format_t *info, hid_t container,
|
||||
h5tools_context_t *ctx/*in,out*/, unsigned flags,
|
||||
hsize_t nelmts, hid_t type, void *_mem);
|
||||
H5TOOLS_DLL void h5tools_dump_datatype(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t type);
|
||||
H5TOOLS_DLL void h5tools_dump_dataspace(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t space);
|
||||
H5TOOLS_DLL void h5tools_dump_attribute(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t oid, const char *attr_name,
|
||||
hid_t attr_id, int display_index, int display_char);
|
||||
H5TOOLS_DLL void h5tools_dump_oid(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t oid);
|
||||
H5TOOLS_DLL void h5tools_dump_dcpl(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t dcpl, hid_t type_id, hid_t obj_id);
|
||||
H5TOOLS_DLL void h5tools_dump_comment(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx/*in,out*/, hid_t obj_id);
|
||||
H5TOOLS_DLL void h5tools_dump_data(FILE *stream, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx, hid_t obj_id,
|
||||
int obj_data, struct subset_t *sset, int display_index, int display_char);
|
||||
|
||||
H5TOOLS_DLL int h5tools_print_datatype(FILE *stream, h5tools_str_t *buffer/*in,out*/,
|
||||
const h5tool_format_t *info, h5tools_context_t *ctx/*in,out*/,
|
||||
hid_t type, int object_search);
|
||||
H5TOOLS_DLL int h5tools_print_dataspace(FILE *stream, h5tools_str_t *buffer/*in,out*/,
|
||||
const h5tool_format_t *info, h5tools_context_t *ctx/*in,out*/,
|
||||
hid_t space);
|
||||
H5TOOLS_DLL int h5tools_print_enum(FILE *stream, h5tools_str_t *buffer/*in,out*/,
|
||||
const h5tool_format_t *info, h5tools_context_t *ctx/*in,out*/,
|
||||
hid_t type);
|
||||
H5TOOLS_DLL void h5tools_print_fill_value(h5tools_str_t *buffer/*in,out*/,
|
||||
const h5tool_format_t *info, h5tools_context_t *ctx/*in,out*/,
|
||||
hid_t dcpl, hid_t type_id, hid_t obj_id);
|
||||
H5TOOLS_DLL void h5tools_print_packed_bits(h5tools_str_t *buffer/*in,out*/, hid_t type);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* H5TOOLS_DUMP_H__ */
|
||||
|
@ -610,6 +610,32 @@ h5tools_print_char(h5tools_str_t *str, const h5tool_format_t *info, char ch)
|
||||
}
|
||||
}
|
||||
}
|
||||
void
|
||||
h5tools_str_indent(h5tools_str_t *str, const h5tool_format_t *info,
|
||||
h5tools_context_t *ctx)
|
||||
{
|
||||
int i, indentlevel = 0;
|
||||
|
||||
/* Write new prefix */
|
||||
if (ctx->indent_level >= 0) {
|
||||
indentlevel = ctx->indent_level;
|
||||
}
|
||||
else {
|
||||
/*
|
||||
* This is because sometimes we don't print out all the header
|
||||
* info for the data (like the tattr-2.ddl example). If that happens
|
||||
* the ctx->indent_level is negative so we need to skip the above and
|
||||
* just print out the default indent levels.
|
||||
*/
|
||||
indentlevel = ctx->default_indent_level;
|
||||
}
|
||||
|
||||
for (i = 0; i < indentlevel; i++) {
|
||||
h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
|
||||
}
|
||||
|
||||
// ctx->need_prefix = 0;
|
||||
}
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* Function: h5tools_str_sprint
|
||||
@ -951,25 +977,17 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
nmembs = H5Tget_nmembers(type);
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_pre, "{"));
|
||||
|
||||
ctx->indent_level++;
|
||||
|
||||
for (j = 0; j < nmembs; j++) {
|
||||
if (j)
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_sep, ", " OPTIONAL_LINE_BREAK));
|
||||
|
||||
/* RPM 2000-10-31
|
||||
* If the previous character is a line-feed (which is true when
|
||||
* h5dump is running) then insert some white space for
|
||||
* indentation. Be warned that column number calculations will be
|
||||
* incorrect and that object indices at the beginning of the line
|
||||
* will be missing (h5dump doesn't display them anyway). */
|
||||
if (ctx->indent_level >= 0 && str->len && str->s[str->len - 1] == '\n') {
|
||||
int x;
|
||||
|
||||
h5tools_str_append(str, OPT(info->line_pre, ""), "");
|
||||
|
||||
for (x = 0; x < ctx->indent_level + 1; x++)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
|
||||
}
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_sep, ", "OPTIONAL_LINE_BREAK));
|
||||
else
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_end, ""));
|
||||
|
||||
if(info->arr_linebreak)
|
||||
h5tools_str_indent(str, info, ctx);
|
||||
|
||||
/* The name */
|
||||
name = H5Tget_member_name(type, j);
|
||||
h5tools_str_append(str, OPT(info->cmpd_name, ""), name);
|
||||
@ -979,31 +997,19 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
offset = H5Tget_member_offset(type, j);
|
||||
memb = H5Tget_member_type(type, j);
|
||||
|
||||
ctx->indent_level++;
|
||||
h5tools_str_sprint(str, info, container, memb, cp_vp + offset, ctx);
|
||||
ctx->indent_level--;
|
||||
|
||||
H5Tclose(memb);
|
||||
}
|
||||
ctx->indent_level--;
|
||||
|
||||
/* RPM 2000-10-31
|
||||
* If the previous character is a line feed (which is true when
|
||||
* h5dump is running) then insert some white space for indentation.
|
||||
* Be warned that column number calculations will be incorrect and
|
||||
* that object indices at the beginning of the line will be missing
|
||||
* (h5dump doesn't display them anyway). */
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_end, ""));
|
||||
|
||||
if (ctx->indent_level >= 0 && str->len && str->s[str->len - 1] == '\n') {
|
||||
int x;
|
||||
|
||||
h5tools_str_append(str, OPT(info->line_pre, ""), "");
|
||||
|
||||
for (x = 0; x < ctx->indent_level; x++)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
|
||||
if(info->arr_linebreak) {
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_end, ""));
|
||||
h5tools_str_indent(str, info, ctx);
|
||||
}
|
||||
|
||||
h5tools_str_append(str, "%s", OPT(info->cmpd_suf, "}"));
|
||||
|
||||
}
|
||||
else if (H5Tget_class(type) == H5T_ENUM) {
|
||||
char enum_name[1024];
|
||||
@ -1084,7 +1090,7 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
else if (H5Tget_class(type) == H5T_ARRAY) {
|
||||
int k, ndims;
|
||||
hsize_t i, dims[H5S_MAX_RANK], temp_nelmts;
|
||||
static int is_next_arry_elmt=0;
|
||||
static int is_next_arry_elmt = 0;
|
||||
|
||||
/* Get the array's base datatype for each element */
|
||||
memb = H5Tget_super(type);
|
||||
@ -1103,6 +1109,8 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
/* Print the opening bracket */
|
||||
h5tools_str_append(str, "%s", OPT(info->arr_pre, "["));
|
||||
|
||||
ctx->indent_level++;
|
||||
|
||||
for (i = 0; i < nelmts; i++) {
|
||||
if (i)
|
||||
h5tools_str_append(str, "%s", OPT(info->arr_sep, "," OPTIONAL_LINE_BREAK));
|
||||
@ -1111,14 +1119,8 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
int x;
|
||||
|
||||
h5tools_str_append(str, "%s", "\n");
|
||||
h5tools_str_indent(str, info, ctx);
|
||||
|
||||
/* need to indent some more here*/
|
||||
if (ctx->indent_level >= 0)
|
||||
if (!info->pindex)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_pre, ""));
|
||||
|
||||
for (x = 0; x < ctx->indent_level + 1; x++)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
|
||||
} /* end if */
|
||||
else if (i && info->arr_sep) {
|
||||
/* if next element begin, add next line with indent */
|
||||
@ -1127,13 +1129,8 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
is_next_arry_elmt = 0;
|
||||
|
||||
h5tools_str_append(str, "%s", "\n ");
|
||||
h5tools_str_indent(str, info, ctx);
|
||||
|
||||
if (ctx->indent_level >= 0)
|
||||
if (!info->pindex)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_pre, ""));
|
||||
|
||||
for (x = 0; x < ctx->indent_level + 1; x++)
|
||||
h5tools_str_append(str, "%s", OPT(info->line_indent, ""));
|
||||
}
|
||||
/* otherwise just add space */
|
||||
else
|
||||
@ -1141,15 +1138,13 @@ h5tools_str_sprint(h5tools_str_t *str, const h5tool_format_t *info, hid_t contai
|
||||
|
||||
} /* end else if */
|
||||
|
||||
ctx->indent_level++;
|
||||
|
||||
/* Dump values in an array element */
|
||||
is_next_arry_elmt = 0; /* dump all values in the array element, so turn it off */
|
||||
h5tools_str_sprint(str, info, container, memb, cp_vp + i * size, ctx);
|
||||
|
||||
ctx->indent_level--;
|
||||
} /* end for */
|
||||
|
||||
ctx->indent_level--;
|
||||
|
||||
/* Print the closing bracket */
|
||||
h5tools_str_append(str, "%s", OPT(info->arr_suf, "]"));
|
||||
is_next_arry_elmt = 1; /* set for begining of next array element */
|
||||
|
@ -33,8 +33,7 @@
|
||||
#include "h5trav.h"
|
||||
|
||||
/* global variables */
|
||||
int nCols = 80;
|
||||
|
||||
int h5tools_nCols = 80;
|
||||
/* ``get_option'' variables */
|
||||
int opt_err = 1; /*get_option prints errors if this is on */
|
||||
int opt_ind = 1; /*token pointer */
|
||||
@ -393,7 +392,7 @@ get_option(int argc, const char **argv, const char *opts, const struct long_opti
|
||||
void
|
||||
indentation(int x)
|
||||
{
|
||||
if (x < nCols) {
|
||||
if (x < h5tools_nCols) {
|
||||
while (x-- > 0)
|
||||
printf(" ");
|
||||
} else {
|
||||
|
@ -29,19 +29,13 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/* ``parallel_print'' information */
|
||||
#define PRINT_DATA_MAX_SIZE 512
|
||||
#define OUTBUFF_SIZE (PRINT_DATA_MAX_SIZE*4)
|
||||
#define PRINT_DATA_MAX_SIZE 512
|
||||
#define OUTBUFF_SIZE (PRINT_DATA_MAX_SIZE*4)
|
||||
|
||||
/* Maximum size used in a call to malloc for a dataset */
|
||||
H5TOOLS_DLLVAR hsize_t H5TOOLS_MALLOCSIZE;
|
||||
/* size of hyperslab buffer when a dataset is bigger than H5TOOLS_MALLOCSIZE */
|
||||
H5TOOLS_DLLVAR hsize_t H5TOOLS_BUFSIZE;
|
||||
H5TOOLS_DLLVAR int g_nTasks;
|
||||
H5TOOLS_DLLVAR unsigned char g_Parallel;
|
||||
H5TOOLS_DLLVAR char outBuff[];
|
||||
H5TOOLS_DLLVAR int outBuffOffset;
|
||||
H5TOOLS_DLLVAR FILE * overflow_file;
|
||||
|
||||
/*
|
||||
* begin get_option section
|
||||
*/
|
||||
@ -51,7 +45,7 @@ H5TOOLS_DLLVAR const char *opt_arg; /* flag argument (or value)
|
||||
|
||||
enum {
|
||||
no_arg = 0, /* doesn't take an argument */
|
||||
require_arg, /* requires an argument */
|
||||
require_arg, /* requires an argument */
|
||||
optional_arg /* argument is optional */
|
||||
};
|
||||
|
||||
@ -62,23 +56,23 @@ enum {
|
||||
* the option. The long options are specified in the following way:
|
||||
*
|
||||
* struct long_options foo[] = {
|
||||
* { "filename", require_arg, 'f' },
|
||||
* { "append", no_arg, 'a' },
|
||||
* { "width", require_arg, 'w' },
|
||||
* { NULL, 0, 0 }
|
||||
* { "filename", require_arg, 'f' },
|
||||
* { "append", no_arg, 'a' },
|
||||
* { "width", require_arg, 'w' },
|
||||
* { NULL, 0, 0 }
|
||||
* };
|
||||
*
|
||||
* Long named options can have arguments specified as either:
|
||||
*
|
||||
* ``--param=arg'' or ``--param arg''
|
||||
* ``--param=arg'' or ``--param arg''
|
||||
*
|
||||
* Short named options can have arguments specified as either:
|
||||
*
|
||||
* ``-w80'' or ``-w 80''
|
||||
* ``-w80'' or ``-w 80''
|
||||
*
|
||||
* and can have more than one short named option specified at one time:
|
||||
*
|
||||
* -aw80
|
||||
* -aw80
|
||||
*
|
||||
* in which case those options which expect an argument need to come at the
|
||||
* end.
|
||||
@ -119,7 +113,7 @@ typedef struct find_objs_t {
|
||||
table_t *dset_table;
|
||||
} find_objs_t;
|
||||
|
||||
H5TOOLS_DLLVAR int nCols; /*max number of columns for outputting */
|
||||
H5TOOLS_DLLVAR int h5tools_nCols; /*max number of columns for outputting */
|
||||
|
||||
/* Definitions of useful routines */
|
||||
H5TOOLS_DLL void indentation(int);
|
||||
@ -136,7 +130,7 @@ H5TOOLS_DLL herr_t init_objs(hid_t fid, find_objs_t *info, table_t **group_table
|
||||
table_t **dset_table, table_t **type_table);
|
||||
H5TOOLS_DLL obj_t *search_obj(table_t *temp, haddr_t objno);
|
||||
#ifndef H5_HAVE_TMPFILE
|
||||
H5TOOLS_DLL FILE * tmpfile(void);
|
||||
H5TOOLS_DLL FILE * tmpfile(void);
|
||||
#endif
|
||||
|
||||
/*************************************************************
|
||||
@ -178,4 +172,4 @@ H5TOOLS_DLL int h5tools_getenv_update_hyperslab_bufsize(void);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* H5TOOLS_UTILS_H__ */
|
||||
#endif /* H5TOOLS_UTILS_H__ */
|
||||
|
@ -30,6 +30,12 @@
|
||||
#define MPI_TAG_END 7
|
||||
#define MPI_TAG_PARALLEL 8
|
||||
|
||||
H5TOOLS_DLLVAR int g_nTasks;
|
||||
H5TOOLS_DLLVAR unsigned char g_Parallel;
|
||||
H5TOOLS_DLLVAR char outBuff[];
|
||||
H5TOOLS_DLLVAR int outBuffOffset;
|
||||
H5TOOLS_DLLVAR FILE * overflow_file;
|
||||
|
||||
struct diff_mpi_args
|
||||
{
|
||||
char name1[256];
|
||||
|
@ -11,9 +11,9 @@ SUPER_BLOCK {
|
||||
ISTORE_K 32
|
||||
FILE_SPACE_STRATEGY H5F_FILE_SPACE_AGGR_VFD
|
||||
FREE_SPACE_THRESHOLD 10
|
||||
}
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
}
|
||||
}
|
||||
GROUP "/" {
|
||||
}
|
||||
|
@ -4,7 +4,7 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_I32LE
|
||||
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
|
||||
DATA {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -32,8 +41,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1
|
||||
2 3
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -43,9 +54,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -72,8 +83,33 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
49 115 116 32 97 116 116 114 105 98 117 116 101 32 111 102 32
|
||||
100 115 101 116 49 46 49 46 49 0
|
||||
49
|
||||
115
|
||||
116
|
||||
32
|
||||
97
|
||||
116
|
||||
116
|
||||
114
|
||||
105
|
||||
98
|
||||
117
|
||||
116
|
||||
101
|
||||
32
|
||||
111
|
||||
102
|
||||
32
|
||||
100
|
||||
115
|
||||
101
|
||||
116
|
||||
49
|
||||
46
|
||||
49
|
||||
46
|
||||
49
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -90,8 +126,33 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
50 110 100 32 97 116 116 114 105 98 117 116 101 32 111 102 32
|
||||
100 115 101 116 49 46 49 46 49 0
|
||||
50
|
||||
110
|
||||
100
|
||||
32
|
||||
97
|
||||
116
|
||||
116
|
||||
114
|
||||
105
|
||||
98
|
||||
117
|
||||
116
|
||||
101
|
||||
32
|
||||
111
|
||||
102
|
||||
32
|
||||
100
|
||||
115
|
||||
101
|
||||
116
|
||||
49
|
||||
46
|
||||
49
|
||||
46
|
||||
49
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -103,9 +164,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -135,9 +196,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -158,9 +219,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -24,14 +24,14 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_I8BE
|
||||
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
|
||||
DATA {
|
||||
"1st attribute of dset1.1.1\000"
|
||||
"1st attribute of dset1.1.1\000"
|
||||
}
|
||||
}
|
||||
ATTRIBUTE "attr2" {
|
||||
DATATYPE H5T_STD_I8BE
|
||||
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
|
||||
DATA {
|
||||
"2nd attribute of dset1.1.1\000"
|
||||
"2nd attribute of dset1.1.1\000"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -32,8 +41,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1
|
||||
2 3
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -43,9 +54,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -72,8 +83,33 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
49 115 116 32 97 116 116 114 105 98 117 116 101 32 111 102 32
|
||||
100 115 101 116 49 46 49 46 49 0
|
||||
49
|
||||
115
|
||||
116
|
||||
32
|
||||
97
|
||||
116
|
||||
116
|
||||
114
|
||||
105
|
||||
98
|
||||
117
|
||||
116
|
||||
101
|
||||
32
|
||||
111
|
||||
102
|
||||
32
|
||||
100
|
||||
115
|
||||
101
|
||||
116
|
||||
49
|
||||
46
|
||||
49
|
||||
46
|
||||
49
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -90,23 +126,138 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
50 110 100 32 97 116 116 114 105 98 117 116 101 32 111 102 32
|
||||
100 115 101 116 49 46 49 46 49 0
|
||||
50
|
||||
110
|
||||
100
|
||||
32
|
||||
97
|
||||
116
|
||||
116
|
||||
114
|
||||
105
|
||||
98
|
||||
117
|
||||
116
|
||||
101
|
||||
32
|
||||
111
|
||||
102
|
||||
32
|
||||
100
|
||||
115
|
||||
101
|
||||
116
|
||||
49
|
||||
46
|
||||
49
|
||||
46
|
||||
49
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -114,9 +265,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -131,7 +282,26 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -148,9 +318,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -165,7 +335,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
1 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
|
||||
1
|
||||
1.1
|
||||
1.2
|
||||
1.3
|
||||
1.4
|
||||
1.5
|
||||
1.6
|
||||
1.7
|
||||
1.8
|
||||
1.9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -173,9 +352,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -191,9 +370,21 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0.1 0.2 0.3 0.4
|
||||
0 0.2 0.4 0.6 0.8
|
||||
0 0.3 0.6 0.9 1.2
|
||||
0
|
||||
0.1
|
||||
0.2
|
||||
0.3
|
||||
0.4
|
||||
0
|
||||
0.2
|
||||
0.4
|
||||
0.6
|
||||
0.8
|
||||
0
|
||||
0.3
|
||||
0.6
|
||||
0.9
|
||||
1.2
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,7 +5,7 @@ DATASET "all" {
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 458 (1.747:1 COMPRESSION)
|
||||
}
|
||||
}
|
||||
FILTERS {
|
||||
PREPROCESSING SHUFFLE
|
||||
COMPRESSION SZIP {
|
||||
@ -21,7 +21,7 @@ DATASET "all" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 10 11 12 13 20 21 22 23 30 31 32 33
|
||||
0 1 2 3
|
||||
10 11 12 13
|
||||
20 21 22 23
|
||||
30 31 32 33
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -29,54 +29,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4
|
||||
10 11 12 13 14
|
||||
20 21 22 23 24
|
||||
30 31 32 33 34
|
||||
100 101 102 103 104
|
||||
110 111 112 113 114
|
||||
120 121 122 123 124
|
||||
130 131 132 133 134
|
||||
200 201 202 203 204
|
||||
210 211 212 213 214
|
||||
220 221 222 223 224
|
||||
230 231 232 233 234
|
||||
1000 1001 1002 1003 1004
|
||||
1010 1011 1012 1013 1014
|
||||
1020 1021 1022 1023 1024
|
||||
1030 1031 1032 1033 1034
|
||||
1100 1101 1102 1103 1104
|
||||
1110 1111 1112 1113 1114
|
||||
1120 1121 1122 1123 1124
|
||||
1130 1131 1132 1133 1134
|
||||
1200 1201 1202 1203 1204
|
||||
1210 1211 1212 1213 1214
|
||||
1220 1221 1222 1223 1224
|
||||
1230 1231 1232 1233 1234
|
||||
2000 2001 2002 2003 2004
|
||||
2010 2011 2012 2013 2014
|
||||
2020 2021 2022 2023 2024
|
||||
2030 2031 2032 2033 2034
|
||||
2100 2101 2102 2103 2104
|
||||
2110 2111 2112 2113 2114
|
||||
2120 2121 2122 2123 2124
|
||||
2130 2131 2132 2133 2134
|
||||
2200 2201 2202 2203 2204
|
||||
2210 2211 2212 2213 2214
|
||||
2220 2221 2222 2223 2224
|
||||
2230 2231 2232 2233 2234
|
||||
3000 3001 3002 3003 3004
|
||||
3010 3011 3012 3013 3014
|
||||
3020 3021 3022 3023 3024
|
||||
3030 3031 3032 3033 3034
|
||||
3100 3101 3102 3103 3104
|
||||
3110 3111 3112 3113 3114
|
||||
3120 3121 3122 3123 3124
|
||||
3130 3131 3132 3133 3134
|
||||
3200 3201 3202 3203 3204
|
||||
3210 3211 3212 3213 3214
|
||||
3220 3221 3222 3223 3224
|
||||
3230 3231 3232 3233 3234
|
||||
0 1 2 3 4 10 11 12 13 14 20 21 22 23 24 30 31 32 33 34 100 101 102 103 104 110 111 112 113 114 120 121 122 123 124 130 131 132 133 134 200 201 202 203 204 210 211 212 213 214 220 221 222 223 224 230 231 232 233 234
|
||||
1000 1001 1002 1003 1004 1010 1011 1012 1013 1014 1020 1021 1022 1023 1024 1030 1031 1032 1033 1034 1100 1101 1102 1103 1104 1110 1111 1112 1113 1114 1120 1121 1122 1123 1124 1130 1131 1132 1133 1134 1200 1201 1202 1203 1204 1210 1211 1212 1213 1214 1220 1221 1222 1223 1224 1230 1231 1232 1233 1234
|
||||
2000 2001 2002 2003 2004 2010 2011 2012 2013 2014 2020 2021 2022 2023 2024 2030 2031 2032 2033 2034 2100 2101 2102 2103 2104 2110 2111 2112 2113 2114 2120 2121 2122 2123 2124 2130 2131 2132 2133 2134 2200 2201 2202 2203 2204 2210 2211 2212 2213 2214 2220 2221 2222 2223 2224 2230 2231 2232 2233 2234
|
||||
3000 3001 3002 3003 3004 3010 3011 3012 3013 3014 3020 3021 3022 3023 3024 3030 3031 3032 3033 3034 3100 3101 3102 3103 3104 3110 3111 3112 3113 3114 3120 3121 3122 3123 3124 3130 3131 3132 3133 3134 3200 3201 3202 3203 3204 3210 3211 3212 3213 3214 3220 3221 3222 3223 3224 3230 3231 3232 3233 3234
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -33,102 +33,22 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2
|
||||
10 11 12
|
||||
20 21 22
|
||||
30 31 32
|
||||
40 41 42
|
||||
50 51 52
|
||||
100 101 102
|
||||
110 111 112
|
||||
120 121 122
|
||||
130 131 132
|
||||
140 141 142
|
||||
150 151 152
|
||||
200 201 202
|
||||
210 211 212
|
||||
220 221 222
|
||||
230 231 232
|
||||
240 241 242
|
||||
250 251 252
|
||||
300 301 302
|
||||
310 311 312
|
||||
320 321 322
|
||||
330 331 332
|
||||
340 341 342
|
||||
350 351 352
|
||||
1000 1001 1002
|
||||
1010 1011 1012
|
||||
1020 1021 1022
|
||||
1030 1031 1032
|
||||
1040 1041 1042
|
||||
1050 1051 1052
|
||||
1100 1101 1102
|
||||
1110 1111 1112
|
||||
1120 1121 1122
|
||||
1130 1131 1132
|
||||
1140 1141 1142
|
||||
1150 1151 1152
|
||||
1200 1201 1202
|
||||
1210 1211 1212
|
||||
1220 1221 1222
|
||||
1230 1231 1232
|
||||
1240 1241 1242
|
||||
1250 1251 1252
|
||||
1300 1301 1302
|
||||
1310 1311 1312
|
||||
1320 1321 1322
|
||||
1330 1331 1332
|
||||
1340 1341 1342
|
||||
1350 1351 1352
|
||||
2000 2001 2002
|
||||
2010 2011 2012
|
||||
2020 2021 2022
|
||||
2030 2031 2032
|
||||
2040 2041 2042
|
||||
2050 2051 2052
|
||||
2100 2101 2102
|
||||
2110 2111 2112
|
||||
2120 2121 2122
|
||||
2130 2131 2132
|
||||
2140 2141 2142
|
||||
2150 2151 2152
|
||||
2200 2201 2202
|
||||
2210 2211 2212
|
||||
2220 2221 2222
|
||||
2230 2231 2232
|
||||
2240 2241 2242
|
||||
2250 2251 2252
|
||||
2300 2301 2302
|
||||
2310 2311 2312
|
||||
2320 2321 2322
|
||||
2330 2331 2332
|
||||
2340 2341 2342
|
||||
2350 2351 2352
|
||||
3000 3001 3002
|
||||
3010 3011 3012
|
||||
3020 3021 3022
|
||||
3030 3031 3032
|
||||
3040 3041 3042
|
||||
3050 3051 3052
|
||||
3100 3101 3102
|
||||
3110 3111 3112
|
||||
3120 3121 3122
|
||||
3130 3131 3132
|
||||
3140 3141 3142
|
||||
3150 3151 3152
|
||||
3200 3201 3202
|
||||
3210 3211 3212
|
||||
3220 3221 3222
|
||||
3230 3231 3232
|
||||
3240 3241 3242
|
||||
3250 3251 3252
|
||||
3300 3301 3302
|
||||
3310 3311 3312
|
||||
3320 3321 3322
|
||||
3330 3331 3332
|
||||
3340 3341 3342
|
||||
3350 3351 3352
|
||||
0 1 2 10 11 12 20 21 22 30 31 32 40 41 42 50 51 52
|
||||
100 101 102 110 111 112 120 121 122 130 131 132 140 141 142 150 151 152
|
||||
200 201 202 210 211 212 220 221 222 230 231 232 240 241 242 250 251 252
|
||||
300 301 302 310 311 312 320 321 322 330 331 332 340 341 342 350 351 352
|
||||
1000 1001 1002 1010 1011 1012 1020 1021 1022 1030 1031 1032 1040 1041 1042 1050 1051 1052
|
||||
1100 1101 1102 1110 1111 1112 1120 1121 1122 1130 1131 1132 1140 1141 1142 1150 1151 1152
|
||||
1200 1201 1202 1210 1211 1212 1220 1221 1222 1230 1231 1232 1240 1241 1242 1250 1251 1252
|
||||
1300 1301 1302 1310 1311 1312 1320 1321 1322 1330 1331 1332 1340 1341 1342 1350 1351 1352
|
||||
2000 2001 2002 2010 2011 2012 2020 2021 2022 2030 2031 2032 2040 2041 2042 2050 2051 2052
|
||||
2100 2101 2102 2110 2111 2112 2120 2121 2122 2130 2131 2132 2140 2141 2142 2150 2151 2152
|
||||
2200 2201 2202 2210 2211 2212 2220 2221 2222 2230 2231 2232 2240 2241 2242 2250 2251 2252
|
||||
2300 2301 2302 2310 2311 2312 2320 2321 2322 2330 2331 2332 2340 2341 2342 2350 2351 2352
|
||||
3000 3001 3002 3010 3011 3012 3020 3021 3022 3030 3031 3032 3040 3041 3042 3050 3051 3052
|
||||
3100 3101 3102 3110 3111 3112 3120 3121 3122 3130 3131 3132 3140 3141 3142 3150 3151 3152
|
||||
3200 3201 3202 3210 3211 3212 3220 3221 3222 3230 3231 3232 3240 3241 3242 3250 3251 3252
|
||||
3300 3301 3302 3310 3311 3312 3320 3321 3322 3330 3331 3332 3340 3341 3342 3350 3351 3352
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -31,10 +31,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 10 11 20 21 22 30 31 32 33
|
||||
100 101 110 111 112 120 121 122 123 130 131 132 133 134
|
||||
200 201 202 210 211 212 213 220 221 222 223 224 230 231 232 233 234 235
|
||||
300 301 302 303 310 311 312 313 314 320 321 322 323 324 325 330 331 332 333 334 335 336
|
||||
0 10 11 20 21 22 30 31 32 33
|
||||
100 101 110 111 112 120 121 122 123 130 131 132 133 134
|
||||
200 201 202 210 211 212 213 220 221 222 223 224 230 231 232 233 234 235
|
||||
300 301 302 303 310 311 312 313 314 320 321 322 323 324 325 330 331 332 333 334 335 336
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -36,22 +36,22 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3
|
||||
100 101 102 103 110 111 112 113
|
||||
200 201 202 203 210 211 212 213 220 221 222 223
|
||||
300 301 302 303 310 311 312 313 320 321 322 323 330 331 332 333
|
||||
1000 1001 1002 1003 1010 1011 1012 1013
|
||||
1100 1101 1102 1103 1110 1111 1112 1113 1120 1121 1122 1123
|
||||
1200 1201 1202 1203 1210 1211 1212 1213 1220 1221 1222 1223 1230 1231 1232 1233
|
||||
1300 1301 1302 1303 1310 1311 1312 1313 1320 1321 1322 1323 1330 1331 1332 1333 1340 1341 1342 1343
|
||||
2000 2001 2002 2003 2010 2011 2012 2013 2020 2021 2022 2023
|
||||
2100 2101 2102 2103 2110 2111 2112 2113 2120 2121 2122 2123 2130 2131 2132 2133
|
||||
2200 2201 2202 2203 2210 2211 2212 2213 2220 2221 2222 2223 2230 2231 2232 2233 2240 2241 2242 2243
|
||||
2300 2301 2302 2303 2310 2311 2312 2313 2320 2321 2322 2323 2330 2331 2332 2333 2340 2341 2342 2343 2350 2351 2352 2353
|
||||
3000 3001 3002 3003 3010 3011 3012 3013 3020 3021 3022 3023 3030 3031 3032 3033
|
||||
3100 3101 3102 3103 3110 3111 3112 3113 3120 3121 3122 3123 3130 3131 3132 3133 3140 3141 3142 3143
|
||||
3200 3201 3202 3203 3210 3211 3212 3213 3220 3221 3222 3223 3230 3231 3232 3233 3240 3241 3242 3243 3250 3251 3252 3253
|
||||
3300 3301 3302 3303 3310 3311 3312 3313 3320 3321 3322 3323 3330 3331 3332 3333 3340 3341 3342 3343 3350 3351 3352 3353 3360 3361 3362 3363
|
||||
0 1 2 3
|
||||
100 101 102 103 110 111 112 113
|
||||
200 201 202 203 210 211 212 213 220 221 222 223
|
||||
300 301 302 303 310 311 312 313 320 321 322 323 330 331 332 333
|
||||
1000 1001 1002 1003 1010 1011 1012 1013
|
||||
1100 1101 1102 1103 1110 1111 1112 1113 1120 1121 1122 1123
|
||||
1200 1201 1202 1203 1210 1211 1212 1213 1220 1221 1222 1223 1230 1231 1232 1233
|
||||
1300 1301 1302 1303 1310 1311 1312 1313 1320 1321 1322 1323 1330 1331 1332 1333 1340 1341 1342 1343
|
||||
2000 2001 2002 2003 2010 2011 2012 2013 2020 2021 2022 2023
|
||||
2100 2101 2102 2103 2110 2111 2112 2113 2120 2121 2122 2123 2130 2131 2132 2133
|
||||
2200 2201 2202 2203 2210 2211 2212 2213 2220 2221 2222 2223 2230 2231 2232 2233 2240 2241 2242 2243
|
||||
2300 2301 2302 2303 2310 2311 2312 2313 2320 2321 2322 2323 2330 2331 2332 2333 2340 2341 2342 2343 2350 2351 2352 2353
|
||||
3000 3001 3002 3003 3010 3011 3012 3013 3020 3021 3022 3023 3030 3031 3032 3033
|
||||
3100 3101 3102 3103 3110 3111 3112 3113 3120 3121 3122 3123 3130 3131 3132 3133 3140 3141 3142 3143
|
||||
3200 3201 3202 3203 3210 3211 3212 3213 3220 3221 3222 3223 3230 3231 3232 3233 3240 3241 3242 3243 3250 3251 3252 3253
|
||||
3300 3301 3302 3303 3310 3311 3312 3313 3320 3321 3322 3323 3330 3331 3332 3333 3340 3341 3342 3343 3350 3351 3352 3353 3360 3361 3362 3363
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -31,11 +31,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr5" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 17;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 17;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "string attribute"
|
||||
|
@ -16,11 +16,11 @@ ATTRIBUTE "/attr4" {
|
||||
}
|
||||
ATTRIBUTE "/attr5" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 17;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 17;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "string attribute"
|
||||
|
@ -4,6 +4,6 @@ ATTRIBUTE "/attr2" {
|
||||
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
|
||||
}
|
||||
ATTRIBUTE "/attr" {
|
||||
}
|
||||
}
|
||||
h5dump error: unable to open attribute "/"
|
||||
}
|
||||
h5dump error: unable to open attribute "/attr"
|
||||
|
@ -2,11 +2,11 @@ HDF5 "tattr4_be.h5" {
|
||||
GROUP "/" {
|
||||
ATTRIBUTE "attr0" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -14,11 +14,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr1" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -26,11 +26,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr2" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -38,11 +38,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr3" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -50,11 +50,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr4" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -62,11 +62,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr5" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -74,11 +74,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr6" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -86,11 +86,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr7" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
@ -98,11 +98,11 @@ GROUP "/" {
|
||||
}
|
||||
ATTRIBUTE "attr8" {
|
||||
DATATYPE H5T_STRING {
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
STRSIZE 4;
|
||||
STRPAD H5T_STR_NULLTERM;
|
||||
CSET H5T_CSET_ASCII;
|
||||
CTYPE H5T_C_S1;
|
||||
}
|
||||
DATASPACE SCALAR
|
||||
DATA {
|
||||
(0): "1234"
|
||||
|
@ -14,8 +14,30 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 116 116 114 105 98 117 116 101 32 111 102 32 114 111 111 116 32 103
|
||||
114 111 117 112 0
|
||||
97
|
||||
116
|
||||
116
|
||||
114
|
||||
105
|
||||
98
|
||||
117
|
||||
116
|
||||
101
|
||||
32
|
||||
111
|
||||
102
|
||||
32
|
||||
114
|
||||
111
|
||||
111
|
||||
116
|
||||
32
|
||||
103
|
||||
114
|
||||
111
|
||||
117
|
||||
112
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -32,7 +54,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
1 2 3 4 5 6 7 8 9 10
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -49,7 +80,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9
|
||||
0
|
||||
0.1
|
||||
0.2
|
||||
0.3
|
||||
0.4
|
||||
0.5
|
||||
0.6
|
||||
0.7
|
||||
0.8
|
||||
0.9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
|
@ -1,34 +1,54 @@
|
||||
Opened "tattr2.h5" with sec2 driver.
|
||||
dset Dataset {2/2}
|
||||
Attribute: array {2}
|
||||
Attribute: array {2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data: [1,2,3], [4,5,6]
|
||||
Attribute: array2D {3, 2}
|
||||
Attribute: array2D {3, 2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) [1,2,3], [4,5,6], [7,8,9], [10,11,12], [13,14,15], [16,17,18]
|
||||
Attribute: array3D {4, 3, 2}
|
||||
(0,0) [1,2,3], [4,5,6],
|
||||
(1,0) [7,8,9], [10,11,12],
|
||||
(2,0) [13,14,15], [16,17,18]
|
||||
Attribute: array3D {4, 3, 2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) [1,2,3], [4,5,6], [7,8,9], [10,11,12], [13,14,15],
|
||||
(0,2,1) [16,17,18], [19,20,21], [22,23,24], [25,26,27], [28,29,30],
|
||||
(1,2,0) [31,32,33], [34,35,36], [37,38,39], [40,41,42], [43,44,45],
|
||||
(2,1,1) [46,47,48], [49,50,51], [52,53,54], [55,56,57], [58,59,60],
|
||||
(3,1,0) [61,62,63], [64,65,66], [67,68,69], [70,71,72]
|
||||
Attribute: bitfield {2}
|
||||
(0,0,0) [1,2,3], [4,5,6],
|
||||
(0,1,0) [7,8,9], [10,11,12],
|
||||
(0,2,0) [13,14,15], [16,17,18],
|
||||
(1,0,0) [19,20,21], [22,23,24],
|
||||
(1,1,0) [25,26,27], [28,29,30],
|
||||
(1,2,0) [31,32,33], [34,35,36],
|
||||
(2,0,0) [37,38,39], [40,41,42],
|
||||
(2,1,0) [43,44,45], [46,47,48],
|
||||
(2,2,0) [49,50,51], [52,53,54],
|
||||
(3,0,0) [55,56,57], [58,59,60],
|
||||
(3,1,0) [61,62,63], [64,65,66],
|
||||
(3,2,0) [67,68,69], [70,71,72]
|
||||
Attribute: bitfield {2}
|
||||
Type: 8-bit bitfield
|
||||
Data: 0x01, 0x02
|
||||
Attribute: bitfield2D {3, 2}
|
||||
Type: 8-bit bitfield
|
||||
Data:
|
||||
(0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
|
||||
(0,0) 0x01, 0x02,
|
||||
(1,0) 0x03, 0x04,
|
||||
(2,0) 0x05, 0x06
|
||||
Attribute: bitfield3D {4, 3, 2}
|
||||
Type: 8-bit bitfield
|
||||
Data:
|
||||
(0,0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16, 0x17, 0x18
|
||||
Attribute: compound {2}
|
||||
(0,0,0) 0x01, 0x02,
|
||||
(0,1,0) 0x03, 0x04,
|
||||
(0,2,0) 0x05, 0x06,
|
||||
(1,0,0) 0x07, 0x08,
|
||||
(1,1,0) 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c,
|
||||
(2,0,0) 0x0d, 0x0e,
|
||||
(2,1,0) 0x0f, 0x10,
|
||||
(2,2,0) 0x11, 0x12,
|
||||
(3,0,0) 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16,
|
||||
(3,2,0) 0x17, 0x18
|
||||
Attribute: compound {2}
|
||||
Type: struct {
|
||||
"a" +0 8-bit integer
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
@ -40,160 +60,264 @@ dset Dataset {2/2}
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
} 12 bytes
|
||||
Data:
|
||||
(0,0) {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}, {11, 12}
|
||||
(0,0) {1, 2}, {3, 4},
|
||||
(1,0) {5, 6}, {7, 8},
|
||||
(2,0) {9, 10}, {11, 12}
|
||||
Attribute: compound3D {4, 3, 2}
|
||||
Type: struct {
|
||||
"a" +0 8-bit integer
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
} 12 bytes
|
||||
Data:
|
||||
(0,0,0) {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}, {11, 12}, {13,
|
||||
(1,0,0) 14}, {15, 16}, {17, 18}, {19, 20}, {21, 22}, {23, 24},
|
||||
(2,0,0) {25, 26}, {27, 28}, {29, 30}, {31, 32}, {33, 34}, {35, 36},
|
||||
(3,0,0) {37, 38}, {39, 40}, {41, 42}, {43, 44}, {45, 46}, {47, 48}
|
||||
Attribute: enum {2}
|
||||
(0,0,0) {1, 2}, {3, 4},
|
||||
(0,1,0) {5, 6}, {7, 8},
|
||||
(0,2,0) {9, 10}, {11, 12},
|
||||
(1,0,0) {13, 14}, {15, 16},
|
||||
(1,1,0) {17, 18}, {19, 20},
|
||||
(1,2,0) {21, 22}, {23, 24},
|
||||
(2,0,0) {25, 26}, {27, 28},
|
||||
(2,1,0) {29, 30}, {31, 32},
|
||||
(2,2,0) {33, 34}, {35, 36},
|
||||
(3,0,0) {37, 38}, {39, 40},
|
||||
(3,1,0) {41, 42}, {43, 44},
|
||||
(3,2,0) {45, 46}, {47, 48}
|
||||
Attribute: enum {2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data: RED, RED
|
||||
Attribute: enum2D {3, 2}
|
||||
Attribute: enum2D {3, 2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data:
|
||||
(0,0) RED, RED, RED, RED, RED, RED
|
||||
Attribute: enum3D {4, 3, 2}
|
||||
(0,0) RED, RED,
|
||||
(1,0) RED, RED,
|
||||
(2,0) RED, RED
|
||||
Attribute: enum3D {4, 3, 2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data:
|
||||
(0,0,0) RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED,
|
||||
(2,0,0) RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED
|
||||
Attribute: float {2}
|
||||
(0,0,0) RED, RED,
|
||||
(0,1,0) RED, RED,
|
||||
(0,2,0) RED, RED,
|
||||
(1,0,0) RED, RED,
|
||||
(1,1,0) RED, RED,
|
||||
(1,2,0) RED, RED,
|
||||
(2,0,0) RED, RED,
|
||||
(2,1,0) RED, RED,
|
||||
(2,2,0) RED, RED,
|
||||
(3,0,0) RED, RED,
|
||||
(3,1,0) RED, RED,
|
||||
(3,2,0) RED, RED
|
||||
Attribute: float {2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data: 1, 2
|
||||
Attribute: float2D {3, 2}
|
||||
Attribute: float2D {3, 2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data:
|
||||
(0,0) 1, 2, 3, 4, 5, 6
|
||||
Attribute: float3D {4, 3, 2}
|
||||
(0,0) 1, 2,
|
||||
(1,0) 3, 4,
|
||||
(2,0) 5, 6
|
||||
Attribute: float3D {4, 3, 2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data:
|
||||
(0,0,0) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
||||
(2,2,1) 18, 19, 20, 21, 22, 23, 24
|
||||
Attribute: integer {2}
|
||||
(0,0,0) 1, 2,
|
||||
(0,1,0) 3, 4,
|
||||
(0,2,0) 5, 6,
|
||||
(1,0,0) 7, 8,
|
||||
(1,1,0) 9, 10,
|
||||
(1,2,0) 11, 12,
|
||||
(2,0,0) 13, 14,
|
||||
(2,1,0) 15, 16,
|
||||
(2,2,0) 17, 18,
|
||||
(3,0,0) 19, 20,
|
||||
(3,1,0) 21, 22,
|
||||
(3,2,0) 23, 24
|
||||
Attribute: integer {2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data: 1, 2
|
||||
Attribute: integer2D {3, 2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) 1, 2, 3, 4, 5, 6
|
||||
(0,0) 1, 2,
|
||||
(1,0) 3, 4,
|
||||
(2,0) 5, 6
|
||||
Attribute: integer3D {4, 3, 2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
||||
(2,2,1) 18, 19, 20, 21, 22, 23, 24
|
||||
Attribute: opaque {2}
|
||||
(0,0,0) 1, 2,
|
||||
(0,1,0) 3, 4,
|
||||
(0,2,0) 5, 6,
|
||||
(1,0,0) 7, 8,
|
||||
(1,1,0) 9, 10,
|
||||
(1,2,0) 11, 12,
|
||||
(2,0,0) 13, 14,
|
||||
(2,1,0) 15, 16,
|
||||
(2,2,0) 17, 18,
|
||||
(3,0,0) 19, 20,
|
||||
(3,1,0) 21, 22,
|
||||
(3,2,0) 23, 24
|
||||
Attribute: opaque {2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data: 0x01, 0x02
|
||||
Attribute: opaque2D {3, 2}
|
||||
Attribute: opaque2D {3, 2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data:
|
||||
(0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
|
||||
Attribute: opaque3D {4, 3, 2}
|
||||
(0,0) 0x01, 0x02,
|
||||
(1,0) 0x03, 0x04,
|
||||
(2,0) 0x05, 0x06
|
||||
Attribute: opaque3D {4, 3, 2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data:
|
||||
(0,0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16, 0x17, 0x18
|
||||
(0,0,0) 0x01, 0x02,
|
||||
(0,1,0) 0x03, 0x04,
|
||||
(0,2,0) 0x05, 0x06,
|
||||
(1,0,0) 0x07, 0x08,
|
||||
(1,1,0) 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c,
|
||||
(2,0,0) 0x0d, 0x0e,
|
||||
(2,1,0) 0x0f, 0x10,
|
||||
(2,2,0) 0x11, 0x12,
|
||||
(3,0,0) 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16,
|
||||
(3,2,0) 0x17, 0x18
|
||||
Attribute: reference {2}
|
||||
Type: object reference
|
||||
Data: DATASET-1:976, DATASET-1:976
|
||||
Attribute: reference2D {3, 2}
|
||||
Type: object reference
|
||||
Data:
|
||||
(0,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(0,0) DATASET-1:976, DATASET-1:976,
|
||||
(1,0) DATASET-1:976, DATASET-1:976,
|
||||
(2,0) DATASET-1:976, DATASET-1:976
|
||||
Attribute: reference3D {4, 3, 2}
|
||||
Type: object reference
|
||||
Data:
|
||||
(0,0,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(0,2,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(1,1,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(2,0,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(2,2,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976,
|
||||
(3,1,0) DATASET-1:976, DATASET-1:976, DATASET-1:976, DATASET-1:976
|
||||
Attribute: string {2}
|
||||
(0,0,0) DATASET-1:976, DATASET-1:976,
|
||||
(0,1,0) DATASET-1:976, DATASET-1:976,
|
||||
(0,2,0) DATASET-1:976, DATASET-1:976,
|
||||
(1,0,0) DATASET-1:976, DATASET-1:976,
|
||||
(1,1,0) DATASET-1:976, DATASET-1:976,
|
||||
(1,2,0) DATASET-1:976, DATASET-1:976,
|
||||
(2,0,0) DATASET-1:976, DATASET-1:976,
|
||||
(2,1,0) DATASET-1:976, DATASET-1:976,
|
||||
(2,2,0) DATASET-1:976, DATASET-1:976,
|
||||
(3,0,0) DATASET-1:976, DATASET-1:976,
|
||||
(3,1,0) DATASET-1:976, DATASET-1:976,
|
||||
(3,2,0) DATASET-1:976, DATASET-1:976
|
||||
Attribute: string {2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data: "ab", "de"
|
||||
Attribute: string2D {3, 2}
|
||||
Attribute: string2D {3, 2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data:
|
||||
(0,0) "ab", "cd", "ef", "gh", "ij", "kl"
|
||||
Attribute: string3D {4, 3, 2}
|
||||
(0,0) "ab", "cd",
|
||||
(1,0) "ef", "gh",
|
||||
(2,0) "ij", "kl"
|
||||
Attribute: string3D {4, 3, 2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data:
|
||||
(0,0,0) "ab", "cd", "ef", "gh", "ij", "kl", "mn", "pq", "rs", "tu",
|
||||
(1,2,0) "vw", "xz", "AB", "CD", "EF", "GH", "IJ", "KL", "MN", "PQ",
|
||||
(3,1,0) "RS", "TU", "VW", "XZ"
|
||||
Attribute: vlen {2}
|
||||
(0,0,0) "ab", "cd",
|
||||
(0,1,0) "ef", "gh",
|
||||
(0,2,0) "ij", "kl",
|
||||
(1,0,0) "mn", "pq",
|
||||
(1,1,0) "rs", "tu",
|
||||
(1,2,0) "vw", "xz",
|
||||
(2,0,0) "AB", "CD",
|
||||
(2,1,0) "EF", "GH",
|
||||
(2,2,0) "IJ", "KL",
|
||||
(3,0,0) "MN", "PQ",
|
||||
(3,1,0) "RS", "TU",
|
||||
(3,2,0) "VW", "XZ"
|
||||
Attribute: vlen {2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data: (1), (2,3)
|
||||
Attribute: vlen2D {3, 2}
|
||||
Attribute: vlen2D {3, 2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) (0), (1), (2,3), (4,5), (6,7,8), (9,10,11)
|
||||
Attribute: vlen3D {4, 3, 2}
|
||||
(0,0) (0), (1),
|
||||
(1,0) (2,3), (4,5),
|
||||
(2,0) (6,7,8), (9,10,11)
|
||||
Attribute: vlen3D {4, 3, 2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) (0), (1), (2), (3), (4), (5), (6,7), (8,9), (10,11),
|
||||
(1,1,1) (12,13), (14,15), (16,17), (18,19,20), (21,22,23),
|
||||
(2,1,0) (24,25,26), (27,28,29), (30,31,32), (33,34,35),
|
||||
(3,0,0) (36,37,38,39), (40,41,42,43), (44,45,46,47), (48,49,50,51),
|
||||
(0,0,0) (0), (1),
|
||||
(0,1,0) (2), (3),
|
||||
(0,2,0) (4), (5),
|
||||
(1,0,0) (6,7), (8,9),
|
||||
(1,1,0) (10,11), (12,13),
|
||||
(1,2,0) (14,15), (16,17),
|
||||
(2,0,0) (18,19,20), (21,22,23),
|
||||
(2,1,0) (24,25,26), (27,28,29),
|
||||
(2,2,0) (30,31,32), (33,34,35),
|
||||
(3,0,0) (36,37,38,39), (40,41,42,43),
|
||||
(3,1,0) (44,45,46,47), (48,49,50,51),
|
||||
(3,2,0) (52,53,54,55), (56,57,58,59)
|
||||
Location: 1:976
|
||||
Links: 1
|
||||
Storage: 8 logical bytes, 0 allocated bytes
|
||||
Type: 32-bit little-endian integer
|
||||
g1 Group
|
||||
Attribute: array {2}
|
||||
Attribute: array {2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data: [1,2,3], [4,5,6]
|
||||
Attribute: array2D {3, 2}
|
||||
Attribute: array2D {3, 2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) [1,2,3], [4,5,6], [7,8,9], [10,11,12], [13,14,15], [16,17,18]
|
||||
Attribute: array3D {4, 3, 2}
|
||||
(0,0) [1,2,3], [4,5,6],
|
||||
(1,0) [7,8,9], [10,11,12],
|
||||
(2,0) [13,14,15], [16,17,18]
|
||||
Attribute: array3D {4, 3, 2}
|
||||
Type: [3] 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) [1,2,3], [4,5,6], [7,8,9], [10,11,12], [13,14,15],
|
||||
(0,2,1) [16,17,18], [19,20,21], [22,23,24], [25,26,27], [28,29,30],
|
||||
(1,2,0) [31,32,33], [34,35,36], [37,38,39], [40,41,42], [43,44,45],
|
||||
(2,1,1) [46,47,48], [49,50,51], [52,53,54], [55,56,57], [58,59,60],
|
||||
(3,1,0) [61,62,63], [64,65,66], [67,68,69], [70,71,72]
|
||||
Attribute: bitfield {2}
|
||||
(0,0,0) [1,2,3], [4,5,6],
|
||||
(0,1,0) [7,8,9], [10,11,12],
|
||||
(0,2,0) [13,14,15], [16,17,18],
|
||||
(1,0,0) [19,20,21], [22,23,24],
|
||||
(1,1,0) [25,26,27], [28,29,30],
|
||||
(1,2,0) [31,32,33], [34,35,36],
|
||||
(2,0,0) [37,38,39], [40,41,42],
|
||||
(2,1,0) [43,44,45], [46,47,48],
|
||||
(2,2,0) [49,50,51], [52,53,54],
|
||||
(3,0,0) [55,56,57], [58,59,60],
|
||||
(3,1,0) [61,62,63], [64,65,66],
|
||||
(3,2,0) [67,68,69], [70,71,72]
|
||||
Attribute: bitfield {2}
|
||||
Type: 8-bit bitfield
|
||||
Data: 0x01, 0x02
|
||||
Attribute: bitfield2D {3, 2}
|
||||
Type: 8-bit bitfield
|
||||
Data:
|
||||
(0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
|
||||
(0,0) 0x01, 0x02,
|
||||
(1,0) 0x03, 0x04,
|
||||
(2,0) 0x05, 0x06
|
||||
Attribute: bitfield3D {4, 3, 2}
|
||||
Type: 8-bit bitfield
|
||||
Data:
|
||||
(0,0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16, 0x17, 0x18
|
||||
Attribute: compound {2}
|
||||
(0,0,0) 0x01, 0x02,
|
||||
(0,1,0) 0x03, 0x04,
|
||||
(0,2,0) 0x05, 0x06,
|
||||
(1,0,0) 0x07, 0x08,
|
||||
(1,1,0) 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c,
|
||||
(2,0,0) 0x0d, 0x0e,
|
||||
(2,1,0) 0x0f, 0x10,
|
||||
(2,2,0) 0x11, 0x12,
|
||||
(3,0,0) 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16,
|
||||
(3,2,0) 0x17, 0x18
|
||||
Attribute: compound {2}
|
||||
Type: struct {
|
||||
"a" +0 8-bit integer
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
@ -205,108 +329,185 @@ g1 Group
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
} 12 bytes
|
||||
Data:
|
||||
(0,0) {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}, {11, 12}
|
||||
(0,0) {1, 2}, {3, 4},
|
||||
(1,0) {5, 6}, {7, 8},
|
||||
(2,0) {9, 10}, {11, 12}
|
||||
Attribute: compound3D {4, 3, 2}
|
||||
Type: struct {
|
||||
"a" +0 8-bit integer
|
||||
"b" +4 IEEE 64-bit little-endian float
|
||||
} 12 bytes
|
||||
Data:
|
||||
(0,0,0) {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}, {11, 12}, {13,
|
||||
(1,0,0) 14}, {15, 16}, {17, 18}, {19, 20}, {21, 22}, {23, 24},
|
||||
(2,0,0) {25, 26}, {27, 28}, {29, 30}, {31, 32}, {33, 34}, {35, 36},
|
||||
(3,0,0) {37, 38}, {39, 40}, {41, 42}, {43, 44}, {45, 46}, {47, 48}
|
||||
Attribute: enum {2}
|
||||
(0,0,0) {1, 2}, {3, 4},
|
||||
(0,1,0) {5, 6}, {7, 8},
|
||||
(0,2,0) {9, 10}, {11, 12},
|
||||
(1,0,0) {13, 14}, {15, 16},
|
||||
(1,1,0) {17, 18}, {19, 20},
|
||||
(1,2,0) {21, 22}, {23, 24},
|
||||
(2,0,0) {25, 26}, {27, 28},
|
||||
(2,1,0) {29, 30}, {31, 32},
|
||||
(2,2,0) {33, 34}, {35, 36},
|
||||
(3,0,0) {37, 38}, {39, 40},
|
||||
(3,1,0) {41, 42}, {43, 44},
|
||||
(3,2,0) {45, 46}, {47, 48}
|
||||
Attribute: enum {2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data: RED, RED
|
||||
Attribute: enum2D {3, 2}
|
||||
Attribute: enum2D {3, 2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data:
|
||||
(0,0) RED, RED, RED, RED, RED, RED
|
||||
Attribute: enum3D {4, 3, 2}
|
||||
(0,0) RED, RED,
|
||||
(1,0) RED, RED,
|
||||
(2,0) RED, RED
|
||||
Attribute: enum3D {4, 3, 2}
|
||||
Type: enum 32-bit little-endian integer {
|
||||
RED = 0
|
||||
GREEN = 1
|
||||
}
|
||||
Data:
|
||||
(0,0,0) RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED,
|
||||
(2,0,0) RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED, RED
|
||||
Attribute: float {2}
|
||||
(0,0,0) RED, RED,
|
||||
(0,1,0) RED, RED,
|
||||
(0,2,0) RED, RED,
|
||||
(1,0,0) RED, RED,
|
||||
(1,1,0) RED, RED,
|
||||
(1,2,0) RED, RED,
|
||||
(2,0,0) RED, RED,
|
||||
(2,1,0) RED, RED,
|
||||
(2,2,0) RED, RED,
|
||||
(3,0,0) RED, RED,
|
||||
(3,1,0) RED, RED,
|
||||
(3,2,0) RED, RED
|
||||
Attribute: float {2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data: 1, 2
|
||||
Attribute: float2D {3, 2}
|
||||
Attribute: float2D {3, 2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data:
|
||||
(0,0) 1, 2, 3, 4, 5, 6
|
||||
Attribute: float3D {4, 3, 2}
|
||||
(0,0) 1, 2,
|
||||
(1,0) 3, 4,
|
||||
(2,0) 5, 6
|
||||
Attribute: float3D {4, 3, 2}
|
||||
Type: IEEE 32-bit little-endian float
|
||||
Data:
|
||||
(0,0,0) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
||||
(2,2,1) 18, 19, 20, 21, 22, 23, 24
|
||||
Attribute: integer {2}
|
||||
(0,0,0) 1, 2,
|
||||
(0,1,0) 3, 4,
|
||||
(0,2,0) 5, 6,
|
||||
(1,0,0) 7, 8,
|
||||
(1,1,0) 9, 10,
|
||||
(1,2,0) 11, 12,
|
||||
(2,0,0) 13, 14,
|
||||
(2,1,0) 15, 16,
|
||||
(2,2,0) 17, 18,
|
||||
(3,0,0) 19, 20,
|
||||
(3,1,0) 21, 22,
|
||||
(3,2,0) 23, 24
|
||||
Attribute: integer {2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data: 1, 2
|
||||
Attribute: integer2D {3, 2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) 1, 2, 3, 4, 5, 6
|
||||
(0,0) 1, 2,
|
||||
(1,0) 3, 4,
|
||||
(2,0) 5, 6
|
||||
Attribute: integer3D {4, 3, 2}
|
||||
Type: 32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
|
||||
(2,2,1) 18, 19, 20, 21, 22, 23, 24
|
||||
Attribute: opaque {2}
|
||||
(0,0,0) 1, 2,
|
||||
(0,1,0) 3, 4,
|
||||
(0,2,0) 5, 6,
|
||||
(1,0,0) 7, 8,
|
||||
(1,1,0) 9, 10,
|
||||
(1,2,0) 11, 12,
|
||||
(2,0,0) 13, 14,
|
||||
(2,1,0) 15, 16,
|
||||
(2,2,0) 17, 18,
|
||||
(3,0,0) 19, 20,
|
||||
(3,1,0) 21, 22,
|
||||
(3,2,0) 23, 24
|
||||
Attribute: opaque {2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data: 0x01, 0x02
|
||||
Attribute: opaque2D {3, 2}
|
||||
Attribute: opaque2D {3, 2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data:
|
||||
(0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06
|
||||
Attribute: opaque3D {4, 3, 2}
|
||||
(0,0) 0x01, 0x02,
|
||||
(1,0) 0x03, 0x04,
|
||||
(2,0) 0x05, 0x06
|
||||
Attribute: opaque3D {4, 3, 2}
|
||||
Type: 1-byte opaque type
|
||||
(tag = "1-byte opaque type")
|
||||
Data:
|
||||
(0,0,0) 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12, 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16, 0x17, 0x18
|
||||
Attribute: string {2}
|
||||
(0,0,0) 0x01, 0x02,
|
||||
(0,1,0) 0x03, 0x04,
|
||||
(0,2,0) 0x05, 0x06,
|
||||
(1,0,0) 0x07, 0x08,
|
||||
(1,1,0) 0x09, 0x0a,
|
||||
(1,2,0) 0x0b, 0x0c,
|
||||
(2,0,0) 0x0d, 0x0e,
|
||||
(2,1,0) 0x0f, 0x10,
|
||||
(2,2,0) 0x11, 0x12,
|
||||
(3,0,0) 0x13, 0x14,
|
||||
(3,1,0) 0x15, 0x16,
|
||||
(3,2,0) 0x17, 0x18
|
||||
Attribute: string {2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data: "ab", "de"
|
||||
Attribute: string2D {3, 2}
|
||||
Attribute: string2D {3, 2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data:
|
||||
(0,0) "ab", "cd", "ef", "gh", "ij", "kl"
|
||||
Attribute: string3D {4, 3, 2}
|
||||
(0,0) "ab", "cd",
|
||||
(1,0) "ef", "gh",
|
||||
(2,0) "ij", "kl"
|
||||
Attribute: string3D {4, 3, 2}
|
||||
Type: 2-byte null-terminated ASCII string
|
||||
Data:
|
||||
(0,0,0) "ab", "cd", "ef", "gh", "ij", "kl", "mn", "pq", "rs", "tu",
|
||||
(1,2,0) "vw", "xz", "AB", "CD", "EF", "GH", "IJ", "KL", "MN", "PQ",
|
||||
(3,1,0) "RS", "TU", "VW", "XZ"
|
||||
Attribute: vlen {2}
|
||||
(0,0,0) "ab", "cd",
|
||||
(0,1,0) "ef", "gh",
|
||||
(0,2,0) "ij", "kl",
|
||||
(1,0,0) "mn", "pq",
|
||||
(1,1,0) "rs", "tu",
|
||||
(1,2,0) "vw", "xz",
|
||||
(2,0,0) "AB", "CD",
|
||||
(2,1,0) "EF", "GH",
|
||||
(2,2,0) "IJ", "KL",
|
||||
(3,0,0) "MN", "PQ",
|
||||
(3,1,0) "RS", "TU",
|
||||
(3,2,0) "VW", "XZ"
|
||||
Attribute: vlen {2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data: (1), (2,3)
|
||||
Attribute: vlen2D {3, 2}
|
||||
Attribute: vlen2D {3, 2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data:
|
||||
(0,0) (0), (1), (2,3), (4,5), (6,7,8), (9,10,11)
|
||||
Attribute: vlen3D {4, 3, 2}
|
||||
(0,0) (0), (1),
|
||||
(1,0) (2,3), (4,5),
|
||||
(2,0) (6,7,8), (9,10,11)
|
||||
Attribute: vlen3D {4, 3, 2}
|
||||
Type: variable length of
|
||||
32-bit little-endian integer
|
||||
Data:
|
||||
(0,0,0) (0), (1), (2), (3), (4), (5), (6,7), (8,9), (10,11),
|
||||
(1,1,1) (12,13), (14,15), (16,17), (18,19,20), (21,22,23),
|
||||
(2,1,0) (24,25,26), (27,28,29), (30,31,32), (33,34,35),
|
||||
(3,0,0) (36,37,38,39), (40,41,42,43), (44,45,46,47), (48,49,50,51),
|
||||
(0,0,0) (0), (1),
|
||||
(0,1,0) (2), (3),
|
||||
(0,2,0) (4), (5),
|
||||
(1,0,0) (6,7), (8,9),
|
||||
(1,1,0) (10,11), (12,13),
|
||||
(1,2,0) (14,15), (16,17),
|
||||
(2,0,0) (18,19,20), (21,22,23),
|
||||
(2,1,0) (24,25,26), (27,28,29),
|
||||
(2,2,0) (30,31,32), (33,34,35),
|
||||
(3,0,0) (36,37,38,39), (40,41,42,43),
|
||||
(3,1,0) (44,45,46,47), (48,49,50,51),
|
||||
(3,2,0) (52,53,54,55), (56,57,58,59)
|
||||
Location: 1:2176
|
||||
Links: 1
|
||||
|
@ -22,7 +22,7 @@ GROUP "/" {
|
||||
(7,2): 216, 219, 222, 225, 228, 231
|
||||
(0): }
|
||||
(0): }
|
||||
(1): DATASET /Dataset2 {
|
||||
(1): DATASET /Dataset2 {
|
||||
(1): REGION_TYPE POINT (6,9), (2,2), (8,4), (1,6), (2,8),
|
||||
(1): (3,2), (0,4), (9,0), (7,1), (3,3)
|
||||
(1): DATATYPE H5T_STD_U8BE
|
||||
|
@ -10,6 +10,7 @@ Dataset1 Dataset {NULL}
|
||||
Storage: 0 logical bytes, 0 allocated bytes
|
||||
Type: native int
|
||||
Data:
|
||||
|
||||
Dataset2 Dataset {10/10, 10/10}
|
||||
Location: 1:800
|
||||
Links: 1
|
||||
|
@ -6,9 +6,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -23,9 +23,38 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0xff 0xfe 0xfd 0xfc 0xfb 0xfa 0xf9 0xf8 0xf7 0xf6 0xf5 0xf4 0xf3
|
||||
0xf2 0xf1 0xf0 0xef 0xee 0xed 0xec 0xeb 0xea 0xe9 0xe8 0xe7 0xe6
|
||||
0xe5 0xe4 0xe3 0xe2 0xe1 0xe0
|
||||
0xff
|
||||
0xfe
|
||||
0xfd
|
||||
0xfc
|
||||
0xfb
|
||||
0xfa
|
||||
0xf9
|
||||
0xf8
|
||||
0xf7
|
||||
0xf6
|
||||
0xf5
|
||||
0xf4
|
||||
0xf3
|
||||
0xf2
|
||||
0xf1
|
||||
0xf0
|
||||
0xef
|
||||
0xee
|
||||
0xed
|
||||
0xec
|
||||
0xeb
|
||||
0xea
|
||||
0xe9
|
||||
0xe8
|
||||
0xe7
|
||||
0xe6
|
||||
0xe5
|
||||
0xe4
|
||||
0xe3
|
||||
0xe2
|
||||
0xe1
|
||||
0xe0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -33,9 +62,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -50,8 +79,22 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
ff:fe fd:fc fb:fa f9:f8 f7:f6 f5:f4 f3:f2 f1:f0 ef:ee ed:ec eb:ea
|
||||
e9:e8 e7:e6 e5:e4 e3:e2 e1:e0
|
||||
ff:fe
|
||||
fd:fc
|
||||
fb:fa
|
||||
f9:f8
|
||||
f7:f6
|
||||
f5:f4
|
||||
f3:f2
|
||||
f1:f0
|
||||
ef:ee
|
||||
ed:ec
|
||||
eb:ea
|
||||
e9:e8
|
||||
e7:e6
|
||||
e5:e4
|
||||
e3:e2
|
||||
e1:e0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -11,9 +11,9 @@ SUPER_BLOCK {
|
||||
ISTORE_K 32
|
||||
FILE_SPACE_STRATEGY H5F_FILE_SPACE_ALL
|
||||
FREE_SPACE_THRESHOLD 1
|
||||
}
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
}
|
||||
}
|
||||
DATASET "dset" {
|
||||
DATATYPE H5T_STD_I32BE
|
||||
|
@ -11,9 +11,9 @@ SUPER_BLOCK {
|
||||
ISTORE_K 32
|
||||
FILE_SPACE_STRATEGY H5F_FILE_SPACE_ALL
|
||||
FREE_SPACE_THRESHOLD 1
|
||||
}
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
USER_BLOCK {
|
||||
USERBLOCK_SIZE 0
|
||||
}
|
||||
}
|
||||
GROUP "/" {
|
||||
}
|
||||
|
@ -4,11 +4,11 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_I8LE
|
||||
DATASPACE SIMPLE { ( 308 ) / ( 308 ) }
|
||||
DATA {
|
||||
"Four score and seven years ago our forefathers brought forth on this "
|
||||
"continent a new nation, conceived in liberty and dedicated to the pro"
|
||||
"position that all men are created equal. Now we are engaged in a grea"
|
||||
"t civil war, testing whether that nation or any nation so conceived a"
|
||||
"nd so dedicated can long endure."
|
||||
"Four score and seven years ago our forefathers brought forth on th"
|
||||
"is continent a new nation, conceived in liberty and dedicated to t"
|
||||
"he proposition that all men are created equal. Now we are engaged "
|
||||
"in a great civil war, testing whether that nation or any nation so"
|
||||
" conceived and so dedicated can long endure."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -6,13 +6,13 @@ COMMENT "This is a dataset with chunked storage"
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 800
|
||||
}
|
||||
}
|
||||
FILTERS {
|
||||
NONE
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
|
@ -12,7 +12,7 @@ COMMENT "This is a dataset with compact storage"
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_EARLY
|
||||
|
@ -25,9 +25,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -63,7 +63,11 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1 1 0.5 2 4 0.333333 3 9 0.25 4 16 0.2
|
||||
0 0 1
|
||||
1 1 0.5
|
||||
2 4 0.333333
|
||||
3 9 0.25
|
||||
4 16 0.2
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -72,9 +76,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -86,7 +90,11 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1.1 2 2.2 3 3.3 4 4.4
|
||||
0 0
|
||||
1 1.1
|
||||
2 2.2
|
||||
3 3.3
|
||||
4 4.4
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -94,9 +102,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -109,96 +117,24 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 1 2 3 4 5 6
|
||||
2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
1 2 3 4 2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
2 3 4 5 3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
1 2 3 4 2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
2 3 4 5 3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
6 7 8 9 7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
11 12 13 14 15 16
|
||||
2 3 4 5 3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
6 7 8 9 7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
11 12 13 14 15 16
|
||||
7 8 9 10 8 9 10 11 12 13
|
||||
9 10 11 12 13 14
|
||||
10 11 12 13 14 15
|
||||
11 12 13 14 15 16
|
||||
12 13 14 15 16 17
|
||||
0 1 2 3 1 2 3 4 5 6 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10
|
||||
1 2 3 4 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11
|
||||
2 3 4 5 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15
|
||||
1 2 3 4 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11
|
||||
2 3 4 5 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15
|
||||
6 7 8 9 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15 11 12 13 14 15 16
|
||||
2 3 4 5 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12
|
||||
3 4 5 6 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13
|
||||
4 5 6 7 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14
|
||||
5 6 7 8 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15
|
||||
6 7 8 9 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15 11 12 13 14 15 16
|
||||
7 8 9 10 8 9 10 11 12 13 9 10 11 12 13 14 10 11 12 13 14 15 11 12 13 14 15 16 12 13 14 15 16 17
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -206,9 +142,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -220,7 +156,11 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 1 4 2 5 3 6 4 7
|
||||
0 3
|
||||
1 4
|
||||
2 5
|
||||
3 6
|
||||
4 7
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -250,9 +190,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -264,7 +204,11 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 0.1 2 0.2 3 0.3 4 0.4
|
||||
0 0
|
||||
1 0.1
|
||||
2 0.2
|
||||
3 0.3
|
||||
4 0.4
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -31,7 +31,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -67,7 +67,12 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1 1 0.5 2 4 0.333333 3 9 0.25 4 16 0.2 5 25 0.166667
|
||||
0 0 1
|
||||
1 1 0.5
|
||||
2 4 0.333333
|
||||
3 9 0.25
|
||||
4 16 0.2
|
||||
5 25 0.166667
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -82,7 +87,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -94,7 +99,12 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1.1 2 2.2 3 3.3 4 4.4 5 5.5
|
||||
0 0
|
||||
1 1.1
|
||||
2 2.2
|
||||
3 3.3
|
||||
4 4.4
|
||||
5 5.5
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -108,7 +118,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -120,7 +130,12 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1 2 2 3 3 4 4 5 5
|
||||
0 0
|
||||
1 1
|
||||
2 2
|
||||
3 3
|
||||
4 4
|
||||
5 5
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -156,7 +171,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -168,7 +183,12 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 1 2 2 3 3 4 4 5 5
|
||||
0 0
|
||||
1 1
|
||||
2 2
|
||||
3 3
|
||||
4 4
|
||||
5 5
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,12 +5,12 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillOnAlloc" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillOnAlloc" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:Data>
|
||||
<!-- Compound fill not yet implemented. -->
|
||||
<hdf5:NoData />
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<!-- Compound fill not yet implemented. -->
|
||||
<hdf5:NoData />
|
||||
</hdf5:Data>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -90,36 +90,12 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 0 1 2 3 4 5
|
||||
1 2 3 4 5 6
|
||||
2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9 0 0 0 0 0 0 0 0 0 0 0 109
|
||||
1 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 1 2 3 4 5 6
|
||||
2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10 0.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 109
|
||||
2 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 2 3 4 5 6 7
|
||||
3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11 1.92 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 109
|
||||
3 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 3 4 5 6 7 8
|
||||
4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12 2.88 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 109
|
||||
4 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 4 5 6 7 8 9
|
||||
5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13 3.84 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 109
|
||||
5 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 5 6 7 8 9 10
|
||||
6 7 8 9 10 11
|
||||
7 8 9 10 11 12
|
||||
8 9 10 11 12 13
|
||||
9 10 11 12 13 14 4.8 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 109
|
||||
0 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 0 1 2 3 4 5 1 2 3 4 5 6 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 0 0 0 0 0 0 0 0 0 0 0 109
|
||||
1 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 1 2 3 4 5 6 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 0.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 1024.96 109
|
||||
2 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 2 3 4 5 6 7 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 1.92 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 2049.93 109
|
||||
3 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 3 4 5 6 7 8 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 2.88 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 3074.89 109
|
||||
4 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 4 5 6 7 8 9 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 3.84 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 4099.85 109
|
||||
5 "A fight is a contract that takes two people to honor." "A combative stance means that you've accepted the contract." "In which case, you deserve what you get." " -- Professor Cheng Man-ch'ing" "Hello!" 5 6 7 8 9 10 6 7 8 9 10 11 7 8 9 10 11 12 8 9 10 11 12 13 9 10 11 12 13 14 4.8 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 5124.82 109
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -13,7 +13,7 @@ COMMENT "This is a dataset with contiguous storage"
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -31,9 +31,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -49,16 +49,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
30 33 36 39 42 45 48 51 54 57
|
||||
60 63 66 69 72 75 78 81 84 87
|
||||
90 93 96 99 102 105 108 111 114 117
|
||||
120 123 126 129 132 135 138 141 144 147
|
||||
150 153 156 159 162 165 168 171 174 177
|
||||
180 183 186 189 192 195 198 201 204 207
|
||||
210 213 216 219 222 225 228 231 234 237
|
||||
240 243 246 249 252 255 2 5 8 11
|
||||
14 17 20 23 26 29 32 35 38 41
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
30
|
||||
33
|
||||
36
|
||||
39
|
||||
42
|
||||
45
|
||||
48
|
||||
51
|
||||
54
|
||||
57
|
||||
60
|
||||
63
|
||||
66
|
||||
69
|
||||
72
|
||||
75
|
||||
78
|
||||
81
|
||||
84
|
||||
87
|
||||
90
|
||||
93
|
||||
96
|
||||
99
|
||||
102
|
||||
105
|
||||
108
|
||||
111
|
||||
114
|
||||
117
|
||||
120
|
||||
123
|
||||
126
|
||||
129
|
||||
132
|
||||
135
|
||||
138
|
||||
141
|
||||
144
|
||||
147
|
||||
150
|
||||
153
|
||||
156
|
||||
159
|
||||
162
|
||||
165
|
||||
168
|
||||
171
|
||||
174
|
||||
177
|
||||
180
|
||||
183
|
||||
186
|
||||
189
|
||||
192
|
||||
195
|
||||
198
|
||||
201
|
||||
204
|
||||
207
|
||||
210
|
||||
213
|
||||
216
|
||||
219
|
||||
222
|
||||
225
|
||||
228
|
||||
231
|
||||
234
|
||||
237
|
||||
240
|
||||
243
|
||||
246
|
||||
249
|
||||
252
|
||||
255
|
||||
2
|
||||
5
|
||||
8
|
||||
11
|
||||
14
|
||||
17
|
||||
20
|
||||
23
|
||||
26
|
||||
29
|
||||
32
|
||||
35
|
||||
38
|
||||
41
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -17,7 +17,7 @@ GROUP "/" {
|
||||
(7,2): 216, 219, 222, 225, 228, 231
|
||||
(0): }
|
||||
(0): }
|
||||
(1): DATASET /Dataset2 {
|
||||
(1): DATASET /Dataset2 {
|
||||
(1): REGION_TYPE POINT (6,9), (2,2), (8,4), (1,6), (2,8), (3,2),
|
||||
(1): (0,4), (9,0), (7,1), (3,3)
|
||||
(1): DATATYPE H5T_STD_U8BE
|
||||
|
@ -5,13 +5,13 @@ DATASET "deflate" {
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 385 (2.078:1 COMPRESSION)
|
||||
}
|
||||
}
|
||||
FILTERS {
|
||||
COMPRESSION DEFLATE { LEVEL 9 }
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -23,16 +23,206 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
||||
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
||||
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
||||
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
||||
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
||||
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
||||
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
||||
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
||||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
25
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
25
|
||||
26
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
25
|
||||
26
|
||||
27
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
20
|
||||
21
|
||||
22
|
||||
23
|
||||
24
|
||||
25
|
||||
26
|
||||
27
|
||||
28
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -40,9 +230,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -58,86 +248,606 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0.0001 0.0002 0.0003 0.0004 0.0005 0.0006 0.0007 0.0008 0.0009 0.001
|
||||
0.0011 0.0012 0.0013 0.0014 0.0015 0.0016 0.0017 0.0018 0.0019
|
||||
1 1.0001 1.0002 1.0003 1.0004 1.0005 1.0006 1.0007 1.0008 1.0009 1.001
|
||||
1.0011 1.0012 1.0013 1.0014 1.0015 1.0016 1.0017 1.0018 1.0019
|
||||
2 2.0001 2.0002 2.0003 2.0004 2.0005 2.0006 2.0007 2.0008 2.0009 2.001
|
||||
2.0011 2.0012 2.0013 2.0014 2.0015 2.0016 2.0017 2.0018 2.0019
|
||||
3 3.0001 3.0002 3.0003 3.0004 3.0005 3.0006 3.0007 3.0008 3.0009 3.001
|
||||
3.0011 3.0012 3.0013 3.0014 3.0015 3.0016 3.0017 3.0018 3.0019
|
||||
4 4.0001 4.0002 4.0003 4.0004 4.0005 4.0006 4.0007 4.0008 4.0009 4.001
|
||||
4.0011 4.0012 4.0013 4.0014 4.0015 4.0016 4.0017 4.0018 4.0019
|
||||
5 5.0001 5.0002 5.0003 5.0004 5.0005 5.0006 5.0007 5.0008 5.0009 5.001
|
||||
5.0011 5.0012 5.0013 5.0014 5.0015 5.0016 5.0017 5.0018 5.0019
|
||||
6 6.0001 6.0002 6.0003 6.0004 6.0005 6.0006 6.0007 6.0008 6.0009 6.001
|
||||
6.0011 6.0012 6.0013 6.0014 6.0015 6.0016 6.0017 6.0018 6.0019
|
||||
7 7.0001 7.0002 7.0003 7.0004 7.0005 7.0006 7.0007 7.0008 7.0009 7.001
|
||||
7.0011 7.0012 7.0013 7.0014 7.0015 7.0016 7.0017 7.0018 7.0019
|
||||
8 8.0001 8.0002 8.0003 8.0004 8.0005 8.0006 8.0007 8.0008 8.0009 8.001
|
||||
8.0011 8.0012 8.0013 8.0014 8.0015 8.0016 8.0017 8.0018 8.0019
|
||||
9 9.0001 9.0002 9.0003 9.0004 9.0005 9.0006 9.0007 9.0008 9.0009 9.001
|
||||
9.0011 9.0012 9.0013 9.0014 9.0015 9.0016 9.0017 9.0018 9.0019
|
||||
10 10.0001 10.0002 10.0003 10.0004 10.0005 10.0006 10.0007 10.0008
|
||||
10.0009 10.001 10.0011 10.0012 10.0013 10.0014 10.0015 10.0016 10.0017
|
||||
10.0018 10.0019
|
||||
11 11.0001 11.0002 11.0003 11.0004 11.0005 11.0006 11.0007 11.0008
|
||||
11.0009 11.001 11.0011 11.0012 11.0013 11.0014 11.0015 11.0016 11.0017
|
||||
11.0018 11.0019
|
||||
12 12.0001 12.0002 12.0003 12.0004 12.0005 12.0006 12.0007 12.0008
|
||||
12.0009 12.001 12.0011 12.0012 12.0013 12.0014 12.0015 12.0016 12.0017
|
||||
12.0018 12.0019
|
||||
13 13.0001 13.0002 13.0003 13.0004 13.0005 13.0006 13.0007 13.0008
|
||||
13.0009 13.001 13.0011 13.0012 13.0013 13.0014 13.0015 13.0016 13.0017
|
||||
13.0018 13.0019
|
||||
14 14.0001 14.0002 14.0003 14.0004 14.0005 14.0006 14.0007 14.0008
|
||||
14.0009 14.001 14.0011 14.0012 14.0013 14.0014 14.0015 14.0016 14.0017
|
||||
14.0018 14.0019
|
||||
15 15.0001 15.0002 15.0003 15.0004 15.0005 15.0006 15.0007 15.0008
|
||||
15.0009 15.001 15.0011 15.0012 15.0013 15.0014 15.0015 15.0016 15.0017
|
||||
15.0018 15.0019
|
||||
16 16.0001 16.0002 16.0003 16.0004 16.0005 16.0006 16.0007 16.0008
|
||||
16.0009 16.001 16.0011 16.0012 16.0013 16.0014 16.0015 16.0016 16.0017
|
||||
16.0018 16.0019
|
||||
17 17.0001 17.0002 17.0003 17.0004 17.0005 17.0006 17.0007 17.0008
|
||||
17.0009 17.001 17.0011 17.0012 17.0013 17.0014 17.0015 17.0016 17.0017
|
||||
17.0018 17.0019
|
||||
18 18.0001 18.0002 18.0003 18.0004 18.0005 18.0006 18.0007 18.0008
|
||||
18.0009 18.001 18.0011 18.0012 18.0013 18.0014 18.0015 18.0016 18.0017
|
||||
18.0018 18.0019
|
||||
19 19.0001 19.0002 19.0003 19.0004 19.0005 19.0006 19.0007 19.0008
|
||||
19.0009 19.001 19.0011 19.0012 19.0013 19.0014 19.0015 19.0016 19.0017
|
||||
19.0018 19.0019
|
||||
20 20.0001 20.0002 20.0003 20.0004 20.0005 20.0006 20.0007 20.0008
|
||||
20.0009 20.001 20.0011 20.0012 20.0013 20.0014 20.0015 20.0016 20.0017
|
||||
20.0018 20.0019
|
||||
21 21.0001 21.0002 21.0003 21.0004 21.0005 21.0006 21.0007 21.0008
|
||||
21.0009 21.001 21.0011 21.0012 21.0013 21.0014 21.0015 21.0016 21.0017
|
||||
21.0018 21.0019
|
||||
22 22.0001 22.0002 22.0003 22.0004 22.0005 22.0006 22.0007 22.0008
|
||||
22.0009 22.001 22.0011 22.0012 22.0013 22.0014 22.0015 22.0016 22.0017
|
||||
22.0018 22.0019
|
||||
23 23.0001 23.0002 23.0003 23.0004 23.0005 23.0006 23.0007 23.0008
|
||||
23.0009 23.001 23.0011 23.0012 23.0013 23.0014 23.0015 23.0016 23.0017
|
||||
23.0018 23.0019
|
||||
24 24.0001 24.0002 24.0003 24.0004 24.0005 24.0006 24.0007 24.0008
|
||||
24.0009 24.001 24.0011 24.0012 24.0013 24.0014 24.0015 24.0016 24.0017
|
||||
24.0018 24.0019
|
||||
25 25.0001 25.0002 25.0003 25.0004 25.0005 25.0006 25.0007 25.0008
|
||||
25.0009 25.001 25.0011 25.0012 25.0013 25.0014 25.0015 25.0016 25.0017
|
||||
25.0018 25.0019
|
||||
26 26.0001 26.0002 26.0003 26.0004 26.0005 26.0006 26.0007 26.0008
|
||||
26.0009 26.001 26.0011 26.0012 26.0013 26.0014 26.0015 26.0016 26.0017
|
||||
26.0018 26.0019
|
||||
27 27.0001 27.0002 27.0003 27.0004 27.0005 27.0006 27.0007 27.0008
|
||||
27.0009 27.001 27.0011 27.0012 27.0013 27.0014 27.0015 27.0016 27.0017
|
||||
27.0018 27.0019
|
||||
28 28.0001 28.0002 28.0003 28.0004 28.0005 28.0006 28.0007 28.0008
|
||||
28.0009 28.001 28.0011 28.0012 28.0013 28.0014 28.0015 28.0016 28.0017
|
||||
28.0018 28.0019
|
||||
29 29.0001 29.0002 29.0003 29.0004 29.0005 29.0006 29.0007 29.0008
|
||||
29.0009 29.001 29.0011 29.0012 29.0013 29.0014 29.0015 29.0016 29.0017
|
||||
29.0018 29.0019
|
||||
0
|
||||
0.0001
|
||||
0.0002
|
||||
0.0003
|
||||
0.0004
|
||||
0.0005
|
||||
0.0006
|
||||
0.0007
|
||||
0.0008
|
||||
0.0009
|
||||
0.001
|
||||
0.0011
|
||||
0.0012
|
||||
0.0013
|
||||
0.0014
|
||||
0.0015
|
||||
0.0016
|
||||
0.0017
|
||||
0.0018
|
||||
0.0019
|
||||
1
|
||||
1.0001
|
||||
1.0002
|
||||
1.0003
|
||||
1.0004
|
||||
1.0005
|
||||
1.0006
|
||||
1.0007
|
||||
1.0008
|
||||
1.0009
|
||||
1.001
|
||||
1.0011
|
||||
1.0012
|
||||
1.0013
|
||||
1.0014
|
||||
1.0015
|
||||
1.0016
|
||||
1.0017
|
||||
1.0018
|
||||
1.0019
|
||||
2
|
||||
2.0001
|
||||
2.0002
|
||||
2.0003
|
||||
2.0004
|
||||
2.0005
|
||||
2.0006
|
||||
2.0007
|
||||
2.0008
|
||||
2.0009
|
||||
2.001
|
||||
2.0011
|
||||
2.0012
|
||||
2.0013
|
||||
2.0014
|
||||
2.0015
|
||||
2.0016
|
||||
2.0017
|
||||
2.0018
|
||||
2.0019
|
||||
3
|
||||
3.0001
|
||||
3.0002
|
||||
3.0003
|
||||
3.0004
|
||||
3.0005
|
||||
3.0006
|
||||
3.0007
|
||||
3.0008
|
||||
3.0009
|
||||
3.001
|
||||
3.0011
|
||||
3.0012
|
||||
3.0013
|
||||
3.0014
|
||||
3.0015
|
||||
3.0016
|
||||
3.0017
|
||||
3.0018
|
||||
3.0019
|
||||
4
|
||||
4.0001
|
||||
4.0002
|
||||
4.0003
|
||||
4.0004
|
||||
4.0005
|
||||
4.0006
|
||||
4.0007
|
||||
4.0008
|
||||
4.0009
|
||||
4.001
|
||||
4.0011
|
||||
4.0012
|
||||
4.0013
|
||||
4.0014
|
||||
4.0015
|
||||
4.0016
|
||||
4.0017
|
||||
4.0018
|
||||
4.0019
|
||||
5
|
||||
5.0001
|
||||
5.0002
|
||||
5.0003
|
||||
5.0004
|
||||
5.0005
|
||||
5.0006
|
||||
5.0007
|
||||
5.0008
|
||||
5.0009
|
||||
5.001
|
||||
5.0011
|
||||
5.0012
|
||||
5.0013
|
||||
5.0014
|
||||
5.0015
|
||||
5.0016
|
||||
5.0017
|
||||
5.0018
|
||||
5.0019
|
||||
6
|
||||
6.0001
|
||||
6.0002
|
||||
6.0003
|
||||
6.0004
|
||||
6.0005
|
||||
6.0006
|
||||
6.0007
|
||||
6.0008
|
||||
6.0009
|
||||
6.001
|
||||
6.0011
|
||||
6.0012
|
||||
6.0013
|
||||
6.0014
|
||||
6.0015
|
||||
6.0016
|
||||
6.0017
|
||||
6.0018
|
||||
6.0019
|
||||
7
|
||||
7.0001
|
||||
7.0002
|
||||
7.0003
|
||||
7.0004
|
||||
7.0005
|
||||
7.0006
|
||||
7.0007
|
||||
7.0008
|
||||
7.0009
|
||||
7.001
|
||||
7.0011
|
||||
7.0012
|
||||
7.0013
|
||||
7.0014
|
||||
7.0015
|
||||
7.0016
|
||||
7.0017
|
||||
7.0018
|
||||
7.0019
|
||||
8
|
||||
8.0001
|
||||
8.0002
|
||||
8.0003
|
||||
8.0004
|
||||
8.0005
|
||||
8.0006
|
||||
8.0007
|
||||
8.0008
|
||||
8.0009
|
||||
8.001
|
||||
8.0011
|
||||
8.0012
|
||||
8.0013
|
||||
8.0014
|
||||
8.0015
|
||||
8.0016
|
||||
8.0017
|
||||
8.0018
|
||||
8.0019
|
||||
9
|
||||
9.0001
|
||||
9.0002
|
||||
9.0003
|
||||
9.0004
|
||||
9.0005
|
||||
9.0006
|
||||
9.0007
|
||||
9.0008
|
||||
9.0009
|
||||
9.001
|
||||
9.0011
|
||||
9.0012
|
||||
9.0013
|
||||
9.0014
|
||||
9.0015
|
||||
9.0016
|
||||
9.0017
|
||||
9.0018
|
||||
9.0019
|
||||
10
|
||||
10.0001
|
||||
10.0002
|
||||
10.0003
|
||||
10.0004
|
||||
10.0005
|
||||
10.0006
|
||||
10.0007
|
||||
10.0008
|
||||
10.0009
|
||||
10.001
|
||||
10.0011
|
||||
10.0012
|
||||
10.0013
|
||||
10.0014
|
||||
10.0015
|
||||
10.0016
|
||||
10.0017
|
||||
10.0018
|
||||
10.0019
|
||||
11
|
||||
11.0001
|
||||
11.0002
|
||||
11.0003
|
||||
11.0004
|
||||
11.0005
|
||||
11.0006
|
||||
11.0007
|
||||
11.0008
|
||||
11.0009
|
||||
11.001
|
||||
11.0011
|
||||
11.0012
|
||||
11.0013
|
||||
11.0014
|
||||
11.0015
|
||||
11.0016
|
||||
11.0017
|
||||
11.0018
|
||||
11.0019
|
||||
12
|
||||
12.0001
|
||||
12.0002
|
||||
12.0003
|
||||
12.0004
|
||||
12.0005
|
||||
12.0006
|
||||
12.0007
|
||||
12.0008
|
||||
12.0009
|
||||
12.001
|
||||
12.0011
|
||||
12.0012
|
||||
12.0013
|
||||
12.0014
|
||||
12.0015
|
||||
12.0016
|
||||
12.0017
|
||||
12.0018
|
||||
12.0019
|
||||
13
|
||||
13.0001
|
||||
13.0002
|
||||
13.0003
|
||||
13.0004
|
||||
13.0005
|
||||
13.0006
|
||||
13.0007
|
||||
13.0008
|
||||
13.0009
|
||||
13.001
|
||||
13.0011
|
||||
13.0012
|
||||
13.0013
|
||||
13.0014
|
||||
13.0015
|
||||
13.0016
|
||||
13.0017
|
||||
13.0018
|
||||
13.0019
|
||||
14
|
||||
14.0001
|
||||
14.0002
|
||||
14.0003
|
||||
14.0004
|
||||
14.0005
|
||||
14.0006
|
||||
14.0007
|
||||
14.0008
|
||||
14.0009
|
||||
14.001
|
||||
14.0011
|
||||
14.0012
|
||||
14.0013
|
||||
14.0014
|
||||
14.0015
|
||||
14.0016
|
||||
14.0017
|
||||
14.0018
|
||||
14.0019
|
||||
15
|
||||
15.0001
|
||||
15.0002
|
||||
15.0003
|
||||
15.0004
|
||||
15.0005
|
||||
15.0006
|
||||
15.0007
|
||||
15.0008
|
||||
15.0009
|
||||
15.001
|
||||
15.0011
|
||||
15.0012
|
||||
15.0013
|
||||
15.0014
|
||||
15.0015
|
||||
15.0016
|
||||
15.0017
|
||||
15.0018
|
||||
15.0019
|
||||
16
|
||||
16.0001
|
||||
16.0002
|
||||
16.0003
|
||||
16.0004
|
||||
16.0005
|
||||
16.0006
|
||||
16.0007
|
||||
16.0008
|
||||
16.0009
|
||||
16.001
|
||||
16.0011
|
||||
16.0012
|
||||
16.0013
|
||||
16.0014
|
||||
16.0015
|
||||
16.0016
|
||||
16.0017
|
||||
16.0018
|
||||
16.0019
|
||||
17
|
||||
17.0001
|
||||
17.0002
|
||||
17.0003
|
||||
17.0004
|
||||
17.0005
|
||||
17.0006
|
||||
17.0007
|
||||
17.0008
|
||||
17.0009
|
||||
17.001
|
||||
17.0011
|
||||
17.0012
|
||||
17.0013
|
||||
17.0014
|
||||
17.0015
|
||||
17.0016
|
||||
17.0017
|
||||
17.0018
|
||||
17.0019
|
||||
18
|
||||
18.0001
|
||||
18.0002
|
||||
18.0003
|
||||
18.0004
|
||||
18.0005
|
||||
18.0006
|
||||
18.0007
|
||||
18.0008
|
||||
18.0009
|
||||
18.001
|
||||
18.0011
|
||||
18.0012
|
||||
18.0013
|
||||
18.0014
|
||||
18.0015
|
||||
18.0016
|
||||
18.0017
|
||||
18.0018
|
||||
18.0019
|
||||
19
|
||||
19.0001
|
||||
19.0002
|
||||
19.0003
|
||||
19.0004
|
||||
19.0005
|
||||
19.0006
|
||||
19.0007
|
||||
19.0008
|
||||
19.0009
|
||||
19.001
|
||||
19.0011
|
||||
19.0012
|
||||
19.0013
|
||||
19.0014
|
||||
19.0015
|
||||
19.0016
|
||||
19.0017
|
||||
19.0018
|
||||
19.0019
|
||||
20
|
||||
20.0001
|
||||
20.0002
|
||||
20.0003
|
||||
20.0004
|
||||
20.0005
|
||||
20.0006
|
||||
20.0007
|
||||
20.0008
|
||||
20.0009
|
||||
20.001
|
||||
20.0011
|
||||
20.0012
|
||||
20.0013
|
||||
20.0014
|
||||
20.0015
|
||||
20.0016
|
||||
20.0017
|
||||
20.0018
|
||||
20.0019
|
||||
21
|
||||
21.0001
|
||||
21.0002
|
||||
21.0003
|
||||
21.0004
|
||||
21.0005
|
||||
21.0006
|
||||
21.0007
|
||||
21.0008
|
||||
21.0009
|
||||
21.001
|
||||
21.0011
|
||||
21.0012
|
||||
21.0013
|
||||
21.0014
|
||||
21.0015
|
||||
21.0016
|
||||
21.0017
|
||||
21.0018
|
||||
21.0019
|
||||
22
|
||||
22.0001
|
||||
22.0002
|
||||
22.0003
|
||||
22.0004
|
||||
22.0005
|
||||
22.0006
|
||||
22.0007
|
||||
22.0008
|
||||
22.0009
|
||||
22.001
|
||||
22.0011
|
||||
22.0012
|
||||
22.0013
|
||||
22.0014
|
||||
22.0015
|
||||
22.0016
|
||||
22.0017
|
||||
22.0018
|
||||
22.0019
|
||||
23
|
||||
23.0001
|
||||
23.0002
|
||||
23.0003
|
||||
23.0004
|
||||
23.0005
|
||||
23.0006
|
||||
23.0007
|
||||
23.0008
|
||||
23.0009
|
||||
23.001
|
||||
23.0011
|
||||
23.0012
|
||||
23.0013
|
||||
23.0014
|
||||
23.0015
|
||||
23.0016
|
||||
23.0017
|
||||
23.0018
|
||||
23.0019
|
||||
24
|
||||
24.0001
|
||||
24.0002
|
||||
24.0003
|
||||
24.0004
|
||||
24.0005
|
||||
24.0006
|
||||
24.0007
|
||||
24.0008
|
||||
24.0009
|
||||
24.001
|
||||
24.0011
|
||||
24.0012
|
||||
24.0013
|
||||
24.0014
|
||||
24.0015
|
||||
24.0016
|
||||
24.0017
|
||||
24.0018
|
||||
24.0019
|
||||
25
|
||||
25.0001
|
||||
25.0002
|
||||
25.0003
|
||||
25.0004
|
||||
25.0005
|
||||
25.0006
|
||||
25.0007
|
||||
25.0008
|
||||
25.0009
|
||||
25.001
|
||||
25.0011
|
||||
25.0012
|
||||
25.0013
|
||||
25.0014
|
||||
25.0015
|
||||
25.0016
|
||||
25.0017
|
||||
25.0018
|
||||
25.0019
|
||||
26
|
||||
26.0001
|
||||
26.0002
|
||||
26.0003
|
||||
26.0004
|
||||
26.0005
|
||||
26.0006
|
||||
26.0007
|
||||
26.0008
|
||||
26.0009
|
||||
26.001
|
||||
26.0011
|
||||
26.0012
|
||||
26.0013
|
||||
26.0014
|
||||
26.0015
|
||||
26.0016
|
||||
26.0017
|
||||
26.0018
|
||||
26.0019
|
||||
27
|
||||
27.0001
|
||||
27.0002
|
||||
27.0003
|
||||
27.0004
|
||||
27.0005
|
||||
27.0006
|
||||
27.0007
|
||||
27.0008
|
||||
27.0009
|
||||
27.001
|
||||
27.0011
|
||||
27.0012
|
||||
27.0013
|
||||
27.0014
|
||||
27.0015
|
||||
27.0016
|
||||
27.0017
|
||||
27.0018
|
||||
27.0019
|
||||
28
|
||||
28.0001
|
||||
28.0002
|
||||
28.0003
|
||||
28.0004
|
||||
28.0005
|
||||
28.0006
|
||||
28.0007
|
||||
28.0008
|
||||
28.0009
|
||||
28.001
|
||||
28.0011
|
||||
28.0012
|
||||
28.0013
|
||||
28.0014
|
||||
28.0015
|
||||
28.0016
|
||||
28.0017
|
||||
28.0018
|
||||
28.0019
|
||||
29
|
||||
29.0001
|
||||
29.0002
|
||||
29.0003
|
||||
29.0004
|
||||
29.0005
|
||||
29.0006
|
||||
29.0007
|
||||
29.0008
|
||||
29.0009
|
||||
29.001
|
||||
29.0011
|
||||
29.0012
|
||||
29.0013
|
||||
29.0014
|
||||
29.0015
|
||||
29.0016
|
||||
29.0017
|
||||
29.0018
|
||||
29.0019
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -12,7 +12,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -28,16 +28,206 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
10
|
||||
11
|
||||
12
|
||||
13
|
||||
14
|
||||
15
|
||||
16
|
||||
17
|
||||
18
|
||||
19
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -52,7 +242,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -68,36 +258,306 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -28,7 +28,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -36,9 +39,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -53,7 +56,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -61,9 +67,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -78,7 +84,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -86,9 +95,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -108,7 +117,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -116,9 +128,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -154,7 +166,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -28,7 +28,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -36,9 +39,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -53,7 +56,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -61,9 +67,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -78,7 +84,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -86,9 +95,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -108,7 +117,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -116,9 +128,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -154,7 +166,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -28,7 +28,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -36,9 +39,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -53,7 +56,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -61,9 +67,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -78,7 +84,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -86,9 +95,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -108,7 +117,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -116,9 +128,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -154,7 +166,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</thing:DataType>
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<thing:StorageLayout>
|
||||
<thing:ContiguousLayout/>
|
||||
</thing:StorageLayout>
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<thing:FillValue>
|
||||
<thing:NoFill/>
|
||||
<thing:NoFill/>
|
||||
</thing:FillValue>
|
||||
</thing:FillValueInfo>
|
||||
<thing:Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<thing:Data>
|
||||
<thing:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</thing:DataFromFile>
|
||||
</thing:Data>
|
||||
</thing:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -27,7 +27,10 @@
|
||||
<!-- Note: format of VL data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -35,9 +38,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -52,7 +55,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -60,9 +66,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -77,7 +83,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -85,9 +94,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -107,7 +116,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
0 0 0 0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -115,9 +127,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -153,7 +165,10 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
0 0 0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -49,9 +49,9 @@ green
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -62,10 +62,26 @@ green
|
||||
<hdf5:NamedDataTypePtr OBJ-XID="xid_976" H5Path="/enum normal" />
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
RED GREEN\ngreen BLUE blue GREEN\ngreen WHITE \"white\" WHITE \"white\"
|
||||
BLACK \'black\' GREEN\ngreen BLUE blue RED RED BLUE blue GREEN\ngreen
|
||||
BLACK \'black\' WHITE \"white\" RED WHITE \"white\" GREEN\ngreen
|
||||
GREEN\ngreen BLUE blue
|
||||
RED
|
||||
GREEN\ngreen
|
||||
BLUE blue
|
||||
GREEN\ngreen
|
||||
WHITE \"white\"
|
||||
WHITE \"white\"
|
||||
BLACK \'black\'
|
||||
GREEN\ngreen
|
||||
BLUE blue
|
||||
RED
|
||||
RED
|
||||
BLUE blue
|
||||
GREEN\ngreen
|
||||
BLACK \'black\'
|
||||
WHITE \"white\"
|
||||
RED
|
||||
WHITE \"white\"
|
||||
GREEN\ngreen
|
||||
GREEN\ngreen
|
||||
BLUE blue
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,7 @@ DATASET "external" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
|
@ -66,7 +66,6 @@ GROUP "/" {
|
||||
TARGETFILE "textlinktar.h5"
|
||||
TARGETPATH "type"
|
||||
DATATYPE "type" H5T_STD_I32LE;
|
||||
|
||||
}
|
||||
EXTERNAL_LINK "ext_link4" {
|
||||
TARGETFILE "textlinktar.h5"
|
||||
|
@ -59,7 +59,6 @@ GROUP "/" {
|
||||
TARGETFILE "textlinktar.h5"
|
||||
TARGETPATH "type"
|
||||
DATATYPE "type" H5T_STD_I32LE;
|
||||
|
||||
}
|
||||
EXTERNAL_LINK "ext_link4" {
|
||||
TARGETFILE "textlinktar.h5"
|
||||
|
@ -13,7 +13,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE [ 0, 0, 0 ]
|
||||
VALUE [ 0, 0, 0 ]
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -39,9 +39,9 @@ GROUP "/" {
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE {
|
||||
1,
|
||||
2
|
||||
}
|
||||
1,
|
||||
2
|
||||
}
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -70,7 +70,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_ALLOC
|
||||
VALUE -99
|
||||
VALUE -99
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -92,7 +92,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE -99
|
||||
VALUE -99
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -114,7 +114,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_NEVER
|
||||
VALUE -99
|
||||
VALUE -99
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -136,7 +136,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_ALLOC
|
||||
VALUE ()
|
||||
VALUE ()
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
@ -158,7 +158,7 @@ GROUP "/" {
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_LATE
|
||||
|
@ -5,13 +5,13 @@ DATASET "fletcher32" {
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 816
|
||||
}
|
||||
}
|
||||
FILTERS {
|
||||
CHECKSUM FLETCHER32
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
|
@ -4,14 +4,24 @@ GROUP "/" {
|
||||
DATATYPE H5T_IEEE_F64LE
|
||||
DATASPACE SIMPLE { ( 6 ) / ( 6 ) }
|
||||
DATA {
|
||||
(0): -0.1234567, 0.1234567, 0.0000000, 0.0000000, 0.0000000, 0.0000000
|
||||
(0): -0.1234567,
|
||||
(1): 0.1234567,
|
||||
(2): 0.0000000,
|
||||
(3): 0.0000000,
|
||||
(4): 0.0000000,
|
||||
(5): 0.0000000
|
||||
}
|
||||
}
|
||||
DATASET "float" {
|
||||
DATATYPE H5T_IEEE_F32LE
|
||||
DATASPACE SIMPLE { ( 6 ) / ( 6 ) }
|
||||
DATA {
|
||||
(0): -0.1234567, 0.1234567, 0.0000000, 0.0000000, 0.0000000, 0.0000000
|
||||
(0): -0.1234567,
|
||||
(1): 0.1234567,
|
||||
(2): 0.0000000,
|
||||
(3): 0.0000000,
|
||||
(4): 0.0000000,
|
||||
(5): 0.0000000
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -6,9 +6,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -23,7 +23,12 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
-0.1234567 0.1234567 0.0000000 0.0000000 0.0000000 0.0000000
|
||||
-0.1234567
|
||||
0.1234567
|
||||
0.0000000
|
||||
0.0000000
|
||||
0.0000000
|
||||
0.0000000
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
@ -31,9 +36,9 @@
|
||||
<StorageLayout>
|
||||
<ContiguousLayout/>
|
||||
</StorageLayout>
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<FillValue>
|
||||
<NoFill/>
|
||||
<NoFill/>
|
||||
</FillValue>
|
||||
</FillValueInfo>
|
||||
<Dataspace>
|
||||
@ -48,7 +53,12 @@
|
||||
</DataType>
|
||||
<Data>
|
||||
<DataFromFile>
|
||||
-0.1234567 0.1234567 0.0000000 0.0000000 0.0000000 0.0000000
|
||||
-0.1234567
|
||||
0.1234567
|
||||
0.0000000
|
||||
0.0000000
|
||||
0.0000000
|
||||
0.0000000
|
||||
</DataFromFile>
|
||||
</Data>
|
||||
</Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -22,7 +22,11 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -37,10 +41,10 @@
|
||||
</hdf5:Group>
|
||||
</hdf5:Group>
|
||||
<hdf5:Group Name="g2" OBJ-XID="xid_2000-3" H5Path="/g1/g1.1" Parents="xid_96" H5ParentPaths="/">
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2000" H5Path="/g1/g1.1" Parents="xid_96" H5ParentPaths="/" />
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2000" H5Path="/g1/g1.1" Parents="xid_96" H5ParentPaths="/" />
|
||||
</hdf5:Group>
|
||||
<hdf5:Group Name="g3" OBJ-XID="xid_96-4" H5Path="/" Parents="xid_96" H5ParentPaths="/">
|
||||
<hdf5:GroupPtr OBJ-XID="xid_96" H5Path="/" Parents="xid_96" H5ParentPaths="/" />
|
||||
<hdf5:GroupPtr OBJ-XID="xid_96" H5Path="/" Parents="xid_96" H5ParentPaths="/" />
|
||||
</hdf5:Group>
|
||||
</hdf5:RootGroup>
|
||||
</hdf5:HDF5-File>
|
||||
|
@ -4,12 +4,12 @@
|
||||
<hdf5:Group Name="g1" OBJ-XID="xid_1344" H5Path="/g1" Parents="xid_696" H5ParentPaths="/" >
|
||||
<hdf5:Group Name="g1.1" OBJ-XID="xid_2320" H5Path="/g1/g1.1" Parents="xid_1344" H5ParentPaths="/g1" >
|
||||
<hdf5:Group Name="g2.1" OBJ-XID="xid_1344-1" H5Path="/g1" Parents="xid_2320" H5ParentPaths="/g1/g1.1">
|
||||
<hdf5:GroupPtr OBJ-XID="xid_1344" H5Path="/g1" Parents="xid_2320" H5ParentPaths="/g1/g1.1" />
|
||||
<hdf5:GroupPtr OBJ-XID="xid_1344" H5Path="/g1" Parents="xid_2320" H5ParentPaths="/g1/g1.1" />
|
||||
</hdf5:Group>
|
||||
</hdf5:Group>
|
||||
</hdf5:Group>
|
||||
<hdf5:Group Name="g2" OBJ-XID="xid_2320-2" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/">
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2320" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/" />
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2320" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/" />
|
||||
</hdf5:Group>
|
||||
</hdf5:RootGroup>
|
||||
</hdf5:HDF5-File>
|
||||
|
@ -7,7 +7,7 @@
|
||||
</hdf5:Group>
|
||||
</hdf5:Group>
|
||||
<hdf5:Group Name="g2" OBJ-XID="xid_2320-1" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/">
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2320" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/" />
|
||||
<hdf5:GroupPtr OBJ-XID="xid_2320" H5Path="/g1/g1.1" Parents="xid_696" H5ParentPaths="/" />
|
||||
</hdf5:Group>
|
||||
</hdf5:RootGroup>
|
||||
</hdf5:HDF5-File>
|
||||
|
@ -13,7 +13,7 @@
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Incremental">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -83,7 +83,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -101,8 +110,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1
|
||||
2 3
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -119,145 +130,28 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9
|
||||
0
|
||||
0.1
|
||||
0.2
|
||||
0.3
|
||||
0.4
|
||||
0.5
|
||||
0.6
|
||||
0.7
|
||||
0.8
|
||||
0.9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1 0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1
|
||||
0 1 6 7
|
||||
6 7
|
||||
6 7
|
||||
6 7
|
||||
6 7
|
||||
6 7
|
||||
6 7
|
||||
6 7
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2 1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2
|
||||
1 2 7 8
|
||||
7 8
|
||||
7 8
|
||||
7 8
|
||||
7 8
|
||||
7 8
|
||||
7 8
|
||||
7 8
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3 2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3
|
||||
2 3 8 9
|
||||
8 9
|
||||
8 9
|
||||
8 9
|
||||
8 9
|
||||
8 9
|
||||
8 9
|
||||
8 9
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4 3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4
|
||||
3 4 9 10
|
||||
9 10
|
||||
9 10
|
||||
9 10
|
||||
9 10
|
||||
9 10
|
||||
9 10
|
||||
9 10
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5 4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5
|
||||
4 5 10 11
|
||||
10 11
|
||||
10 11
|
||||
10 11
|
||||
10 11
|
||||
10 11
|
||||
10 11
|
||||
10 11
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6 5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6
|
||||
5 6 11 12
|
||||
11 12
|
||||
11 12
|
||||
11 12
|
||||
11 12
|
||||
11 12
|
||||
11 12
|
||||
11 12
|
||||
0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 0 1 6 7 6 7 6 7 6 7 6 7 6 7 6 7 6 7
|
||||
1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 1 2 7 8 7 8 7 8 7 8 7 8 7 8 7 8 7 8
|
||||
2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 8 9 8 9 8 9 8 9 8 9 8 9 8 9 8 9
|
||||
3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 3 4 9 10 9 10 9 10 9 10 9 10 9 10 9 10 9 10
|
||||
4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 4 5 10 11 10 11 10 11 10 11 10 11 10 11 10 11 10 11
|
||||
5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 5 6 11 12 11 12 11 12 11 12 11 12 11 12 11 12 11 12
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -276,9 +170,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -294,16 +188,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -321,9 +305,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -339,16 +323,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
1 1 1 1 1 1 1 1 1 1
|
||||
2 2 2 2 2 2 2 2 2 2
|
||||
3 3 3 3 3 3 3 3 3 3
|
||||
4 4 4 4 4 4 4 4 4 4
|
||||
5 5 5 5 5 5 5 5 5 5
|
||||
6 6 6 6 6 6 6 6 6 6
|
||||
7 7 7 7 7 7 7 7 7 7
|
||||
8 8 8 8 8 8 8 8 8 8
|
||||
9 9 9 9 9 9 9 9 9 9
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
1
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
2
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
3
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
4
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
5
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
6
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
7
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
8
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -14,7 +14,16 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
97 98 99 100 101 102 103 104 105 0
|
||||
97
|
||||
98
|
||||
99
|
||||
100
|
||||
101
|
||||
102
|
||||
103
|
||||
104
|
||||
105
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
@ -23,9 +32,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -41,16 +50,106 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0 0 0 0 0 0
|
||||
0 1 2 3 4 5 6 7 8 9
|
||||
0 2 4 6 8 10 12 14 16 18
|
||||
0 3 6 9 12 15 18 21 24 27
|
||||
0 4 8 12 16 20 24 28 32 36
|
||||
0 5 10 15 20 25 30 35 40 45
|
||||
0 6 12 18 24 30 36 42 48 54
|
||||
0 7 14 21 28 35 42 49 56 63
|
||||
0 8 16 24 32 40 48 56 64 72
|
||||
0 9 18 27 36 45 54 63 72 81
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
1
|
||||
2
|
||||
3
|
||||
4
|
||||
5
|
||||
6
|
||||
7
|
||||
8
|
||||
9
|
||||
0
|
||||
2
|
||||
4
|
||||
6
|
||||
8
|
||||
10
|
||||
12
|
||||
14
|
||||
16
|
||||
18
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
12
|
||||
15
|
||||
18
|
||||
21
|
||||
24
|
||||
27
|
||||
0
|
||||
4
|
||||
8
|
||||
12
|
||||
16
|
||||
20
|
||||
24
|
||||
28
|
||||
32
|
||||
36
|
||||
0
|
||||
5
|
||||
10
|
||||
15
|
||||
20
|
||||
25
|
||||
30
|
||||
35
|
||||
40
|
||||
45
|
||||
0
|
||||
6
|
||||
12
|
||||
18
|
||||
24
|
||||
30
|
||||
36
|
||||
42
|
||||
48
|
||||
54
|
||||
0
|
||||
7
|
||||
14
|
||||
21
|
||||
28
|
||||
35
|
||||
42
|
||||
49
|
||||
56
|
||||
63
|
||||
0
|
||||
8
|
||||
16
|
||||
24
|
||||
32
|
||||
40
|
||||
48
|
||||
56
|
||||
64
|
||||
72
|
||||
0
|
||||
9
|
||||
18
|
||||
27
|
||||
36
|
||||
45
|
||||
54
|
||||
63
|
||||
72
|
||||
81
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -22,9 +22,7 @@ GROUP "/" {
|
||||
(0): 8
|
||||
}
|
||||
}
|
||||
|
||||
DATATYPE "Link_to_Datatype" HARDLINK "/Datatype"
|
||||
|
||||
GROUP "g1" {
|
||||
ATTRIBUTE "Attribute" {
|
||||
DATATYPE "/Datatype"
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -5,13 +5,13 @@ DATASET "nbit" {
|
||||
STORAGE_LAYOUT {
|
||||
CHUNKED ( 10, 5 )
|
||||
SIZE 76 (10.526:1 COMPRESSION)
|
||||
}
|
||||
}
|
||||
FILTERS {
|
||||
COMPRESSION NBIT
|
||||
}
|
||||
FILLVALUE {
|
||||
FILL_TIME H5D_FILL_TIME_IFSET
|
||||
VALUE 0
|
||||
VALUE 0
|
||||
}
|
||||
ALLOCATION_TIME {
|
||||
H5D_ALLOC_TIME_INCR
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -68,11 +68,16 @@
|
||||
<!-- Note: format of compound data not specified -->
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 1 "A" -100 100 1 1 0.5 "B" -100 100 2 4 0.333333 "C" -100 100
|
||||
3 9 0.25 "D" -100 100 4 16 0.2 "E" -100 100
|
||||
5 25 0.166667 "F" -100 100 6 36 0.142857 "G" -100 100
|
||||
7 49 0.125 "H" -100 100 8 64 0.111111 "I" -100 100
|
||||
9 81 0.1 "J" -100 100
|
||||
0 0 1 "A" -100 100
|
||||
1 1 0.5 "B" -100 100
|
||||
2 4 0.333333 "C" -100 100
|
||||
3 9 0.25 "D" -100 100
|
||||
4 16 0.2 "E" -100 100
|
||||
5 25 0.166667 "F" -100 100
|
||||
6 36 0.142857 "G" -100 100
|
||||
7 49 0.125 "H" -100 100
|
||||
8 64 0.111111 "I" -100 100
|
||||
9 81 0.1 "J" -100 100
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -22,7 +22,11 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -36,9 +36,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -53,7 +53,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 6 9
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -61,9 +64,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -78,7 +81,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
|
@ -5,9 +5,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -85,7 +85,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
DATATYPE "tt" H5T_STD_I32LE;
|
||||
ATTRIBUTE "a" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
@ -99,6 +98,5 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -44,9 +44,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -104,9 +104,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -25,7 +25,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
DATATYPE "t" H5T_STD_I32LE;
|
||||
ATTRIBUTE "c" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
@ -39,7 +38,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
GROUP "gt" {
|
||||
ATTRIBUTE "c" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
|
@ -140,9 +140,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -200,9 +200,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -85,7 +85,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
DATATYPE "tt" H5T_STD_I32LE;
|
||||
ATTRIBUTE "c" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
@ -99,6 +98,5 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -44,9 +44,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -104,9 +104,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -25,7 +25,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
DATATYPE "t" H5T_STD_I32LE;
|
||||
ATTRIBUTE "c" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
@ -39,7 +38,6 @@ GROUP "/" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
DATASPACE SCALAR
|
||||
}
|
||||
|
||||
GROUP "gt" {
|
||||
ATTRIBUTE "a" {
|
||||
DATATYPE H5T_STD_U8LE
|
||||
|
@ -140,9 +140,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -200,9 +200,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -23,7 +23,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -31,9 +34,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -48,7 +51,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 6 9
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -56,9 +62,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -73,7 +79,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -81,9 +90,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -98,7 +107,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -106,9 +118,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -123,7 +135,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -131,9 +146,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -148,7 +163,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -156,9 +174,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -173,7 +191,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -182,9 +203,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -210,11 +231,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset&amp"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset&amp"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftoapos">
|
||||
<hdf5:Dataspace>
|
||||
@ -229,11 +250,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset'apos"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset'apos"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftogt">
|
||||
<hdf5:Dataspace>
|
||||
@ -248,11 +269,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset>gt"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset>gt"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftolt">
|
||||
<hdf5:Dataspace>
|
||||
@ -267,11 +288,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset<lt"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset<lt"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftoquote">
|
||||
<hdf5:Dataspace>
|
||||
@ -286,11 +307,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset\"quote"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset\"quote"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftoslash">
|
||||
<hdf5:Dataspace>
|
||||
@ -305,11 +326,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset\\slash"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset\\slash"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Attribute Name="reftospace">
|
||||
<hdf5:Dataspace>
|
||||
@ -324,11 +345,11 @@
|
||||
</hdf5:ReferenceType>
|
||||
</hdf5:AtomicType>
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset space"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
"/Group1/Dataset space"
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Attribute>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -23,7 +23,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -31,9 +34,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -48,7 +51,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 6 9
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -56,9 +62,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -73,7 +79,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -81,9 +90,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -98,7 +107,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -106,9 +118,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -123,7 +135,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -131,9 +146,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -148,7 +163,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -156,9 +174,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -173,7 +191,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -182,9 +203,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
@ -6,9 +6,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -23,7 +23,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 3 6 9
|
||||
0
|
||||
3
|
||||
6
|
||||
9
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -31,9 +34,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
@ -48,7 +51,10 @@
|
||||
</hdf5:DataType>
|
||||
<hdf5:Data>
|
||||
<hdf5:DataFromFile>
|
||||
0 0 0 0
|
||||
0
|
||||
0
|
||||
0
|
||||
0
|
||||
</hdf5:DataFromFile>
|
||||
</hdf5:Data>
|
||||
</hdf5:Dataset>
|
||||
@ -57,9 +63,9 @@
|
||||
<hdf5:StorageLayout>
|
||||
<hdf5:ContiguousLayout/>
|
||||
</hdf5:StorageLayout>
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValueInfo FillTime="FillIfSet" AllocationTime="Late">
|
||||
<hdf5:FillValue>
|
||||
<hdf5:NoFill/>
|
||||
<hdf5:NoFill/>
|
||||
</hdf5:FillValue>
|
||||
</hdf5:FillValueInfo>
|
||||
<hdf5:Dataspace>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user