Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Notifications
Login / Register
Community
Community
Notifications
close
  • Forums
  • Knowledge Center
  • Events & Webinars
  • Ideas
  • Blogs
Help
Help
  • Explore Community
  • Get Started
  • Ask the Community
  • How-To & Best Practices
  • Contact Support
Login / Register
Sustainability
Sustainability

We Value Your Feedback!
Could you please spare a few minutes to share your thoughts on Cloud Connected vs On-Premise Services. Your feedback can help us shape the future of services.
Learn more about the survey or Click here to Launch the survey
Schneider Electric Services Innovation Team!

Point location on a map

EcoStruxure Geo SCADA Expert Forum

Schneider Electric support forum about installation, configuration, integration and troubleshooting of EcoStruxure Geo SCADA Expert (ClearSCADA, ViewX, WebX).

cancel
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Home
  • Schneider Electric Community
  • Remote Operations
  • EcoStruxure Geo SCADA Expert Forum
  • Point location on a map
Options
  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send Invite Cancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
Send New Invite Close
Top Experts
User Count
sbeadle
Kirk sbeadle Kirk
308
AndrewScott
Admiral AndrewScott
96
BevanWeiss
Spock BevanWeiss
91
AdamWoodlandToo
Lt. Commander AdamWoodlandToo
37
View All

Invite a Colleague

Found this content useful? Share it with a Colleague!

Invite a Colleague Invite
Solved Go to Solution
Back to EcoStruxure Geo SCADA Expert Forum
Solved
Fernando84
Lieutenant JG Fernando84
Lieutenant JG

Posted: ‎2023-10-19 10:54 AM

0 Likes
4
1159
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

Link copied. Please paste this link to share this article on your social media post.

Posted: ‎2023-10-19 10:54 AM

Point location on a map

Does anybody how can I locate a signal point on a map using a query? I mean, only the point without alarms.

Labels
  • Labels:
  • IoT
  • SCADA
  • Telemetry
  • Tags:
  • english
  • scada
  • SCADA app
  • SCADA software
  • SCADA tutorial
  • Telemetry and SCADA
Reply

Link copied. Please paste this link to share this article on your social media post.

  • All forum topics
  • Previous Topic
  • Next Topic

Accepted Solutions
tfranklin
Commander tfranklin
Commander

Posted: ‎2024-01-16 06:15 AM

In response to Fernando84
0 Likes
0
944
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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>. 

See Answer In Context

Reply

Link copied. Please paste this link to share this article on your social media post.

Replies 4
BevanWeiss
Spock BevanWeiss
Spock

Posted: ‎2023-12-16 02:32 AM

0 Likes
2
1042
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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.


Lead Control Systems Engineer for Alliance Automation (VIC).
All opinions are my own and do not represent the opinions or policies of my employer, or of my cat..
Reply

Link copied. Please paste this link to share this article on your social media post.

Fernando84
Lieutenant JG Fernando84
Lieutenant JG

Posted: ‎2024-01-15 12:12 PM

In response to BevanWeiss
0 Likes
1
953
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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??

 

SELECT 
FULLNAME, FULLNAME || '    Alarmas Activas: ' ||  FormatValue (ALARMSETCOUNT using '0') as "TOOLTIP", GISLOCATION->LATITUDE, GISLOCATION->LONGITUDE, CASE WHEN ALARMSETCOUNT > 0 THEN 255  WHEN ALARMACCEPTEDCOUNT > 0 THEN 255 WHEN ALARMCLEAREDCOUNT > 0 THEN 150*256 ELSE 0 END AS "FOREGROUND", BACKGROUND, CASE WHEN ALARMSETCOUNT > 0 THEN 1 WHEN ALARMCLEAREDCOUNT > 0 THEN 1 ELSE 0 END AS "BLINK", ALARMSETCOUNT,  ALARMACCEPTEDCOUNT, ALARMCLEAREDCOUNT
 
FROM 
CGROUP 
WHERE 
FULLNAME LIKE 'ECOGAL%' AND GISLOCATIONSOURCE=1
ORDER BY AlarmSetCount, AlarmAcceptedCount, AlarmClearedCount
Reply

Link copied. Please paste this link to share this article on your social media post.

tfranklin
Commander tfranklin
Commander

Posted: ‎2024-01-16 06:15 AM

In response to Fernando84
0 Likes
0
945
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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>. 

Reply

Link copied. Please paste this link to share this article on your social media post.

Fernando84
Lieutenant JG Fernando84
Lieutenant JG

Posted: ‎2024-01-17 05:14 AM

0 Likes
0
927
  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Email to a Friend
  • Report Inappropriate Content

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.

Reply

Link copied. Please paste this link to share this article on your social media post.

Preview Exit Preview

never-displayed

You must be signed in to add attachments

never-displayed

 
To The Top!

Forums

  • APC UPS Data Center Backup Solutions
  • EcoStruxure IT
  • EcoStruxure Geo SCADA Expert
  • Metering & Power Quality
  • Schneider Electric Wiser

Knowledge Center

Events & webinars

Ideas

Blogs

Get Started

  • Ask the Community
  • Community Guidelines
  • Community User Guide
  • How-To & Best Practice
  • Experts Leaderboard
  • Contact Support
Brand-Logo
Subscribing is a smart move!
You can subscribe to this board after you log in or create your free account.
Forum-Icon

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.

Register today for FREE

Register Now

Already have an account? Login

Terms & Conditions Privacy Notice Change your Cookie Settings © 2025 Schneider Electric

This is a heading

With achievable small steps, users progress and continually feel satisfaction in task accomplishment.

Usetiful Onboarding Checklist remembers the progress of every user, allowing them to take bite-sized journeys and continue where they left.

of