User Tools

Site Tools


using_overlay_to_extract_data_from_openstreetmap

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
using_overlay_to_extract_data_from_openstreetmap [2022/06/15 17:42] abeverleyusing_overlay_to_extract_data_from_openstreetmap [2022/06/21 18:14] (current) – [Total length of segregated cycleways in Westminster] abeverley
Line 6: Line 6:
  
   [out:csv(number,length)];   [out:csv(number,length)];
-  area[name="Westminster"]->.searchArea; +  {{geocodeArea:Westminster}}->.searchArea; 
-  way["highway"](area.searchArea);+  way["highway"]["highway"!="cycleway"]["highway"!="bridleway"]["highway"!="footway"]["highway"!="path"]["highway"!="service"]["access"!="private"](area.searchArea);
   make stat number=count(ways),length=sum(length());   make stat number=count(ways),length=sum(length());
   out;   out;
Line 14: Line 14:
  
   [out:csv(number,length)];   [out:csv(number,length)];
-  area[name="Westminster"]->.searchArea;+  {{geocodeArea:Westminster}}->.searchArea; 
 +  way["highway"="cycleway"]["foot"!="designated"](area.searchArea); 
 +  make stat number=count(ways),length=sum(length()); 
 +  out; 
 + 
 +==== Total length of segregated cycleways in Camden ==== 
 + 
 +  [out:csv(number,length)]; 
 +  {{geocodeArea:London borough of Camden}}->.searchArea;
   way["highway"="cycleway"](area.searchArea);   way["highway"="cycleway"](area.searchArea);
   make stat number=count(ways),length=sum(length());   make stat number=count(ways),length=sum(length());
   out;   out;
 +
 +==== Show all segregated cycleways in Westminster on a map ====
 +
 +Click the zoom icon once generated
 +
 +  [out:json];
 +  {{geocodeArea:Westminster}}->.searchArea;
 +  (
 +    way["highway"="cycleway"]["foot"!="designated"](area.searchArea);
 +  );
 +  out body;
 +  >;
 +  out skel qt;
 +
 +==== Show only roads in Westminster on a map ====
 +
 +  [out:json];
 +  {{geocodeArea:Westminster}}->.searchArea;
 +  (
 +    way["highway"]["highway"!="cycleway"]["highway"!="bridleway"]["highway"!="footway"]["highway"!="path"]["highway"!="service"]["access"!="private"](area.searchArea);
 +  );
 +  out body;
 +  >;
 +  out skel qt;
 +==== Show segregated cycle routes on current viewed map ====
 +
 +  [bbox:{{bbox}}];
 +  ( 
 +    way["highway"="cycleway"];
 +  );
 +  out geom;
  
 ==== Other things I didn't write details for ==== ==== Other things I didn't write details for ====
Line 39: Line 78:
     out;     out;
   }   }
- 
-  [bbox:{{bbox}}]; 
-  (  
-    way["highway"="cycleway"]; 
-  ); 
-  out geom; 
  
   [out:csv(length,value)];   [out:csv(length,value)];
using_overlay_to_extract_data_from_openstreetmap.1655314926.txt.gz · Last modified: 2022/06/15 17:42 by abeverley