everett

Results 4 comments of everett

The grid doesn't store the DEM, you have to load it separately using `dem = grid.read_raster('.../example/dem.tif')`

for some reason, the wildcard imports aren't grabbing everything - not sure whether it's due to a namespace conflict or something else. Can be resolved with: ```python from env_canada.ec_historical import...

Nice idea, had a quick go at a summary: Created the following in functions.py: ```python def summarize_model(model): model_summary = dict() # numbers of elements model_summary['num_subcatchments'] = len(model.inp.subcatchments) model_summary['num_conduits'] = len(model.inp.conduits)...

Ah sorry I missed that! I'll try and make some time to have a go in the next few weeks, might be handy for a project.