Skip to main content

Bedrock, the Open Source Foundation for Ground Investigation Data

Project description

Bedrock logo

Bedrock, the Open Source Foundation for Ground Investigation Data


๐Ÿ“ƒ Documentation: https://bedrock.engineer/docs

๐Ÿ–ฅ๏ธ Source Code: https://github.com/bedrock-gi/bedrock-gi

๐Ÿ bedrock-gi on PyPI: https://pypi.org/project/bedrock-gi/

๐ŸŒ Website: https://bedrock.engineer/

๐Ÿ”— LinkedIn: https://www.linkedin.com/company/bedrock-gi


๐ŸŒŸ Highlights

๐Ÿ“– Read / write Ground Investigation (GI) data in different formats

Data Format Read Write
AGS 3 โœ… โŒ
AGS 4 Soon python-ags4
Excel โœ… โœ…
CSV โœ… โœ…
JSON โœ… โœ…
GeoJSON โœ… โœ…

What do you need? DIGGS? NADAG? GEF? Something else?
Let us know by creating an issue or starting a discussion ๐Ÿ’ญ

Also, if you have a project with publicly available GI data, please share that in a discussion, such that we can create a tutorial from it ๐Ÿคฉ

โœ… Validate your GI data

bedrock-gi comes with data validation to make sure that you can combine Ground Investigation data from multiple files into a single GIS database with consistent relationships between GI locations, samples, in-situ measurements and lab tests.

This data validation mechanism (based on pandera) is easily extensible, giving you the power to add your own data validation criteria ๐Ÿ’ช

๐Ÿ—บ๏ธ Put your GI data from multiple files into a single 3D GIS database

For example, you can take GI data from 100 AGS files and combine them into a single a GeoPackage (like a Shapefile, but then waaay better). Such a GeoPackage can then be loaded into ArcGIS, such that you can visualize your GI data in 3D:

GI data visualization .gif in 3D in ArcGIS

๐ŸŸฆ Put your GI data into Speckle

Once you have your GI data inside Speckle, it's super easy to visualize GI data together with civil engineering designs:

Kai Tak, Hong Kong, data from many sources. Bored Pile foundation design. Click here to go to the Kai Tak Speckle project from the left image

Moreover, your GI data becomes available in all the software that Speckle has connectors for.

๐Ÿ”“ Free and Open Source Software

Free and Open Source Software (FOSS) gives you full access to the code, which means you can customize bedrock-gi to integrate with other tools and fit your workflows & project needs.

As the name implies, FOSS is free to use, so you're not tied to expensive software licenses or locked into a specific software vendor โ›“๏ธโ€๐Ÿ’ฅ

You can give feedback and contribute, such that together we together can build the tools we've always wanted and needed ๐Ÿค

โ„น๏ธ Overview

Definition of Bedrock

In an abstract sense, the main principles on which something is based. [1]

In the real world, the bedrock is the hard area of rock in the ground that holds up the loose soil above. [1]

In many civil engineering projects, the identification of the bedrock through digging, drilling or geophysical methods is an important task, which greatly influences (foundation) design. [2]

Sources: [1] Bedrock | Cambridge Dictionary, [2] Bedrock | Wikipedia

Bedrock, this open source software project, forms the foundation for for ground investigation data, subsurface modelling and Geo-BIM.

With Bedrock you can get your data from any Ground Investigation data format into a GIS database ๐Ÿ—บ๏ธ, from a GIS database into Speckle ๐ŸŸฆ, and from Speckle into all the software we work with in the AEC industry ๐Ÿ—๏ธ.

The purpose of Bedrock is NOT to become THE standard for geotechnical data, because we don't need 15 instead of 14 competing standards:

14 competing standards become 15 competing standards | xkcd.com/927
Source: https://xkcd.com/927

For example, us geotechnical engineers who are used to working with AGS data know that the "ISPT group" is a table that describes an In-Situ Standard Penetration Test and we know what headings, i.e. columns that AGS group, i.e. table has. Therefore, Bedrock doesn't change that the naming of those columns. Bedrock just makes sure that the data is structured in a sensible way, such that Ground Investigation data from multiple sources can be converted into a GIS database.

A GIS database with Ground Investigation data contains tables that describe the Ground Investigation 'Project', the 'Location's where GI data was collected, the 'Sample's and 'InSitu' measurements taken at these 'Location's, and the 'Lab' tests that were performed on the collected 'Sample's.

The 'Project', 'Location', 'Sample', 'InSitu' measurement and 'Lab' test tables are related to each other: each lab test belongs to a sample, which belongs to a GI location, which belongs to a project. These relationships can be visualized in a hierarchy like this:

'Project'
 โ””โ”€โ”€โ”€'Location'
     โ”œโ”€โ”€โ”€'InSitu'
     โ””โ”€โ”€โ”€'Sample'
          โ””โ”€โ”€โ”€'Lab'

These relationships are represented in the database tables with so-called "foreign keys". For example, the results of an Atterberg Limits Lab test, i.e. Liquid Limit and Plastic Limit tests, that originated from an AGS file would be in stored in the 'Lab_LLPL' table. Each row in this table represents the Atterberg Limit test results performed on a specific sample. Each row knows to which project, GI location and sample it belongs through its project_uid, location_uid and sample_uid respectively.

