- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
skybert
Engager
11-27-2020
03:27 PM
I'm not able to visulize a list of values as I would.
My input is a lookup with values of kindergardens, the location (longitude, latitude), and the number of available places, like
Kindergarden | Latitude | Longitude | AvailPlaces |
Misty Gardens | 15.5534 | 10.5432 | 12 |
Dragon's den | 15.6342 | 10.6533 | 4 |
Mighty Duck | 15.1342 | 10.5423 | 0 |
I would like to show a map of the kindergardens with the available places as a value.
In theory, I think this should be possible using geostats, but I can't get it to work. It almost seems like I need to split the list entries e.g. so that Dragon's den has 4 events - to use "geostat count by Kindergarden".
Is there another way of achieving this? 🙂
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
11-27-2020
04:40 PM
index=_internal | head 1 | fields _raw | eval _raw="Kindergarden Latitude Longitude AvailPlaces
Misty Gardens 15.5534 10.5432 12
Dragon's den 15.6342 10.6533 4
Mighty Duck 15.1342 10.5423 0"
| multikv
| geostats latfield=Latitude longfield=Longitude values(AvailPlaces) by Kindergarden
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
to4kawa
Ultra Champion
11-27-2020
04:40 PM
index=_internal | head 1 | fields _raw | eval _raw="Kindergarden Latitude Longitude AvailPlaces
Misty Gardens 15.5534 10.5432 12
Dragon's den 15.6342 10.6533 4
Mighty Duck 15.1342 10.5423 0"
| multikv
| geostats latfield=Latitude longfield=Longitude values(AvailPlaces) by Kindergarden
