I am using the example here for discussion:
ggplot map with l
library(rgdal)
library(ggplot2)
library(maptools)
# Data from http://thematicmapping.org/downloads/world_borders.php.
# Direct link: http://thematicmapping.org/downloads/TM_WORLD_BORDERS_SIMPL-0.3.zip
# Unpack and put the files in a dir 'data'
gpclibPermit()
world.map <- readOGR(dsn="data", layer="TM_WORLD_BORDERS_SIMPL-0.3")
world.ggmap <- fortify(world.map, region = "NAME")
n <- length(unique(world.ggmap$id))
df <- data.frame(id = unique(world.ggmap$id),
growth = 4*runif(n),
category = factor(sample(1:5, n, replace=T)))
## noise
df[c(sample(1:100,40)),c("growth", "category")] <- NA
ggplot(df, aes(map_id = id)) +
geom_map(aes(fill = growth, color = category), map =world.ggmap) +
expand_limits(x = world.ggmap$long, y = world.ggmap$lat) +
scale_fill_gradient(low = "red", high = "blue", guide = "colorbar")
Gives the following results:

I would like to map one variable to the left “half” of a country and a different variable to the right “half” of the country. I put “half” in quotes because it’s not clearly defined (or at least I’m not clearly defining it). The answer by Ian Fellows might help (which gives an easy way to get the centroid). I’m hoping for something so that I can do aes(left_half_color = growth, right_half_color = category) in the example. I’m also interested in top half and bottom half if that is different.
If possible, I would also like to map the individual centroids of the halves to something.
This is a solution without
ggplotthat relies on theplotfunction instead. It also requires thergeospackage in addition to the code in the OP:EDIT Now with 10% less visual pain
EDIT 2 Now with centroids for east and west halves
Perhaps someone can come up with a good solution using
ggplot2. However, based on this answer to a question about multiple fill scales for a single graph (“You can’t”), aggplot2solution seems unlikely without faceting (which might be a good approach, as suggested in the comments above).EDIT re: mapping centroids of the halves to something: The centroids for the east (“left”) halves can be obtained by
Those for the west (“right”) halves can be obtained by creating an
rSPDFobject in a similar way:Then information could be plotted on the map according to the centroids of
lSPDForrSPDF: