<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import os
import struct
rowsize=262
#binaryFile = file('/disk14/www-data/ssa/source/ssaSourceDeafultRow.bin', 'rb')
binaryFile = file('/disk14/www-data/ssa/source/ssaSource000ra030.bin', 'rb')
i=0
while True and i &lt;10:
      i = i+1
      rowBinary = binaryFile.read(rowsize)
      if not rowBinary:
      	 break
      row= struct.unpack('&lt;6q f 7d 5f b 12f 5b 4f 8i 8f', rowBinary)
      print row
binaryFile.close()
</pre></body></html>