NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

i wanted to run a osmconvert & filter with the following goal - to get the following tags out of the datas:

addr:street addr:housenumber addr:city

so i decided to do the following command

./osmconvert hamburg-latest.osm.pbf --all-to-nodes -o=hamburgrestaurants_2.o5m
./osmfilter hamburgrestaurants_2.o5m --keep="amenity=restaurant" -o=restaurant_2.o5m
./osmconvert restaurant_2.o5m --csv="@id @lon @lat shop name  addr:street addr:housenumber addr:city website email" --csv-headline -o=restaurant_2.csv

but i failed - there were no streets no housenumbers and cities. Now i decidet to use overpass-API which seems to be less complicated. Can someone advice me here to go the first step.

how to apply the correct adress tags for getting

  • adress like
  • street , housnomber and .... eg. mailadress and website....

update;

what i want to get is this following result:

/tmp$ osmconvert my_gooddata_.o5m --csv="@id @lon @lat shop name addr:street addr:housenumber addr:city website email" --csv-headline | more
@id     @lon    @lat    shop    name    addr:street     addr:housenumber        addr:city       website email
29950894        11.7415509      48.3978074              Parkcafe        Am Wörth        23      Freising        http://www.parkcafe-freising.de
32559987        11.7841034      47.8785126              Waldrestaurant Maxlmühle        Maxlmühle       2       Valley  http://www.maxlmuehle.de/
33047448        11.1863664      47.9072486              Hirschberg-Alm
34034075        11.6704030      48.1169551              Zum Goldenen Stern      Gartenstadtstraße       6       München
34072038        11.6707224      48.1093154              Franziskaner Garten     Friedenspromenade       45      München http://www.franziskanergarten.de/

hmm i guess that i have made something wrong in the applcation of the tags!? What !?

asked 23 Apr '14, 09:00

say_hello_to_the_world's gravatar image

say_hello_to...
19232427
accept rate: 0%

closed 24 Apr '14, 15:20

SimonPoole's gravatar image

SimonPoole ♦
44.7k13326701

2

When you failed did you perhaps not see this answer to your previous question that said "Issue: there's an extra space between "name" and "addr:street" in your osmconvert csv string".

(23 Apr '14, 10:13) SomeoneElse ♦

thx alot - guess that you hit the point - btw. see the update above, i will try out your solution - thx alaot

(23 Apr '14, 21:11) say_hello_to...

The question has been closed for the following reason "Duplicate Question" by SimonPoole 24 Apr '14, 15:20

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×133
×47

question asked: 23 Apr '14, 09:00

question was seen: 1,554 times

last updated: 24 Apr '14, 15:20

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum