Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.
Editing DataPoint Value
-
Re: how to handle missing datapoints
Dear Phil, is there a way to edit the datapoint value at specific timestamp, or set the value of any datapoint at specific timestamp?
-
Yes, quite a few ways actually.
The easiest is the data import module. You can export CSV or Excel data from the point details page (the old one: /data_point_details.shtm), then use the add/delete column to modify/delete. "Adding" a value at the same timestamp as an existing value is like editing the value: the first will be replaced by the latter.
One way to set arbitrary data to points from times in the past is to use a scripting data source and check 'saves historic'. Then all the .set(value, timestamp) calls will bypass logging type and the events system and just get inserted.
-
Hi phildunlap, is there a way to pass the timestamp from UI to scripting data point? Currently it seems to me that at least 2 meta data points will be required to key in the value and timestamp then referred from scripting datapoint to call .set(value,timestamp) - resulting in a total of 3 datapoints.