I have a pipeline that can be run using either of 2 sources for the hazard files. One source has the data in metres and the other has it in centimetres. Both sets of hazard files are defined in csvs. What is the best way to convert the data to metres?
MapsInMetres.csv
id,location,ARI,res
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI10_0.tif,10,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI20_0.tif,20,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI50_0.tif,50,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI100_0.tif,100,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI200_0.tif,200,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI500_0.tif,500,10
coastal_flooding,Data/Hazard/LiDAR/NZ_ARI1000_0.tif,1000,10
MapsInCm.csv
id,regioncode,location,ARI,deltaTemp,res
0,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI10_8m.tif,10,0,8
1,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI20_8m.tif,20,0,8
2,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI50_8m.tif,50,0,8
3,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI100_8m.tif,100,0,8
4,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI200_8m.tif,200,0,8
5,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI500_8m.tif,500,0,8
6,01,Data/Hazard/nationalFluvialPluvialMaps/01_ARI1000_8m.tif,1000,0,8