User:El Sivas

From OpenStreetMap Wiki
Jump to navigation Jump to search


Person

BJ 1982

Orte:

Hessen

Overpass turbo

/*
EN: Overpass turbo draft script to highlight usable off road tracks for fire department and ambulance vehicles using.
*/

/*
DE: Overpass turbo Entwurfsscript zum Anzeigen von durch Feuerwehr- und Rettungsfahrzeuge benutzbare Feld- und Waldwege.
*/

[out:json][timeout:25];

(
/*
all tracks from "excellent" to "very_bad" for normal and light off-road vehicles  
*/
  
  way["highway"="track"]["smoothness"="excellent"]({{bbox}});
  way["highway"="track"]["smoothness"="good"]({{bbox}});
  way["highway"="track"]["smoothness"="intermediate"]({{bbox}});
  way["highway"="track"]["smoothness"="bad"]({{bbox}});
  way["highway"="track"]["surface"="paved"]({{bbox}});
  
/*
incomment "very_bad" for very heavy vehicles with road wheels, e.g. heavy trucks
*/
  way["highway"="track"]["smoothness"="very_bad"]({{bbox}});
  
/*  
uncomment "horrible" for full off-road vehicles
*/
  //way["highway"="track"]["smoothness"="horrible"]({{bbox}});
);

out body;
>;
out skel qt;