elevate is an R package for generating and visualising building elevations using permutations and charts.
library(devtools)
install_github("lbuk/elevate")
library(elevate)
# Visualise elevations
elevations(nbuildings = 7, min_storey = 3, max_storey = 4, output = 'plot')
# Establish the number of storeys per building
storeys = c(4, 5, 4, 4)
# Visualise potential rooftop extension elevations based on the maximum number of storeys per building
extension_elevations(storeys = storeys, max_permitted_storey = 6, output = 'plot')