I have imported osm data into PostgreSQL using this command
Now how can i get all the ways of a city(or a bounding region). |
Why not ask your question on the new OpenStreetMap Community Forum?
I have imported osm data into PostgreSQL using this command
Now how can i get all the ways of a city(or a bounding region). |
Once you sign in you will be able to subscribe for any updates here
By RSS:Markdown Basics
Question tags:
question asked: 31 Mar '18, 15:20
question was seen: 932 times
last updated: 11 May '18, 02:53
with postgis, you have just to intersect you box with the col way ( example : select * from planet_osm_way where "way" && ST_SetSRID ('BOX3D(-11704037.77103247 4811252.308384717, -11660010.04274018 4855280.036677003)'::box3d, 3857) ; )