Parse data from JSON without attribute names

I’m trying to parse some JSON data from the following JSON response:

{
"x4cc54f":
  ["4CC54F", 52.4242,13.0418,51,39025,481,"7566",0,"","",1638720645,"","","",0,0,""],
"x4d22ab":
  ["4D22AB", 52.3189,13.3571,68,1875,142,"1000",0,"","",1638720646,"","","",0,-832,""]
}

The quantity of the data varies, the content is the same,
I’d like to

  • extract some of the values and to
  • present some of the values in a table and to
  • calculate the distance from a given location to each lon/lat in the JSON.

How would I do that?