Convert record-oriented LAS data to CSV online

Turn the tabular record data of a Log ASCII Standard (LAS) file into a clean CSV table, ready for spreadsheets or analysis.

You’ll need
Text
40 MB max
You’ll get
Text
How long
Under 1 min

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

  1. Upload your record-oriented LAS data file — a JSON/GeoJSON record collection of measured channels, up to 40 MB.
  2. 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.

Common questions