Source code for gcmprocpy.plot_gen

import numpy as np
import matplotlib.pyplot as plt
from .data_parse import arr_lat_lon,arr_lev_var,arr_lev_lon, arr_lev_lat,arr_lev_time,arr_lat_time, calc_avg_ht, min_max, get_time
from .data_emissions import arr_mkeno53, arr_mkeco215, arr_mkeoh83
import cartopy.crs as ccrs
import cartopy.feature as cfeature
from cartopy.feature.nightshade import Nightshade
from cartopy.util import add_cyclic_point
from datetime import datetime, timezone
import matplotlib.ticker as mticker
from matplotlib import get_backend
import math
import geomag
import ipympl
from cartopy.mpl.ticker import LongitudeFormatter, LatitudeFormatter
import mplcursors

def is_notebook():
    """
    Detects if the code is running inside a Jupyter Notebook.

    Returns:
        bool: True if running in a Jupyter Notebook, False otherwise.
    """
    try:
        shell = get_ipython().__class__.__name__
        if shell == 'ZMQInteractiveShell':
            return True   # Jupyter notebook or qtconsole
        elif shell == 'TerminalInteractiveShell':
            return False  # Terminal running IPython
        else:
            return False  # Other type (?)
    except NameError:
        return False      # Probably standard Python interpreter


def longitude_to_local_time(longitude):
    """
    Convert longitude to local time.

    Args:
        longitude (float): Longitude value.

    Returns:
        float: Local time corresponding to the given longitude.
    """

    local_time = (longitude / 15) % 24
    return local_time

def local_time_to_longitude(local_time):
    """
    Convert local time to longitude.

    Args:
        local_time (float): Local time value.

    Returns:
        float: Longitude corresponding to the given local time.
    """
    if local_time == 'mean':
        longitude = 'mean'
    else:
        #
        # Each hour of local time corresponds to 15 degrees of longitude
        #
        longitude = (local_time * 15) % 360
        #
        # Adjusting the longitude to be between -180 and 180 degrees
        #
        if longitude > 180:
            longitude = longitude - 360

    return longitude

def color_scheme(variable_name):
    """
    Sets color scheme for plots.

    Args:
        variable_name (str): The name of the variable with latitude, longitude, ilev dimensions.

    Returns:
        tuple:
            str: Color scheme of the contour map.
            str: Color scheme of contour lines.
    """

    #
    # Setting type of variable 
    #
    density_type = ['NE', 'DEN', 'O2', 'O1', 'N2', 'NO', 'N4S', 'HE']
    temp_type = ['TN', 'TE', 'TI', 'QJOULE']
    wind_type = ['WN', 'UI_ExB', 'VI_ExB', 'WI_ExB', 'UN', 'VN']
    #
    # Color scheme for density type variables
    #
    if variable_name in density_type:
        cmap_color = 'viridis'
        line_color = 'white'
    #
    # Color scheme for temprature type variables
    #
    elif variable_name in temp_type:
        cmap_color = 'inferno'
        line_color = 'white'
    #
    # Color scheme for wind type variables
    #
    elif variable_name in wind_type:
        cmap_color = 'bwr'
        line_color = 'black'
    #
    # Color scheme for all other types of variables
    #
    else:
        cmap_color = 'viridis'
        line_color = 'white'
    return cmap_color, line_color



