Coder Social home page Coder Social logo

Comments (3)

Hugovdberg avatar Hugovdberg commented on August 12, 2024

A snippet to get the data from event frames generated by analyses on AFAttributes:

import PIconnect as PI


element_path = r"Root Element\Child element"
event_frame_start_time = "*-365d"

database = PI.PIAFDatabase()
element = database.descendant(element_path)
analyses = [
    e
    for e in element.element.Analyses
    if e.Name == "Analysis name"
]

eventframes = []
for analysis in analyses:
    eventframes.extend(
        PI.AFSDK.AF.EventFrame.AFEventFrame.FindEventFramesByAnalysis(
            analysis,
            PI.AFSDK.AF.Time.AFTime.Parse(event_frame_start_time),
            0,
            12000,
            PI.AFSDK.AF.EventFrame.AFEventFrameSearchMode.ForwardFromStartTime,
            "",
            "",
            None,
            None,
            True,
        )
    )

for frame in eventframes:
    print(f"------------------\nFrame name: {frame.Name}\n------------------")
    for attribute in frame.Attributes:
        attr = PI.PIAF.PIAFAttribute(element=frame, attribute=attribute)
        values = attr.recorded_values(
            frame.StartTime, frame.EndTime, "inside"
        ).drop_duplicates()
        print(values)
        print()
    print()

from piconnect.

Hugovdberg avatar Hugovdberg commented on August 12, 2024

Currently there are some issues with extracting event frames, mainly because the API has changed on a few occasions. I'm testing against API versions 2.7 and 2.9, but I can't test against API version 2.10. Some of the older methods have become obsolete in version 2.10, and some of the newer methods aren't available in 2.7. I'm contemplating on how to make this work across different API versions.

from piconnect.

freitaass avatar freitaass commented on August 12, 2024

Is this feature still available? are there any support for extract attribute values in eventframes?

from piconnect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.