:py:mod:`hypso.plot` ==================== .. py:module:: hypso.plot Submodules ---------- .. toctree:: :titlesonly: :maxdepth: 1 map/index.rst Package Contents ---------------- Functions ~~~~~~~~~ .. autoapisummary:: hypso.plot.show_rgb_map hypso.plot.write_rgb_to_png hypso.plot.plot_array_overlay hypso.plot.get_rgb hypso.plot.point_rgb_map .. py:function:: show_rgb_map(satellite_obj, plotTitle='RGB Image', dpi_input=450) Show RGB overlay of the Hypso image on a map. :param satellite_obj: Hypso satellite object :param plotTitle: Title for the plot :param dpi_input: Resolution in DPI´s. Default 450. :return: No return. .. py:function:: write_rgb_to_png(sat_obj, path_to_save) Write the RGB image to a .png file :param sat_obj: Hypso Satellite object :param path_to_save: Path to save the .png image. Should include the file extension. :return: No return. .. py:function:: plot_array_overlay(satellite_obj, plot_array, plotTitle='2D Array', cbar_title=' Chlorophyll Concentration [mg m^-3]', dpi_input=450, min_value=0.01, max_value=100) Plot a 2D array overlayed on a RGB Hypso Capture on a Map. :param satellite_obj: Hypso satellite object :param plot_array: 2D array to plot. Should be of the same size of the Hypso capture Lat/Lon arrays :param plotTitle: Tile for the plot :param cbar_title: Tile for the colorbar :param dpi_input: Resolution in DPI´s. Default 450. :param min_value: Minimum value for the Colorbar :param max_value: Maximum value for the Colorbar :return: No return. .. py:function:: get_rgb(sat_obj, R_wl=650, G_wl=550, B_wl=450) Write an RGB Image from specified Bands. Optional parameters are :param R_wl: The wavelength for the red channel. Defaults to 650. :param G_wl: The wavelength for the green channel. Defaults to 550. :param B_wl: The wavelength for the blue channel. Defaults to 450. :param sat_obj: Hypso satellite object :return: PIL Image object .. py:function:: point_rgb_map(satellite_obj, plotTitle='RGB Image', dpi_input=450, patch_dict=None, r_plot=0.007, path_to_save=None) Function to add points to overlay on the RGB Map of the Hypso image :param satellite_obj: Hypso satellite object :param plotTitle: Title for the plot :param dpi_input: Resolution in DPI´s. Default 450. :param patch_dict: Dictionary containing the location and color of the points to plot ``{"Point 1":{"lat":60.7776, "lon":11.0895, "color":"red"}, "Point 2":{"lat":60.5, "lon":10.4, "color":"orange"}}`` :param r_plot: Radius of the plotted points. Default: 0.007. :param path_to_save: Absolute Path to save the plot image. :return: No return.