plotLayers {foreSIGHT} | R Documentation |
Superimposes climate projection information on to the 2D system performance spaces generated using performanceSpaces
plotLayers(plot = NULL, plotArgs = NULL, climdata = NULL, climArgs = list(), simDirectory = "Simulation1", IOmode="suppress" )
plot |
A, editable plot output from |
plotArgs |
A list controlling how the performance space is visualised with the following components:
|
climdata |
a data frame of the projected climate data |
climArgs |
a list that controls the appearance of the superimposed climate projections with the following components:
|
simDirectory |
A string used to label the output directory. |
IOmode |
A string that specifies the input-output mode for the scenarios = "verbose", "dev" or "suppress". |
climate projection information superimposed on a 2D system performance spaces plot.
See Also: scenarioGenerator
, performanceSpaces
and quickSpace
## Not run: data(tankPlot) data(climdata2030) #loading climate data for 2030 time slice ###Example 1 # Saved from a previous example # tank_simpleScale_plot<-performanceSpaces(data=tank_simple_scenarios, # plotTag = "Heat", # plotArgs=plotArgs, # systemModel = tankWrapper, # systemArgs = systemArgs) #Create plotting arguments plotArgs<-list(title="Scenario neutral space with projections overlaid", ylim=c(0.7,1.3), xlim=c(-2,2), xtitle="Temp_ann_avg_m", ytitle="P_ann_tot_m") climArgs<-list(performancelimits=NULL, label=NULL, slice=2030, colour="black", fill="performance") #Plot performance space with projections overlaid tank_overlay_plot=plotLayers(plot=tank_simpleScale_plot$plotEdit, plotArgs=plotArgs, climdata=climdata, climArgs=climArgs) tank_overlay_plot ## End(Not run)