You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I couldn't get NewTransImp to work on a custom csv file. It might be easiest to create a csv template that everyone needs to follow for csv files to make it easy to import such files. Or you could at least have the template as one of the options for people importing csv files
file_type = 'csv' #can also be xle
wellfiles = {}
copydir = Path(transducer_folder)
for file in copydir.glob(f'*.{file_type}'):
wellfiles[file] = ll.NewTransImp(file,trim_end=True).well
I couldn't get NewTransImp to work on a custom csv file. It might be easiest to create a csv template that everyone needs to follow for csv files to make it easy to import such files. Or you could at least have the template as one of the options for people importing csv files
file_type = 'csv' #can also be xle
wellfiles = {}
copydir = Path(transducer_folder)
for file in copydir.glob(f'*.{file_type}'):
wellfiles[file] = ll.NewTransImp(file,trim_end=True).well
wellraw = pd.concat(wellfiles).reset_index().set_index('Date Time').sort_index().drop('level_0',axis=1)
The text was updated successfully, but these errors were encountered: