danielrabinovit
06-23-2025Cloud Apps
Map Help
Hi everyone, I am trying to create a heatmap style visual using latitude and longitude. I have a column called location that has data that looks like this -26.27389, 28.127951. Is there something I ...
- 06-23-2025
You should try to split your current column in 2 separate columns (eg. One for Latitude and one for Longitude) on your Schema.
Assuming your current column is a text, you can use something like:
strparts(current_column,',',1)
strparts(current_column,',',2)
Then adding them using Scatter Map widget type should visualize what you need!
Hope this helps