Skip to main content

Python SDK for the BoreholeAI API — digitise borehole logs programmatically

Project description

BoreholeAI

BoreholeAI Python SDK

Geotechnical Borehole Log Digitisation

PyPI Python License

Website · Get API Key · Contact


Upload borehole log PDFs or images, get structured ground profiles, test data, and annotated PDFs.

Background

The problem: Geotechnical engineers routinely extract data from borehole log PDFs manually — reading material descriptions, depths, test results, and keying them into spreadsheets or AGS files. On a typical project with dozens of logs, this takes days. On larger projects, it can take weeks.

Why it matters: This matters beyond individual project efficiency. Globally, millions of dollars are spent each year on new ground investigations to understand subsurface conditions — but much of this work has already been done before. Valuable geological and geotechnical records from past projects sit in libraries as old hard copies, in consultancy archives, or on digital platforms that aren't searchable or interoperable. Over time, these reports get misplaced, disposed of, or locked behind organisational boundaries. When that happens, the cycle of discovery starts again from scratch.

What others have done: Countries like Denmark, the Netherlands, Switzerland, and the UK have recognised this problem and built centralised, publicly accessible geotechnical databases — some legislated as far back as 1926. In Australia, there is no equivalent national system. Geotechnical data is kept in isolation by individual consultancies, with no regulated or standardised approach to data collection and sharing after project completion. For more on this challenge and what other countries have achieved, see the Churchill Trust report on geotechnical data capture.

Our approach: We built BoreholeAI because we believe that better geotechnical data infrastructure starts with making it easier to get data out of the documents where it's currently trapped. BoreholeAI reads borehole log PDFs (scanned or digital) and extracts the geotechnical data — with depth and spatial awareness — into structured formats like Excel and AGS.

What It Does

Extracts:

  • Ground profile — material descriptions, depths, geology, consistency/density
  • Test data — SPT, UCS, Is50, PP, groundwater levels
  • Borehole metadata — hole ID, location, dates, drilling method

Outputs:

  • Borehole_ground_profile.xlsx — structured ground profile table
  • Borehole_test_data.xlsx — all test results in tabular format
  • Borehole_ags4.ags — industry-standard AGS4 data transfer file
  • *_annotated.pdf — original document with extracted regions highlighted

Examples

See the quickstart notebook for an interactive walkthrough, or follow the steps below.

Installation

pip install boreholeai

Quick Start

from boreholeai import BoreholeAI

# Get your API key at: https://boreholeai.com/app/settings/api-keys
client = BoreholeAI(api_key="bhai_your_api_key_here")

# Process a single borehole log
result = client.process_documents("BH01.pdf", output_dir="./results")

print(f"Status: {result.status}")
print(f"Pages processed: {result.num_pages}")
for f in result.files:
    print(f"  {f.filename}")

Folder / Batch Processing

Pass a directory path to process multiple files together. The SDK processes files in parallel and merges the outputs locally into a single ground profile Excel, test data Excel, and AGS file. One annotated PDF per input file.

result = client.process_documents(
    "./borehole_logs/",
    output_dir="./results",
)

# Output:
#   Borehole_ground_profile_merged.xlsx
#   Borehole_test_data_merged.xlsx
#   Borehole_ags4_merged.ags
#   BH01_annotated.pdf              (one per input file)
#   BH02_annotated.pdf
#   BH03_annotated.pdf

A single-file run keeps the original filenames (no _merged suffix).

Resume After Interrupt

If processing is interrupted (Ctrl-C, network drop, laptop sleep), simply re-run with the same output_dir. The SDK persists per-file state to .boreholeai_manifest.json and skips work that's already done.

# First run — interrupted halfway through 100 files
client.process_documents("./logs/", output_dir="./results")

# Same call, same output_dir — picks up where it left off
client.process_documents("./logs/", output_dir="./results")

Partial Failure Handling

If some files fail server-side processing (bad scan, unreadable layout, etc.), the rest are merged normally and the failed files are reported via result.failures. The call only raises if every file fails.

A merge_warnings.txt file is written to output_dir only when warnings occur during merge (e.g. a job missing one of its result files).

Supported File Types

  • PDF (.pdf)
  • PNG (.png)
  • JPEG (.jpg, .jpeg)
  • TIFF (.tif, .tiff)
  • WebP (.webp)

API Key

