bucktoothfrog - The purpose of this plugin was to get away from index values and access data via names. if you can modify how you input your data into this plugin to contain only JSON objects with named keys instead an Array that is indexed it should work fine
try loading this (Notice the "0" and "1" are strings)
{"Data":{"0":{"lat":1,"long":11},"1":{"lat":2,"long":12}}}
You can then retrieve the values using the get action
Storage.get("Data","0","lat") = 1
Storage.get("Data","0","long") = 11
Storage.get("Data","1","lat") = 2
Storage.get("Data","1","long") = 12