Forum Replies Created
-
AuthorPosts
-
MikhailModeratorHi,
Open Administrator, find the appropriate input channel and set its formula, for example, Cnl/10
MikhailModeratorHi,
See the structure of the distributive package and this article.
MikhailModeratorbut how to doit?
See T-SQL manual. Also we can develop scripts for you for a fee.
MikhailModeratorI suppose, first, you should install Rapid SCADA from distributive. When it works correctly, compare the installed files with results of your own build.
MikhailModeratorYou have several options:
1. Deploy 2 instances of Rapid SCADA (local and remote) and connect them using Rapid Gate module.
2. Get data from a remote computer by the web application.I have to get the data from the sever.
That’s true.
MikhailModeratorWhat database do you use? (MS SQL, MySQL, etc.)
I suppose, you should specify a stored procedure where to filter channels. And use this stored procedure in the export module.
MikhailModeratorCould you update Webstation only? As I remember, there was a bug that hides error message in schemes containing the cause.
Also you can find more details in C:\SCADA\ScadaWeb\log\ScadaWeb.log
MikhailModeratorHi,
OK. How did you solve the issue?
MikhailModeratorWhen you do it, please share your experience.
MikhailModeratorTiles should be available by a path like this
https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png
s – scale
MikhailModeratorUseful links:
SasPlanet
How can I export a large zone from OpenStreetMap?
MikhailModeratorHi,
Definitely it is possible, but you need to do some research by yourself.
The general sequence:
1. Download tiles of the required area.
2. Run local web server that provides tiles.
3. Specify your local web server in a map XML file.
MikhailModeratori have a error similar #5010 when i built ScadaWeb
Hi,
Could you provide a link?Please describe what is expected behavior of the application and what is actual behavior?
MikhailModeratorWorks like a charm but I’m limited to 100 symbols in formula input.
To shorten, try this:
public double OR(params int[] cnlNums) { foreach (int cnlNum in cnlNums) { if (Val(cnlNum) > 0 && Stat(cnlNum) > 0) return 1; } return 0; }Example of formula using is OR(1,2,3,4,5)
-
This reply was modified 7 years, 4 months ago by
Mikhail.
MikhailModeratorHi,
Try the formula like that:public double OR(params double[] inputs) { foreach (double input in inputs) { if (input > 0) return 1; } return 0; }Note: I don’t test formulas on the forum. In case of error, please provide error message from the Server log.
-
This reply was modified 7 years, 4 months ago by
-
AuthorPosts