1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
# version of pycbf_test1 with write logic added
import pycbf
object = pycbf.cbf_handle_struct()
newobject = pycbf.cbf_handle_struct()
object.read_file(b"../img2cif_packed.cif",pycbf.MSG_DIGEST)
object.rewind_datablock()
print("Found",object.count_datablocks(),"blocks")
object.select_datablock(0)
print("Zeroth is named",object.datablock_name())
newobject.force_new_datablock(object.datablock_name());
object.rewind_category()
categories = object.count_categories()
for i in range(categories):
print("Category:",i, end= ' ')
object.select_category(i)
category_name = object.category_name()
print("Name:",category_name, end=' ')
newobject.new_category(category_name)
rows=object.count_rows()
print("Rows:",rows, end=' ')
cols = object.count_columns()
print("Cols:",cols)
loop=1
object.rewind_column()
while loop==1:
column_name = object.column_name()
print("column name \"",column_name,"\"", end=' ')
newobject.new_column(column_name)
try:
object.next_column()
except:
break
print()
for j in range(rows):
object.select_row(j)
newobject.new_row()
object.rewind_column()
print("row:",j)
for k in range(cols):
name=object.column_name()
print("col:",name, end=' ')
object.select_column(k)
newobject.select_column(k)
typeofvalue=object.get_typeofvalue()
print("type:",typeofvalue)
if typeofvalue.find(b"bnry") > -1:
print("Found the binary!!",end=' ')
s=object.get_integerarray_as_string()
print(type(s))
print(dir(s))
print(len(s))
(compression, binaryid, elsize, elsigned, \
elunsigned, elements, minelement, maxelement, \
byteorder,dimfast,dimmid,dimslow,padding) = \
object.get_integerarrayparameters_wdims_fs()
if dimfast==0:
dimfast = 1
if dimmid==0:
dimmid = 1
if dimslow == 0:
dimslow = 1
print("compression: ",compression)
print("binaryid", binaryid)
print("elsize", elsize)
print("elsigned", elsigned)
print("elunsigned",elunsigned)
print("elements", elements)
print("minelement", minelement)
print("maxelement", maxelement)
print("byteorder", byteorder)
print("dimfast", dimfast)
print("dimmid", dimmid)
print("dimslow",dimslow)
print("padding", padding)
newobject.set_integerarray_wdims_fs(\
pycbf.CBF_BYTE_OFFSET,binaryid,s,elsize,elsigned,\
elements,byteorder,dimfast,dimmid,dimslow,padding)
try:
import numpy
d = numpy.frombuffer(s,numpy.uint32)
# Hard wired Unsigned Int32
print(d.shape)
print(d[0:10],d[int(d.shape[0]/2)],d[len(d)-1])
print(d[int(d.shape[0]/3):int(d.shape[0]/3+20)])
d=numpy.reshape(d,(2300,2300))
# from matplotlib import pylab
# pylab.imshow(d,vmin=0,vmax=1000)
# pylab.show()
except ImportError:
print("You need to get numpy and matplotlib to see the data")
else:
value=object.get_value()
newobject.set_value(value)
print("Val:",value,i)
print()
del(object)
newobject.write_widefile(b"newtest1.cbf",pycbf.CBF,\
pycbf.MIME_HEADERS|pycbf.MSG_DIGEST|pycbf.PAD_4K,0)
#
print(dir())
#object.free_handle(handle)
|