Closed ibrahimasow closed 5 months ago
Hi Ibrahima. I just got it fixed. Please install it from the repo and let me know if it worked. I did not implemented your solution cause I don't expect bad lines when reading the df. Does that solution you proposed worked? I would expect that to create an incomplete or empy dataframe
Hey Diego, the solution I suggested only skips usual bad lines on the SoilNi.OUT file (I think mostly commented or @ section ones), it doesn't return an empty df on my side. I just tried yours, it works too. Thanks
When retrieving the SoilNit.OUT file after run (by declaring it and simulating Nitro), there is an error
Fix is to handle how pandas.read_csv reads the file by adding a skip on bad lines on_bad_lines="skip" as follows on run.py (around lines 320):
Thank you