Compare commits

...

2 Commits

@ -19,7 +19,7 @@ sys.path.insert(0, '../lidar/')
from nielsen import Gridder # noqa from nielsen import Gridder # noqa
MGA55 = 28355 # GDA94, MGA Zone 55 MGA55 = 28355 # GDA94, MGA Zone 55
BEACH = 'Roches Beach' BEACH = 'Roches'
# Load profile data # Load profile data
xlsx_path = '../lidar/Profiles 1 to 12 2019 DEM.xlsx' xlsx_path = '../lidar/Profiles 1 to 12 2019 DEM.xlsx'
@ -67,7 +67,7 @@ for f in file_list:
east, north = g.from_chainage(ch) east, north = g.from_chainage(ch)
row['easting'] = east.round(3) row['easting'] = east.round(3)
row['northing'] = north.round(3) row['northing'] = north.round(3)
df = df.append(row, ignore_index=True) df = pd.concat([df, pd.DataFrame([row])])
# Convert floats to int # Convert floats to int
for col in ['block', 'profile', 'year']: for col in ['block', 'profile', 'year']:

Loading…
Cancel
Save