[svn-r8758] Purpose:

h5dump new feature, bug fix

Description:
added the dump of unmamed types to the file contents
fixed a bug in the type array, it was printing invalid characters with the array indices option on

Solution:

Platforms tested:
linux
AIX
solaris

Misc. update:
This commit is contained in:
Pedro Vicente Nunes
2004-06-29 12:42:09 -05:00
parent 3edde57e73
commit d4eec2cb07
44 changed files with 1430 additions and 1391 deletions

View File

@@ -24,33 +24,33 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 10, 10 ) / ( 10, 10 ) }
DATA {
(0,0), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
(1,0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(2,0), 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
(3,0), 0, 3, 6, 9, 12, 15, 18, 21, 24, 27,
(4,0), 0, 4, 8, 12, 16, 20, 24, 28, 32, 36,
(5,0), 0, 5, 10, 15, 20, 25, 30, 35, 40, 45,
(6,0), 0, 6, 12, 18, 24, 30, 36, 42, 48, 54,
(7,0), 0, 7, 14, 21, 28, 35, 42, 49, 56, 63,
(8,0), 0, 8, 16, 24, 32, 40, 48, 56, 64, 72,
(9,0), 0, 9, 18, 27, 36, 45, 54, 63, 72, 81
(0,0): 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
(1,0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
(2,0): 0, 2, 4, 6, 8, 10, 12, 14, 16, 18,
(3,0): 0, 3, 6, 9, 12, 15, 18, 21, 24, 27,
(4,0): 0, 4, 8, 12, 16, 20, 24, 28, 32, 36,
(5,0): 0, 5, 10, 15, 20, 25, 30, 35, 40, 45,
(6,0): 0, 6, 12, 18, 24, 30, 36, 42, 48, 54,
(7,0): 0, 7, 14, 21, 28, 35, 42, 49, 56, 63,
(8,0): 0, 8, 16, 24, 32, 40, 48, 56, 64, 72,
(9,0): 0, 9, 18, 27, 36, 45, 54, 63, 72, 81
}
ATTRIBUTE "attr1" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 49, 115, 116, 32, 97, 116, 116, 114, 105, 98,
(10), 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20), 116, 49, 46, 49, 46, 49, 0
(0): 49, 115, 116, 32, 97, 116, 116, 114, 105, 98,
(10): 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20): 116, 49, 46, 49, 46, 49, 0
}
}
ATTRIBUTE "attr2" {
DATATYPE H5T_STD_I8BE
DATASPACE SIMPLE { ( 27 ) / ( 27 ) }
DATA {
(0), 50, 110, 100, 32, 97, 116, 116, 114, 105, 98,
(10), 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20), 116, 49, 46, 49, 46, 49, 0
(0): 50, 110, 100, 32, 97, 116, 116, 114, 105, 98,
(10): 117, 116, 101, 32, 111, 102, 32, 100, 115, 101,
(20): 116, 49, 46, 49, 46, 49, 0
}
}
}
@@ -58,8 +58,8 @@ GROUP "/" {
DATATYPE H5T_STD_I32BE
DATASPACE SIMPLE { ( 20 ) / ( 20 ) }
DATA {
(0), 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(19), 19
(0): 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
(19): 19
}
}
}
@@ -76,16 +76,16 @@ GROUP "/" {
DATATYPE H5T_IEEE_F32BE
DATASPACE SIMPLE { ( 10 ) / ( 10 ) }
DATA {
(0), 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
(0): 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9
}
}
DATASET "dset2.2" {
DATATYPE H5T_IEEE_F32BE
DATASPACE SIMPLE { ( 3, 5 ) / ( 3, 5 ) }
DATA {
(0,0), 0, 0.1, 0.2, 0.3, 0.4,
(1,0), 0, 0.2, 0.4, 0.6, 0.8,
(2,0), 0, 0.3, 0.6, 0.9, 1.2
(0,0): 0, 0.1, 0.2, 0.3, 0.4,
(1,0): 0, 0.2, 0.4, 0.6, 0.8,
(2,0): 0, 0.3, 0.6, 0.9, 1.2
}
}
}