[docs] def plt_lat_lon(datasets, variable_name, time= None, mtime=None, level = None, variable_unit = None, center_longitude = 0, contour_intervals = None, contour_value = None,symmetric_interval= False, cmap_color = None, cmap_lim_min = None, cmap_lim_max = None, line_color = 'white', coastlines=False, nightshade=False, gm_equator=False, latitude_minimum = None, latitude_maximum = None, longitude_minimum = None, longitude_maximum = None, clean_plot = False, verbose = False ): """ Generates a Latitude vs Longitude contour plot for a variable. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, and lev/ilev dimensions. time (np.datetime64, optional): The selected time, e.g., '2022-01-01T12:00:00'. mtime (list[int], optional): The selected time as a list, e.g., [1, 12, 0] for 1st day, 12 hours, 0 mins. level (float, optional): The selected lev/ilev value. variable_unit (str, optional): The desired unit of the variable. center_longitude (float, optional): The central longitude for the plot. Defaults to 0. contour_intervals (int, optional): The number of contour intervals. Defaults to 20. Ignored if contour_value is provided. contour_value (int, optional): The value between each contour interval. symmetric_interval (bool, optional): If True, the contour intervals will be symmetric around zero. Defaults to False. cmap_color (str, optional): The color map of the contour. Defaults to 'viridis' for Density, 'inferno' for Temp, 'bwr' for Wind, 'viridis' for undefined. cmap_lim_min (float, optional): Minimum limit for the color map. Defaults to the minimum value of the variable. cmap_lim_max (float, optional): Maximum limit for the color map. Defaults to the maximum value of the variable. line_color (str, optional): The color for all lines in the plot. Defaults to 'white'. coastlines (bool, optional): Shows coastlines on the plot. Defaults to False. nightshade (bool, optional): Shows nightshade on the plot. Defaults to False. gm_equator (bool, optional): Shows geomagnetic equator on the plot. Defaults to False. latitude_minimum (float, optional): Minimum latitude to slice plots. Defaults to -87.5. latitude_maximum (float, optional): Maximum latitude to slice plots. Defaults to 87.5. longitude_minimum (float, optional): Minimum longitude to slice plots. Defaults to -180. longitude_maximum (float, optional): Maximum longitude to slice plots. Defaults to 175. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Contour plot. """ # Printing Execution data if time == None: time = get_time(datasets, mtime) if contour_intervals == None: contour_intervals = 20 if verbose: print("---------------["+variable_name+"]---["+str(time)+"]---["+str(level)+"]---------------") # Generate 2D arrays, extract variable_unit ''' if level != None: try: data, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, filename =lat_lon_lev(datasets, variable_name, time, level, variable_unit) except ValueError: data, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, filename =lat_lon_ilev(datasets, variable_name, time, level, variable_unit) if level != 'mean': avg_ht=calc_avg_ht(datasets, time,level) else: data, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, filename =lat_lon(datasets, variable_name, time) ''' if isinstance(time, str): time = np.datetime64(time, 'ns') if variable_name == 'NO53': variable_values, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, model, filename = arr_mkeno53(datasets, variable_name, time, selected_lev_ilev = level, selected_unit = variable_unit, plot_mode = True) elif variable_name == 'CO215': variable_values, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, model, filename = arr_mkeco215(datasets, variable_name, time, selected_lev_ilev = level, selected_unit = variable_unit, plot_mode = True) elif variable_name == 'OH83': variable_values, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, model, filename = arr_mkeoh83(datasets, variable_name, time, selected_lev_ilev = level, selected_unit = variable_unit, plot_mode = True) else: variable_values, level, unique_lats, unique_lons, variable_unit, variable_long_name, selected_mtime, model, filename =arr_lat_lon(datasets, variable_name, time, selected_lev_ilev = level, selected_unit = variable_unit, plot_mode = True) # WACCM-X uses 0 to 360 longitude range, convert to -180 to 180 unique_lons = np.where(unique_lons > 180, unique_lons - 360, unique_lons) sorted_indices = np.argsort(unique_lons) unique_lons = unique_lons[sorted_indices] variable_values = variable_values[:, sorted_indices] # Adjust cyclic point handling for central_longitude=180 variable_values, unique_lons = add_cyclic_point(variable_values, coord=unique_lons, axis=1) if level != 'mean' and level != None: avg_ht=calc_avg_ht(datasets, time,level) if latitude_minimum == None: latitude_minimum = np.nanmin(unique_lats) if latitude_maximum == None: latitude_maximum = np.nanmax(unique_lats) if longitude_minimum == None: longitude_minimum = -180 if longitude_maximum == None: longitude_maximum = 180 min_val, max_val = min_max(variable_values) selected_day=selected_mtime[0] selected_hour=selected_mtime[1] selected_min=selected_mtime[2] selected_sec=selected_mtime[3] if cmap_lim_min == None: cmap_lim_min = min_val else: min_val = cmap_lim_min if cmap_lim_max == None: cmap_lim_max = max_val else: max_val = cmap_lim_max if cmap_color == None: cmap_color, line_color = color_scheme(variable_name) # Extract values, latitudes, and longitudes from the array if contour_value is not None: contour_levels = np.arange(min_val, max_val + contour_value, contour_value) interval_value = contour_value elif symmetric_interval == False: contour_levels = np.linspace(min_val, max_val, contour_intervals) interval_value = (max_val - min_val) / (contour_intervals - 1) elif symmetric_interval == True: range_half = math.ceil(max(abs(min_val), abs(max_val))/10)*10 interval_value = range_half / (contour_intervals // 2) # Divide by 2 to get intervals for one side positive_levels = np.arange(interval_value, range_half + interval_value, interval_value) negative_levels = -np.flip(positive_levels) # Generate negative levels symmetrically contour_levels = np.concatenate((negative_levels, [0], positive_levels)) # Generate contour plot interval_value = contour_value if contour_value else (max_val - min_val) / (contour_intervals - 1) # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) subtitle_ht= 100 ax = plt.axes(projection=ccrs.PlateCarree(central_longitude=center_longitude)) # Check if add_coastlines parameter is True if coastlines: ax.add_feature(cfeature.COASTLINE, edgecolor=line_color, linewidth=1.5) if nightshade: ax.add_feature(Nightshade(datetime.fromtimestamp(time.astype('O')/1e9, tz=timezone.utc), alpha=0.4)) if gm_equator: gm = geomag.geomag.GeoMag() geomagnetic_lats = [] for lon in unique_lons: geo_coord = gm.GeoMag(0, lon) geomagnetic_lats.append(geo_coord.dec) ax.plot(unique_lons, geomagnetic_lats, color=line_color, linestyle='--', transform=ccrs.Geodetic(), label='Geomagnetic Equator') contour_filled = plt.contourf(unique_lons, unique_lats, variable_values, cmap=cmap_color, levels=contour_levels, vmin=cmap_lim_min, vmax=cmap_lim_max) contour_lines = plt.contour(unique_lons, unique_lats, variable_values, colors=line_color, linewidths=0.5, levels=contour_levels) plt.clabel(contour_lines, inline=True, fontsize=8, colors=line_color) cbar = plt.colorbar(contour_filled, label=variable_name + " [" + variable_unit + "]",fraction=0.046, pad=0.04, shrink=0.65) cbar.set_label(variable_name + " [" + variable_unit + "]", size=14, labelpad=15) cbar.ax.tick_params(labelsize=9) plt.xlabel('Longitude (Deg)', fontsize=14) #ax.set_xticks(np.arange(-180, 181, 30), crs=ccrs.PlateCarree()) plt.xticks([-180,-150,-120,-90,-60,-30,0,30,60,90,120,150,180],fontsize=9) ax.xaxis.set_major_formatter(LongitudeFormatter()) plt.xticks(fontsize=9) plt.ylabel('Latitude (Deg)', fontsize=14) ax.set_yticks(np.arange(-90, 91, 30), crs=ccrs.PlateCarree()) ax.yaxis.set_major_formatter(LatitudeFormatter()) plt.yticks(fontsize=9) plt.xlim(longitude_minimum,longitude_maximum) plt.ylim(latitude_minimum,latitude_maximum) plt.tight_layout() if clean_plot == False: # Add plot title plt.title(variable_long_name + ' ' + variable_name + ' (' + variable_unit + ') ' + '\n\n', fontsize=18) # Add plot subtitle if level == 'mean': plt.text(0, subtitle_ht, 'ZP=' + str(level), ha='center', va='center', fontsize=14) elif level != None: plt.text(0, subtitle_ht, 'ZP=' + str(level)+' AVG HT=' + str(avg_ht) + 'KM', ha='center', va='center', fontsize=14) else: plt.text(0, subtitle_ht, '', ha='center', va='center', fontsize=14) # Add subtext to the plot plt.text(-90, -115, "Min, Max = "+str("{:.2e}".format(min_val))+", "+str("{:.2e}".format(max_val)), ha='center', va='center',fontsize=14) plt.text(90, -115, "Contour Interval = "+str("{:.2e}".format(interval_value)), ha='center', va='center',fontsize=14) plt.text(-90, -125, "Time = "+str(time.astype('M8[s]').astype(datetime)), ha='center', va='center',fontsize=14) plt.text(90, -125, "Day, Hour, Min, Sec = "+str(selected_day)+","+str(selected_hour)+","+str(selected_min)+","+str(selected_sec), ha='center', va='center',fontsize=14) plt.text(0, -135, str(filename), ha='center', va='center',fontsize=14) if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: # Integrate mplcursors by attaching to each PolyCollection cursor = mplcursors.cursor(contour_filled.collections, hover=True) @cursor.connect("add") def on_add(sel): # sel.target gives the coordinates where the cursor is x, y = sel.target # Find the nearest longitude index if (x + center_longitude) > 180: adjusted_lon = - (360 -x -center_longitude) elif (x + center_longitude) < -180: adjusted_lon = x + 360 + center_longitude #180 + (x + center_longitude) else: adjusted_lon = x + center_longitude lon_idx = (np.abs(unique_lons - adjusted_lon)).argmin() # Find the nearest latitude index lat_idx = (np.abs(unique_lats - y)).argmin() # Retrieve the corresponding value value = variable_values[lat_idx, lon_idx] # Set annotation text sel.annotation.set( text=f"Lon: {unique_lons[lon_idx]:.2f}°\nLat: {unique_lats[lat_idx]:.2f}°\n{variable_name}: {value:.2e} {variable_unit}" ) # Customize annotation appearance sel.annotation.get_bbox_patch().set(alpha=0.9) plt.show(block=False) else: backend = get_backend() if "Qt5Agg" in backend: return plot, variable_unit, center_longitude, contour_intervals, contour_value, symmetric_interval, cmap_color, cmap_lim_min, cmap_lim_max, line_color, latitude_minimum, latitude_maximum, longitude_minimum, longitude_maximum, contour_filled, unique_lons, unique_lats, variable_values elif plot is not None: plt.close(plot) return plot
[docs] def plt_lev_var(datasets, variable_name, latitude, time= None, mtime=None, longitude = None, log_level=True, variable_unit = None, level_minimum = None, level_maximum = None, clean_plot = False, verbose = False): """ Generates a Level vs Variable line plot for a given latitude. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, and lev/ilev dimensions. latitude (float): The specific latitude value for the plot. time (np.datetime64, optional): The selected time, e.g., '2022-01-01T12:00:00'. mtime (list[int], optional): The selected time as a list, e.g., [1, 12, 0] for 1st day, 12 hours, 0 mins. longitude (float, optional): The specific longitude value for the plot. log_level (bool): A flag indicating whether to display level in log values. Default is True. variable_unit (str, optional): The desired unit of the variable. level_minimum (float, optional): Minimum level value for the plot. Defaults to None. level_maximum (float, optional): Maximum level value for the plot. Defaults to None. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Line plot. """ # Printing Execution data if time == None: time = get_time(datasets, mtime) if verbose: print("---------------["+variable_name+"]---["+str(time)+"]---["+str(latitude)+"]---["+str(longitude)+"]---------------") if isinstance(time, str): time = np.datetime64(time, 'ns') variable_values , levs_ilevs, variable_unit, variable_long_name, selected_mtime, model, filename = arr_lev_var(datasets, variable_name, time, latitude, longitude, variable_unit, plot_mode = True) if level_minimum == None: level_minimum = np.nanmin(levs_ilevs) if level_maximum == None: level_maximum = np.nanmax(levs_ilevs) min_val, max_val = min_max(variable_values) selected_day=selected_mtime[0] selected_hour=selected_mtime[1] selected_min=selected_mtime[2] selected_sec=selected_mtime[3] # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) plt.plot(variable_values, levs_ilevs) plt.xlabel(variable_long_name, fontsize=14, labelpad=15) plt.ylabel('LN(P0/P) (INTERFACES)', fontsize=14) plt.xticks(fontsize=9) plt.yticks(fontsize=9) plt.ylim(level_minimum, level_maximum) if model == 'WACCM-X': plt.gca().invert_yaxis() if clean_plot == False: plt.title(variable_long_name+' '+variable_name+' ('+variable_unit+') '+'\n\n',fontsize=18 ) if longitude == 'mean' and latitude == 'mean': plt.text(0.5, 1.08,"LAT= Mean LON= Mean", ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) elif longitude == 'mean': plt.text(0.5, 1.08,'LAT='+str(latitude)+" LON= Mean", ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) elif latitude == 'mean': plt.text(0.5, 1.08,'LAT= Mean'+" LON="+str(longitude), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) else: plt.text(0.5, 1.08,'LAT='+str(latitude)+" LON="+str(longitude), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.2, "Min, Max = "+str("{:.2e}".format(min_val))+", "+str("{:.2e}".format(max_val)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.25, "Time = "+str(time.astype('M8[s]').astype(datetime)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.3, "Day, Hour, Min, Sec = "+str(selected_day)+","+str(selected_hour)+","+str(selected_min)+","+str(selected_sec), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.35, str(filename), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: # Integrate mplcursors by attaching to each PolyCollection cursor = mplcursors.cursor(plot, hover=True) @cursor.connect("add") def on_add(sel): # Get the x (variable value) and y (level) from the cursor's target x, y = sel.target # Set annotation text to show level and variable value sel.annotation.set( text=f"Level: {y:.2f} ln(P0/P)\n{variable_name}: {x:.2e} {variable_unit}") # Customize the appearance of the annotation box sel.annotation.get_bbox_patch().set(alpha=0.9) plt.show(block=False) else: backend = get_backend() if "Qt5Agg" in backend: return plot, variable_unit, level_minimum, level_maximum elif plot is not None: plt.close(plot) return plot
[docs] def plt_lev_lon(datasets, variable_name, latitude, time= None, mtime=None, log_level=True, variable_unit = None, contour_intervals = 20, contour_value = None,symmetric_interval= False, cmap_color = None, cmap_lim_min = None, cmap_lim_max = None, line_color = 'white', level_minimum = None, level_maximum = None, longitude_minimum = None, longitude_maximum = None, clean_plot = False, verbose = False): """ Generates a Level vs Longitude contour plot for a given latitude. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, and lev/ilev dimensions. latitude (float): The specific latitude value for the plot. time (np.datetime64, optional): The selected time, e.g., '2022-01-01T12:00:00'. mtime (list[int], optional): The selected time as a list, e.g., [1, 12, 0] for 1st day, 12 hours, 0 mins. log_level (bool): A flag indicating whether to display level in log values. Default is True. variable_unit (str, optional): The desired unit of the variable. contour_intervals (int, optional): The number of contour intervals. Defaults to 20. Ignored if contour_value is provided. contour_value (int, optional): The value between each contour interval. symmetric_interval (bool, optional): If True, the contour intervals will be symmetric around zero. Defaults to False. cmap_color (str, optional): The color map of the contour. Defaults to 'viridis' for Density, 'inferno' for Temp, 'bwr' for Wind, 'viridis' for undefined. cmap_lim_min (float, optional): Minimum limit for the color map. Defaults to the minimum value of the variable. cmap_lim_max (float, optional): Maximum limit for the color map. Defaults to the maximum value of the variable. line_color (str, optional): The color for all lines in the plot. Defaults to 'white'. level_minimum (float, optional): Minimum level value for the plot. Defaults to None. level_maximum (float, optional): Maximum level value for the plot. Defaults to None. longitude_minimum (float, optional): Minimum longitude value for the plot. Defaults to -180. longitude_maximum (float, optional): Maximum longitude value for the plot. Defaults to 175. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Contour plot. """ # Printing Execution data if time == None: time = get_time(datasets, mtime) if contour_intervals == None: contour_intervals = 20 if verbose: print("---------------["+variable_name+"]---["+str(time)+"]---["+str(latitude)+"]---------------") if isinstance(time, str): time = np.datetime64(time, 'ns') # Generate 2D arrays, extract variable_unit variable_values, unique_lons, unique_levs,latitude, variable_unit, variable_long_name, selected_mtime, model, filename = arr_lev_lon(datasets, variable_name, time, latitude, variable_unit, log_level, plot_mode = True) if level_minimum == None: level_minimum = np.nanmin(unique_levs) if level_maximum == None: level_maximum = np.nanmax(unique_levs) if longitude_minimum == None: longitude_minimum = np.nanmin(unique_lons) if longitude_maximum == None: longitude_maximum = np.nanmax(unique_lons) min_val, max_val = min_max(variable_values) selected_day=selected_mtime[0] selected_hour=selected_mtime[1] selected_min=selected_mtime[2] selected_sec=selected_mtime[3] if cmap_lim_min == None: cmap_lim_min = min_val else: min_val = cmap_lim_min if cmap_lim_max == None: cmap_lim_max = max_val else: max_val = cmap_lim_max if cmap_color == None: cmap_color, line_color = color_scheme(variable_name) if contour_value is not None: contour_levels = np.arange(min_val, max_val + contour_value, contour_value) interval_value = contour_value elif symmetric_interval == False: contour_levels = np.linspace(min_val, max_val, contour_intervals) interval_value = (max_val - min_val) / (contour_intervals - 1) elif symmetric_interval == True: range_half = math.ceil(max(abs(min_val), abs(max_val))/10)*10 interval_value = range_half / (contour_intervals // 2) # Divide by 2 to get intervals for one side positive_levels = np.arange(interval_value, range_half + interval_value, interval_value) negative_levels = -np.flip(positive_levels) # Generate negative levels symmetrically contour_levels = np.concatenate((negative_levels, [0], positive_levels)) if -180 in unique_lons: lon_idx = np.where(unique_lons == -180)[0][-1] # Get the index of the last occurrence of -180 unique_lons = np.append(unique_lons, 180) variable_values = np.insert(variable_values, -1, variable_values[:, lon_idx], axis=1) # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) contour_filled = plt.contourf(unique_lons, unique_levs, variable_values, cmap= cmap_color, levels=contour_levels,vmin=cmap_lim_min, vmax=cmap_lim_max) contour_lines = plt.contour(unique_lons, unique_levs, variable_values, colors=line_color, linewidths=0.5, levels=contour_levels) plt.clabel(contour_lines, inline=True, fontsize=8, colors=line_color) cbar = plt.colorbar(contour_filled, label=variable_name+" ["+variable_unit+"]") cbar.set_label(variable_name+" ["+variable_unit+"]", size=14, labelpad=15) cbar.ax.tick_params(labelsize=9) if clean_plot == False: plt.title(variable_long_name+' '+variable_name+' ('+variable_unit+') '+'\n\n',fontsize=18 ) if latitude == 'mean': plt.text(0.5, 1.10,'ZONAL MEANS', ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) else: plt.text(0.5, 1.10,'LAT='+str(latitude), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) if log_level == True: plt.ylabel('LN(P0/P) (INTERFACES)',fontsize=14) else: plt.ylabel('PRESSURE (HPA)',fontsize=14) plt.xlabel('Longitude (Deg)',fontsize=14) plt.xticks([value for value in unique_lons if value % 30 == 0],fontsize=9) plt.yticks(fontsize=9) plt.xlim(longitude_minimum,longitude_maximum) plt.ylim(level_minimum, level_maximum) if model == 'WACCM-X': plt.gca().invert_yaxis() if clean_plot == False: # Add subtext to the plot plt.text(0.25, -0.2, "Min, Max = "+str("{:.2e}".format(min_val))+", "+str("{:.2e}".format(max_val)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.75, -0.2, "Contour Interval = "+str("{:.2e}".format(interval_value)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.25, -0.25, "Time = "+str(time.astype('M8[s]').astype(datetime)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.75, -0.25, "Day, Hour, Min, Sec = "+str(selected_day)+","+str(selected_hour)+","+str(selected_min)+","+str(selected_sec), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.3, str(filename), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) center_longitude = 0 if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: # Integrate mplcursors by attaching to each PolyCollection cursor = mplcursors.cursor(contour_filled.collections, hover=True) @cursor.connect("add") def on_add(sel): # sel.target gives the coordinates where the cursor is x, y = sel.target # Find the nearest longitude index if (x + center_longitude) > 180: adjusted_lon = - (360 -x -center_longitude) elif (x + center_longitude) < -180: adjusted_lon = x + 360 + center_longitude #180 + (x + center_longitude) else: adjusted_lon = x + center_longitude lon_idx = (np.abs(unique_lons - adjusted_lon)).argmin() # Find the nearest latitude index level_idx = (np.abs(unique_levs - y)).argmin() # Retrieve the corresponding value value = variable_values[level_idx, lon_idx] # Set annotation text sel.annotation.set( text=f"Lon: {unique_lons[lon_idx]:.2f}°\nLev: {unique_levs[level_idx]:.2f}°\n{variable_name}: {value:.2e} {variable_unit}" ) # Customize annotation appearance sel.annotation.get_bbox_patch().set(alpha=0.9) plt.show(block=False) else: backend = get_backend() if "Qt5Agg" in backend: return plot, variable_unit, latitude, time, contour_intervals, contour_value, symmetric_interval, cmap_color, cmap_lim_min, cmap_lim_max, line_color, level_minimum, level_maximum, longitude_minimum, longitude_maximum, contour_filled, unique_lons, unique_levs, variable_values elif plot is not None: plt.close(plot) return plot
[docs] def plt_lev_lat(datasets, variable_name, time= None, mtime=None, longitude = None, log_level = True, variable_unit = None, contour_intervals = 20, contour_value = None,symmetric_interval= False, cmap_color = None, cmap_lim_min = None, cmap_lim_max = None, line_color = 'white', level_minimum = None, level_maximum = None, latitude_minimum = None,latitude_maximum = None, clean_plot = False, verbose = False): """ Generates a Level vs Latitude contour plot for a specified time and/or longitude. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, and lev/ilev dimensions. time (np.datetime64, optional): The selected time, e.g., '2022-01-01T12:00:00'. mtime (list[int], optional): The selected time as a list, e.g., [1, 12, 0] for 1st day, 12 hours, 0 mins. longitude (float, optional): The specific longitude value for the plot. log_level (bool): A flag indicating whether to display level in log values. Default is True. variable_unit (str, optional): The desired unit of the variable. contour_intervals (int, optional): The number of contour intervals. Defaults to 20. Ignored if contour_value is provided. contour_value (int, optional): The value between each contour interval. symmetric_interval (bool, optional): If True, the contour intervals will be symmetric around zero. Defaults to False. cmap_color (str, optional): The color map of the contour. Defaults to 'viridis' for Density, 'inferno' for Temp, 'bwr' for Wind, 'viridis' for undefined. cmap_lim_min (float, optional): Minimum limit for the color map. Defaults to the minimum value of the variable. cmap_lim_max (float, optional): Maximum limit for the color map. Defaults to the maximum value of the variable. line_color (str, optional): The color for all lines in the plot. Defaults to 'white'. level_minimum (float, optional): Minimum level value for the plot. Defaults to None. level_maximum (float, optional): Maximum level value for the plot. Defaults to None. latitude_minimum (float, optional): Minimum latitude value for the plot. Defaults to -87.5. latitude_maximum (float, optional): Maximum latitude value for the plot. Defaults to 87.5. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Contour plot. """ # Printing Execution data if time == None: time = get_time(datasets, mtime) if contour_intervals == None: contour_intervals = 20 if verbose: print("---------------["+variable_name+"]---["+str(time)+"]---["+str(longitude)+"]---------------") # Generate 2D arrays, extract variable_unit if isinstance(time, str): time = np.datetime64(time, 'ns') variable_values, unique_lats, unique_levs,longitude, variable_unit, variable_long_name, selected_mtime, model, filename = arr_lev_lat(datasets, variable_name, time, longitude, variable_unit, plot_mode = True) if level_minimum == None: level_minimum = np.nanmin(unique_levs) if level_maximum == None: level_maximum = np.nanmax(unique_levs) if latitude_minimum == None: latitude_minimum = np.nanmin(unique_lats) if latitude_maximum == None: latitude_maximum = np.nanmax(unique_lats) min_val, max_val = min_max(variable_values) selected_day=selected_mtime[0] selected_hour=selected_mtime[1] selected_min=selected_mtime[2] selected_sec=selected_mtime[3] if cmap_lim_min == None: cmap_lim_min = min_val else: min_val = cmap_lim_min if cmap_lim_max == None: cmap_lim_max = max_val else: max_val = cmap_lim_max if cmap_color == None: cmap_color, line_color = color_scheme(variable_name) if contour_value is not None: contour_levels = np.arange(min_val, max_val + contour_value, contour_value) interval_value = contour_value elif symmetric_interval == False: contour_levels = np.linspace(min_val, max_val, contour_intervals) interval_value = (max_val - min_val) / (contour_intervals - 1) elif symmetric_interval == True: range_half = math.ceil(max(abs(min_val), abs(max_val))/10)*10 interval_value = range_half / (contour_intervals // 2) # Divide by 2 to get intervals for one side positive_levels = np.arange(interval_value, range_half + interval_value, interval_value) negative_levels = -np.flip(positive_levels) # Generate negative levels symmetrically contour_levels = np.concatenate((negative_levels, [0], positive_levels)) interval_value = contour_value if contour_value else (max_val - min_val) / (contour_intervals - 1) # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) contour_filled = plt.contourf(unique_lats, unique_levs, variable_values, cmap= cmap_color, levels=contour_levels, vmin=cmap_lim_min, vmax=cmap_lim_max) contour_lines = plt.contour(unique_lats, unique_levs, variable_values, colors=line_color, linewidths=0.5, levels=contour_levels) plt.clabel(contour_lines, inline=True, fontsize=8, colors=line_color) cbar = plt.colorbar(contour_filled, label=variable_name+" ["+variable_unit+"]") cbar.set_label(variable_name+" ["+variable_unit+"]", size=14, labelpad=15) cbar.ax.tick_params(labelsize=9) if clean_plot == False: plt.title(variable_long_name+' '+variable_name+' ('+variable_unit+') '+'\n\n',fontsize=18 ) if longitude == 'mean': plt.text(0.5, 1.08,'ZONAL MEANS', ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) else: plt.text(0.5, 1.08,'LON='+str(longitude)+" SLT="+str(longitude_to_local_time(longitude))+"Hrs", ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) if log_level == True: plt.ylabel('LN(P0/P) (INTERFACES)',fontsize=14) else: plt.ylabel('PRESSURE (HPA)',fontsize=14) plt.xlabel('Latitude (Deg)',fontsize=14) plt.xticks(fontsize=9) plt.yticks(fontsize=9) plt.xlim(latitude_minimum,latitude_maximum) plt.ylim(level_minimum,level_maximum) if model == 'WACCM-X': plt.gca().invert_yaxis() if clean_plot == False: # Add subtext to the plot plt.text(0.25, -0.2, "Min, Max = "+str("{:.2e}".format(min_val))+", "+str("{:.2e}".format(max_val)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.75, -0.2, "Contour Interval = "+str("{:.2e}".format(interval_value)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.25, -0.25, "Time = "+str(time.astype('M8[s]').astype(datetime)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.75, -0.25, "Day, Hour, Min, Sec = "+str(selected_day)+","+str(selected_hour)+","+str(selected_min)+","+str(selected_sec), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.50, -0.3, str(filename), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: # Integrate mplcursors by attaching to each PolyCollection cursor = mplcursors.cursor(contour_filled.collections, hover=True) @cursor.connect("add") def on_add(sel): # sel.target gives the coordinates where the cursor is x, y = sel.target lat_idx = (np.abs(unique_lats - x)).argmin() # Find the nearest latitude index level_idx = (np.abs(unique_levs - y)).argmin() # Retrieve the corresponding value value = variable_values[level_idx, lat_idx] # Set annotation text sel.annotation.set( text=f"Lat: {unique_lats[lat_idx]:.2f}°\nLev: {unique_levs[level_idx]:.2f}°\n{variable_name}: {value:.2e} {variable_unit}" ) # Customize annotation appearance sel.annotation.get_bbox_patch().set(alpha=0.9) plt.show(block=False) else: backend = get_backend() if "Qt5Agg" in backend: return plot, variable_unit, time, contour_intervals, contour_value, symmetric_interval, cmap_color, cmap_lim_min, cmap_lim_max, line_color, level_minimum, level_maximum, latitude_minimum, latitude_maximum, contour_filled, unique_lats, unique_levs, variable_values elif plot is not None: plt.close(plot) return plot
[docs] def plt_lev_time(datasets, variable_name, latitude, longitude = None, log_level = True, variable_unit = None, contour_intervals = 10, contour_value = None,symmetric_interval= False, cmap_color = None, cmap_lim_min = None, cmap_lim_max = None, line_color = 'white', level_minimum = None, level_maximum = None, mtime_minimum=None, mtime_maximum=None, clean_plot = False, verbose = False): """ Generates a Level vs Time contour plot for a specified latitude and/or longitude. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, time, and ilev dimensions. latitude (float): The specific latitude value for the plot. longitude (float, optional): The specific longitude value for the plot. log_level (bool): A flag indicating whether to display level in log values. Default is True. variable_unit (str, optional): The desired unit of the variable. contour_intervals (int, optional): The number of contour intervals. Defaults to 10. Ignored if contour_value is provided. contour_value (int, optional): The value between each contour interval. symmetric_interval (bool, optional): If True, the contour intervals will be symmetric around zero. Defaults to False. cmap_color (str, optional): The color map of the contour. Defaults to 'viridis' for Density, 'inferno' for Temp, 'bwr' for Wind, 'viridis' for undefined. cmap_lim_min (float, optional): Minimum limit for the color map. Defaults to the minimum value of the variable. cmap_lim_max (float, optional): Maximum limit for the color map. Defaults to the maximum value of the variable. line_color (str, optional): The color for all lines in the plot. Defaults to 'white'. level_minimum (float, optional): Minimum level value for the plot. Defaults to None. level_maximum (float, optional): Maximum level value for the plot. Defaults to None. mtime_minimum (float, optional): Minimum time value for the plot. Defaults to None. mtime_maximum (float, optional): Maximum time value for the plot. Defaults to None. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Contour plot. """ if contour_intervals == None: contour_intervals = 20 #print(datasets) variable_values_all, levs_ilevs, mtime_values, longitude, variable_unit, variable_long_name, model = arr_lev_time(datasets, variable_name, latitude, longitude, variable_unit, plot_mode = True) if level_minimum == None: level_minimum = np.nanmin(levs_ilevs) if level_maximum == None: level_maximum = np.nanmax(levs_ilevs) if verbose: print("---------------["+variable_name+"]---["+str(latitude)+"]---["+str(longitude)+"]---------------") num_deleted_before = 0 num_deleted_after = 0 if mtime_minimum is not None and mtime_maximum is not None: new_mtime_values = [] for t_mtime in mtime_values: mtime_total_minutes = t_mtime[0] * 24 * 60 *60 + t_mtime[1] * 60 *60+ t_mtime[2] *60+ t_mtime[3] mtime_min_total = mtime_minimum[0] * 24 * 60*60 + mtime_minimum[1] * 60 *60+ mtime_minimum[2]*60 + mtime_minimum[3] mtime_max_total = mtime_maximum[0] * 24 * 60*60 + mtime_maximum[1] * 60 *60+ mtime_maximum[2]*60 + mtime_minimum[3] if mtime_total_minutes >= mtime_min_total and mtime_total_minutes <= mtime_max_total: new_mtime_values.append(t_mtime) else: if mtime_total_minutes < mtime_min_total: num_deleted_before += 1 elif mtime_total_minutes > mtime_max_total: num_deleted_after += 1 mtime_values = new_mtime_values mtime_values_sorted = sorted(mtime_values, key=lambda x: (x[0], x[1], x[2], x[3])) variable_values_all = variable_values_all[:, num_deleted_before:-num_deleted_after] min_val, max_val = np.nanmin(variable_values_all), np.nanmax(variable_values_all) if cmap_lim_min == None: cmap_lim_min = min_val else: min_val = cmap_lim_min if cmap_lim_max == None: cmap_lim_max = max_val else: max_val = cmap_lim_max if cmap_color == None: cmap_color, line_color = color_scheme(variable_name) if contour_value is not None: contour_levels = np.arange(min_val, max_val + contour_value, contour_value) interval_value = contour_value elif symmetric_interval == False: contour_levels = np.linspace(min_val, max_val, contour_intervals) interval_value = (max_val - min_val) / (contour_intervals - 1) elif symmetric_interval == True: range_half = math.ceil(max(abs(min_val), abs(max_val))/10)*10 interval_value = range_half / (contour_intervals // 2) # Divide by 2 to get intervals for one side positive_levels = np.arange(interval_value, range_half + interval_value, interval_value) negative_levels = -np.flip(positive_levels) # Generate negative levels symmetrically contour_levels = np.concatenate((negative_levels, [0], positive_levels)) interval_value = contour_value if contour_value else (max_val - min_val) / (contour_intervals - 1) mtime_tuples = [tuple(entry) for entry in mtime_values] try: # Modify this part to show both day and hour unique_times = sorted(list(set([(day, hour) for day, hour, _, _ in mtime_values]))) time_indices = [i for i, (day, hour, _, _) in enumerate(mtime_tuples) if i == 0 or mtime_tuples[i-1][:2] != (day, hour)] if len(time_indices) >24: unique_times = sorted(list(set([day for day, _, _, _ in mtime_values]))) time_indices = [i for i, (day, _, _, _) in enumerate(mtime_values) if i == 0 or mtime_values[i-1][0] != day] except: unique_times = sorted(list(set([day for day, _, _ in mtime_values]))) time_indices = [i for i, (day, _, _) in enumerate(mtime_values) if i == 0 or mtime_values[i-1][0] != day] # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) X, Y = np.meshgrid(range(len(mtime_values)), levs_ilevs) contour_filled = plt.contourf(X, Y, variable_values_all, cmap=cmap_color, levels=contour_levels, vmin=cmap_lim_min, vmax=cmap_lim_max) contour_lines = plt.contour(X, Y, variable_values_all, colors=line_color, linewidths=0.5, levels=contour_levels) plt.clabel(contour_lines, inline=True, fontsize=8, colors=line_color) cbar = plt.colorbar(contour_filled, label=variable_name+" ["+variable_unit+"]") cbar.set_label(variable_name+" ["+variable_unit+"]", size=14, labelpad=15) cbar.ax.tick_params(labelsize=9) try: plt.xticks(time_indices, ["{}-{:02d}h".format(day, hour) for day, hour in unique_times], rotation=45) plt.xlabel("Model Time (Day,Hour) from "+str(unique_times[0])+" to "+str(unique_times[-1]), fontsize=14) except: plt.xticks(time_indices, unique_times, rotation=45) plt.xlabel("Model Time (Day) from "+str(np.nanmin(unique_times))+" to "+str(np.nanmax(unique_times)) ,fontsize=14) plt.ylabel('LN(P0/P) (INTERFACES)',fontsize=14) plt.tight_layout() plt.xticks(fontsize=9) plt.yticks(fontsize=9) plt.ylim(level_minimum,level_maximum) if clean_plot == False: plt.title(variable_long_name+' '+variable_name+' ('+variable_unit+') '+'\n\n',fontsize=18 ) # Add subtext to the plot if longitude == 'mean' and latitude == 'mean': plt.text(0.5, 1.08,' LAT= Mean LON= Mean', ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) elif longitude == 'mean': plt.text(0.5, 1.08,' LAT='+str(latitude)+" LON= Mean", ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) elif latitude == 'mean': plt.text(0.5, 1.08,' LAT= Mean'+" LON="+str(longitude), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) else: plt.text(0.5, 1.08,' LAT='+str(latitude)+" LON="+str(longitude), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.2, "Min, Max = "+str("{:.2e}".format(min_val))+", "+str("{:.2e}".format(max_val)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.25, "Contour Interval = "+str("{:.2e}".format(interval_value)), ha='center', va='center',fontsize=14, transform=plt.gca().transAxes) if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: plt.show(block=False) else: if plot is not None: plt.close(plot) return plot
[docs] def plt_lat_time(datasets, variable_name, level = None, longitude = None, variable_unit = None, contour_intervals = 10, contour_value = None, symmetric_interval= False, cmap_color = None, cmap_lim_min = None, cmap_lim_max = None, line_color = 'white', latitude_minimum = None,latitude_maximum = None, mtime_minimum=None, mtime_maximum=None, clean_plot = False, verbose = False): """ Generates a Latitude vs Time contour plot for a specified level and/or longitude. Args: datasets (xarray.Dataset): The loaded dataset/s using xarray. variable_name (str): The name of the variable with latitude, longitude, time, and ilev dimensions. level (float): The specific level value for the plot. longitude (float, optional): The specific longitude value for the plot. variable_unit (str, optional): The desired unit of the variable. contour_intervals (int, optional): The number of contour intervals. Defaults to 10. Ignored if contour_value is provided. contour_value (int, optional): The value between each contour interval. symmetric_interval (bool, optional): If True, the contour intervals will be symmetric around zero. Defaults to False. cmap_color (str, optional): The color map of the contour. Defaults to 'viridis' for Density, 'inferno' for Temp, 'bwr' for Wind, 'viridis' for undefined. cmap_lim_min (float, optional): Minimum limit for the color map. Defaults to the minimum value of the variable. cmap_lim_max (float, optional): Maximum limit for the color map. Defaults to the maximum value of the variable. line_color (str, optional): The color for all lines in the plot. Defaults to 'white'. latitude_minimum (float, optional): Minimum latitude value for the plot. Defaults to -87.5. latitude_maximum (float, optional): Maximum latitude value for the plot. Defaults to 87.5. mtime_minimum (float, optional): Minimum time value for the plot. Defaults to None. mtime_maximum (float, optional): Maximum time value for the plot. Defaults to None. clean_plot (bool, optional): A flag indicating whether to display the subtext. Defaults to False. verbose (bool, optional): A flag indicating whether to print execution data. Defaults to False. Returns: matplotlib.figure.Figure: Contour plot. """ if contour_intervals == None: contour_intervals = 20 if verbose: print("---------------["+variable_name+"]---["+str(level)+"]---["+str(longitude)+"]---------------") ''' if level != None: try: variable_values_all, unique_lats, mtime_values, longitude, variable_unit, variable_long_name, filename = lat_time_lev(datasets, variable_name, level, longitude, variable_unit) except: variable_values_all, unique_lats, mtime_values, longitude, variable_unit, variable_long_name, filename = lat_time_ilev(datasets, variable_name, level, longitude, variable_unit) else: variable_values_all, unique_lats, mtime_values, longitude, variable_unit, variable_long_name, filename = lat_time(datasets, variable_name, longitude, variable_unit) ''' variable_values_all, unique_lats, mtime_values, longitude, variable_unit, variable_long_name, model, filename = arr_lat_time(datasets, variable_name, longitude, level, variable_unit, plot_mode = True) # Assuming the levels are consistent across datasets, but using the minimum size for safety if latitude_minimum == None: latitude_minimum = np.nanmin(unique_lats) if latitude_maximum == None: latitude_maximum = np.nanmax(unique_lats) num_deleted_before = 0 num_deleted_after = 0 if mtime_minimum is not None and mtime_maximum is not None: new_mtime_values = [] for t_mtime in mtime_values: mtime_total_minutes = t_mtime[0] * 24 * 60 *60 + t_mtime[1] * 60 *60+ t_mtime[2] *60+ t_mtime[3] mtime_min_total = mtime_minimum[0] * 24 * 60*60 + mtime_minimum[1] * 60 *60+ mtime_minimum[2]*60 + mtime_minimum[3] mtime_max_total = mtime_maximum[0] * 24 * 60*60 + mtime_maximum[1] * 60 *60+ mtime_maximum[2]*60 + mtime_minimum[3] if mtime_total_minutes >= mtime_min_total and mtime_total_minutes <= mtime_max_total: new_mtime_values.append(t_mtime) else: if mtime_total_minutes < mtime_min_total: num_deleted_before += 1 elif mtime_total_minutes > mtime_max_total: num_deleted_after += 1 mtime_values = new_mtime_values mtime_values_sorted = sorted(mtime_values, key=lambda x: (x[0], x[1], x[2], x[3])) variable_values_all = variable_values_all[:, num_deleted_before:-num_deleted_after] min_val, max_val = np.nanmin(variable_values_all), np.nanmax(variable_values_all) if cmap_lim_min == None: cmap_lim_min = min_val else: min_val = cmap_lim_min if cmap_lim_max == None: cmap_lim_max = max_val else: max_val = cmap_lim_max if cmap_color == None: cmap_color, line_color = color_scheme(variable_name) if contour_value is not None: contour_levels = np.arange(min_val, max_val + contour_value, contour_value) interval_value = contour_value elif symmetric_interval == False: contour_levels = np.linspace(min_val, max_val, contour_intervals) interval_value = (max_val - min_val) / (contour_intervals - 1) elif symmetric_interval == True: range_half = math.ceil(max(abs(min_val), abs(max_val))/10)*10 interval_value = range_half / (contour_intervals // 2) # Divide by 2 to get intervals for one side positive_levels = np.arange(interval_value, range_half + interval_value, interval_value) negative_levels = -np.flip(positive_levels) # Generate negative levels symmetrically contour_levels = np.concatenate((negative_levels, [0], positive_levels)) interval_value = contour_value if contour_value else (max_val - min_val) / (contour_intervals - 1) mtime_tuples = [tuple(entry) for entry in mtime_values] try: # Modify this part to show both day and hour unique_times = sorted(list(set([(day, hour) for day, hour, _, _ in mtime_values]))) time_indices = [i for i, (day, hour, _, _) in enumerate(mtime_tuples) if i == 0 or mtime_tuples[i-1][:2] != (day, hour)] if len(time_indices) >24: unique_times = sorted(list(set([day for day, _, _, _ in mtime_values]))) time_indices = [i for i, (day, _, _, _) in enumerate(mtime_values) if i == 0 or mtime_values[i-1][0] != day] except: unique_times = sorted(list(set([day for day, _, _ in mtime_values]))) time_indices = [i for i, (day, _, _) in enumerate(mtime_values) if i == 0 or mtime_values[i-1][0] != day] # Clean plot if clean_plot == False: figure_height = 6 figure_width = 10 elif clean_plot == True: figure_height = 5 figure_width = 10 # Generate contour plot plot = plt.figure(figsize=(figure_width, figure_height)) X, Y = np.meshgrid(range(len(mtime_values)), unique_lats) contour_filled = plt.contourf(X, Y, variable_values_all, cmap=cmap_color, levels=contour_levels, vmin=cmap_lim_min, vmax=cmap_lim_max) contour_lines = plt.contour(X, Y, variable_values_all, colors=line_color, linewidths=0.5, levels=contour_levels) plt.clabel(contour_lines, inline=True, fontsize=8, colors=line_color) cbar = plt.colorbar(contour_filled, label=variable_name + " [" + variable_unit + "]") cbar.set_label(variable_name + " [" + variable_unit + "]", size=14, labelpad=15) cbar.ax.tick_params(labelsize=9) try: plt.xticks(time_indices, ["{}-{:02d}h".format(day, hour) for day, hour in unique_times], rotation=45) plt.xlabel("Model Time (Day,Hour) from "+str(unique_times[0])+" to "+str(unique_times[-1]), fontsize=14) except: plt.xticks(time_indices, unique_times, rotation=45) plt.xlabel("Model Time (Day) from "+str(np.nanmin(unique_times))+" to "+str(np.nanmax(unique_times)) ,fontsize=14) plt.ylabel('Latitude (Deg)',fontsize=14) plt.tight_layout() plt.xticks(fontsize=9) plt.yticks(fontsize=9) plt.ylim(latitude_minimum, latitude_maximum) if clean_plot == False: plt.title(variable_long_name+' '+variable_name+' ('+variable_unit+') '+'\n\n',fontsize=18 ) # Add subtext to the plot if level == 'mean' and longitude == 'mean': plt.text(0.5, 1.08, ' ZP= Mean LON= Mean', ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) elif longitude == 'mean': plt.text(0.5, 1.08, ' ZP=' + str(level) + " LON= Mean", ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) elif level == 'mean': plt.text(0.5, 1.08, ' ZP= Mean' + " LON=" + str(longitude), ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) else: plt.text(0.5, 1.08, ' ZP=' + str(level) + " LON=" + str(longitude), ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.2, "Min, Max = " + str("{:.2e}".format(min_val)) + ", " + str("{:.2e}".format(max_val)), ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) plt.text(0.5, -0.25, "Contour Interval = " + str("{:.2e}".format(interval_value)), ha='center', va='center', fontsize=14, transform=plt.gca().transAxes) if is_notebook(): backend = get_backend() if "inline" in backend or "nbagg" in backend: plt.show(block=False) else: if plot is not None: plt.close(plot) return plot