I want to draw a map of Australia and represent each city as a dot. Then highlight the cities with a high population (>1M)
library(sp)
library(maps)
data(canada.cities)
head(canada.cities)
I have checked the sp package where this can be done for Canada and some other countries. But Australia details are not there. Is there a special way to get the data for a country we like (name of cities, long, lat, pop)?


world.cities[world.cities$country.etc == "Australia",]andmap.cities(country = "Australia", minpop=1e6)- thelatemailAus_cities= world.cities[world.cities$country.etc == "Australia",]class(Aus_cities)plot(Aus_cities[Aus_cities@data$pop>1000000,],pch=16,col="red",cex=3,add=TRUE)- Jay