Changing the result file delimiter to semicolon
The result files produced by the losscalculator
include polygons in one of its columns. Since polygons have commas inside, this could interfere with coma being used as the columns delimiter.
So I decided to use double commas (,,
) as the result file delimiter, which does not look nice as you can observe below:
geometry,, origin_id,, respective_cell_id,, asset_id,, lon,, lat...
I want to change the program to produce a result file with delimiter being semicolon ;
and no more ,,
to create the result file header as below:
geometry; origin_id; respective_cell_id; asset_id; lon; lat...