From c3a7ec8785dbc7940a5bca73d9b3adc5b2e1ed66 Mon Sep 17 00:00:00 2001 From: Kyle J Gillett <100786530+kylejgillett@users.noreply.github.com> Date: Tue, 26 Sep 2023 13:15:45 -0400 Subject: [PATCH] Update Advanced_Sounding_With_Complex_Layout.py --- examples/Advanced_Sounding_With_Complex_Layout.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/Advanced_Sounding_With_Complex_Layout.py b/examples/Advanced_Sounding_With_Complex_Layout.py index d4a02e4ee4a..24902016039 100644 --- a/examples/Advanced_Sounding_With_Complex_Layout.py +++ b/examples/Advanced_Sounding_With_Complex_Layout.py @@ -7,10 +7,12 @@ ========================================== Advanced Sounding Plot with Complex Layout ========================================== + This example combines simple MetPy plotting functionality, `metpy.calc` computation functionality, and a few basic Matplotlib tricks to create an advanced sounding plot with a complex layout & high readability. """ + # First lets start with some simple imports import matplotlib.pyplot as plt import numpy as np @@ -298,3 +300,4 @@ weight='bold', fontsize=20, ha='center') # Show the plot plt.show() +