Hi, I want to load OSM data into QGIS with the OSMPlugin. It works fine, the only problem is that all the tags are saved in one column. Is there a way to seperate each tag into one column besides the defautl ones (name, place, highway, etc.)? Thanks, Uli asked 01 Nov '12, 09:30 Wasus |
One possible solution is to save the osm file to a shapefile, open it in ArcGIS, and seperate the one column into several columns with the following python field calculator code:
Then expression for city field would be: City = parseAddr('!FieldName!', 'addr:city') For streets field: Street = parseAddr('!FieldName!', 'addr:street') answered 05 Dec '12, 12:55 Wasus |