Encuentro particularmente difícil leer archivos binarios con Python. ¿Puedes darme una mano? Necesito leer este archivo, que en Fortran 90 es fácilmente leído por
int*4 n_particles, n_groups
real*4 group_id(n_particles)
read (*) n_particles, n_groups
read (*) (group_id(j),j=1,n_particles)
En detalle, el formato de archivo es:
Bytes 1-4 -- The integer 8.
Bytes 5-8 -- The number of particles, N.
Bytes 9-12 -- The number of groups.
Bytes 13-16 -- The integer 8.
Bytes 17-20 -- The integer 4*N.
Next many bytes -- The group ID numbers for all the particles.
Last 4 bytes -- The integer 4*N.
¿Cómo puedo leer esto con Python? Intenté todo pero nunca funcionó. ¿Existe alguna posibilidad de que pueda usar un programa f90 en Python, leer este archivo binario y luego guardar los datos que necesito usar?
fromfile
función de Numpy facilita la lectura de archivos binarios. Lo recomiendo.