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

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"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. Results are merged into a single ground profile Excel, test data Excel, and AGS file, with one annotated PDF per input file.

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

# Output:
#   Borehole_ground_profile.xlsx   (merged from all input files)
#   Borehole_test_data.xlsx        (merged from all input files)
#   Borehole_ags4.ags              (merged from all input files)
#   BH01_annotated.pdf             (one per input file)
#   BH02_annotated.pdf
#   BH03_annotated.pdf

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.

# Pass directly
client = BoreholeAI(api_key="bhai_xxx")

# Or for local development / testing
client = BoreholeAI(api_key="bhai_xxx", base_url="http://localhost:8000")

Error Handling

from boreholeai import BoreholeAI, InsufficientCreditsError, AuthenticationError

client = BoreholeAI(api_key="bhai_xxx")

try:
    result = client.process_documents("borehole.pdf")
except AuthenticationError:
    print("Invalid API key")
except InsufficientCreditsError:
    print("Not enough credits — buy more at boreholeai.com")

Response

process_documents() returns a JobResult:

@dataclass
class JobResult:
    job_id: str              # Unique job identifier
    status: str              # "completed"
    num_pages: int           # Total pages processed
    credits_used: int        # Credits consumed
    files: list[FileResult]  # Downloaded result files

@dataclass
class FileResult:
    filename: str            # e.g. "Borehole_ground_profile.xlsx"
    path: Path               # Local path where file was saved

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.1.2.tar.gz (14.3 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.1.2-py3-none-any.whl (15.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for boreholeai-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e9838b3998ef788392e5cce3832f4680c1720948ab034efd8a13ae659e3a855f
MD5 467f2b876f650c30507185c870332d3d
BLAKE2b-256 20a98a73cdc8e20620d278dbbfd8389e03fc2905e3548aede4456b0f161528f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: boreholeai-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 15.8 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.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f196abc55ff10299c24667902e6de082d36956458c4a78a6ce9b31131aa30be6
MD5 df70dc96b512f0ab1537c39600ad7622
BLAKE2b-256 8b9aa31ad7f7712f11d3e34adda611d4dca72d53b0a08faeab39a11d8faa6c3a

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