This relational database (linked tables) with Ground Investigation data becomes a GIS database by assigning a (3D) GIS geometry to each of the rows in each of the database tables (except for the 'Project' table).

โฌ‡๏ธ Installation

In case you're using uv, you can add bedrock-gi to your Python project and install it in your project's virtual environment by running:

uv add bedrock-gi

I would highly recommend anyone to start using uv (Unified Virtual Environment Manager) if you're not already doing so. Some of the advantages (Source: uv):

  • ๐Ÿ–ฅ๏ธ uv Python projects will work on Windows, macOS and Linux.
  • ๐Ÿ uv installs and manages Python versions.
  • ๐Ÿ—‚๏ธ uv provides comprehensive project management, with a universal lockfile. This means no more headaches about virtual environments (or having to explain what on earth a virtual env is), or people running different versions of Python or Python packages on the same project, causing errors and other problems.
  • In short, ๐Ÿš€ uv is a single tool to replace pip, pip-tools, pipx, poetry, pyenv, virtualenv, conda and more...

It's of course also possible to install bedrock-gi from PyPI (Python Packaging Index) using pip:

pip install bedrock-gi

๐Ÿ’ญ Feedback

Got some feedback, a great idea, running into problems when working with Bedrock or just want to ask some questions?

Please feel free to:

  1. open an issue for feature requests or bug reports: bedrock-gi issues,
  2. start a discussion in this GitHub repo: Bedrock discussions,
  3. or start a discussion on the Speckle community forum if that's more appropriate: Speckle community forum

All feedback and engagement with the Bedrock community is welcome ๐Ÿค—

๐Ÿ‘ท Contributing

๐Ÿ›‘ Wait, please read this too!

Contributing isn't scary ๐Ÿ˜„

Contributing isn't just about writing code:

  • Use Bedrock and provide feedback ๐Ÿชฒ
  • Share how you use Bedrock ๐Ÿ—๏ธ
  • Help each other out, e.g. by replying to questions in the discussions or bedrock-gi issues ๐Ÿค
  • Spread the word about Bedrock ๐Ÿคฉ
  • Documentation and tutorials ๐Ÿ“ƒ
  • Most pages on the bedrock.engineer website can be edited, so if you see a spelling mistake or have a suggestion on how to explain something better, please smash that button! ๐Ÿ–ฑ๏ธ๐Ÿ’ฅ

Edit this page on GitHub button on bedrock.engineer

  • If you would like to contribute code, AWESOME! ๐Ÿ’–
    Please create an issue for what you'd like to contribute. If you don't know how to get started, please indicate this in your issue, and we'll help you out.

๐Ÿค” Things to Consider

GIS Data, Projected vs Geodetic CRS's and Heights / Elevations

Ground investigation data is initially measured in Easting, Northing, z-coordinate, i.e. in a projected Coordinate Reference System (CRS).

If you want your ground investigation data to go into a GIS database, all GIS geometry needs to use the same CRS.

Therefore, if you are dealing with GI data collected using different projected CRS's, you'll have to convert the Easting, Northing, z-coordinates to global longitude, latitude, ellipsoidal height coordinates in a geodetic CRS. (Further reading)

Please start a discussion or create an issue if want to be able to put data that were collected in different projected CRS's into a single GIS database. This is pretty easy with geopandas / pyproj transformations, but hasn't been necessary yet.

โœ๏ธ Author

Hi, I'm Joost Gevaert ๐Ÿ‘‹

I studied geotechnical engineering and applied geophysics and then worked for Arup for 4 as a geotechnical engineer an computational designer.

During my time at Arup I worked a lot on bringing computational design into the world of geotechnical engineering, and on bridging the gaps between geotechnical engineering and structural engineering.

Bedrock is the Free and Open Source Software (FOSS) that I wish existed when I worked as a geotechnical engineer at Arup.

Computational design is a field that involves the use of computer algorithms, simulations, and data analysis to support and enhance the design process. It enables designers to explore vast design spaces, to find solutions to complex design problems, and to make informed decisions based on data-driven insights.
Source: Computational design | Arup

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

bedrock_gi-0.1.2.tar.gz (24.6 MB view details)

Uploaded Source

Built Distribution

bedrock_gi-0.1.2-py3-none-any.whl (93.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: bedrock_gi-0.1.2.tar.gz
  • Upload date:
  • Size: 24.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for bedrock_gi-0.1.2.tar.gz
Algorithm Hash digest
SHA256 1e9f66386901c4f0a5214c439224711d74bcdcadd5c62790b803db2441c9152d
MD5 18e2a2e7623a4804812294bcb7d4346d
BLAKE2b-256 60d644817a51c21331ae348ffaae1449f7ca57ee65978e8f4e14ada229b315ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bedrock_gi-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 93.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.10

File hashes

Hashes for bedrock_gi-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f65403d1ce1f2446a87d4203463826221218569332b125731a0601dfb7420d75
MD5 124f528612424bd8bc74456be068a7f1
BLAKE2b-256 f9eac2d5bf69651e154adeb2e94ab77bee3b5bdc8cc01a282e3d3175963dc24d

See more details on using hashes here.

Supported by

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