Plot Map of the Indian Subcontinent (original) (raw)

The goal of mapindia is to simplify mapping of the Indian subcontinent. It has convenient functions for plotting choropleths, visualizing spatial data, and handling state/district codes.

Note: The 3-digit district codes were merged with the 2-digit state codes to create a 5-digit district code.

Installation

To install mapindia from CRAN:

You can install the development version of mapindia from GitHub with:

# install.packages("pak")
pak::pak("shubhamdutta26/mapindia")

Usage

Example

Plot basic maps of the Indian subcontinent with states and districts:

Visualize zones such as the Central or Eastern Zonal Councils:

central <- plot_india("states", include = .central, exclude = "UK", labels = TRUE) +
  geom_sf(fill= "antiquewhite")

east <- plot_india("states", include = .east, labels = FALSE)

cowplot::plot_grid(central, east, nrow = 1)

Visualize individual states such as the West Bengal or Tamil Nadu:

mh <- plot_india("districts", include = "MH")

tn <- plot_india("state", include = "Tamil Nadu", labels = FALSE)

cowplot::plot_grid(mh, tn, nrow = 1)

Use your data for visualizations as well:

statepop2011 <- plot_india("states", data = statepop, values = "pop_2011") +
  scale_fill_continuous(low = "blue", high = "yellow", guide = "none")

wbpop2011 <- plot_india("districts", data = wb_2011, values = "pop_2011", include = "WB") +
  scale_fill_continuous(low = "green", high = "red", guide = "none")

cowplot::plot_grid(statepop2011, wbpop2011, nrow = 1)