Kent
Kent
The API documentation is probably not including some new or renamed functions, and perhaps includes some unused ones. Needs updating. https://lasio.readthedocs.io/en/latest/lasio.html https://github.com/kinverarity1/lasio/blob/master/docs/source/lasio.rst
This may be causing an issue for some: https://stackoverflow.com/questions/53874152/how-to-perform-the-same-edit-on-a-folder-of-csv-files
LAS 3 specification: https://github.com/kinverarity1/lasio/blob/main/standards/LAS_3_File_Structure.pdf Tasks: - [x] PR #327 Re-arrange LASFile.read so that header sections are parsed before touching any data sections (see comments in #1) - [ ] Issue...
**Is your feature request related to a problem? Please describe.** LAS 3 extends header line items to include a format code: ``` I_DT . : SURVEY_DATE {D} I_CO . :...
**Is your feature request related to a problem? Please describe.** LAS 3 files can have linked parameter, curve ("definition") and data sections. These are currently independent sections in lasio. They...
**Is your feature request related to a problem? Please describe.** We don't have a diverse set of real-world LAS 3 files to develop and test against (refer to #5) **Describe...
**Describe the bug** When a column is separated by a hyphen, the substitution that I put in lasio to deal with very old-fashioned fixed-width Fortran-style formatted columns causes hell. Example...
**Is your feature request related to a problem? Please describe.** When there are lots of curves (e.g. a file containing image/sonic (generally 2D) data), the curve mnemonics can be difficult...
**Describe the bug** A LASFile object containing a curve of dtype `datetime64[ns]` cannot be written to a LAS file unless converted to strings. **To Reproduce** See failure for case #2...
At the moment there are side-effects to the ``lasio.writer.write()`` function involving modifications to the LASFile objects' STRT, STOP and STEP values. I should avoid these side-effects entirely - see previous...