...
Creates a list of plot pages arranged in a regular grid using the specified view. Each plot page contains a set of (one or more) subframes, each arranged in a regular grid. The output is suitable for input into the function plot_superpage()
. When a 6th argument is specified it defines the plot area the layout will occupy in the output. It is given as a list of [TOP, BOTTOM, LEFT, RIGHT] where the values are specified in percentages (0-100).
Example:
# create a set of frames using 2x1 layout with the default geo view
page_list = mvl_regular_layout(geoview(), 1, 2, 1, 1, 3)
# create a display window using this set of pages
...