DC Slagel

Results 27 comments of DC Slagel

Is there a real-world example LAS file with comma-delimited ~ASCII section?

@kinverarity1, How should Lasio identify to parse the ~ASCII section with comma-delimiter? I think these are the options. Is one of these (or something else) preferred?: - Check for the...

Reading through 1.2/2.0 and 3.0 specs only 3.0 has DLM. The 3.0 spec says that if DLM is not stated then the default delimiter is space. So we could set...

Dev Notes (may change over time...) Edited 2021-08-10: - Reread the 3.0 spec - Review Kent's manual method to read LAS3 data https://gist.github.com/kinverarity1/92f00b781472512349a9312d75fd4c33 - Create a central a las.delimiter property...

Lasio can write the Lasio object out to the text formats: csv, and json. csv ```python LASFile.to_csv(file_ref, mnemonics=True, units=True, units_loc='line', **kwargs) ``` json ```python LASFile.to_json() ``` or ```python json.dumps(LASFile, cls=las.JSONEncoder)...

One possible solution would be to create a unit conversion module or class with a generic function: `convert_unit(las, from, to)` or method: ` las.converter.convert_unit(from, to)` that: - calls a specific...

Should "Remove side-effects from write() #268": move STRT/STOP/STEP recalc to a new `LASFile.update_start_stop_step()` be done first and would it then solve this issue also?

Hi @kinverarity1, thought about a bit... 1. It makes sense to move this to a discussion since it is more of a general discussion than a specific task. However we...

Although there is still some work to be done on Issue #265, the basic ability to read the comma-delimited data sections is merged to the main(master) branch via pull-request https://github.com/kinverarity1/lasio/pull/485.

If #447 is accepted and merged then there are these next decisions and steps to completing this task: - Move `las.update_start_stop_step()` out of `writer.write()` This means that `writer.write()` will no-longer...