Hey guys,
Can someone help me out?. Im trying to parse a Json that looks like this:
{
Campos: [
"Prefixo",
"DataHora",
"GPS_Latitude",
"GPS_Longitude",
"GPS_Direcao",
"Linha",
"GTFS_Sentido",
"Velocidade",
"IMEI"
],
Dados: [
[
"442526",
"25/06/2020 14:06:31",
-15.83956,
-48.128787,
0,
"361.1",
1,
0,
"358197040754337"
],
[
"444731",
"25/06/2020 14:07:08",
-15.786168,
-47.943036,
67,
"0.383",
0,
56,
"358197040769939"
],
The problem is, i need to separate all values of every array to use in a report later on. As the data dont have a label, im not sure how to do it.
Does someone have any idea on how to work on this?
Thank you in advance.