Um mapa com dados do OpenStreetMap sobre a infra-estrutura cicloviária da Região Metropolitana de São Paulo.
Para buscar os dados, rodamos a busca abaixo no Overpass e salvamos o GeoJSON:
/* This shows cycleways, cycleroutes and other bicycle infra-structure. */
[out:json];
( // Get cycle route relations relationroute=bicycle->.cr; // Get cycleways wayhighway=cycleway;
// Cycleways on road streets way[highway]"cycleway:left"=lane; way[highway]"cycleway:right"=lane;
// The convention is to use highway="path", // but get all highways with bicycle=designated //way[highway=path]bicycle=designated; way[highway]bicycle=designated;
nodeamenity=bicycle_parking; nodeamenity=bicycle_rental; nodeamenity=fuel; nodeshop=bicycle;
);
out body;
; out skel qt;