@rafael.guerra Here is the code I ended up using (which I corrected slightly from the original post).
using CSV, DataFrames
open(filepath) do f
while !eof(f)
readuntil(f, "ITEM: BOX BOUNDS")
boxsize = CSV.read(IOBuffer(readuntil(f, "ITEM: ATOMS")), DataFrame, header=false, skipto=2)
positions = CSV.read(IOBuffer(readuntil(f, "ITEM: ")), DataFrame, header=false, skipto=2)
end
end
@djholiver Here is a link to a file using the lammps format. For future reference, this is a OneDrive link and it will expire in one month if I’m not mistaken, sorry but I don’t know if I could keep the link active forever.
As for this comment, that’s just genuine appreciation for everyone who provides me with the tools to do my job in an efficient way, for free. I wouldn’t dare ask for something that’s more specific to the lammps format, I think what’s available already would be more than enough.
This is why I made the original post using a generic MRE (here’s the general solution, for anyone who’s lost with all the posts in this thread), to find something that can be used by anyone with a similar problem.
Nevertheless, I really do appreciate how you guys offer to help with my specific example.