# # Export of some POIs and roads into CSV files. # setup :CSV do file :restaurants # to add a first line with a data description, just add it here :restaurants << ['longitude', 'latitude', 'name'] end nodes do if amenity == 'restaurant' :restaurants << [lon, lat, name] end end