---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-3-159adfe387c8> in <module>()
9 # note: this reads the whole thing in to memory at once: maybe we don't want to do that.
10 print("Loading data: This could take a while...")
---> 11 ug = pyugrid.UGrid.from_ncfile(url)
12
13 # What's in there?
/Users/chris.barker/PythonStuff/py_ugrid/pyugrid/pyugrid/ugrid.pyc in from_ncfile(klass, nc_url, mesh_name, load_data)
145 grid = klass()
146 read_netcdf.load_grid_from_ncfilename(nc_url, grid,
--> 147 mesh_name, load_data)
148 return grid
149
/Users/chris.barker/PythonStuff/py_ugrid/pyugrid/pyugrid/read_netcdf.pyc in load_grid_from_ncfilename(filename, grid, mesh_name, load_data)
271 """
272
--> 273 with netCDF4.Dataset(filename, 'r') as nc:
274 load_grid_from_nc_dataset(nc, grid, mesh_name, load_data)
netCDF4/_netCDF4.pyx in netCDF4._netCDF4.Dataset.__init__ (netCDF4/_netCDF4.c:9689)()
RuntimeError: NetCDF: file not found