I wonder how many I have already mapped.

  • dont_lemmee_down@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    5 months ago

    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
      link
      fedilink
      English
      arrow-up
      0
      ·
      5 months ago

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