Merge LAS files, partially #528
-
Hello, I love LASIO so thank you! Quick question: although I can easily perform this task by transforming the data into a Pandas DataFrame, is there a way to merge 2 LAS files? Specifically, say file1 has 10 curves and file 2 has 8 curves similar to file 1 plus 3 new curves? In a df this is no problem but I don't know how to go back and make an LAS file out of that DataFrame. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
After merging the dataframes in pandas: https://stackoverflow.com/questions/53645882/pandas-merging-101 You can create a .las using this function: Documentation here |
Beta Was this translation helpful? Give feedback.
After merging the dataframes in pandas:
https://stackoverflow.com/questions/53645882/pandas-merging-101
You can create a .las using this function:
LASFile.set_data_from_df(df, **kwargs)
Documentation here