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
In general, it is recommended to group the LEMI files in folders per station.
Within a station folder, there can be many files.
Every file is associated with exactly one run. However, some runs are associated with more than one file.
Therefore it is desirable to group the files according to their runs.
The basic functionality should be the ability to point at a folder and return a Data Frame that lists the files with a column for run_id. The LEMI reader also needs to be modified to accept a list of filenames (associated with a run), rather than just one .TXT file. This can be done either by
Reading in each file and then providing a self._merge(other) method
Replacing self.fn with self.fn_list
The text was updated successfully, but these errors were encountered:
I think we could add a function that searches for all '.TXT' files in the given directory and then in read you could specify which file numbers you want to read, default would be all.
Alternatively we could overwrite the __add__ function to just append the data dataframes.
In general, it is recommended to group the LEMI files in folders per station.
Within a station folder, there can be many files.
Every file is associated with exactly one run. However, some runs are associated with more than one file.
Therefore it is desirable to group the files according to their runs.
The basic functionality should be the ability to point at a folder and return a Data Frame that lists the files with a column for run_id. The LEMI reader also needs to be modified to accept a list of filenames (associated with a run), rather than just one .TXT file. This can be done either by
The text was updated successfully, but these errors were encountered: