EcoStruxure Geo SCADA Expert Forum
Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-10-19 10:54 AM
Does anybody how can I locate a signal point on a map using a query? I mean, only the point without alarms.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-01-16 06:15 AM
If your goal is to just simply view the points on the map with no alarm conditions, then your query gets fairly simplified. Remove any and all alarm, foreground, background, and blink columns.
SELECT
FULLNAME, FULLNAME || ' Alarmas Activas: ' || FormatValue (ALARMSETCOUNT using '0') as "TOOLTIP", GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE
FROM
CGROUP
WHERE
FULLNAME LIKE 'ECOGAL%' AND GISLOCATIONSOURCE=1
More aligned with your original question, if all you care about is a specific point or points (ex: just pressure points) then you can edit the query for:
SELECT
FULLNAME, FULLNAME || '<br>Alarm State: ' || ALARMSTATEDESC as "TOOLTIP", GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE
FROM
CDBPOINT
WHERE
FULLNAME LIKE 'ECOGAL%' AND GISLOCATIONSOURCE=1 AND NAME IN ('point name1','point name 2')
Lastly -- if you want to add some line breaks in your tooltip, use <br>.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2023-12-16 02:32 AM
Do you have the query that shows it 'with' the alarms?
If so, you should just be able to remove the fields that reference the Alarms.
It's generally just a case of having the query return the geolocation of the object, along with some text that you want displayed, and potentially a value for the icon you want.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-01-15 12:12 PM
Hi!! I'm attaching my query, can you tell me what part should I delete??
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-01-16 06:15 AM
If your goal is to just simply view the points on the map with no alarm conditions, then your query gets fairly simplified. Remove any and all alarm, foreground, background, and blink columns.
SELECT
FULLNAME, FULLNAME || ' Alarmas Activas: ' || FormatValue (ALARMSETCOUNT using '0') as "TOOLTIP", GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE
FROM
CGROUP
WHERE
FULLNAME LIKE 'ECOGAL%' AND GISLOCATIONSOURCE=1
More aligned with your original question, if all you care about is a specific point or points (ex: just pressure points) then you can edit the query for:
SELECT
FULLNAME, FULLNAME || '<br>Alarm State: ' || ALARMSTATEDESC as "TOOLTIP", GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE
FROM
CDBPOINT
WHERE
FULLNAME LIKE 'ECOGAL%' AND GISLOCATIONSOURCE=1 AND NAME IN ('point name1','point name 2')
Lastly -- if you want to add some line breaks in your tooltip, use <br>.
Link copied. Please paste this link to share this article on your social media post.
Link copied. Please paste this link to share this article on your social media post.
Posted: 2024-01-17 05:14 AM
Thank you, it's very helpful.
Link copied. Please paste this link to share this article on your social media post.
Create your free account or log in to subscribe to the board - and gain access to more than 10,000+ support articles along with insights from experts and peers.