Uneven growth of Bangalore

A lot has been written about how Bangalore has grown unevenly. This is additional proof. Hudson Circle is the traditional center of Bangalore splitting teh City and Cantonment areas. With the magic of R shown below.

 library(ggmap)  
 library(ggplot2)  
 d <- data.frame(lat=c(12.9674),  
         lon=c(77.5878))  
 emory <- get_map("Bangalore,India", zoom=12)  
 p <- ggmap(emory)  
 p <- p + geom_point(data=d, aes(x=lon, y=lat),  
           color="red", size=190, alpha=0.4)  
 p  

Replace < with "<" 
We find how uneven it has grown.
We are crossing Sunkadakatte in the west and have not even close to touching Electronic city and Marathahalli. People in Whitefield and Sarjapura road are really living in another town.

BTW, if you want to do the above highlight of code as shown , in the grey box, use http://formatmysourcecode.blogspot.in/ 


Comments

Popular Posts