this post was submitted on 14 Apr 2024
1 points (100.0% liked)

OpenStreetMap community

3805 readers
8 users here now

Everything #OpenStreetMap related is welcome: software releases, showing of your work, questions about how to tag something, as long as it has to do with OpenStreetMap or OpenStreetMap-related software.

OpenStreetMap is a map of the world, created by people like you and free to use under an open license.

Join OpenStreetMap and start mapping: https://www.openstreetmap.org.

There are many communication channels about OSM, many organized around a certain country or region. Discover them on https://openstreetmap.community

https://mapcomplete.osm.be is an easy-to-use website to view, edit and add points (such as shops, restaurants and others)

https://learnosm.org/en/ has a lot of information for beginners too.

founded 4 years ago
MODERATORS
 

I wonder how many I have already mapped.

top 2 comments
sorted by: hot top controversial new old
[โ€“] dont_lemmee_down@lemm.ee 0 points 4 months ago (1 children)

Definetly! You can use SPARQL to query the database! Kinda new to the whole thing, but I think this at least shows how many benches you have edited as the last person.

SELECT ?user (COUNT(*) AS ?count) WHERE {
  ?bench osmt:amenity "bench";
                osmm:user "Ludrol".
}
GROUP BY ?user

LIMIT 2

Which returns 60 :)

[โ€“] temmink@feddit.de 0 points 4 months ago

Which database are you querying? I only knew of Overpass QL. Is this a database of the OSM data?