PREFIX monumento: <http://vocab.linkeddata.es/datosabiertos/def/turismo/lugar#>
SELECT DISTINCT ?uri ?title ?description min(?latitud) as ?latitud min(?longitud) as ?longitud
WHERE {
?uri a monumento:LugarInteresTuristico.
OPTIONAL{ ?uri rdfs:label ?title}.
OPTIONAL{ ?uri rdfs:comment ?description}.
?uri geo:geometry ?geo.
?geo geo:lat ?latitud.
?geo geo:long ?longitud.
} group by ?uri ?title ?description