On overpass turbo this query gives a perfect representation of the bus_stop over a city
node
[highway=bus_stop]
({{bbox}});
out;
but after downloading an osm file over the same city on geofabrik, this osmosis command doesn't give the same result osmosis --read-xml rhone-alpes-latest.osm --node-key-value keyValueListFile=POI.txt --write-xml output-nodes.osm with POI.txt containing
public_transport.stop_position
public_transport.platform
public_transport.station
railway.halt
railway.station
railway.subway_entrance
railway.tram_stop
highway=bus_stop
The result is far from the one on overpass, giving less nodes. What do I do wrong?