starting to piece together the borehole data

This commit is contained in:
Khalim Conn-Kowlessar 2023-06-16 15:51:36 +01:00
parent 6488000406
commit 2753db4689

View file

@ -132,6 +132,28 @@ def handler():
borehole_sample = borehole_data[:1000]
df = pd.DataFrame(borehole_sample)
# for each property, find the nearest borehole
# Data dictionary:
# QS
# NUMB
# BSUFF
# REGNO
# RT
# GRID_REFER
# EASTING
# NORTHING
# X
# Y
# CONFIDENTI
# STRTHEIGHT
# NAME
# LENGTH
# BGS_ID
# DATE_KNOWN
# DATE_K_TYP
# DATE_ENTER
# AGS_LOG_UR
import geopandas as gpd
borehole_shape_file = os.path.abspath(os.path.dirname(__file__)) + "/model_data/local_data/borehole/borehole.shp"