Thanks Ryan and Juriaan, I've studied your actors, but I'm afraid the internal workings of the Javascript actor still remain a complete mystery to me.
As far as I can tell, the data from each of the radiation monitors consists of something like this:
{
"id": 78490936,
"user_id": 759,
"value": 18,
"unit": "cpm",
"location_name": null,
"device_id": 100012,
"original_id": 78490936,
"measurement_import_id": null,
"captured_at": "2017-01-22T07:23:26.000Z",
"height": null,
"devicetype_id": null,
"sensor_id": null,
"station_id": null,
"channel_id": null,
"latitude": 37.659,
"longitude": 140.459
},
some of them seem to be measuring different things or working with different units, so its not sensible to sample all of the data on the page at the same time.
I think that what would be useful for this project would be to have an actor where i could trigger a specific ¨id¨ to an input and receive the associated current ¨value¨ - maybe with the option to sample a number of devices simultaneously (like 8 inputs and 8 outputs)
would one of you be able to make me an actor (or TXT) that does that? i would be eternally grateful..... :)
(i tried triggering specific longditude/latitude numbers into Juriaan's actor but it was outputting something that didn't correlate, and i don't know why)