R-package for OPC UA

Viewed 238

I would like to know if someone works on a package for R using the OPC-UA communication standard. I found no R-package on CRAN and also on GitHub.

My idea is to to some real-time analysis of data send by a OPC-UA server.

There are some python packages but I don´t know if R is the appropriate language for this network protocol.

In my opinion R would be great to visualize data and analyze them.

1 Answers

There is no native OPC UA client for R; however, you can get OPC data into your R application in a variety of ways.

Personally, I think it would be the easiest to use a database. OPC Foundation provides a .NET Core stack where you can add your own R driver.

Related