My file > https://drive.google.com/open?id=0BzmZiSDoM7l3U2poYWNTbUhBWVU
The problem is that I have this data from a software known as Geomodeller and want to load it in another software known as REDBACK.
In gemododeller, I made a 3D cube and loaded it with data(This data has layers like a cake) and somehow in REDBACK the data shown is only the intersection of the layers in 2D.
I've read the post Python base64 data decode
And implemented the code by https://stackoverflow.com/users/194586/nick-t and i got :
dtgt=base64.b64decode(target)
format=">ff"
for i in range(100):
print struct.unpack_from(format,dtgt,8*i)
(2.350988701644575e-38, 1.1754943508222875e-38) (1.7826336565709476e+29, 6.64613997892458e+35) Traceback (most recent call last): File "", line 2, in error: unpack_from requires a buffer of at least 8 bytes
Can I please have help for this problem?
My supervisor thinks the problem lies in the appended data so he wants to get everything in the appended data out first and then further analyze the problem.