In [1]:
import iris
import matplotlib.pyplot as plt
import iris.quickplot as qplt
%matplotlib inline
In [2]:
url='http://comt.sura.org/thredds/dodsC/comt_1_archive_full/inundation_tropical/observations/tropical/netcdf/Ike/NOAA/8729108_Panama_City_Ike_WL.nc'
In [3]:
cl = iris.load(url)
In [4]:
print cl
In [5]:
fig, ax = plt.subplots(figsize=(12, 3.5))
qplt.plot(cl[2], label=cl[2].name())
plt.grid()
In [6]:
from iris.pandas import as_cube, as_series, as_data_frame
df = as_series(cl[2])
df.head()
Out[6]:
In [7]:
df.plot(figsize=(12,3.5));
In [8]:
df.describe()
Out[8]:
In [8]: