I’ve just come across this interesting thread explaining how to easily generate Overpass queries using GPT, which seems like a user experience booster for a lot of people and lowering the entry level to the minimum
https://twitter.com/lemonodor/status/1636849040548675584
From the comments I’ve also learned about ChatGeoPT
https://www.youtube.com/embed/EBz325cMHsA
overpass-ai is doing something similar:
Prompt example:
Write an overpass query to highlight all public transport lines in Madrid, Spain
Result:
[out:json];
area[name="Madrid"]->.a;
(
relation["type"="route"]["route"="bus"](area.a);
relation["type"="route"]["route"="tram"](area.a);
);
out body;
>;
out skel qt;
There are some open source models being released in the pasts weeks. Maybe we can dream with a future where you can interact, search and query osm.org using natural language?
3 posts - 2 participants
Ce sujet de discussion accompagne la publication sur https://community.openstreetmap.org/t/improving-overpass-user-experience-thanks-to-ai/97104