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() +