Need to turn record-oriented well-log LAS data into a spreadsheet-friendly table? This page converts record-oriented LAS data into a clean CSV, so every record becomes a row you can filter, plot, or load into a database.
How to convert LAS data to CSV
- Upload your record-oriented LAS data file — a JSON/GeoJSON record collection of measured channels, up to 40 MB.
- Press Convert file and download the resulting CSV.
What you get
A CSV file with one row per record: the channel names (DEPT, GR, RHOK, …) become the header, and every record's values become a row. GDAL's CSV writer emits standard quoted CSV, so nothing is reordered or dropped.
When this helps
- Moving record-oriented well-log tables into pandas, R, or a spreadsheet for quick analysis
- Spot-checking depth-indexed measurements without opening a desktop petrophysics package
- Feeding LAS record exports into plotting and QA pipelines as plain CSV
Notes and limits
- The input is read with GDAL's vector reader (
ogr2ogr -f CSV), which auto-detects JSON record collections by content in any staged filename. - If the file is empty or not readable as vector data, the run fails with GDAL's diagnostic — the converter never invents rows or emits partial output.