The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Extend Sensor Link Extension!!
OutOfBount
Member Posts: 2 Contributor I
in Help
Hi
I would like to develop an extension that extends the Sensor Link extension for the PI system. The idea is to allow the user to enter PI tags separated by commas and insert them directly to any operator in the sensor link extension.
However, I face an issue when I try to make my new extension depend on the sensor link extension. I don't know what is the correct namespace to add to the build.gradle file:
I would like to develop an extension that extends the Sensor Link extension for the PI system. The idea is to allow the user to enter PI tags separated by commas and insert them directly to any operator in the sensor link extension.
However, I face an issue when I try to make my new extension depend on the sensor link extension. I don't know what is the correct namespace to add to the build.gradle file:
dependencies {
rapidminer '9.8.0'
extension namespace: 'sensorlink', version: '1.4.2'
//extension namespace: 'text', version: '8.1.0'
}
Also, I tried to download the sensor link (.jar) and create a new folder called libs and add the following line to the build.gradle file:
Also, I tried to download the sensor link (.jar) and create a new folder called libs and add the following line to the build.gradle file:
flatDir {
dirs 'libs'
}
But I don't know if the extension was added to the project or not. So how could I check and use the extension for development?
But I don't know if the extension was added to the project or not. So how could I check and use the extension for development?
0
Answers
When using Sensor Link operators it is time-consuming to add the data items (PI Tags) one by one to the GUI. So I was planning to add an extension that allows the user to enter all the data items separated by comma at once and feed it to the Sensor Link different operators as chosen by the user.
I am not sure if I understood the first approach correctly. However, the second approach would solve the problem if it allows the user to enter a large number of data items easily.