long-lat wrong for rural and (still) zip
RaSieb opened this issue · 4 comments
Hi RaSieb.
Did you find a solution to this problem? I know it is a while since you posted, but I have the same problem now... I have made an approximate transformation based on the data in the municipality-object which is good enough (except for Bornholm :-)) for plotting approximate town-names e.g., but not good enough for more detailed work, so I would appreciate if you had solved this issue.
approximate_trans.pdf
Hi @hoegsbro , I don't think the issue is fixed. I ended up downloading the data from eurostat:
library(sf)
library(eurostat)
geodata <- get_eurostat_geospatial(output_class = "sf", resolution = "1", nuts_level = 3)
geodataDK <- geodata[geodata$CNTR_CODE=="DK",]
ggplot() + geom_sf(data=geodataDK)
Thanks a lot - I wasn't aware of the eurostat package. But as far as I can see there are no details for the zip-codes in these data, so it is still not possible to overlay the map with zip codes with the full DK-map?