mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
starting to piece together the borehole data
This commit is contained in:
parent
6488000406
commit
2753db4689
1 changed files with 22 additions and 0 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue