How would i go about making multiple JSON arrays from 1 JSON array?
Basically i have an array filled with JSON objects, but i would like to create multiple arrays with each array being filled with specific JSON objects from the initial array depending on a certain property like ID that every JSON object posesses.
I work in Unity3D with C#.
Anyone any ideas?
[EDIT]
this is 1 object:
{"ID":175355,"Datetime":1523612270,"Module":"Krol 42","Latitude":52.08618,"Longitude":5.11126166666667,"Speed":0}
There are 50 different object with individual IDs in the array but every ID has a 100 instances of it with different lat/lon coordinates
so what i would like is to have an array filled with 50 arrays, so each unique ID has its own array with all the 100 different instances of it in it.
if this makes any sense, i dont know if im explaining it clearly enough, sorry about that.
dynamic?