Read and plot a HYSPLIT trajectory file from a HYSPlIT run.ΒΆ

This example shows how to read and plot a backtrajectory calculated by the NOAA HYSPLIT model over Houston.

Author: Robert Jackson

hysplit at 2010-08-01 00:00:00
import act
import matplotlib.pyplot as plt

from arm_test_data import DATASETS

# Load the data
filename = DATASETS.fetch('houstonaug300.0summer2010080100')
ds = act.io.read_hysplit(filename)

# Use the GeographicPlotDisplay object to make the plot
disp = act.plotting.GeographicPlotDisplay(ds)
disp.geoplot('PRESSURE', cartopy_feature=['STATES', 'OCEAN', 'LAND'])
plt.show()

Total running time of the script: (0 minutes 4.678 seconds)

Gallery generated by Sphinx-Gallery