Get your API key from the BoreholeAI dashboard.

client = BoreholeAI(api_key="bhai_xxx")

Accuracy

BoreholeAI uses a sophisticated multi-agent, multi-stage agentic system that combines engineering deterministic algorithms, customized deep learning models, and computer vision with AI-assisted document understanding. Your documents are never read directly by AI models — we apply an OCR intermediary layer so that AI only works with extracted text and layout information, never with your original files and hence ensuring data security. The structured output is driven by spatial reasoning and rule-based logic, not generative models.

The system handles complex layouts, varying scales, multi-page logs, and inconsistent formatting.

We have tested extensively across a wide range of publicly available borehole log formats and consistently achieve 95-100% accuracy. We are grateful to the Queensland Geotechnical Database (QGD) for making their data publicly available — their collection of real-world borehole logs has been invaluable for testing and validating the system.

That said, borehole logs vary significantly in layout and formatting. If you find an inaccuracy or an extraction issue, please let us know — every report helps us improve the system.

Expected input: Properly formatted borehole log PDFs or clean scanned copies. Photos taken on site (e.g. phone camera shots of printed logs) are not supported and may produce unreliable results.

Current Scope and Limitations

  • Standard alignment: Built and validated against Australian Standard AS 1726 borehole log formats. Logs following other national standards may work but are not yet validated.
  • Document types: Borehole logs (BH), pavement core logs (PCP), and test pit logs (TP). Other geotechnical documents (e.g. CPT plots, lab reports) are not currently supported.
  • Languages: English only. Other languages may partially work but are not officially supported.
  • Units: Metric only — depths and dimensions must be in metres. Logs in feet or other imperial units are not currently supported.
  • Scan quality: Logs should be scanned orthogonally. Tilted scans work within approximately 10°, but accuracy drops beyond that.
  • Watermarks: PDFs with heavy watermarks, especially tilted ones, will reduce accuracy — particularly for strength and test data extraction. Upload a clean copy where possible.
  • Handwriting: Clear handwriting is supported. Extremely unclear handwriting may affect results.
  • File size: Maximum 20 MB per file.

Credits

BoreholeAI uses a credit system (1 credit = 1 page) to cover the computational cost of running the AI models. Every new account (individuals) receives free credits to get started, and additional free credits are available on request — just get in touch.

For those who'd like to support the ongoing development of the project and help keep it running, credits can also be purchased here. This is entirely optional — the goal is to make geotechnical data more accessible, and we'd rather people use the tool than not.

Contact us

Enterprise

We understand that many organisations have strict data governance requirements and cannot send documents to external services. BoreholeAI can be deployed within your own infrastructure — on-premise or in your private cloud — so that your data never leaves your environment.

If this is a requirement for your team, contact us to discuss deployment options.

Disclaimer

While every effort has been made to ensure accuracy and reliability, BoreholeAI is a tool to assist — not replace — professional judgement. It is the user's responsibility to verify that all extracted data is accurate and fit for their intended purpose, including compliance with applicable design specifications, standards, and regulatory requirements.

License

Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

boreholeai-0.5.6.tar.gz (191.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

boreholeai-0.5.6-py3-none-any.whl (41.0 kB view details)

Uploaded Python 3

File details

Details for the file boreholeai-0.5.6.tar.gz.

File metadata

  • Download URL: boreholeai-0.5.6.tar.gz
  • Upload date:
  • Size: 191.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for boreholeai-0.5.6.tar.gz
Algorithm Hash digest
SHA256 270a7839ceeb52a36da49fc2278d78c65286fb00685e9d181beb23d13d200cd9
MD5 5c9381615863bd0a43a210185407bd06
BLAKE2b-256 c35b35accc203b9f28e9c5ad86c101f47099eb9c677214d1f6e4f85510d23198

See more details on using hashes here.

File details

Details for the file boreholeai-0.5.6-py3-none-any.whl.

File metadata

  • Download URL: boreholeai-0.5.6-py3-none-any.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for boreholeai-0.5.6-py3-none-any.whl
Algorithm Hash digest
SHA256 c66a872613329bce0bcd3853dd598df1e2c931d1152f70a3da60e867a8244f67
MD5 b2925c8e38e80131ddf6d87b38e2964a
BLAKE2b-256 83bb332a09ef8ff934732e7431531a6a50d5b699873181116918a1e4919c4826

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page