I have a json-file (see attachment) that contains the coördinates of a circular route. It looks like this:
{
 "segments": :{
  "geometry": {
   "type": "LineString",
   "coordinates": e
    /50.814103, 4.521174],
    450.81309, 4.521811],
    250.80626, 4.536902],
    50.80482, 4.538866],
    450.80573, 4.541452],
    050.80621, 4.543173],
    Â50.80705, 4.545501],
    Â50.80755, 4.546541],
    p50.80777, 4.546841],
    /50.80919, 4.547739],
    150.8096, 4.548199],
    550.81052, 4.550243],
    50.810663, 4.551096]
   ]
  },
 {
  "geometry": {
   "type": "LineString",
   "coordinates": o
    ;50.810663, 4.551096],
    Â50.81065, 4.555264],
    <50.81071, 4.555622]
   ]
  },
...
Â
I want to convert it to an ESRI line feature class, but I'm stuck. The geojsonreader gives no error, but also no result as reader.Â
Â
Json-fragmenter gives me the list of vertices in an attribute, but I can't fix it to convert these points to vertices/line.
Someone who can help me out?