-
-
Save cscheid/8443455 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setwd("~/Downloads") | |
obs <- XML2Obs("out.xml", url.map=TRUE) | |
unique(names(obs)) #you might want to re_name or add_key before collapsing | |
tmp = add_key(obs, parent="url1//osm//way", key.name="way_id") | |
tmp = add_key(tmp, parent="url1//osm//node", key.name="node_id") | |
tmp = add_key(tmp, parent="url1//osm//relation", key.name="relation_id") | |
tables <- collapse(obs) # holy crap this takes a long-ass time | |
write.table(tables$`url1//osm//way//nd`, "ways.csv", sep=",") | |
write.table(tables$`url1//osm//way//tag`, "way_tags.csv", sep=",") | |
write.table(tables$`url1//osm//node`, "nodes.csv", sep=",") | |
# ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment