Plot inputs visualisation
plot_average_distances(distances, ax=None)
Plot the average distances to the node (region com/repr point) for each vre class Args: distances (xr.DataArray): the average distances for each class to the node ax (plt.Axes, optional): the axes to plot on. Defaults to None. Returns: tuple[plt.Figure, plt.Axes]: the figure and axes
Source code in workflow/scripts/plot_inputs_visualisation.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | |
plot_resource_class_bins(resource_classes, regions, technology, ax=None)
Map of VRE grades (by grade/ bin number) for each node Args: resource_classes (gpd.GeoDataFrame): the resource classes regions (gpd.GeoDataFrame): the regions/node regions technology (str): the technology name ax (plt.Axes, optional): the axes to plot on. Defaults to None. Returns: tuple[plt.Figure, plt.Axes]: the figure and axes
Source code in workflow/scripts/plot_inputs_visualisation.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | |
plot_resource_class_cfs(resource_classes, regions, technology, ax=None)
Map of VRE capacity factors for each node and vre grade Args: resource_classes (gpd.GeoDataFrame): the resource classes regions (gpd.GeoDataFrame): the regions/node regions technology (str): the technology name ax (plt.Axes, optional): the axes to plot on. Defaults to None. Returns: tuple[plt.Figure, plt.Axes]: the figure and axes
Source code in workflow/scripts/plot_inputs_visualisation.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |