Hi all,
I have a JSON file. Each object in the file has the coordinate of the start and end point of a line. I would like to transform it to geojson file with linestring.
Any ideas how can i do this?
Example:
{
"cityName" : "Brussel",
"endPoint.x" : "4.31888222694397",
"endPoint.y" : 50.79171001911163,
"startPoint.x" : "4.3186622858047485",
"startPoint.y" : 50.79149007797241
}
Best