tips:overpass

Differences

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

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tips:overpass [2020/11/17 09:24] scipiotips:overpass [2020/11/17 16:36] (current) scipio
Line 5: Line 5:
 select box and export all streets select box and export all streets
 <code> <code>
-[out:json][timeout:25];+[out:xml][timeout:25];
 ( (
   way["highway"]({{bbox}});   way["highway"]({{bbox}});
Line 13: Line 13:
 >; >;
 out skel qt; out skel qt;
 +</code>
 +
 +selezionare direttamente l'area parcheggi di fes
 +<code>
 +[out:xml][timeout:25];
 +(way["highway"](34.02389, -5.01483, 34.04701, -4.99196););
 +out body;
 +>;
 +out skel qt;
 +</code>
 +
 +export data in OSM
 +
 +create db
 +<code>
 +spatialite_osm_net -o fes.osm -d fes.sqlite -T roads
 +echo 'SELECT CreateSpatialIndex('roads', 'geometry');' | spatialite  fes.sqlite
 +</code>
 +
 +
 +<code>
 +# MakePoint(longitude, latitude)
 +SELECT a.distance,b.name FROM knn AS a JOIN roads AS b ON (b.id = a.fid) 
 + WHERE f_table_name = 'roads' AND ref_geometry = MakePoint(-5.007247, 34.032262) and max_items=2;
 </code> </code>
  
Line 21: Line 45:
  
  
-SELECT ImportGeoJSON('./export.geojson', 'test');+
  
 </code> </code>
  • tips/overpass.txt
  • Last modified: 2020/11/17 16:36
  • by scipio