Skip to content

Investigate replacing time series log algorithm executions #9

@keiranjprice101

Description

@keiranjprice101

For: developers
Who: will get more efficient live data usage
The: issue is with the algorithm history being added to workspaces when using AddTimeSeriesLog
Is a: broad solution
That: achieves better optimized live data processing
Unlike: presently
Our solution: will make live data more efficient and probably is better for the environment?

Lets open an issue to replace this algorithm call with something like this:

ws = mtd['lives-ws']
run = ws.getRun()
run.addProperty("Rot", [1, 2, 3, 4], replace=True)

The Rot would then be set. It's also possible to do:

properties_list = run.getProperties()
properties_list[0].value = "New Value"

Can also do

if run.hasProperty("property_name")
  run.getProperty("property_name").value = "New Value"

Originally posted by @Pasarus in #7 (comment)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions