I have a text file containing tabular data. What I need to do is automate the task of writing to a new text file that is comma delimited instead of space delimited, extract a few columns from existing data, reorder the columns.
This is a snippet of the first 4 lines of the original data:
Number of rows: 8542 Algorithm |Date |Time |Longitude |Latitude |Country 1 2000-01-03 215926.688 -0.262 35.813 Algeria 1 2000-01-03 215926.828 -0.284 35.817 Algeria
Here is what I want in the end:
Longitude,Latitude,Country,Date,Time -0.262,35.813,Algeria,2000-01-03,215926.688
Any tips on how to approach this?