Run SUMMA models with CAMELS dataset on CyberGIS-Jupyter for Water (CJW)

Introduction

CAMELS (Catchment Attributes and Meteorology for Large-sample Studies) is a large-sample hydrometeorological dataset that provides catchment attributes, forcings and GIS data for 671 small- to medium-sized basins across the CONUS (continental United States). HydroShare hosts a copy of CAMELS and exposes it through different public data access protocols (WMS, WFS and OPeNDAP) for easy visualization, retrieval and subsetting of the dataset in community modeling research. This notebook demostrates how to set up SUMMA models with CAMELS dataset from HydroShare using various tools integrated in the CyberGIS-Jupyter for Water (CJW) environment and execution of ensemble model runs on a High Performance Computing (HPC) resource through CyberGIS-Compute Service.

CAMELS dataset hosted on HydroShare

The CAMELS dataset is currently stored in two HydroShare resources.

  1. Resource "NLDAS Forcing NetCDF..." (Click Here) contains a shapefile "HCDN_nhru_final_671.shp" of the 671 basin boudary and a NetCDF file "nldasForcing1980to2018.nc" of NLDAS forcings from 1980 to 2018.

CAMELS NLDAS resource

  1. Resource "CAMELS Basin Attributes" (Click Here) contains basin attributes in 2 NetCDF files: "attributes.camels.v2.nc" and "trialParams.camels.Oct2020_new.nc".

In HydroShare, shapefiles are represented as GeographicFeatureConetentType and exposed through OGC WMS and WFS services using GeoServer; NetCDF files are represented as MultideimentialContentType and exposed through OPeNDAP protocol using Hyrax Data Server.

To programmatically access or subset the data in Jupyter Notebook environment, the use of one or more client tools that are compatiable to the above protocols are often required, which will be introduced in later sections. For now, we just take advantage of the simple web interfaces built into GeoServer and Hyrax Data Server for quick data preview.

  • Preview of CAMELS Basin shapefile "HCDN_nhru_final_671.shp" in GeoServer: Click Here

CAMELS Basins

  • Preview of CAMELS NLDAS Forcings NetCDF "nldasForcing1980to2018.nc" in Hyrax: Click Here

NLDAS Forcings

Set up SUMMA models with CAMELS dataset

In this section, we will set up SUMMA model for a user-picked CAMELS basin. Several steps are required:

  • Select a CAMELS basin (hru_id) and simulation period (start_datetime and end_datetime);

  • Subset NLDAS hourly forcing data;

  • Subset basin attribute and parameter files;

  • Create initial conditions;

  • Run the single model on Jupyter server;

  • Build ensemble model and run on HPC through CyberGIS Computing Service;

Pick a CAMELS Basin and Simulation Period

You may put the "hru_id" of your interested CAMELS basin below if you already know it. Otherwise we will interactively select a basin on the map. For simulation period, the start_datetime and end_datetime should be in "YYYY-MM-DD HH:MM" format and within "1980-01-01 00:00" to "2018-12-31 23:00" (temporal coverage of NLDAS forcings).

In [1]:
# id of CAMELS basin
hru_id = 13313000
# simulation period (YYYY-MM-DD) within "1980-01-01 00:00" to "2018-12-31 23:00" (39-year)
start_datetime = "1991-01-01 00:00"
end_datetime =   "2000-12-31 23:00"

Select a CAMELS basin on interactive map (optional)

Here we provide an interactive map for you to view the 671 CAMELS basins. By taking advantage of the OGC WFS service that HydroShare has set up on top of the basin shapefile "HCDN_nhru_final_671.shp", we can retrieve the basin geometry in GeoJSON and visualize it using ipyleaflet.

You may hover over a basin to check hru_id shown in the bottom-right corner. You may click on a basin in the map to select it for modelling. A popuop with more info (hru_id, lat, lon, area, elevation and perimeter) about the basin will show up in the upper-left corner. NCAR provides high-resolution basin image and elevation map for some basins located in the western coast. For those basins, the popup shows thumbnails that are clickable and linked to the originals.

Note: Clicking on a basin indicates it is selected for modelling, and this action will overwrite and upate the above "hru_id" variable.

In [2]:
import json
import random
import requests
from ipywidgets import HTML
from ipyleaflet import Map, ZoomControl, GeoJSON, Popup, WidgetControl
from shapely.geometry import shape, GeometryCollection

# A WFS request made to HydroShare-provisioned GeoServer to retrieve basin geometry in geojson format
url = "https://geoserver.hydroshare.org/geoserver/HS-a28685d2dd584fe5885fc368cb76ff2a/wfs?service=wfs&version=2.0.0&request=GetFeature&typeNames=HS-a28685d2dd584fe5885fc368cb76ff2a:HCDN_nhru_final_671&outputFormat=JSON"
r = requests.get(url)
geojson_str = r.content.decode("utf-8")

m = Map(center=(39, -104), zoom=4, zoom_control=False)
m.add_control(ZoomControl(position='topright'))

geo_json = GeoJSON(
    data=json.loads(geojson_str),
    style={'opacity': 0, 'fillOpacity': 0.6, 'weight': 1},
    hover_style={'color': 'cyan', 'opacity': 1, 'weight': 3, 'fillOpacity': 0}, 
    style_callback=lambda feature:  {'color': 'white',
                                     'fillColor': random.choice(['red', 'yellow', 'green', 'orange']),}
)

geo_json_clicked = None

def geojson_onclick_handler(event=None, id=None, properties=None, feature=None):
    global geo_json_clicked
    global hru_id
    if geo_json_clicked is not None:
        geo_json_clicked.on_hover(basin_hover_html, remove=True)
        m.remove_layer(geo_json_clicked)
    _hru_id = feature["properties"]["hru_id"]
    geom = GeometryCollection([shape(feature["geometry"])])
    bounds = geom.bounds
    swne = [(bounds[1], bounds[0]), (bounds[3], bounds[2])]
    m.fit_bounds(swne)
    geo_json_clicked = GeoJSON(
    data=feature,
    style={'color': 'black', 'opacity': 1, 'fillColor': 'cyan', 'fillOpacity': 1},
    )
    m.add_layer(geo_json_clicked)
    geo_json_clicked.on_hover(basin_hover_html)
    basin_click_html(feature)
    # update global hru_id
    hru_id = _hru_id
    
geo_json.on_click(geojson_onclick_handler)
m.add_layer(geo_json)
html_click = HTML('''Click on a basin to start modeling''')
html_click.layout.margin = '0px 20px 20px 20px'
control_click = WidgetControl(widget=html_click, position='topleft')
m.add_control(control_click)

html_hover = HTML('''Hover over to check hru_id''')
html_hover.layout.margin = '0px 20px 0px 20px'
control_hover = WidgetControl(widget=html_hover, position='bottomright')
m.add_control(control_hover)

def get_feature_by(geojson_layer, key, value, first=False):
    out = []
    for fea in geojson_layer.data['features']:
        if fea["properties"][key] == value:           
            if first == True:
                return fea
            out.append(fea)
    return out

def check_url(url):
    # check if a url is reachable
    return requests.head(url).status_code == 200

def img_html(url, alt, link=None):
    img_value = '<img src="{url}"  alt="{alt}" width="100" height="600">'.format(url=url, alt=alt)
    if link is not None:
        img_value = '<a href="{link}" target="_blank"> {img_value} </a>'.format(link=link, img_value=img_value)
    return img_value

def basin_click_html(feature,  **kwargs):
    hru_id = feature['properties']["hru_id"]
    watershed_url = "https://ral.ucar.edu/staff/wood/watersheds/basin_figs/{hru_id}.watershed.png".format(hru_id=hru_id)
    dem_url = "https://ral.ucar.edu/staff/wood/watersheds/dem_figs//{hru_id}.dem.png".format(hru_id=hru_id)
    fields = ["hru_id", "lon_cen", "lat_cen", "AREA", "elev_mean", "Perimeter"]
    table_row_tmpl = '''<tr><th scopt="row">{}</td><td>{}</td></tr>'''
    tbody_value = ''
    for field in fields:
        row = table_row_tmpl.format(field, feature['properties'][field])
        tbody_value = tbody_value + row
    
    html_value = '''<h4><b>Selected Basin</b></h4>
    <table class="table table-striped"><tbody>{tbody_value}</tbody></table>'''.format(tbody_value=tbody_value)
    if check_url(watershed_url):
        html_value = html_value + img_html(watershed_url, "Watershed Boundary", link=watershed_url)
    if check_url(dem_url):
        html_value = html_value + img_html(dem_url, "DEM", link=dem_url)
    html_click.value = html_value

def basin_hover_html(feature,  **kwargs):
    hru_id = feature['properties']["hru_id"]
    html_value = '''<h5><b>{hru_id}</b></h5>'''.format(hru_id=hru_id)
    html_hover.value = html_value

geo_json.on_hover(basin_hover_html)
m
In [3]:
# if user didn't click on a basin, use default basin and zoom to it on map
if geo_json_clicked is None:
    hru_fea = get_feature_by(geo_json, "hru_id", hru_id, first=True)
    geojson_onclick_handler(feature=hru_fea)
    
# the selected basin   
hru_id_selected = hru_id

# display selected hru_id and simulation period as header as a confirmation
from IPython.display import Markdown as md
md("## Prepare NLDAS forcings for CAMELS Basin '{hru_id}' over {start_datetime} to {end_datetime}".format(hru_id=hru_id_selected, start_datetime=start_datetime, end_datetime=end_datetime))
Out[3]:

Prepare NLDAS forcings for CAMELS Basin '13313000' over 1991-01-01 00:00 to 2000-12-31 23:00

In this section, we will subset NLDAS forcing data to the above user-selected basin over the requested simulation period. The orginal forcing contains data for 671 CAMELS basins from 1980-2018 (39 years) in a single 6GB NetCDF file "nldasForcing1980to2018.nc". HydroShare exposes the NetCDF file through OpenDAP protocol using Hydrax, which enables users to directly retrieve a portion of the data without having to download the whole file to Jupyter environment. The public OpenDAP access url for a specific NetCDF file hosted on HydroShare follows the following pattern:

http://hyrax.hydroshare.org/opendap/hyrax/{RESOURCE_ID}/data/contents/{NETCDF_FILE_NAME}

In the case of NLDAS CAMELS forcing file "nldasForcing1980to2018.nc", the access url is:

http://hyrax.hydroshare.org/opendap/hyrax/a28685d2dd584fe5885fc368cb76ff2a/data/contents/nldasForcing1980to2018.nc

We would need to use a OpenDAP-complaint client tool to open the url (putting it in browser directly only results in a warning message). Here we chose to use XArray for this purpose.

The following cell shows the metadata of the remote NLDAS NetCDF file through OpenDAP. Under the Demensions tab, you can see it has 671 basins and 341880 timesteps (14245 days * 24 timesteps/day).

In [4]:
import os
import sys
import time
import pandas as pd
import numpy as np
import xarray as xr
In [5]:
opendap_access_url = 'http://hyrax.hydroshare.org/opendap/hyrax/a28685d2dd584fe5885fc368cb76ff2a/data/contents/nldasForcing1980to2018.nc'

opendap_access_url = 'https://thredds.hydroshare.org/thredds/dodsC/hydroshare/resources/a28685d2dd584fe5885fc368cb76ff2a/data/contents/nldasForcing1980to2018.nc'
forcing_all = xr.open_dataset(opendap_access_url)
forcing_all
Out[5]:
<xarray.Dataset>
Dimensions:    (hru: 671, time: 341880)
Coordinates:
  * time       (time) datetime64[ns] 1980-01-01 ... 2018-12-31T23:00:00
  * hru        (hru) int32 1013500 1022500 1030500 ... 14362250 14400000
Data variables:
    data_step  timedelta64[ns] 01:00:00
    hruId      (hru) int32 1013500 1022500 1030500 ... 14362250 14400000
    LWRadAtm   (time, hru) float32 ...
    SWRadAtm   (time, hru) float32 ...
    airpres    (time, hru) float32 ...
    airtemp    (time, hru) float32 ...
    pptrate    (time, hru) float32 ...
    spechum    (time, hru) float32 ...
    windspd    (time, hru) float32 ...
Attributes:
    history:                         Wed Nov  4 14:25:03 2020: ncrcat nldasFo...
    NCO:                             netCDF Operators version 4.9.5 (Homepage...
    DODS_EXTRA.Unlimited_Dimension:  time

Here we use hru_id, start_datetime and end_datetime to subset the NLDAS forcing NetCDF. The new Dimensions should show only 1 basin and whatever timesteps that matches the selected simulation period (num of days * 24 timesteps/day). Note that we also tweaked the resulting file a bit (set variable "data_step" and remove attribute "_NCProperties") to make it compatible with SUMMA model.

In [6]:
# subset by basin
the_hru = np.array([hru_id_selected])
forcing = forcing_all.sel(hru=the_hru)
# subset by simulation period
forcing = forcing.loc[dict(time=slice(start_datetime, end_datetime))]
# tweak the resulting netcdf for summa model
forcing['data_step'] = 3600
#del forcing.attrs['_NCProperties']
forcing
Out[6]:
<xarray.Dataset>
Dimensions:    (hru: 1, time: 87672)
Coordinates:
  * time       (time) datetime64[ns] 1991-01-01 ... 2000-12-31T23:00:00
  * hru        (hru) int32 13313000
Data variables:
    data_step  int64 3600
    hruId      (hru) int32 13313000
    LWRadAtm   (time, hru) float32 267.6 267.6 267.6 266.9 ... 243.6 243.5 243.5
    SWRadAtm   (time, hru) float32 5.494 0.0 0.0 0.0 ... 334.9 280.0 218.4 126.5
    airpres    (time, hru) float32 7.794e+04 7.795e+04 ... 7.796e+04 7.802e+04
    airtemp    (time, hru) float32 264.4 264.7 264.9 265.2 ... 271.6 271.0 270.4
    pptrate    (time, hru) float32 0.0 0.0 1.666e-07 1.666e-07 ... 0.0 0.0 0.0
    spechum    (time, hru) float32 0.002008 0.002077 ... 0.003593 0.003469
    windspd    (time, hru) float32 7.609 7.75 7.89 8.033 ... 4.797 4.196 3.596
Attributes:
    history:                         Wed Nov  4 14:25:03 2020: ncrcat nldasFo...
    NCO:                             netCDF Operators version 4.9.5 (Homepage...
    DODS_EXTRA.Unlimited_Dimension:  time

Save forcing subset to local SUMMA model folder

In [7]:
top_folder = os.path.join(os.getcwd(), 'summa_camels')
settings_folder = os.path.join(top_folder, 'settings')
output_folder = os.path.join(top_folder, 'output')
In [8]:
%%time
truth = forcing
t0 = truth['time'].values[0] 
tl = truth['time'].values[-1]
t0_s = pd.to_datetime(str(t0))
t0_sf =t0_s.strftime('%Y%m%d')
tl_s = pd.to_datetime(str(tl))
tl_sf =tl_s.strftime('%Y%m%d')
!mkdir -p {top_folder}/data/forcing
ffname ='NLDAS_' + str(hru_id_selected) + "_" + t0_sf +'-' + tl_sf +'.nc'
truth.to_netcdf(top_folder+'/data/forcing/'+ffname)
truth.close()
fflistname = settings_folder+'/forcingFileList.txt' 
file =open(fflistname,"w")
file.write(ffname)
file.close()
CPU times: user 6.27 s, sys: 1.38 s, total: 7.64 s
Wall time: 8.74 s

Plot forcing subset

In [9]:
import matplotlib.pyplot as plt

%matplotlib inline

#Plot hourly
constant_vars=['airpres','airtemp','LWRadAtm','pptrate','spechum','SWRadAtm','windspd']
fig, axes = plt.subplots(nrows=7, ncols=1, figsize=(20, 20))
axes = axes.flatten()
axes[0].set_title('Hourly')
unit_str = ['($ ^o K$)', '($kg/m/s$)', '($W/m^2$)','($w/m^2$)','($g/g$)','($Pa$)', '($m/s$)',]
forcing_plt= forcing
for idx, var in enumerate(constant_vars):
    forcing_plt[var].plot(ax=axes[idx],label='NLDAS')
    axes[idx].set_title('') 
    axes[idx].set_ylabel('{} {}'.format(var, unit_str[idx]))
    axes[idx].set_xlabel('Date')
plt.tight_layout()
plt.legend()
Out[9]:
<matplotlib.legend.Legend at 0x7fcaa8fe4b50>

Prepare Attribute File for selected CAMELS Basin

SUMMA uses a number of files to specify model attributes and parameters. Although SUMMA's distinction between attributes and parameters is somewhat arbitrary, attributes generally describe characteristics of the model domain that are time-invariant during the simulation, such as GRU and HRU identifiers, spatial organization, an topography. The important part for understanding the organization of the SUMMA input files is that the values specified in the local attributes file do not overlap with those in the various parameter files. Thus, these values do not overwrite any attributes specified elsewhere. In contrast, the various parameter file are read in sequence (as explained in the next paragraph) and parameter values that are read in from the input files successively overwrite values that have been specified earlier.

Since the CAMELS basin attribute NetCDF file attributes.camels.v2.nc is pretty small (70KB), a copy is included in the summa model folder. We just need to subset it to our selected basin.

In [10]:
# remove existing attributes.nc if any
! rm -rf {settings_folder}/attributes.nc
In [11]:
# Attributes
the_gru = the_hru
attrib_orig = xr.open_dataset(settings_folder+'/attributes.camels.v2.nc')
attrib = attrib_orig.copy()
attrib_orig.close()
attrib = attrib.assign_coords(hru=attrib['hruId'])
attrib = attrib.assign_coords(gru=attrib['gruId'])
gg = attrib['gruId'] # save because gruId was missing from the parameter file
attrib = attrib.sel(hru=the_hru)
attrib = attrib.sel(gru=the_gru)
attrib = attrib.drop(['hru','gru']) #summa doesn't like these to have coordinates
attrib.to_netcdf(settings_folder+'/attributes.nc')
attrib.close()

Prepare Parameter File for selected CAMELS Basin

The trial parameters file is a NetCDF file that specifies model parameters for GRUs and individual HRUs. This enables the user to overwrite the default and/or Noah-MP parameter values with local-specific ones.

Since the CAMELS parameter NetCDF file trialParams.camels.Oct2020.nc is pretty small (250KB), a copy is included in the summa model folder. We just need to subset it to our selected basin.

In [12]:
# remove existing parameters.nc if any
! rm -rf {settings_folder}/parameters.nc
In [13]:
# Parameters
param_orig = xr.open_dataset(settings_folder+'/trialParams.camels.Oct2020.nc')
param = param_orig.copy()
param_orig.close()
param = param.assign_coords(hru=param['hruId'])
param = param.assign_coords(gru=gg) # there should be a gruId in here, but there wasn't
param = param.sel(hru=the_hru)
param = param.sel(gru=the_gru)
param = param.drop(['hru','gru']) #summa doesn't like these to have coordinates
param.to_netcdf(settings_folder+'/parameters.nc')
param.close()

Create Initial Conditions

In [14]:
!cd {settings_folder}; rm -rf init_cond.nc; {sys.executable} gen_coldstate.py attributes.nc init_cond.nc int
gen_coldstate.py:35: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here.
Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
  data = f.variables[varname][:]
read output outPolyIds ('hruId') from example domain file
writing output file
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data
adding data

Run SUMMA model locally

In [15]:
! cd {top_folder}; chmod +x installTestCases_local.sh; ./installTestCases_local.sh
In [16]:
# get full path to summa executable
executable =  os.popen('which summa.exe').read().split("\n")[0]
file_manager = top_folder+'/settings/file_manager.txt'
!mkdir -p {output_folder}
In [17]:
import pysumma as ps
camels_summa = ps.Simulation(executable, file_manager)
camels_summa.manager['simStartTime'] = start_datetime
camels_summa.manager['simEndTime'] = end_datetime
camels_summa.manager.write()
print(camels_summa.manager)
controlVersion                       'SUMMA_FILE_MANAGER_V3.0.0'
simStartTime                         '1991-01-01 00:00'
simEndTime                           '2000-12-31 23:00'
tmZoneInfo                           'utcTime'
settingsPath                         '/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/settings/'
forcingPath                          '/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/data/forcing/'
outputPath                           '/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/output/'
decisionsFile                        'modelDecisions.txt'
outputControlFile                    'output_control.txt'
globalHruParamFile                   'localParamInfo.txt'
globalGruParamFile                   'basinParamInfo.txt'
attributeFile                        'attributes.nc'
trialParamFile                       'parameters.nc'
forcingListFile                      'forcingFileList.txt'
initConditionFile                    'init_cond.nc'
outFilePrefix                        'camels'
vegTableFile                         'VEGPARM.TBL'
soilTableFile                        'SOILPARM.TBL'
generalTableFile                     'GENPARM.TBL'
noahmpTableFile                      'MPTABLE.TBL'
In [18]:
# remove old output files if any
! rm -rf {output_folder}/*.*
In [19]:
%%time
camels_summa.run('local')
CPU times: user 420 ms, sys: 123 ms, total: 544 ms
Wall time: 1min 12s
In [20]:
print(camels_summa.stdout)
file_suffix is 'pysumma_run'.
file_master is '/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/settings/.pysumma/pysumma_run/file_manager.txt'.
   1 controlVersion: SUMMA_FILE_MANAGER_V3.0.0
   2 simStartTime: 1991-01-01 00:00
   3 simEndTime: 2000-12-31 23:00
   4 tmZoneInfo: utcTime
   5 settingsPath: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/settings/.pysumma/pysumma_run/
   6 forcingPath: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/data/forcing/
   7 outputPath: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/output/
   8 decisionsFile: modelDecisions.txt
   9 outputControlFile: output_control.txt
  10 globalHruParamFile: localParamInfo.txt
  11 globalGruParamFile: basinParamInfo.txt
  12 attributeFile: attributes.nc
  13 trialParamFile: parameters.nc
  14 forcingListFile: forcingFileList.txt
  15 initConditionFile: init_cond.nc
  16 outFilePrefix: camels
  17 vegTableFile: VEGPARM.TBL
  18 soilTableFile: SOILPARM.TBL
  19 generalTableFile: GENPARM.TBL
  20 noahmpTableFile: MPTABLE.TBL
decisions file =  /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/settings/.pysumma/pysumma_run/modelDecisions.txt
   1 soilCatTbl: STAS
   2 vegeParTbl: MODIFIED_IGBP_MODIS_NOAH
   3 soilStress: NoahType
   4 stomResist: BallBerry
   5 num_method: itertive
   6 fDerivMeth: analytic
   7 LAI_method: specified
   8 f_Richards: mixdform
   9 groundwatr: bigBuckt
  10 hc_profile: constant
  11 bcUpprTdyn: nrg_flux
  12 bcLowrTdyn: zeroFlux
  13 bcUpprSoiH: liq_flux
  14 bcLowrSoiH: drainage
  15 veg_traits: Raupach_BLM1994
  16 canopyEmis: difTrans
  17 snowIncept: lightSnow
  18 windPrfile: logBelowCanopy
  19 astability: louisinv
  20 canopySrad: BeersLaw
  21 alb_method: conDecay
  22 compaction: anderson
  23 snowLayers: CLM_2010
  24 thCondSnow: jrdn1991
  25 thCondSoil: funcSoilWet
  26 spatial_gw: localColumn
  27 subRouting: timeDlay
startTime: iyyy, im, id, ih, imin = 1991  1  1  0  0
finshTime: iyyy, im, id, ih, imin = 2000 12 31 23  0
number of time steps =       87672
Skipping over LUTYPE = USGS
 WARNING: routingRunoffFuture is not in the initial conditions file ... using zeros
 Created output file: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/summa_camels/output/camels_pysumma_run_day.nc
1991  1  2  0  0
1991  1  3  0  0
1991  1  4  0  0
1991  1  5  0  0
1991  1  6  0  0
1991  1  7  0  0
1991  1  8  0  0
1991  1  9  0  0
1991  1 10  0  0
1991  1 11  0  0
1991  1 12  0  0
1991  1 13  0  0
1991  1 14  0  0
1991  1 15  0  0
1991  1 16  0  0
1991  1 17  0  0
1991  1 18  0  0
1991  1 19  0  0
1991  1 20  0  0
1991  1 21  0  0
1991  1 22  0  0
1991  1 23  0  0
1991  1 24  0  0
1991  1 25  0  0
1991  1 26  0  0
1991  1 27  0  0
1991  1 28  0  0
1991  1 29  0  0
1991  1 30  0  0
1991  1 31  0  0
1991  2  1  0  0
1991  2  2  0  0
1991  2  3  0  0
1991  2  4  0  0
1991  2  5  0  0
1991  2  6  0  0
1991  2  7  0  0
1991  2  8  0  0
1991  2  9  0  0
1991  2 10  0  0
1991  2 11  0  0
1991  2 12  0  0
1991  2 13  0  0
1991  2 14  0  0
1991  2 15  0  0
1991  2 16  0  0
1991  2 17  0  0
1991  2 18  0  0
1991  2 19  0  0
1991  2 20  0  0
1991  2 21  0  0
1991  2 22  0  0
1991  2 23  0  0
1991  2 24  0  0
1991  2 25  0  0
1991  2 26  0  0
1991  2 27  0  0
1991  2 28  0  0
1991  3  1  0  0
1991  3  2  0  0
1991  3  3  0  0
1991  3  4  0  0
1991  3  5  0  0
1991  3  6  0  0
1991  3  7  0  0
1991  3  8  0  0
1991  3  9  0  0
1991  3 10  0  0
1991  3 11  0  0
1991  3 12  0  0
1991  3 13  0  0
1991  3 14  0  0
1991  3 15  0  0
1991  3 16  0  0
1991  3 17  0  0
1991  3 18  0  0
1991  3 19  0  0
1991  3 20  0  0
1991  3 21  0  0
1991  3 22  0  0
1991  3 23  0  0
1991  3 24  0  0
1991  3 25  0  0
1991  3 26  0  0
1991  3 27  0  0
1991  3 28  0  0
1991  3 29  0  0
1991  3 30  0  0
1991  3 31  0  0
1991  4  1  0  0
1991  4  2  0  0
1991  4  3  0  0
1991  4  4  0  0
1991  4  5  0  0
1991  4  6  0  0
1991  4  7  0  0
1991  4  8  0  0
1991  4  9  0  0
1991  4 10  0  0
1991  4 11  0  0
1991  4 12  0  0
1991  4 13  0  0
1991  4 14  0  0
1991  4 15  0  0
1991  4 16  0  0
1991  4 17  0  0
1991  4 18  0  0
1991  4 19  0  0
1991  4 20  0  0
1991  4 21  0  0
1991  4 22  0  0
1991  4 23  0  0
1991  4 24  0  0
1991  4 25  0  0
1991  4 26  0  0
1991  4 27  0  0
1991  4 28  0  0
1991  4 29  0  0
1991  4 30  0  0
1991  5  1  0  0
1991  5  2  0  0
1991  5  3  0  0
1991  5  4  0  0
1991  5  5  0  0
1991  5  6  0  0
1991  5  7  0  0
1991  5  8  0  0
1991  5  9  0  0
1991  5 10  0  0
1991  5 11  0  0
1991  5 12  0  0
1991  5 13  0  0
1991  5 14  0  0
1991  5 15  0  0
1991  5 16  0  0
1991  5 17  0  0
1991  5 18  0  0
1991  5 19  0  0
1991  5 20  0  0
1991  5 21  0  0
1991  5 22  0  0
1991  5 23  0  0
1991  5 24  0  0
1991  5 25  0  0
1991  5 26  0  0
1991  5 27  0  0
1991  5 28  0  0
1991  5 29  0  0
1991  5 30  0  0
1991  5 31  0  0
1991  6  1  0  0
1991  6  2  0  0
1991  6  3  0  0
1991  6  4  0  0
1991  6  5  0  0
1991  6  6  0  0
1991  6  7  0  0
1991  6  8  0  0
1991  6  9  0  0
1991  6 10  0  0
1991  6 11  0  0
1991  6 12  0  0
1991  6 13  0  0
1991  6 14  0  0
1991  6 15  0  0
1991  6 16  0  0
1991  6 17  0  0
1991  6 18  0  0
1991  6 19  0  0
1991  6 20  0  0
1991  6 21  0  0
1991  6 22  0  0
1991  6 23  0  0
1991  6 24  0  0
1991  6 25  0  0
1991  6 26  0  0
1991  6 27  0  0
1991  6 28  0  0
1991  6 29  0  0
1991  6 30  0  0
1991  7  1  0  0
1991  7  2  0  0
1991  7  3  0  0
1991  7  4  0  0
1991  7  5  0  0
1991  7  6  0  0
1991  7  7  0  0
1991  7  8  0  0
1991  7  9  0  0
1991  7 10  0  0
1991  7 11  0  0
1991  7 12  0  0
1991  7 13  0  0
1991  7 14  0  0
1991  7 15  0  0
1991  7 16  0  0
1991  7 17  0  0
1991  7 18  0  0
1991  7 19  0  0
1991  7 20  0  0
1991  7 21  0  0
1991  7 22  0  0
1991  7 23  0  0
1991  7 24  0  0
1991  7 25  0  0
1991  7 26  0  0
1991  7 27  0  0
1991  7 28  0  0
1991  7 29  0  0
1991  7 30  0  0
1991  7 31  0  0
1991  8  1  0  0
1991  8  2  0  0
1991  8  3  0  0
1991  8  4  0  0
1991  8  5  0  0
1991  8  6  0  0
1991  8  7  0  0
1991  8  8  0  0
1991  8  9  0  0
1991  8 10  0  0
1991  8 11  0  0
1991  8 12  0  0
1991  8 13  0  0
1991  8 14  0  0
1991  8 15  0  0
1991  8 16  0  0
1991  8 17  0  0
1991  8 18  0  0
1991  8 19  0  0
1991  8 20  0  0
1991  8 21  0  0
1991  8 22  0  0
1991  8 23  0  0
1991  8 24  0  0
1991  8 25  0  0
1991  8 26  0  0
1991  8 27  0  0
1991  8 28  0  0
1991  8 29  0  0
1991  8 30  0  0
1991  8 31  0  0
1991  9  1  0  0
1991  9  2  0  0
1991  9  3  0  0
1991  9  4  0  0
1991  9  5  0  0
1991  9  6  0  0
1991  9  7  0  0
1991  9  8  0  0
1991  9  9  0  0
1991  9 10  0  0
1991  9 11  0  0
1991  9 12  0  0
1991  9 13  0  0
1991  9 14  0  0
1991  9 15  0  0
1991  9 16  0  0
1991  9 17  0  0
1991  9 18  0  0
1991  9 19  0  0
1991  9 20  0  0
1991  9 21  0  0
1991  9 22  0  0
1991  9 23  0  0
1991  9 24  0  0
1991  9 25  0  0
1991  9 26  0  0
1991  9 27  0  0
1991  9 28  0  0
1991  9 29  0  0
1991  9 30  0  0
1991 10  1  0  0
1991 10  2  0  0
1991 10  3  0  0
1991 10  4  0  0
1991 10  5  0  0
1991 10  6  0  0
1991 10  7  0  0
1991 10  8  0  0
1991 10  9  0  0
1991 10 10  0  0
1991 10 11  0  0
1991 10 12  0  0
1991 10 13  0  0
1991 10 14  0  0
1991 10 15  0  0
1991 10 16  0  0
1991 10 17  0  0
1991 10 18  0  0
1991 10 19  0  0
1991 10 20  0  0
1991 10 21  0  0
1991 10 22  0  0
1991 10 23  0  0
1991 10 24  0  0
1991 10 25  0  0
1991 10 26  0  0
1991 10 27  0  0
1991 10 28  0  0
1991 10 29  0  0
1991 10 30  0  0
1991 10 31  0  0
1991 11  1  0  0
1991 11  2  0  0
1991 11  3  0  0
1991 11  4  0  0
1991 11  5  0  0
1991 11  6  0  0
1991 11  7  0  0
1991 11  8  0  0
1991 11  9  0  0
1991 11 10  0  0
1991 11 11  0  0
1991 11 12  0  0
1991 11 13  0  0
1991 11 14  0  0
1991 11 15  0  0
1991 11 16  0  0
1991 11 17  0  0
1991 11 18  0  0
1991 11 19  0  0
1991 11 20  0  0
1991 11 21  0  0
1991 11 22  0  0
1991 11 23  0  0
1991 11 24  0  0
1991 11 25  0  0
1991 11 26  0  0
1991 11 27  0  0
1991 11 28  0  0
1991 11 29  0  0
1991 11 30  0  0
1991 12  1  0  0
1991 12  2  0  0
1991 12  3  0  0
1991 12  4  0  0
1991 12  5  0  0
1991 12  6  0  0
1991 12  7  0  0
1991 12  8  0  0
1991 12  9  0  0
1991 12 10  0  0
1991 12 11  0  0
1991 12 12  0  0
1991 12 13  0  0
1991 12 14  0  0
1991 12 15  0  0
1991 12 16  0  0
1991 12 17  0  0
1991 12 18  0  0
1991 12 19  0  0
1991 12 20  0  0
1991 12 21  0  0
1991 12 22  0  0
1991 12 23  0  0
1991 12 24  0  0
1991 12 25  0  0
1991 12 26  0  0
1991 12 27  0  0
1991 12 28  0  0
1991 12 29  0  0
1991 12 30  0  0
1991 12 31  0  0
1992  1  1  0  0
1992  1  2  0  0
1992  1  3  0  0
1992  1  4  0  0
1992  1  5  0  0
1992  1  6  0  0
1992  1  7  0  0
1992  1  8  0  0
1992  1  9  0  0
1992  1 10  0  0
1992  1 11  0  0
1992  1 12  0  0
1992  1 13  0  0
1992  1 14  0  0
1992  1 15  0  0
1992  1 16  0  0
1992  1 17  0  0
1992  1 18  0  0
1992  1 19  0  0
1992  1 20  0  0
1992  1 21  0  0
1992  1 22  0  0
1992  1 23  0  0
1992  1 24  0  0
1992  1 25  0  0
1992  1 26  0  0
1992  1 27  0  0
1992  1 28  0  0
1992  1 29  0  0
1992  1 30  0  0
1992  1 31  0  0
1992  2  1  0  0
1992  2  2  0  0
1992  2  3  0  0
1992  2  4  0  0
1992  2  5  0  0
1992  2  6  0  0
1992  2  7  0  0
1992  2  8  0  0
1992  2  9  0  0
1992  2 10  0  0
1992  2 11  0  0
1992  2 12  0  0
1992  2 13  0  0
1992  2 14  0  0
1992  2 15  0  0
1992  2 16  0  0
1992  2 17  0  0
1992  2 18  0  0
1992  2 19  0  0
1992  2 20  0  0
1992  2 21  0  0
1992  2 22  0  0
1992  2 23  0  0
1992  2 24  0  0
1992  2 25  0  0
1992  2 26  0  0
1992  2 27  0  0
1992  2 28  0  0
1992  2 29  0  0
1992  3  1  0  0
1992  3  2  0  0
1992  3  3  0  0
1992  3  4  0  0
1992  3  5  0  0
1992  3  6  0  0
1992  3  7  0  0
1992  3  8  0  0
1992  3  9  0  0
1992  3 10  0  0
1992  3 11  0  0
1992  3 12  0  0
1992  3 13  0  0
1992  3 14  0  0
1992  3 15  0  0
1992  3 16  0  0
1992  3 17  0  0
1992  3 18  0  0
1992  3 19  0  0
1992  3 20  0  0
1992  3 21  0  0
1992  3 22  0  0
1992  3 23  0  0
1992  3 24  0  0
1992  3 25  0  0
1992  3 26  0  0
1992  3 27  0  0
1992  3 28  0  0
1992  3 29  0  0
1992  3 30  0  0
1992  3 31  0  0
1992  4  1  0  0
1992  4  2  0  0
1992  4  3  0  0
1992  4  4  0  0
1992  4  5  0  0
1992  4  6  0  0
1992  4  7  0  0
1992  4  8  0  0
1992  4  9  0  0
1992  4 10  0  0
1992  4 11  0  0
1992  4 12  0  0
1992  4 13  0  0
1992  4 14  0  0
1992  4 15  0  0
1992  4 16  0  0
1992  4 17  0  0
1992  4 18  0  0
1992  4 19  0  0
1992  4 20  0  0
1992  4 21  0  0
1992  4 22  0  0
1992  4 23  0  0
1992  4 24  0  0
1992  4 25  0  0
1992  4 26  0  0
1992  4 27  0  0
1992  4 28  0  0
1992  4 29  0  0
1992  4 30  0  0
1992  5  1  0  0
1992  5  2  0  0
1992  5  3  0  0
1992  5  4  0  0
1992  5  5  0  0
1992  5  6  0  0
1992  5  7  0  0
1992  5  8  0  0
1992  5  9  0  0
1992  5 10  0  0
1992  5 11  0  0
1992  5 12  0  0
1992  5 13  0  0
1992  5 14  0  0
1992  5 15  0  0
1992  5 16  0  0
1992  5 17  0  0
1992  5 18  0  0
1992  5 19  0  0
1992  5 20  0  0
1992  5 21  0  0
1992  5 22  0  0
1992  5 23  0  0
1992  5 24  0  0
1992  5 25  0  0
1992  5 26  0  0
1992  5 27  0  0
1992  5 28  0  0
1992  5 29  0  0
1992  5 30  0  0
1992  5 31  0  0
1992  6  1  0  0
1992  6  2  0  0
1992  6  3  0  0
1992  6  4  0  0
1992  6  5  0  0
1992  6  6  0  0
1992  6  7  0  0
1992  6  8  0  0
1992  6  9  0  0
1992  6 10  0  0
1992  6 11  0  0
1992  6 12  0  0
1992  6 13  0  0
1992  6 14  0  0
1992  6 15  0  0
1992  6 16  0  0
1992  6 17  0  0
1992  6 18  0  0
1992  6 19  0  0
1992  6 20  0  0
1992  6 21  0  0
1992  6 22  0  0
1992  6 23  0  0
1992  6 24  0  0
1992  6 25  0  0
1992  6 26  0  0
1992  6 27  0  0
1992  6 28  0  0
1992  6 29  0  0
1992  6 30  0  0
1992  7  1  0  0
1992  7  2  0  0
1992  7  3  0  0
1992  7  4  0  0
1992  7  5  0  0
1992  7  6  0  0
1992  7  7  0  0
1992  7  8  0  0
1992  7  9  0  0
1992  7 10  0  0
1992  7 11  0  0
1992  7 12  0  0
1992  7 13  0  0
1992  7 14  0  0
1992  7 15  0  0
1992  7 16  0  0
1992  7 17  0  0
1992  7 18  0  0
1992  7 19  0  0
1992  7 20  0  0
1992  7 21  0  0
1992  7 22  0  0
1992  7 23  0  0
1992  7 24  0  0
1992  7 25  0  0
1992  7 26  0  0
1992  7 27  0  0
1992  7 28  0  0
1992  7 29  0  0
1992  7 30  0  0
1992  7 31  0  0
1992  8  1  0  0
1992  8  2  0  0
1992  8  3  0  0
1992  8  4  0  0
1992  8  5  0  0
1992  8  6  0  0
1992  8  7  0  0
1992  8  8  0  0
1992  8  9  0  0
1992  8 10  0  0
1992  8 11  0  0
1992  8 12  0  0
1992  8 13  0  0
1992  8 14  0  0
1992  8 15  0  0
1992  8 16  0  0
1992  8 17  0  0
1992  8 18  0  0
1992  8 19  0  0
1992  8 20  0  0
1992  8 21  0  0
1992  8 22  0  0
1992  8 23  0  0
1992  8 24  0  0
1992  8 25  0  0
1992  8 26  0  0
1992  8 27  0  0
1992  8 28  0  0
1992  8 29  0  0
1992  8 30  0  0
1992  8 31  0  0
1992  9  1  0  0
1992  9  2  0  0
1992  9  3  0  0
1992  9  4  0  0
1992  9  5  0  0
1992  9  6  0  0
1992  9  7  0  0
1992  9  8  0  0
1992  9  9  0  0
1992  9 10  0  0
1992  9 11  0  0
1992  9 12  0  0
1992  9 13  0  0
1992  9 14  0  0
1992  9 15  0  0
1992  9 16  0  0
1992  9 17  0  0
1992  9 18  0  0
1992  9 19  0  0
1992  9 20  0  0
1992  9 21  0  0
1992  9 22  0  0
1992  9 23  0  0
1992  9 24  0  0
1992  9 25  0  0
1992  9 26  0  0
1992  9 27  0  0
1992  9 28  0  0
1992  9 29  0  0
1992  9 30  0  0
1992 10  1  0  0
1992 10  2  0  0
1992 10  3  0  0
1992 10  4  0  0
1992 10  5  0  0
1992 10  6  0  0
1992 10  7  0  0
1992 10  8  0  0
1992 10  9  0  0
1992 10 10  0  0
1992 10 11  0  0
1992 10 12  0  0
1992 10 13  0  0
1992 10 14  0  0
1992 10 15  0  0
1992 10 16  0  0
1992 10 17  0  0
1992 10 18  0  0
1992 10 19  0  0
1992 10 20  0  0
1992 10 21  0  0
1992 10 22  0  0
1992 10 23  0  0
1992 10 24  0  0
1992 10 25  0  0
1992 10 26  0  0
1992 10 27  0  0
1992 10 28  0  0
1992 10 29  0  0
1992 10 30  0  0
1992 10 31  0  0
1992 11  1  0  0
1992 11  2  0  0
1992 11  3  0  0
1992 11  4  0  0
1992 11  5  0  0
1992 11  6  0  0
1992 11  7  0  0
1992 11  8  0  0
1992 11  9  0  0
1992 11 10  0  0
1992 11 11  0  0
1992 11 12  0  0
1992 11 13  0  0
1992 11 14  0  0
1992 11 15  0  0
1992 11 16  0  0
1992 11 17  0  0
1992 11 18  0  0
1992 11 19  0  0
1992 11 20  0  0
1992 11 21  0  0
1992 11 22  0  0
1992 11 23  0  0
1992 11 24  0  0
1992 11 25  0  0
1992 11 26  0  0
1992 11 27  0  0
1992 11 28  0  0
1992 11 29  0  0
1992 11 30  0  0
1992 12  1  0  0
1992 12  2  0  0
1992 12  3  0  0
1992 12  4  0  0
1992 12  5  0  0
1992 12  6  0  0
1992 12  7  0  0
1992 12  8  0  0
1992 12  9  0  0
1992 12 10  0  0
1992 12 11  0  0
1992 12 12  0  0
1992 12 13  0  0
1992 12 14  0  0
1992 12 15  0  0
1992 12 16  0  0
1992 12 17  0  0
1992 12 18  0  0
1992 12 19  0  0
1992 12 20  0  0
1992 12 21  0  0
1992 12 22  0  0
1992 12 23  0  0
1992 12 24  0  0
1992 12 25  0  0
1992 12 26  0  0
1992 12 27  0  0
1992 12 28  0  0
1992 12 29  0  0
1992 12 30  0  0
1992 12 31  0  0
1993  1  1  0  0
1993  1  2  0  0
1993  1  3  0  0
1993  1  4  0  0
1993  1  5  0  0
1993  1  6  0  0
1993  1  7  0  0
1993  1  8  0  0
1993  1  9  0  0
1993  1 10  0  0
1993  1 11  0  0
1993  1 12  0  0
1993  1 13  0  0
1993  1 14  0  0
1993  1 15  0  0
1993  1 16  0  0
1993  1 17  0  0
1993  1 18  0  0
1993  1 19  0  0
1993  1 20  0  0
1993  1 21  0  0
1993  1 22  0  0
1993  1 23  0  0
1993  1 24  0  0
1993  1 25  0  0
1993  1 26  0  0
1993  1 27  0  0
1993  1 28  0  0
1993  1 29  0  0
1993  1 30  0  0
1993  1 31  0  0
1993  2  1  0  0
1993  2  2  0  0
1993  2  3  0  0
1993  2  4  0  0
1993  2  5  0  0
1993  2  6  0  0
1993  2  7  0  0
1993  2  8  0  0
1993  2  9  0  0
1993  2 10  0  0
1993  2 11  0  0
1993  2 12  0  0
1993  2 13  0  0
1993  2 14  0  0
1993  2 15  0  0
1993  2 16  0  0
1993  2 17  0  0
1993  2 18  0  0
1993  2 19  0  0
1993  2 20  0  0
1993  2 21  0  0
1993  2 22  0  0
1993  2 23  0  0
1993  2 24  0  0
1993  2 25  0  0
1993  2 26  0  0
1993  2 27  0  0
1993  2 28  0  0
1993  3  1  0  0
1993  3  2  0  0
1993  3  3  0  0
1993  3  4  0  0
1993  3  5  0  0
1993  3  6  0  0
1993  3  7  0  0
1993  3  8  0  0
1993  3  9  0  0
1993  3 10  0  0
1993  3 11  0  0
1993  3 12  0  0
1993  3 13  0  0
1993  3 14  0  0
1993  3 15  0  0
1993  3 16  0  0
1993  3 17  0  0
1993  3 18  0  0
1993  3 19  0  0
1993  3 20  0  0
1993  3 21  0  0
1993  3 22  0  0
1993  3 23  0  0
1993  3 24  0  0
1993  3 25  0  0
1993  3 26  0  0
1993  3 27  0  0
1993  3 28  0  0
1993  3 29  0  0
1993  3 30  0  0
1993  3 31  0  0
1993  4  1  0  0
1993  4  2  0  0
1993  4  3  0  0
1993  4  4  0  0
1993  4  5  0  0
1993  4  6  0  0
1993  4  7  0  0
1993  4  8  0  0
1993  4  9  0  0
1993  4 10  0  0
1993  4 11  0  0
1993  4 12  0  0
1993  4 13  0  0
1993  4 14  0  0
1993  4 15  0  0
1993  4 16  0  0
1993  4 17  0  0
1993  4 18  0  0
1993  4 19  0  0
1993  4 20  0  0
1993  4 21  0  0
1993  4 22  0  0
1993  4 23  0  0
1993  4 24  0  0
1993  4 25  0  0
1993  4 26  0  0
1993  4 27  0  0
1993  4 28  0  0
1993  4 29  0  0
1993  4 30  0  0
1993  5  1  0  0
1993  5  2  0  0
1993  5  3  0  0
1993  5  4  0  0
1993  5  5  0  0
1993  5  6  0  0
1993  5  7  0  0
1993  5  8  0  0
1993  5  9  0  0
1993  5 10  0  0
1993  5 11  0  0
1993  5 12  0  0
1993  5 13  0  0
1993  5 14  0  0
1993  5 15  0  0
1993  5 16  0  0
1993  5 17  0  0
1993  5 18  0  0
1993  5 19  0  0
1993  5 20  0  0
1993  5 21  0  0
1993  5 22  0  0
1993  5 23  0  0
1993  5 24  0  0
1993  5 25  0  0
1993  5 26  0  0
1993  5 27  0  0
1993  5 28  0  0
1993  5 29  0  0
1993  5 30  0  0
1993  5 31  0  0
1993  6  1  0  0
1993  6  2  0  0
1993  6  3  0  0
1993  6  4  0  0
1993  6  5  0  0
1993  6  6  0  0
1993  6  7  0  0
1993  6  8  0  0
1993  6  9  0  0
1993  6 10  0  0
1993  6 11  0  0
1993  6 12  0  0
1993  6 13  0  0
1993  6 14  0  0
1993  6 15  0  0
1993  6 16  0  0
1993  6 17  0  0
1993  6 18  0  0
1993  6 19  0  0
1993  6 20  0  0
1993  6 21  0  0
1993  6 22  0  0
1993  6 23  0  0
1993  6 24  0  0
1993  6 25  0  0
1993  6 26  0  0
1993  6 27  0  0
1993  6 28  0  0
1993  6 29  0  0
1993  6 30  0  0
1993  7  1  0  0
1993  7  2  0  0
1993  7  3  0  0
1993  7  4  0  0
1993  7  5  0  0
1993  7  6  0  0
1993  7  7  0  0
1993  7  8  0  0
1993  7  9  0  0
1993  7 10  0  0
1993  7 11  0  0
1993  7 12  0  0
1993  7 13  0  0
1993  7 14  0  0
1993  7 15  0  0
1993  7 16  0  0
1993  7 17  0  0
1993  7 18  0  0
1993  7 19  0  0
1993  7 20  0  0
1993  7 21  0  0
1993  7 22  0  0
1993  7 23  0  0
1993  7 24  0  0
1993  7 25  0  0
1993  7 26  0  0
1993  7 27  0  0
1993  7 28  0  0
1993  7 29  0  0
1993  7 30  0  0
1993  7 31  0  0
1993  8  1  0  0
1993  8  2  0  0
1993  8  3  0  0
1993  8  4  0  0
1993  8  5  0  0
1993  8  6  0  0
1993  8  7  0  0
1993  8  8  0  0
1993  8  9  0  0
1993  8 10  0  0
1993  8 11  0  0
1993  8 12  0  0
1993  8 13  0  0
1993  8 14  0  0
1993  8 15  0  0
1993  8 16  0  0
1993  8 17  0  0
1993  8 18  0  0
1993  8 19  0  0
1993  8 20  0  0
1993  8 21  0  0
1993  8 22  0  0
1993  8 23  0  0
1993  8 24  0  0
1993  8 25  0  0
1993  8 26  0  0
1993  8 27  0  0
1993  8 28  0  0
1993  8 29  0  0
1993  8 30  0  0
1993  8 31  0  0
1993  9  1  0  0
1993  9  2  0  0
1993  9  3  0  0
1993  9  4  0  0
1993  9  5  0  0
1993  9  6  0  0
1993  9  7  0  0
1993  9  8  0  0
1993  9  9  0  0
1993  9 10  0  0
1993  9 11  0  0
1993  9 12  0  0
1993  9 13  0  0
1993  9 14  0  0
1993  9 15  0  0
1993  9 16  0  0
1993  9 17  0  0
1993  9 18  0  0
1993  9 19  0  0
1993  9 20  0  0
1993  9 21  0  0
1993  9 22  0  0
1993  9 23  0  0
1993  9 24  0  0
1993  9 25  0  0
1993  9 26  0  0
1993  9 27  0  0
1993  9 28  0  0
1993  9 29  0  0
1993  9 30  0  0
1993 10  1  0  0
1993 10  2  0  0
1993 10  3  0  0
1993 10  4  0  0
1993 10  5  0  0
1993 10  6  0  0
1993 10  7  0  0
1993 10  8  0  0
1993 10  9  0  0
1993 10 10  0  0
1993 10 11  0  0
1993 10 12  0  0
1993 10 13  0  0
1993 10 14  0  0
1993 10 15  0  0
1993 10 16  0  0
1993 10 17  0  0
1993 10 18  0  0
1993 10 19  0  0
1993 10 20  0  0
1993 10 21  0  0
1993 10 22  0  0
1993 10 23  0  0
1993 10 24  0  0
1993 10 25  0  0
1993 10 26  0  0
1993 10 27  0  0
1993 10 28  0  0
1993 10 29  0  0
1993 10 30  0  0
1993 10 31  0  0
1993 11  1  0  0
1993 11  2  0  0
1993 11  3  0  0
1993 11  4  0  0
1993 11  5  0  0
1993 11  6  0  0
1993 11  7  0  0
1993 11  8  0  0
1993 11  9  0  0
1993 11 10  0  0
1993 11 11  0  0
1993 11 12  0  0
1993 11 13  0  0
1993 11 14  0  0
1993 11 15  0  0
1993 11 16  0  0
1993 11 17  0  0
1993 11 18  0  0
1993 11 19  0  0
1993 11 20  0  0
1993 11 21  0  0
1993 11 22  0  0
1993 11 23  0  0
1993 11 24  0  0
1993 11 25  0  0
1993 11 26  0  0
1993 11 27  0  0
1993 11 28  0  0
1993 11 29  0  0
1993 11 30  0  0
1993 12  1  0  0
1993 12  2  0  0
1993 12  3  0  0
1993 12  4  0  0
1993 12  5  0  0
1993 12  6  0  0
1993 12  7  0  0
1993 12  8  0  0
1993 12  9  0  0
1993 12 10  0  0
1993 12 11  0  0
1993 12 12  0  0
1993 12 13  0  0
1993 12 14  0  0
1993 12 15  0  0
1993 12 16  0  0
1993 12 17  0  0
1993 12 18  0  0
1993 12 19  0  0
1993 12 20  0  0
1993 12 21  0  0
1993 12 22  0  0
1993 12 23  0  0
1993 12 24  0  0
1993 12 25  0  0
1993 12 26  0  0
1993 12 27  0  0
1993 12 28  0  0
1993 12 29  0  0
1993 12 30  0  0
1993 12 31  0  0
1994  1  1  0  0
1994  1  2  0  0
1994  1  3  0  0
1994  1  4  0  0
1994  1  5  0  0
1994  1  6  0  0
1994  1  7  0  0
1994  1  8  0  0
1994  1  9  0  0
1994  1 10  0  0
1994  1 11  0  0
1994  1 12  0  0
1994  1 13  0  0
1994  1 14  0  0
1994  1 15  0  0
1994  1 16  0  0
1994  1 17  0  0
1994  1 18  0  0
1994  1 19  0  0
1994  1 20  0  0
1994  1 21  0  0
1994  1 22  0  0
1994  1 23  0  0
1994  1 24  0  0
1994  1 25  0  0
1994  1 26  0  0
1994  1 27  0  0
1994  1 28  0  0
1994  1 29  0  0
1994  1 30  0  0
1994  1 31  0  0
1994  2  1  0  0
1994  2  2  0  0
1994  2  3  0  0
1994  2  4  0  0
1994  2  5  0  0
1994  2  6  0  0
1994  2  7  0  0
1994  2  8  0  0
1994  2  9  0  0
1994  2 10  0  0
1994  2 11  0  0
1994  2 12  0  0
1994  2 13  0  0
1994  2 14  0  0
1994  2 15  0  0
1994  2 16  0  0
1994  2 17  0  0
1994  2 18  0  0
1994  2 19  0  0
1994  2 20  0  0
1994  2 21  0  0
1994  2 22  0  0
1994  2 23  0  0
1994  2 24  0  0
1994  2 25  0  0
1994  2 26  0  0
1994  2 27  0  0
1994  2 28  0  0
1994  3  1  0  0
1994  3  2  0  0
1994  3  3  0  0
1994  3  4  0  0
1994  3  5  0  0
1994  3  6  0  0
1994  3  7  0  0
1994  3  8  0  0
1994  3  9  0  0
1994  3 10  0  0
1994  3 11  0  0
1994  3 12  0  0
1994  3 13  0  0
1994  3 14  0  0
1994  3 15  0  0
1994  3 16  0  0
1994  3 17  0  0
1994  3 18  0  0
1994  3 19  0  0
1994  3 20  0  0
1994  3 21  0  0
1994  3 22  0  0
1994  3 23  0  0
1994  3 24  0  0
1994  3 25  0  0
1994  3 26  0  0
1994  3 27  0  0
1994  3 28  0  0
1994  3 29  0  0
1994  3 30  0  0
1994  3 31  0  0
1994  4  1  0  0
1994  4  2  0  0
1994  4  3  0  0
1994  4  4  0  0
1994  4  5  0  0
1994  4  6  0  0
1994  4  7  0  0
1994  4  8  0  0
1994  4  9  0  0
1994  4 10  0  0
1994  4 11  0  0
1994  4 12  0  0
1994  4 13  0  0
1994  4 14  0  0
1994  4 15  0  0
1994  4 16  0  0
1994  4 17  0  0
1994  4 18  0  0
1994  4 19  0  0
1994  4 20  0  0
1994  4 21  0  0
1994  4 22  0  0
1994  4 23  0  0
1994  4 24  0  0
1994  4 25  0  0
1994  4 26  0  0
1994  4 27  0  0
1994  4 28  0  0
1994  4 29  0  0
1994  4 30  0  0
1994  5  1  0  0
1994  5  2  0  0
1994  5  3  0  0
1994  5  4  0  0
1994  5  5  0  0
1994  5  6  0  0
1994  5  7  0  0
1994  5  8  0  0
1994  5  9  0  0
1994  5 10  0  0
1994  5 11  0  0
1994  5 12  0  0
1994  5 13  0  0
1994  5 14  0  0
1994  5 15  0  0
1994  5 16  0  0
1994  5 17  0  0
1994  5 18  0  0
1994  5 19  0  0
1994  5 20  0  0
1994  5 21  0  0
1994  5 22  0  0
1994  5 23  0  0
1994  5 24  0  0
1994  5 25  0  0
1994  5 26  0  0
1994  5 27  0  0
1994  5 28  0  0
1994  5 29  0  0
1994  5 30  0  0
1994  5 31  0  0
1994  6  1  0  0
1994  6  2  0  0
1994  6  3  0  0
1994  6  4  0  0
1994  6  5  0  0
1994  6  6  0  0
1994  6  7  0  0
1994  6  8  0  0
1994  6  9  0  0
1994  6 10  0  0
1994  6 11  0  0
1994  6 12  0  0
1994  6 13  0  0
1994  6 14  0  0
1994  6 15  0  0
1994  6 16  0  0
1994  6 17  0  0
1994  6 18  0  0
1994  6 19  0  0
1994  6 20  0  0
1994  6 21  0  0
1994  6 22  0  0
1994  6 23  0  0
1994  6 24  0  0
1994  6 25  0  0
1994  6 26  0  0
1994  6 27  0  0
1994  6 28  0  0
1994  6 29  0  0
1994  6 30  0  0
1994  7  1  0  0
1994  7  2  0  0
1994  7  3  0  0
1994  7  4  0  0
1994  7  5  0  0
1994  7  6  0  0
1994  7  7  0  0
1994  7  8  0  0
1994  7  9  0  0
1994  7 10  0  0
1994  7 11  0  0
1994  7 12  0  0
1994  7 13  0  0
1994  7 14  0  0
1994  7 15  0  0
1994  7 16  0  0
1994  7 17  0  0
1994  7 18  0  0
1994  7 19  0  0
1994  7 20  0  0
1994  7 21  0  0
1994  7 22  0  0
1994  7 23  0  0
1994  7 24  0  0
1994  7 25  0  0
1994  7 26  0  0
1994  7 27  0  0
1994  7 28  0  0
1994  7 29  0  0
1994  7 30  0  0
1994  7 31  0  0
1994  8  1  0  0
1994  8  2  0  0
1994  8  3  0  0
1994  8  4  0  0
1994  8  5  0  0
1994  8  6  0  0
1994  8  7  0  0
1994  8  8  0  0
1994  8  9  0  0
1994  8 10  0  0
1994  8 11  0  0
1994  8 12  0  0
1994  8 13  0  0
1994  8 14  0  0
1994  8 15  0  0
1994  8 16  0  0
1994  8 17  0  0
1994  8 18  0  0
1994  8 19  0  0
1994  8 20  0  0
1994  8 21  0  0
1994  8 22  0  0
1994  8 23  0  0
1994  8 24  0  0
1994  8 25  0  0
1994  8 26  0  0
1994  8 27  0  0
1994  8 28  0  0
1994  8 29  0  0
1994  8 30  0  0
1994  8 31  0  0
1994  9  1  0  0
1994  9  2  0  0
1994  9  3  0  0
1994  9  4  0  0
1994  9  5  0  0
1994  9  6  0  0
1994  9  7  0  0
1994  9  8  0  0
1994  9  9  0  0
1994  9 10  0  0
1994  9 11  0  0
1994  9 12  0  0
1994  9 13  0  0
1994  9 14  0  0
1994  9 15  0  0
1994  9 16  0  0
1994  9 17  0  0
1994  9 18  0  0
1994  9 19  0  0
1994  9 20  0  0
1994  9 21  0  0
1994  9 22  0  0
1994  9 23  0  0
1994  9 24  0  0
1994  9 25  0  0
1994  9 26  0  0
1994  9 27  0  0
1994  9 28  0  0
1994  9 29  0  0
1994  9 30  0  0
1994 10  1  0  0
1994 10  2  0  0
1994 10  3  0  0
1994 10  4  0  0
1994 10  5  0  0
1994 10  6  0  0
1994 10  7  0  0
1994 10  8  0  0
1994 10  9  0  0
1994 10 10  0  0
1994 10 11  0  0
1994 10 12  0  0
1994 10 13  0  0
1994 10 14  0  0
1994 10 15  0  0
1994 10 16  0  0
1994 10 17  0  0
1994 10 18  0  0
1994 10 19  0  0
1994 10 20  0  0
1994 10 21  0  0
1994 10 22  0  0
1994 10 23  0  0
1994 10 24  0  0
1994 10 25  0  0
1994 10 26  0  0
1994 10 27  0  0
1994 10 28  0  0
1994 10 29  0  0
1994 10 30  0  0
1994 10 31  0  0
1994 11  1  0  0
1994 11  2  0  0
1994 11  3  0  0
1994 11  4  0  0
1994 11  5  0  0
1994 11  6  0  0
1994 11  7  0  0
1994 11  8  0  0
1994 11  9  0  0
1994 11 10  0  0
1994 11 11  0  0
1994 11 12  0  0
1994 11 13  0  0
1994 11 14  0  0
1994 11 15  0  0
1994 11 16  0  0
1994 11 17  0  0
1994 11 18  0  0
1994 11 19  0  0
1994 11 20  0  0
1994 11 21  0  0
1994 11 22  0  0
1994 11 23  0  0
1994 11 24  0  0
1994 11 25  0  0
1994 11 26  0  0
1994 11 27  0  0
1994 11 28  0  0
1994 11 29  0  0
1994 11 30  0  0
1994 12  1  0  0
1994 12  2  0  0
1994 12  3  0  0
1994 12  4  0  0
1994 12  5  0  0
1994 12  6  0  0
1994 12  7  0  0
1994 12  8  0  0
1994 12  9  0  0
1994 12 10  0  0
1994 12 11  0  0
1994 12 12  0  0
1994 12 13  0  0
1994 12 14  0  0
1994 12 15  0  0
1994 12 16  0  0
1994 12 17  0  0
1994 12 18  0  0
1994 12 19  0  0
1994 12 20  0  0
1994 12 21  0  0
1994 12 22  0  0
1994 12 23  0  0
1994 12 24  0  0
1994 12 25  0  0
1994 12 26  0  0
1994 12 27  0  0
1994 12 28  0  0
1994 12 29  0  0
1994 12 30  0  0
1994 12 31  0  0
1995  1  1  0  0
1995  1  2  0  0
1995  1  3  0  0
1995  1  4  0  0
1995  1  5  0  0
1995  1  6  0  0
1995  1  7  0  0
1995  1  8  0  0
1995  1  9  0  0
1995  1 10  0  0
1995  1 11  0  0
1995  1 12  0  0
1995  1 13  0  0
1995  1 14  0  0
1995  1 15  0  0
1995  1 16  0  0
1995  1 17  0  0
1995  1 18  0  0
1995  1 19  0  0
1995  1 20  0  0
1995  1 21  0  0
1995  1 22  0  0
1995  1 23  0  0
1995  1 24  0  0
1995  1 25  0  0
1995  1 26  0  0
1995  1 27  0  0
1995  1 28  0  0
1995  1 29  0  0
1995  1 30  0  0
1995  1 31  0  0
1995  2  1  0  0
1995  2  2  0  0
1995  2  3  0  0
1995  2  4  0  0
1995  2  5  0  0
1995  2  6  0  0
1995  2  7  0  0
1995  2  8  0  0
1995  2  9  0  0
1995  2 10  0  0
1995  2 11  0  0
1995  2 12  0  0
1995  2 13  0  0
1995  2 14  0  0
1995  2 15  0  0
1995  2 16  0  0
1995  2 17  0  0
1995  2 18  0  0
1995  2 19  0  0
1995  2 20  0  0
1995  2 21  0  0
1995  2 22  0  0
1995  2 23  0  0
1995  2 24  0  0
1995  2 25  0  0
1995  2 26  0  0
1995  2 27  0  0
1995  2 28  0  0
1995  3  1  0  0
1995  3  2  0  0
1995  3  3  0  0
1995  3  4  0  0
1995  3  5  0  0
1995  3  6  0  0
1995  3  7  0  0
1995  3  8  0  0
1995  3  9  0  0
1995  3 10  0  0
1995  3 11  0  0
1995  3 12  0  0
1995  3 13  0  0
1995  3 14  0  0
1995  3 15  0  0
1995  3 16  0  0
1995  3 17  0  0
1995  3 18  0  0
1995  3 19  0  0
1995  3 20  0  0
1995  3 21  0  0
1995  3 22  0  0
1995  3 23  0  0
1995  3 24  0  0
1995  3 25  0  0
1995  3 26  0  0
1995  3 27  0  0
1995  3 28  0  0
1995  3 29  0  0
1995  3 30  0  0
1995  3 31  0  0
1995  4  1  0  0
1995  4  2  0  0
1995  4  3  0  0
1995  4  4  0  0
1995  4  5  0  0
1995  4  6  0  0
1995  4  7  0  0
1995  4  8  0  0
1995  4  9  0  0
1995  4 10  0  0
1995  4 11  0  0
1995  4 12  0  0
1995  4 13  0  0
1995  4 14  0  0
1995  4 15  0  0
1995  4 16  0  0
1995  4 17  0  0
1995  4 18  0  0
1995  4 19  0  0
1995  4 20  0  0
1995  4 21  0  0
1995  4 22  0  0
1995  4 23  0  0
1995  4 24  0  0
1995  4 25  0  0
1995  4 26  0  0
1995  4 27  0  0
1995  4 28  0  0
1995  4 29  0  0
1995  4 30  0  0
1995  5  1  0  0
1995  5  2  0  0
1995  5  3  0  0
1995  5  4  0  0
1995  5  5  0  0
1995  5  6  0  0
1995  5  7  0  0
1995  5  8  0  0
1995  5  9  0  0
1995  5 10  0  0
1995  5 11  0  0
1995  5 12  0  0
1995  5 13  0  0
1995  5 14  0  0
1995  5 15  0  0
1995  5 16  0  0
1995  5 17  0  0
1995  5 18  0  0
1995  5 19  0  0
1995  5 20  0  0
1995  5 21  0  0
1995  5 22  0  0
1995  5 23  0  0
1995  5 24  0  0
1995  5 25  0  0
1995  5 26  0  0
1995  5 27  0  0
1995  5 28  0  0
1995  5 29  0  0
1995  5 30  0  0
1995  5 31  0  0
1995  6  1  0  0
1995  6  2  0  0
1995  6  3  0  0
1995  6  4  0  0
1995  6  5  0  0
1995  6  6  0  0
1995  6  7  0  0
1995  6  8  0  0
1995  6  9  0  0
1995  6 10  0  0
1995  6 11  0  0
1995  6 12  0  0
1995  6 13  0  0
1995  6 14  0  0
1995  6 15  0  0
1995  6 16  0  0
1995  6 17  0  0
1995  6 18  0  0
1995  6 19  0  0
1995  6 20  0  0
1995  6 21  0  0
1995  6 22  0  0
1995  6 23  0  0
1995  6 24  0  0
1995  6 25  0  0
1995  6 26  0  0
1995  6 27  0  0
1995  6 28  0  0
1995  6 29  0  0
1995  6 30  0  0
1995  7  1  0  0
1995  7  2  0  0
1995  7  3  0  0
1995  7  4  0  0
1995  7  5  0  0
1995  7  6  0  0
1995  7  7  0  0
1995  7  8  0  0
1995  7  9  0  0
1995  7 10  0  0
1995  7 11  0  0
1995  7 12  0  0
1995  7 13  0  0
1995  7 14  0  0
1995  7 15  0  0
1995  7 16  0  0
1995  7 17  0  0
1995  7 18  0  0
1995  7 19  0  0
1995  7 20  0  0
1995  7 21  0  0
1995  7 22  0  0
1995  7 23  0  0
1995  7 24  0  0
1995  7 25  0  0
1995  7 26  0  0
1995  7 27  0  0
1995  7 28  0  0
1995  7 29  0  0
1995  7 30  0  0
1995  7 31  0  0
1995  8  1  0  0
1995  8  2  0  0
1995  8  3  0  0
1995  8  4  0  0
1995  8  5  0  0
1995  8  6  0  0
1995  8  7  0  0
1995  8  8  0  0
1995  8  9  0  0
1995  8 10  0  0
1995  8 11  0  0
1995  8 12  0  0
1995  8 13  0  0
1995  8 14  0  0
1995  8 15  0  0
1995  8 16  0  0
1995  8 17  0  0
1995  8 18  0  0
1995  8 19  0  0
1995  8 20  0  0
1995  8 21  0  0
1995  8 22  0  0
1995  8 23  0  0
1995  8 24  0  0
1995  8 25  0  0
1995  8 26  0  0
1995  8 27  0  0
1995  8 28  0  0
1995  8 29  0  0
1995  8 30  0  0
1995  8 31  0  0
1995  9  1  0  0
1995  9  2  0  0
1995  9  3  0  0
1995  9  4  0  0
1995  9  5  0  0
1995  9  6  0  0
1995  9  7  0  0
1995  9  8  0  0
1995  9  9  0  0
1995  9 10  0  0
1995  9 11  0  0
1995  9 12  0  0
1995  9 13  0  0
1995  9 14  0  0
1995  9 15  0  0
1995  9 16  0  0
1995  9 17  0  0
1995  9 18  0  0
1995  9 19  0  0
1995  9 20  0  0
1995  9 21  0  0
1995  9 22  0  0
1995  9 23  0  0
1995  9 24  0  0
1995  9 25  0  0
1995  9 26  0  0
1995  9 27  0  0
1995  9 28  0  0
1995  9 29  0  0
1995  9 30  0  0
1995 10  1  0  0
1995 10  2  0  0
1995 10  3  0  0
1995 10  4  0  0
1995 10  5  0  0
1995 10  6  0  0
1995 10  7  0  0
1995 10  8  0  0
1995 10  9  0  0
1995 10 10  0  0
1995 10 11  0  0
1995 10 12  0  0
1995 10 13  0  0
1995 10 14  0  0
1995 10 15  0  0
1995 10 16  0  0
1995 10 17  0  0
1995 10 18  0  0
1995 10 19  0  0
1995 10 20  0  0
1995 10 21  0  0
1995 10 22  0  0
1995 10 23  0  0
1995 10 24  0  0
1995 10 25  0  0
1995 10 26  0  0
1995 10 27  0  0
1995 10 28  0  0
1995 10 29  0  0
1995 10 30  0  0
1995 10 31  0  0
1995 11  1  0  0
1995 11  2  0  0
1995 11  3  0  0
1995 11  4  0  0
1995 11  5  0  0
1995 11  6  0  0
1995 11  7  0  0
1995 11  8  0  0
1995 11  9  0  0
1995 11 10  0  0
1995 11 11  0  0
1995 11 12  0  0
1995 11 13  0  0
1995 11 14  0  0
1995 11 15  0  0
1995 11 16  0  0
1995 11 17  0  0
1995 11 18  0  0
1995 11 19  0  0
1995 11 20  0  0
1995 11 21  0  0
1995 11 22  0  0
1995 11 23  0  0
1995 11 24  0  0
1995 11 25  0  0
1995 11 26  0  0
1995 11 27  0  0
1995 11 28  0  0
1995 11 29  0  0
1995 11 30  0  0
1995 12  1  0  0
1995 12  2  0  0
1995 12  3  0  0
1995 12  4  0  0
1995 12  5  0  0
1995 12  6  0  0
1995 12  7  0  0
1995 12  8  0  0
1995 12  9  0  0
1995 12 10  0  0
1995 12 11  0  0
1995 12 12  0  0
1995 12 13  0  0
1995 12 14  0  0
1995 12 15  0  0
1995 12 16  0  0
1995 12 17  0  0
1995 12 18  0  0
1995 12 19  0  0
1995 12 20  0  0
1995 12 21  0  0
1995 12 22  0  0
1995 12 23  0  0
1995 12 24  0  0
1995 12 25  0  0
1995 12 26  0  0
1995 12 27  0  0
1995 12 28  0  0
1995 12 29  0  0
1995 12 30  0  0
1995 12 31  0  0
1996  1  1  0  0
1996  1  2  0  0
1996  1  3  0  0
1996  1  4  0  0
1996  1  5  0  0
1996  1  6  0  0
1996  1  7  0  0
1996  1  8  0  0
1996  1  9  0  0
1996  1 10  0  0
1996  1 11  0  0
1996  1 12  0  0
1996  1 13  0  0
1996  1 14  0  0
1996  1 15  0  0
1996  1 16  0  0
1996  1 17  0  0
1996  1 18  0  0
1996  1 19  0  0
1996  1 20  0  0
1996  1 21  0  0
1996  1 22  0  0
1996  1 23  0  0
1996  1 24  0  0
1996  1 25  0  0
1996  1 26  0  0
1996  1 27  0  0
1996  1 28  0  0
1996  1 29  0  0
1996  1 30  0  0
1996  1 31  0  0
1996  2  1  0  0
1996  2  2  0  0
1996  2  3  0  0
1996  2  4  0  0
1996  2  5  0  0
1996  2  6  0  0
1996  2  7  0  0
1996  2  8  0  0
1996  2  9  0  0
1996  2 10  0  0
1996  2 11  0  0
1996  2 12  0  0
1996  2 13  0  0
1996  2 14  0  0
1996  2 15  0  0
1996  2 16  0  0
1996  2 17  0  0
1996  2 18  0  0
1996  2 19  0  0
1996  2 20  0  0
1996  2 21  0  0
1996  2 22  0  0
1996  2 23  0  0
1996  2 24  0  0
1996  2 25  0  0
1996  2 26  0  0
1996  2 27  0  0
1996  2 28  0  0
1996  2 29  0  0
1996  3  1  0  0
1996  3  2  0  0
1996  3  3  0  0
1996  3  4  0  0
1996  3  5  0  0
1996  3  6  0  0
1996  3  7  0  0
1996  3  8  0  0
1996  3  9  0  0
1996  3 10  0  0
1996  3 11  0  0
1996  3 12  0  0
1996  3 13  0  0
1996  3 14  0  0
1996  3 15  0  0
1996  3 16  0  0
1996  3 17  0  0
1996  3 18  0  0
1996  3 19  0  0
1996  3 20  0  0
1996  3 21  0  0
1996  3 22  0  0
1996  3 23  0  0
1996  3 24  0  0
1996  3 25  0  0
1996  3 26  0  0
1996  3 27  0  0
1996  3 28  0  0
1996  3 29  0  0
1996  3 30  0  0
1996  3 31  0  0
1996  4  1  0  0
1996  4  2  0  0
1996  4  3  0  0
1996  4  4  0  0
1996  4  5  0  0
1996  4  6  0  0
1996  4  7  0  0
1996  4  8  0  0
1996  4  9  0  0
1996  4 10  0  0
1996  4 11  0  0
1996  4 12  0  0
1996  4 13  0  0
1996  4 14  0  0
1996  4 15  0  0
1996  4 16  0  0
1996  4 17  0  0
1996  4 18  0  0
1996  4 19  0  0
1996  4 20  0  0
1996  4 21  0  0
1996  4 22  0  0
1996  4 23  0  0
1996  4 24  0  0
1996  4 25  0  0
1996  4 26  0  0
1996  4 27  0  0
1996  4 28  0  0
1996  4 29  0  0
1996  4 30  0  0
1996  5  1  0  0
1996  5  2  0  0
1996  5  3  0  0
1996  5  4  0  0
1996  5  5  0  0
1996  5  6  0  0
1996  5  7  0  0
1996  5  8  0  0
1996  5  9  0  0
1996  5 10  0  0
1996  5 11  0  0
1996  5 12  0  0
1996  5 13  0  0
1996  5 14  0  0
1996  5 15  0  0
1996  5 16  0  0
1996  5 17  0  0
1996  5 18  0  0
1996  5 19  0  0
1996  5 20  0  0
1996  5 21  0  0
1996  5 22  0  0
1996  5 23  0  0
1996  5 24  0  0
1996  5 25  0  0
1996  5 26  0  0
1996  5 27  0  0
1996  5 28  0  0
1996  5 29  0  0
1996  5 30  0  0
1996  5 31  0  0
1996  6  1  0  0
1996  6  2  0  0
1996  6  3  0  0
1996  6  4  0  0
1996  6  5  0  0
1996  6  6  0  0
1996  6  7  0  0
1996  6  8  0  0
1996  6  9  0  0
1996  6 10  0  0
1996  6 11  0  0
1996  6 12  0  0
1996  6 13  0  0
1996  6 14  0  0
1996  6 15  0  0
1996  6 16  0  0
1996  6 17  0  0
1996  6 18  0  0
1996  6 19  0  0
1996  6 20  0  0
1996  6 21  0  0
1996  6 22  0  0
1996  6 23  0  0
1996  6 24  0  0
1996  6 25  0  0
1996  6 26  0  0
1996  6 27  0  0
1996  6 28  0  0
1996  6 29  0  0
1996  6 30  0  0
1996  7  1  0  0
1996  7  2  0  0
1996  7  3  0  0
1996  7  4  0  0
1996  7  5  0  0
1996  7  6  0  0
1996  7  7  0  0
1996  7  8  0  0
1996  7  9  0  0
1996  7 10  0  0
1996  7 11  0  0
1996  7 12  0  0
1996  7 13  0  0
1996  7 14  0  0
1996  7 15  0  0
1996  7 16  0  0
1996  7 17  0  0
1996  7 18  0  0
1996  7 19  0  0
1996  7 20  0  0
1996  7 21  0  0
1996  7 22  0  0
1996  7 23  0  0
1996  7 24  0  0
1996  7 25  0  0
1996  7 26  0  0
1996  7 27  0  0
1996  7 28  0  0
1996  7 29  0  0
1996  7 30  0  0
1996  7 31  0  0
1996  8  1  0  0
1996  8  2  0  0
1996  8  3  0  0
1996  8  4  0  0
1996  8  5  0  0
1996  8  6  0  0
1996  8  7  0  0
1996  8  8  0  0
1996  8  9  0  0
1996  8 10  0  0
1996  8 11  0  0
1996  8 12  0  0
1996  8 13  0  0
1996  8 14  0  0
1996  8 15  0  0
1996  8 16  0  0
1996  8 17  0  0
1996  8 18  0  0
1996  8 19  0  0
1996  8 20  0  0
1996  8 21  0  0
1996  8 22  0  0
1996  8 23  0  0
1996  8 24  0  0
1996  8 25  0  0
1996  8 26  0  0
1996  8 27  0  0
1996  8 28  0  0
1996  8 29  0  0
1996  8 30  0  0
1996  8 31  0  0
1996  9  1  0  0
1996  9  2  0  0
1996  9  3  0  0
1996  9  4  0  0
1996  9  5  0  0
1996  9  6  0  0
1996  9  7  0  0
1996  9  8  0  0
1996  9  9  0  0
1996  9 10  0  0
1996  9 11  0  0
1996  9 12  0  0
1996  9 13  0  0
1996  9 14  0  0
1996  9 15  0  0
1996  9 16  0  0
1996  9 17  0  0
1996  9 18  0  0
1996  9 19  0  0
1996  9 20  0  0
1996  9 21  0  0
1996  9 22  0  0
1996  9 23  0  0
1996  9 24  0  0
1996  9 25  0  0
1996  9 26  0  0
1996  9 27  0  0
1996  9 28  0  0
1996  9 29  0  0
1996  9 30  0  0
1996 10  1  0  0
1996 10  2  0  0
1996 10  3  0  0
1996 10  4  0  0
1996 10  5  0  0
1996 10  6  0  0
1996 10  7  0  0
1996 10  8  0  0
1996 10  9  0  0
1996 10 10  0  0
1996 10 11  0  0
1996 10 12  0  0
1996 10 13  0  0
1996 10 14  0  0
1996 10 15  0  0
1996 10 16  0  0
1996 10 17  0  0
1996 10 18  0  0
1996 10 19  0  0
1996 10 20  0  0
1996 10 21  0  0
1996 10 22  0  0
1996 10 23  0  0
1996 10 24  0  0
1996 10 25  0  0
1996 10 26  0  0
1996 10 27  0  0
1996 10 28  0  0
1996 10 29  0  0
1996 10 30  0  0
1996 10 31  0  0
1996 11  1  0  0
1996 11  2  0  0
1996 11  3  0  0
1996 11  4  0  0
1996 11  5  0  0
1996 11  6  0  0
1996 11  7  0  0
1996 11  8  0  0
1996 11  9  0  0
1996 11 10  0  0
1996 11 11  0  0
1996 11 12  0  0
1996 11 13  0  0
1996 11 14  0  0
1996 11 15  0  0
1996 11 16  0  0
1996 11 17  0  0
1996 11 18  0  0
1996 11 19  0  0
1996 11 20  0  0
1996 11 21  0  0
1996 11 22  0  0
1996 11 23  0  0
1996 11 24  0  0
1996 11 25  0  0
1996 11 26  0  0
1996 11 27  0  0
1996 11 28  0  0
1996 11 29  0  0
1996 11 30  0  0
1996 12  1  0  0
1996 12  2  0  0
1996 12  3  0  0
1996 12  4  0  0
1996 12  5  0  0
1996 12  6  0  0
1996 12  7  0  0
1996 12  8  0  0
1996 12  9  0  0
1996 12 10  0  0
1996 12 11  0  0
1996 12 12  0  0
1996 12 13  0  0
1996 12 14  0  0
1996 12 15  0  0
1996 12 16  0  0
1996 12 17  0  0
1996 12 18  0  0
1996 12 19  0  0
1996 12 20  0  0
1996 12 21  0  0
1996 12 22  0  0
1996 12 23  0  0
1996 12 24  0  0
1996 12 25  0  0
1996 12 26  0  0
1996 12 27  0  0
1996 12 28  0  0
1996 12 29  0  0
1996 12 30  0  0
1996 12 31  0  0
1997  1  1  0  0
1997  1  2  0  0
1997  1  3  0  0
1997  1  4  0  0
1997  1  5  0  0
1997  1  6  0  0
1997  1  7  0  0
1997  1  8  0  0
1997  1  9  0  0
1997  1 10  0  0
1997  1 11  0  0
1997  1 12  0  0
1997  1 13  0  0
1997  1 14  0  0
1997  1 15  0  0
1997  1 16  0  0
1997  1 17  0  0
1997  1 18  0  0
1997  1 19  0  0
1997  1 20  0  0
1997  1 21  0  0
1997  1 22  0  0
1997  1 23  0  0
1997  1 24  0  0
1997  1 25  0  0
1997  1 26  0  0
1997  1 27  0  0
1997  1 28  0  0
1997  1 29  0  0
1997  1 30  0  0
1997  1 31  0  0
1997  2  1  0  0
1997  2  2  0  0
1997  2  3  0  0
1997  2  4  0  0
1997  2  5  0  0
1997  2  6  0  0
1997  2  7  0  0
1997  2  8  0  0
1997  2  9  0  0
1997  2 10  0  0
1997  2 11  0  0
1997  2 12  0  0
1997  2 13  0  0
1997  2 14  0  0
1997  2 15  0  0
1997  2 16  0  0
1997  2 17  0  0
1997  2 18  0  0
1997  2 19  0  0
1997  2 20  0  0
1997  2 21  0  0
1997  2 22  0  0
1997  2 23  0  0
1997  2 24  0  0
1997  2 25  0  0
1997  2 26  0  0
1997  2 27  0  0
1997  2 28  0  0
1997  3  1  0  0
1997  3  2  0  0
1997  3  3  0  0
1997  3  4  0  0
1997  3  5  0  0
1997  3  6  0  0
1997  3  7  0  0
1997  3  8  0  0
1997  3  9  0  0
1997  3 10  0  0
1997  3 11  0  0
1997  3 12  0  0
1997  3 13  0  0
1997  3 14  0  0
1997  3 15  0  0
1997  3 16  0  0
1997  3 17  0  0
1997  3 18  0  0
1997  3 19  0  0
1997  3 20  0  0
1997  3 21  0  0
1997  3 22  0  0
1997  3 23  0  0
1997  3 24  0  0
1997  3 25  0  0
1997  3 26  0  0
1997  3 27  0  0
1997  3 28  0  0
1997  3 29  0  0
1997  3 30  0  0
1997  3 31  0  0
1997  4  1  0  0
1997  4  2  0  0
1997  4  3  0  0
1997  4  4  0  0
1997  4  5  0  0
1997  4  6  0  0
1997  4  7  0  0
1997  4  8  0  0
1997  4  9  0  0
1997  4 10  0  0
1997  4 11  0  0
1997  4 12  0  0
1997  4 13  0  0
1997  4 14  0  0
1997  4 15  0  0
1997  4 16  0  0
1997  4 17  0  0
1997  4 18  0  0
1997  4 19  0  0
1997  4 20  0  0
1997  4 21  0  0
1997  4 22  0  0
1997  4 23  0  0
1997  4 24  0  0
1997  4 25  0  0
1997  4 26  0  0
1997  4 27  0  0
1997  4 28  0  0
1997  4 29  0  0
1997  4 30  0  0
1997  5  1  0  0
1997  5  2  0  0
1997  5  3  0  0
1997  5  4  0  0
1997  5  5  0  0
1997  5  6  0  0
1997  5  7  0  0
1997  5  8  0  0
1997  5  9  0  0
1997  5 10  0  0
1997  5 11  0  0
1997  5 12  0  0
1997  5 13  0  0
1997  5 14  0  0
1997  5 15  0  0
1997  5 16  0  0
1997  5 17  0  0
1997  5 18  0  0
1997  5 19  0  0
1997  5 20  0  0
1997  5 21  0  0
1997  5 22  0  0
1997  5 23  0  0
1997  5 24  0  0
1997  5 25  0  0
1997  5 26  0  0
1997  5 27  0  0
1997  5 28  0  0
1997  5 29  0  0
1997  5 30  0  0
1997  5 31  0  0
1997  6  1  0  0
1997  6  2  0  0
1997  6  3  0  0
1997  6  4  0  0
1997  6  5  0  0
1997  6  6  0  0
1997  6  7  0  0
1997  6  8  0  0
1997  6  9  0  0
1997  6 10  0  0
1997  6 11  0  0
1997  6 12  0  0
1997  6 13  0  0
1997  6 14  0  0
1997  6 15  0  0
1997  6 16  0  0
1997  6 17  0  0
1997  6 18  0  0
1997  6 19  0  0
1997  6 20  0  0
1997  6 21  0  0
1997  6 22  0  0
1997  6 23  0  0
1997  6 24  0  0
1997  6 25  0  0
1997  6 26  0  0
1997  6 27  0  0
1997  6 28  0  0
1997  6 29  0  0
1997  6 30  0  0
1997  7  1  0  0
1997  7  2  0  0
1997  7  3  0  0
1997  7  4  0  0
1997  7  5  0  0
1997  7  6  0  0
1997  7  7  0  0
1997  7  8  0  0
1997  7  9  0  0
1997  7 10  0  0
1997  7 11  0  0
1997  7 12  0  0
1997  7 13  0  0
1997  7 14  0  0
1997  7 15  0  0
1997  7 16  0  0
1997  7 17  0  0
1997  7 18  0  0
1997  7 19  0  0
1997  7 20  0  0
1997  7 21  0  0
1997  7 22  0  0
1997  7 23  0  0
1997  7 24  0  0
1997  7 25  0  0
1997  7 26  0  0
1997  7 27  0  0
1997  7 28  0  0
1997  7 29  0  0
1997  7 30  0  0
1997  7 31  0  0
1997  8  1  0  0
1997  8  2  0  0
1997  8  3  0  0
1997  8  4  0  0
1997  8  5  0  0
1997  8  6  0  0
1997  8  7  0  0
1997  8  8  0  0
1997  8  9  0  0
1997  8 10  0  0
1997  8 11  0  0
1997  8 12  0  0
1997  8 13  0  0
1997  8 14  0  0
1997  8 15  0  0
1997  8 16  0  0
1997  8 17  0  0
1997  8 18  0  0
1997  8 19  0  0
1997  8 20  0  0
1997  8 21  0  0
1997  8 22  0  0
1997  8 23  0  0
1997  8 24  0  0
1997  8 25  0  0
1997  8 26  0  0
1997  8 27  0  0
1997  8 28  0  0
1997  8 29  0  0
1997  8 30  0  0
1997  8 31  0  0
1997  9  1  0  0
1997  9  2  0  0
1997  9  3  0  0
1997  9  4  0  0
1997  9  5  0  0
1997  9  6  0  0
1997  9  7  0  0
1997  9  8  0  0
1997  9  9  0  0
1997  9 10  0  0
1997  9 11  0  0
1997  9 12  0  0
1997  9 13  0  0
1997  9 14  0  0
1997  9 15  0  0
1997  9 16  0  0
1997  9 17  0  0
1997  9 18  0  0
1997  9 19  0  0
1997  9 20  0  0
1997  9 21  0  0
1997  9 22  0  0
1997  9 23  0  0
1997  9 24  0  0
1997  9 25  0  0
1997  9 26  0  0
1997  9 27  0  0
1997  9 28  0  0
1997  9 29  0  0
1997  9 30  0  0
1997 10  1  0  0
1997 10  2  0  0
1997 10  3  0  0
1997 10  4  0  0
1997 10  5  0  0
1997 10  6  0  0
1997 10  7  0  0
1997 10  8  0  0
1997 10  9  0  0
1997 10 10  0  0
1997 10 11  0  0
1997 10 12  0  0
1997 10 13  0  0
1997 10 14  0  0
1997 10 15  0  0
1997 10 16  0  0
1997 10 17  0  0
1997 10 18  0  0
1997 10 19  0  0
1997 10 20  0  0
1997 10 21  0  0
1997 10 22  0  0
1997 10 23  0  0
1997 10 24  0  0
1997 10 25  0  0
1997 10 26  0  0
1997 10 27  0  0
1997 10 28  0  0
1997 10 29  0  0
1997 10 30  0  0
1997 10 31  0  0
1997 11  1  0  0
1997 11  2  0  0
1997 11  3  0  0
1997 11  4  0  0
1997 11  5  0  0
1997 11  6  0  0
1997 11  7  0  0
1997 11  8  0  0
1997 11  9  0  0
1997 11 10  0  0
1997 11 11  0  0
1997 11 12  0  0
1997 11 13  0  0
1997 11 14  0  0
1997 11 15  0  0
1997 11 16  0  0
1997 11 17  0  0
1997 11 18  0  0
1997 11 19  0  0
1997 11 20  0  0
1997 11 21  0  0
1997 11 22  0  0
1997 11 23  0  0
1997 11 24  0  0
1997 11 25  0  0
1997 11 26  0  0
1997 11 27  0  0
1997 11 28  0  0
1997 11 29  0  0
1997 11 30  0  0
1997 12  1  0  0
1997 12  2  0  0
1997 12  3  0  0
1997 12  4  0  0
1997 12  5  0  0
1997 12  6  0  0
1997 12  7  0  0
1997 12  8  0  0
1997 12  9  0  0
1997 12 10  0  0
1997 12 11  0  0
1997 12 12  0  0
1997 12 13  0  0
1997 12 14  0  0
1997 12 15  0  0
1997 12 16  0  0
1997 12 17  0  0
1997 12 18  0  0
1997 12 19  0  0
1997 12 20  0  0
1997 12 21  0  0
1997 12 22  0  0
1997 12 23  0  0
1997 12 24  0  0
1997 12 25  0  0
1997 12 26  0  0
1997 12 27  0  0
1997 12 28  0  0
1997 12 29  0  0
1997 12 30  0  0
1997 12 31  0  0
1998  1  1  0  0
1998  1  2  0  0
1998  1  3  0  0
1998  1  4  0  0
1998  1  5  0  0
1998  1  6  0  0
1998  1  7  0  0
1998  1  8  0  0
1998  1  9  0  0
1998  1 10  0  0
1998  1 11  0  0
1998  1 12  0  0
1998  1 13  0  0
1998  1 14  0  0
1998  1 15  0  0
1998  1 16  0  0
1998  1 17  0  0
1998  1 18  0  0
1998  1 19  0  0
1998  1 20  0  0
1998  1 21  0  0
1998  1 22  0  0
1998  1 23  0  0
1998  1 24  0  0
1998  1 25  0  0
1998  1 26  0  0
1998  1 27  0  0
1998  1 28  0  0
1998  1 29  0  0
1998  1 30  0  0
1998  1 31  0  0
1998  2  1  0  0
1998  2  2  0  0
1998  2  3  0  0
1998  2  4  0  0
1998  2  5  0  0
1998  2  6  0  0
1998  2  7  0  0
1998  2  8  0  0
1998  2  9  0  0
1998  2 10  0  0
1998  2 11  0  0
1998  2 12  0  0
1998  2 13  0  0
1998  2 14  0  0
1998  2 15  0  0
1998  2 16  0  0
1998  2 17  0  0
1998  2 18  0  0
1998  2 19  0  0
1998  2 20  0  0
1998  2 21  0  0
1998  2 22  0  0
1998  2 23  0  0
1998  2 24  0  0
1998  2 25  0  0
1998  2 26  0  0
1998  2 27  0  0
1998  2 28  0  0
1998  3  1  0  0
1998  3  2  0  0
1998  3  3  0  0
1998  3  4  0  0
1998  3  5  0  0
1998  3  6  0  0
1998  3  7  0  0
1998  3  8  0  0
1998  3  9  0  0
1998  3 10  0  0
1998  3 11  0  0
1998  3 12  0  0
1998  3 13  0  0
1998  3 14  0  0
1998  3 15  0  0
1998  3 16  0  0
1998  3 17  0  0
1998  3 18  0  0
1998  3 19  0  0
1998  3 20  0  0
1998  3 21  0  0
1998  3 22  0  0
1998  3 23  0  0
1998  3 24  0  0
1998  3 25  0  0
1998  3 26  0  0
1998  3 27  0  0
1998  3 28  0  0
1998  3 29  0  0
1998  3 30  0  0
1998  3 31  0  0
1998  4  1  0  0
1998  4  2  0  0
1998  4  3  0  0
1998  4  4  0  0
1998  4  5  0  0
1998  4  6  0  0
1998  4  7  0  0
1998  4  8  0  0
1998  4  9  0  0
1998  4 10  0  0
1998  4 11  0  0
1998  4 12  0  0
1998  4 13  0  0
1998  4 14  0  0
1998  4 15  0  0
1998  4 16  0  0
1998  4 17  0  0
1998  4 18  0  0
1998  4 19  0  0
1998  4 20  0  0
1998  4 21  0  0
1998  4 22  0  0
1998  4 23  0  0
1998  4 24  0  0
1998  4 25  0  0
1998  4 26  0  0
1998  4 27  0  0
1998  4 28  0  0
1998  4 29  0  0
1998  4 30  0  0
1998  5  1  0  0
1998  5  2  0  0
1998  5  3  0  0
1998  5  4  0  0
1998  5  5  0  0
1998  5  6  0  0
1998  5  7  0  0
1998  5  8  0  0
1998  5  9  0  0
1998  5 10  0  0
1998  5 11  0  0
1998  5 12  0  0
1998  5 13  0  0
1998  5 14  0  0
1998  5 15  0  0
1998  5 16  0  0
1998  5 17  0  0
1998  5 18  0  0
1998  5 19  0  0
1998  5 20  0  0
1998  5 21  0  0
1998  5 22  0  0
1998  5 23  0  0
1998  5 24  0  0
1998  5 25  0  0
1998  5 26  0  0
1998  5 27  0  0
1998  5 28  0  0
1998  5 29  0  0
1998  5 30  0  0
1998  5 31  0  0
1998  6  1  0  0
1998  6  2  0  0
1998  6  3  0  0
1998  6  4  0  0
1998  6  5  0  0
1998  6  6  0  0
1998  6  7  0  0
1998  6  8  0  0
1998  6  9  0  0
1998  6 10  0  0
1998  6 11  0  0
1998  6 12  0  0
1998  6 13  0  0
1998  6 14  0  0
1998  6 15  0  0
1998  6 16  0  0
1998  6 17  0  0
1998  6 18  0  0
1998  6 19  0  0
1998  6 20  0  0
1998  6 21  0  0
1998  6 22  0  0
1998  6 23  0  0
1998  6 24  0  0
1998  6 25  0  0
1998  6 26  0  0
1998  6 27  0  0
1998  6 28  0  0
1998  6 29  0  0
1998  6 30  0  0
1998  7  1  0  0
1998  7  2  0  0
1998  7  3  0  0
1998  7  4  0  0
1998  7  5  0  0
1998  7  6  0  0
1998  7  7  0  0
1998  7  8  0  0
1998  7  9  0  0
1998  7 10  0  0
1998  7 11  0  0
1998  7 12  0  0
1998  7 13  0  0
1998  7 14  0  0
1998  7 15  0  0
1998  7 16  0  0
1998  7 17  0  0
1998  7 18  0  0
1998  7 19  0  0
1998  7 20  0  0
1998  7 21  0  0
1998  7 22  0  0
1998  7 23  0  0
1998  7 24  0  0
1998  7 25  0  0
1998  7 26  0  0
1998  7 27  0  0
1998  7 28  0  0
1998  7 29  0  0
1998  7 30  0  0
1998  7 31  0  0
1998  8  1  0  0
1998  8  2  0  0
1998  8  3  0  0
1998  8  4  0  0
1998  8  5  0  0
1998  8  6  0  0
1998  8  7  0  0
1998  8  8  0  0
1998  8  9  0  0
1998  8 10  0  0
1998  8 11  0  0
1998  8 12  0  0
1998  8 13  0  0
1998  8 14  0  0
1998  8 15  0  0
1998  8 16  0  0
1998  8 17  0  0
1998  8 18  0  0
1998  8 19  0  0
1998  8 20  0  0
1998  8 21  0  0
1998  8 22  0  0
1998  8 23  0  0
1998  8 24  0  0
1998  8 25  0  0
1998  8 26  0  0
1998  8 27  0  0
1998  8 28  0  0
1998  8 29  0  0
1998  8 30  0  0
1998  8 31  0  0
1998  9  1  0  0
1998  9  2  0  0
1998  9  3  0  0
1998  9  4  0  0
1998  9  5  0  0
1998  9  6  0  0
1998  9  7  0  0
1998  9  8  0  0
1998  9  9  0  0
1998  9 10  0  0
1998  9 11  0  0
1998  9 12  0  0
1998  9 13  0  0
1998  9 14  0  0
1998  9 15  0  0
1998  9 16  0  0
1998  9 17  0  0
1998  9 18  0  0
1998  9 19  0  0
1998  9 20  0  0
1998  9 21  0  0
1998  9 22  0  0
1998  9 23  0  0
1998  9 24  0  0
1998  9 25  0  0
1998  9 26  0  0
1998  9 27  0  0
1998  9 28  0  0
1998  9 29  0  0
1998  9 30  0  0
1998 10  1  0  0
1998 10  2  0  0
1998 10  3  0  0
1998 10  4  0  0
1998 10  5  0  0
1998 10  6  0  0
1998 10  7  0  0
1998 10  8  0  0
1998 10  9  0  0
1998 10 10  0  0
1998 10 11  0  0
1998 10 12  0  0
1998 10 13  0  0
1998 10 14  0  0
1998 10 15  0  0
1998 10 16  0  0
1998 10 17  0  0
1998 10 18  0  0
1998 10 19  0  0
1998 10 20  0  0
1998 10 21  0  0
1998 10 22  0  0
1998 10 23  0  0
1998 10 24  0  0
1998 10 25  0  0
1998 10 26  0  0
1998 10 27  0  0
1998 10 28  0  0
1998 10 29  0  0
1998 10 30  0  0
1998 10 31  0  0
1998 11  1  0  0
1998 11  2  0  0
1998 11  3  0  0
1998 11  4  0  0
1998 11  5  0  0
1998 11  6  0  0
1998 11  7  0  0
1998 11  8  0  0
1998 11  9  0  0
1998 11 10  0  0
1998 11 11  0  0
1998 11 12  0  0
1998 11 13  0  0
1998 11 14  0  0
1998 11 15  0  0
1998 11 16  0  0
1998 11 17  0  0
1998 11 18  0  0
1998 11 19  0  0
1998 11 20  0  0
1998 11 21  0  0
1998 11 22  0  0
1998 11 23  0  0
1998 11 24  0  0
1998 11 25  0  0
1998 11 26  0  0
1998 11 27  0  0
1998 11 28  0  0
1998 11 29  0  0
1998 11 30  0  0
1998 12  1  0  0
1998 12  2  0  0
1998 12  3  0  0
1998 12  4  0  0
1998 12  5  0  0
1998 12  6  0  0
1998 12  7  0  0
1998 12  8  0  0
1998 12  9  0  0
1998 12 10  0  0
1998 12 11  0  0
1998 12 12  0  0
1998 12 13  0  0
1998 12 14  0  0
1998 12 15  0  0
1998 12 16  0  0
1998 12 17  0  0
1998 12 18  0  0
1998 12 19  0  0
1998 12 20  0  0
1998 12 21  0  0
1998 12 22  0  0
1998 12 23  0  0
1998 12 24  0  0
1998 12 25  0  0
1998 12 26  0  0
1998 12 27  0  0
1998 12 28  0  0
1998 12 29  0  0
1998 12 30  0  0
1998 12 31  0  0
1999  1  1  0  0
1999  1  2  0  0
1999  1  3  0  0
1999  1  4  0  0
1999  1  5  0  0
1999  1  6  0  0
1999  1  7  0  0
1999  1  8  0  0
1999  1  9  0  0
1999  1 10  0  0
1999  1 11  0  0
1999  1 12  0  0
1999  1 13  0  0
1999  1 14  0  0
1999  1 15  0  0
1999  1 16  0  0
1999  1 17  0  0
1999  1 18  0  0
1999  1 19  0  0
1999  1 20  0  0
1999  1 21  0  0
1999  1 22  0  0
1999  1 23  0  0
1999  1 24  0  0
1999  1 25  0  0
1999  1 26  0  0
1999  1 27  0  0
1999  1 28  0  0
1999  1 29  0  0
1999  1 30  0  0
1999  1 31  0  0
1999  2  1  0  0
1999  2  2  0  0
1999  2  3  0  0
1999  2  4  0  0
1999  2  5  0  0
1999  2  6  0  0
1999  2  7  0  0
1999  2  8  0  0
1999  2  9  0  0
1999  2 10  0  0
1999  2 11  0  0
1999  2 12  0  0
1999  2 13  0  0
1999  2 14  0  0
1999  2 15  0  0
1999  2 16  0  0
1999  2 17  0  0
1999  2 18  0  0
1999  2 19  0  0
1999  2 20  0  0
1999  2 21  0  0
1999  2 22  0  0
1999  2 23  0  0
1999  2 24  0  0
1999  2 25  0  0
1999  2 26  0  0
1999  2 27  0  0
1999  2 28  0  0
1999  3  1  0  0
1999  3  2  0  0
1999  3  3  0  0
1999  3  4  0  0
1999  3  5  0  0
1999  3  6  0  0
1999  3  7  0  0
1999  3  8  0  0
1999  3  9  0  0
1999  3 10  0  0
1999  3 11  0  0
1999  3 12  0  0
1999  3 13  0  0
1999  3 14  0  0
1999  3 15  0  0
1999  3 16  0  0
1999  3 17  0  0
1999  3 18  0  0
1999  3 19  0  0
1999  3 20  0  0
1999  3 21  0  0
1999  3 22  0  0
1999  3 23  0  0
1999  3 24  0  0
1999  3 25  0  0
1999  3 26  0  0
1999  3 27  0  0
1999  3 28  0  0
1999  3 29  0  0
1999  3 30  0  0
1999  3 31  0  0
1999  4  1  0  0
1999  4  2  0  0
1999  4  3  0  0
1999  4  4  0  0
1999  4  5  0  0
1999  4  6  0  0
1999  4  7  0  0
1999  4  8  0  0
1999  4  9  0  0
1999  4 10  0  0
1999  4 11  0  0
1999  4 12  0  0
1999  4 13  0  0
1999  4 14  0  0
1999  4 15  0  0
1999  4 16  0  0
1999  4 17  0  0
1999  4 18  0  0
1999  4 19  0  0
1999  4 20  0  0
1999  4 21  0  0
1999  4 22  0  0
1999  4 23  0  0
1999  4 24  0  0
1999  4 25  0  0
1999  4 26  0  0
1999  4 27  0  0
1999  4 28  0  0
1999  4 29  0  0
1999  4 30  0  0
1999  5  1  0  0
1999  5  2  0  0
1999  5  3  0  0
1999  5  4  0  0
1999  5  5  0  0
1999  5  6  0  0
1999  5  7  0  0
1999  5  8  0  0
1999  5  9  0  0
1999  5 10  0  0
1999  5 11  0  0
1999  5 12  0  0
1999  5 13  0  0
1999  5 14  0  0
1999  5 15  0  0
1999  5 16  0  0
1999  5 17  0  0
1999  5 18  0  0
1999  5 19  0  0
1999  5 20  0  0
1999  5 21  0  0
1999  5 22  0  0
1999  5 23  0  0
1999  5 24  0  0
1999  5 25  0  0
1999  5 26  0  0
1999  5 27  0  0
1999  5 28  0  0
1999  5 29  0  0
1999  5 30  0  0
1999  5 31  0  0
1999  6  1  0  0
1999  6  2  0  0
1999  6  3  0  0
1999  6  4  0  0
1999  6  5  0  0
1999  6  6  0  0
1999  6  7  0  0
1999  6  8  0  0
1999  6  9  0  0
1999  6 10  0  0
1999  6 11  0  0
1999  6 12  0  0
1999  6 13  0  0
1999  6 14  0  0
1999  6 15  0  0
1999  6 16  0  0
1999  6 17  0  0
1999  6 18  0  0
1999  6 19  0  0
1999  6 20  0  0
1999  6 21  0  0
1999  6 22  0  0
1999  6 23  0  0
1999  6 24  0  0
1999  6 25  0  0
1999  6 26  0  0
1999  6 27  0  0
1999  6 28  0  0
1999  6 29  0  0
1999  6 30  0  0
1999  7  1  0  0
1999  7  2  0  0
1999  7  3  0  0
1999  7  4  0  0
1999  7  5  0  0
1999  7  6  0  0
1999  7  7  0  0
1999  7  8  0  0
1999  7  9  0  0
1999  7 10  0  0
1999  7 11  0  0
1999  7 12  0  0
1999  7 13  0  0
1999  7 14  0  0
1999  7 15  0  0
1999  7 16  0  0
1999  7 17  0  0
1999  7 18  0  0
1999  7 19  0  0
1999  7 20  0  0
1999  7 21  0  0
1999  7 22  0  0
1999  7 23  0  0
1999  7 24  0  0
1999  7 25  0  0
1999  7 26  0  0
1999  7 27  0  0
1999  7 28  0  0
1999  7 29  0  0
1999  7 30  0  0
1999  7 31  0  0
1999  8  1  0  0
1999  8  2  0  0
1999  8  3  0  0
1999  8  4  0  0
1999  8  5  0  0
1999  8  6  0  0
1999  8  7  0  0
1999  8  8  0  0
1999  8  9  0  0
1999  8 10  0  0
1999  8 11  0  0
1999  8 12  0  0
1999  8 13  0  0
1999  8 14  0  0
1999  8 15  0  0
1999  8 16  0  0
1999  8 17  0  0
1999  8 18  0  0
1999  8 19  0  0
1999  8 20  0  0
1999  8 21  0  0
1999  8 22  0  0
1999  8 23  0  0
1999  8 24  0  0
1999  8 25  0  0
1999  8 26  0  0
1999  8 27  0  0
1999  8 28  0  0
1999  8 29  0  0
1999  8 30  0  0
1999  8 31  0  0
1999  9  1  0  0
1999  9  2  0  0
1999  9  3  0  0
1999  9  4  0  0
1999  9  5  0  0
1999  9  6  0  0
1999  9  7  0  0
1999  9  8  0  0
1999  9  9  0  0
1999  9 10  0  0
1999  9 11  0  0
1999  9 12  0  0
1999  9 13  0  0
1999  9 14  0  0
1999  9 15  0  0
1999  9 16  0  0
1999  9 17  0  0
1999  9 18  0  0
1999  9 19  0  0
1999  9 20  0  0
1999  9 21  0  0
1999  9 22  0  0
1999  9 23  0  0
1999  9 24  0  0
1999  9 25  0  0
1999  9 26  0  0
1999  9 27  0  0
1999  9 28  0  0
1999  9 29  0  0
1999  9 30  0  0
1999 10  1  0  0
1999 10  2  0  0
1999 10  3  0  0
1999 10  4  0  0
1999 10  5  0  0
1999 10  6  0  0
1999 10  7  0  0
1999 10  8  0  0
1999 10  9  0  0
1999 10 10  0  0
1999 10 11  0  0
1999 10 12  0  0
1999 10 13  0  0
1999 10 14  0  0
1999 10 15  0  0
1999 10 16  0  0
1999 10 17  0  0
1999 10 18  0  0
1999 10 19  0  0
1999 10 20  0  0
1999 10 21  0  0
1999 10 22  0  0
1999 10 23  0  0
1999 10 24  0  0
1999 10 25  0  0
1999 10 26  0  0
1999 10 27  0  0
1999 10 28  0  0
1999 10 29  0  0
1999 10 30  0  0
1999 10 31  0  0
1999 11  1  0  0
1999 11  2  0  0
1999 11  3  0  0
1999 11  4  0  0
1999 11  5  0  0
1999 11  6  0  0
1999 11  7  0  0
1999 11  8  0  0
1999 11  9  0  0
1999 11 10  0  0
1999 11 11  0  0
1999 11 12  0  0
1999 11 13  0  0
1999 11 14  0  0
1999 11 15  0  0
1999 11 16  0  0
1999 11 17  0  0
1999 11 18  0  0
1999 11 19  0  0
1999 11 20  0  0
1999 11 21  0  0
1999 11 22  0  0
1999 11 23  0  0
1999 11 24  0  0
1999 11 25  0  0
1999 11 26  0  0
1999 11 27  0  0
1999 11 28  0  0
1999 11 29  0  0
1999 11 30  0  0
1999 12  1  0  0
1999 12  2  0  0
1999 12  3  0  0
1999 12  4  0  0
1999 12  5  0  0
1999 12  6  0  0
1999 12  7  0  0
1999 12  8  0  0
1999 12  9  0  0
1999 12 10  0  0
1999 12 11  0  0
1999 12 12  0  0
1999 12 13  0  0
1999 12 14  0  0
1999 12 15  0  0
1999 12 16  0  0
1999 12 17  0  0
1999 12 18  0  0
1999 12 19  0  0
1999 12 20  0  0
1999 12 21  0  0
1999 12 22  0  0
1999 12 23  0  0
1999 12 24  0  0
1999 12 25  0  0
1999 12 26  0  0
1999 12 27  0  0
1999 12 28  0  0
1999 12 29  0  0
1999 12 30  0  0
1999 12 31  0  0
2000  1  1  0  0
2000  1  2  0  0
2000  1  3  0  0
2000  1  4  0  0
2000  1  5  0  0
2000  1  6  0  0
2000  1  7  0  0
2000  1  8  0  0
2000  1  9  0  0
2000  1 10  0  0
2000  1 11  0  0
2000  1 12  0  0
2000  1 13  0  0
2000  1 14  0  0
2000  1 15  0  0
2000  1 16  0  0
2000  1 17  0  0
2000  1 18  0  0
2000  1 19  0  0
2000  1 20  0  0
2000  1 21  0  0
2000  1 22  0  0
2000  1 23  0  0
2000  1 24  0  0
2000  1 25  0  0
2000  1 26  0  0
2000  1 27  0  0
2000  1 28  0  0
2000  1 29  0  0
2000  1 30  0  0
2000  1 31  0  0
2000  2  1  0  0
2000  2  2  0  0
2000  2  3  0  0
2000  2  4  0  0
2000  2  5  0  0
2000  2  6  0  0
2000  2  7  0  0
2000  2  8  0  0
2000  2  9  0  0
2000  2 10  0  0
2000  2 11  0  0
2000  2 12  0  0
2000  2 13  0  0
2000  2 14  0  0
2000  2 15  0  0
2000  2 16  0  0
2000  2 17  0  0
2000  2 18  0  0
2000  2 19  0  0
2000  2 20  0  0
2000  2 21  0  0
2000  2 22  0  0
2000  2 23  0  0
2000  2 24  0  0
2000  2 25  0  0
2000  2 26  0  0
2000  2 27  0  0
2000  2 28  0  0
2000  2 29  0  0
2000  3  1  0  0
2000  3  2  0  0
2000  3  3  0  0
2000  3  4  0  0
2000  3  5  0  0
2000  3  6  0  0
2000  3  7  0  0
2000  3  8  0  0
2000  3  9  0  0
2000  3 10  0  0
2000  3 11  0  0
2000  3 12  0  0
2000  3 13  0  0
2000  3 14  0  0
2000  3 15  0  0
2000  3 16  0  0
2000  3 17  0  0
2000  3 18  0  0
2000  3 19  0  0
2000  3 20  0  0
2000  3 21  0  0
2000  3 22  0  0
2000  3 23  0  0
2000  3 24  0  0
2000  3 25  0  0
2000  3 26  0  0
2000  3 27  0  0
2000  3 28  0  0
2000  3 29  0  0
2000  3 30  0  0
2000  3 31  0  0
2000  4  1  0  0
2000  4  2  0  0
2000  4  3  0  0
2000  4  4  0  0
2000  4  5  0  0
2000  4  6  0  0
2000  4  7  0  0
2000  4  8  0  0
2000  4  9  0  0
2000  4 10  0  0
2000  4 11  0  0
2000  4 12  0  0
2000  4 13  0  0
2000  4 14  0  0
2000  4 15  0  0
2000  4 16  0  0
2000  4 17  0  0
2000  4 18  0  0
2000  4 19  0  0
2000  4 20  0  0
2000  4 21  0  0
2000  4 22  0  0
2000  4 23  0  0
2000  4 24  0  0
2000  4 25  0  0
2000  4 26  0  0
2000  4 27  0  0
2000  4 28  0  0
2000  4 29  0  0
2000  4 30  0  0
2000  5  1  0  0
2000  5  2  0  0
2000  5  3  0  0
2000  5  4  0  0
2000  5  5  0  0
2000  5  6  0  0
2000  5  7  0  0
2000  5  8  0  0
2000  5  9  0  0
2000  5 10  0  0
2000  5 11  0  0
2000  5 12  0  0
2000  5 13  0  0
2000  5 14  0  0
2000  5 15  0  0
2000  5 16  0  0
2000  5 17  0  0
2000  5 18  0  0
2000  5 19  0  0
2000  5 20  0  0
2000  5 21  0  0
2000  5 22  0  0
2000  5 23  0  0
2000  5 24  0  0
2000  5 25  0  0
2000  5 26  0  0
2000  5 27  0  0
2000  5 28  0  0
2000  5 29  0  0
2000  5 30  0  0
2000  5 31  0  0
2000  6  1  0  0
2000  6  2  0  0
2000  6  3  0  0
2000  6  4  0  0
2000  6  5  0  0
2000  6  6  0  0
2000  6  7  0  0
2000  6  8  0  0
2000  6  9  0  0
2000  6 10  0  0
2000  6 11  0  0
2000  6 12  0  0
2000  6 13  0  0
2000  6 14  0  0
2000  6 15  0  0
2000  6 16  0  0
2000  6 17  0  0
2000  6 18  0  0
2000  6 19  0  0
2000  6 20  0  0
2000  6 21  0  0
2000  6 22  0  0
2000  6 23  0  0
2000  6 24  0  0
2000  6 25  0  0
2000  6 26  0  0
2000  6 27  0  0
2000  6 28  0  0
2000  6 29  0  0
2000  6 30  0  0
2000  7  1  0  0
2000  7  2  0  0
2000  7  3  0  0
2000  7  4  0  0
2000  7  5  0  0
2000  7  6  0  0
2000  7  7  0  0
2000  7  8  0  0
2000  7  9  0  0
2000  7 10  0  0
2000  7 11  0  0
2000  7 12  0  0
2000  7 13  0  0
2000  7 14  0  0
2000  7 15  0  0
2000  7 16  0  0
2000  7 17  0  0
2000  7 18  0  0
2000  7 19  0  0
2000  7 20  0  0
2000  7 21  0  0
2000  7 22  0  0
2000  7 23  0  0
2000  7 24  0  0
2000  7 25  0  0
2000  7 26  0  0
2000  7 27  0  0
2000  7 28  0  0
2000  7 29  0  0
2000  7 30  0  0
2000  7 31  0  0
2000  8  1  0  0
2000  8  2  0  0
2000  8  3  0  0
2000  8  4  0  0
2000  8  5  0  0
2000  8  6  0  0
2000  8  7  0  0
2000  8  8  0  0
2000  8  9  0  0
2000  8 10  0  0
2000  8 11  0  0
2000  8 12  0  0
2000  8 13  0  0
2000  8 14  0  0
2000  8 15  0  0
2000  8 16  0  0
2000  8 17  0  0
2000  8 18  0  0
2000  8 19  0  0
2000  8 20  0  0
2000  8 21  0  0
2000  8 22  0  0
2000  8 23  0  0
2000  8 24  0  0
2000  8 25  0  0
2000  8 26  0  0
2000  8 27  0  0
2000  8 28  0  0
2000  8 29  0  0
2000  8 30  0  0
2000  8 31  0  0
2000  9  1  0  0
2000  9  2  0  0
2000  9  3  0  0
2000  9  4  0  0
2000  9  5  0  0
2000  9  6  0  0
2000  9  7  0  0
2000  9  8  0  0
2000  9  9  0  0
2000  9 10  0  0
2000  9 11  0  0
2000  9 12  0  0
2000  9 13  0  0
2000  9 14  0  0
2000  9 15  0  0
2000  9 16  0  0
2000  9 17  0  0
2000  9 18  0  0
2000  9 19  0  0
2000  9 20  0  0
2000  9 21  0  0
2000  9 22  0  0
2000  9 23  0  0
2000  9 24  0  0
2000  9 25  0  0
2000  9 26  0  0
2000  9 27  0  0
2000  9 28  0  0
2000  9 29  0  0
2000  9 30  0  0
2000 10  1  0  0
2000 10  2  0  0
2000 10  3  0  0
2000 10  4  0  0
2000 10  5  0  0
2000 10  6  0  0
2000 10  7  0  0
2000 10  8  0  0
2000 10  9  0  0
2000 10 10  0  0
2000 10 11  0  0
2000 10 12  0  0
2000 10 13  0  0
2000 10 14  0  0
2000 10 15  0  0
2000 10 16  0  0
2000 10 17  0  0
2000 10 18  0  0
2000 10 19  0  0
2000 10 20  0  0
2000 10 21  0  0
2000 10 22  0  0
2000 10 23  0  0
2000 10 24  0  0
2000 10 25  0  0
2000 10 26  0  0
2000 10 27  0  0
2000 10 28  0  0
2000 10 29  0  0
2000 10 30  0  0
2000 10 31  0  0
2000 11  1  0  0
2000 11  2  0  0
2000 11  3  0  0
2000 11  4  0  0
2000 11  5  0  0
2000 11  6  0  0
2000 11  7  0  0
2000 11  8  0  0
2000 11  9  0  0
2000 11 10  0  0
2000 11 11  0  0
2000 11 12  0  0
2000 11 13  0  0
2000 11 14  0  0
2000 11 15  0  0
2000 11 16  0  0
2000 11 17  0  0
2000 11 18  0  0
2000 11 19  0  0
2000 11 20  0  0
2000 11 21  0  0
2000 11 22  0  0
2000 11 23  0  0
2000 11 24  0  0
2000 11 25  0  0
2000 11 26  0  0
2000 11 27  0  0
2000 11 28  0  0
2000 11 29  0  0
2000 11 30  0  0
2000 12  1  0  0
2000 12  2  0  0
2000 12  3  0  0
2000 12  4  0  0
2000 12  5  0  0
2000 12  6  0  0
2000 12  7  0  0
2000 12  8  0  0
2000 12  9  0  0
2000 12 10  0  0
2000 12 11  0  0
2000 12 12  0  0
2000 12 13  0  0
2000 12 14  0  0
2000 12 15  0  0
2000 12 16  0  0
2000 12 17  0  0
2000 12 18  0  0
2000 12 19  0  0
2000 12 20  0  0
2000 12 21  0  0
2000 12 22  0  0
2000 12 23  0  0
2000 12 24  0  0
2000 12 25  0  0
2000 12 26  0  0
2000 12 27  0  0
2000 12 28  0  0
2000 12 29  0  0
2000 12 30  0  0
2000 12 31  0  0

initial date/time = 2021-08-30  15:47:22.155
  final date/time = 2021-08-30  15:48:34.286

     elapsed init =   0.1350000     s
    fraction init =   1.8715947E-03

    elapsed setup =   6.4000000E-02 s
   fraction setup =   8.8727454E-04

  elapsed restart =   8.0000000E-03 s
 fraction restart =   1.1090932E-04

     elapsed read =    21.89300     s
    fraction read =   0.3035172    

    elapsed write =    2.769000     s
   fraction write =   3.8388488E-02

  elapsed physics =    46.89600     s
 fraction physics =   0.6501504    

     elapsed time =    72.13100     s
       or              1.202183     m
       or             2.0036389E-02 h
       or             8.3484954E-04 d

   number threads =          1

 FORTRAN STOP: finished simulation successfully.

In [21]:
camels_summa.output
Out[21]:
<xarray.Dataset>
Dimensions:                (gru: 1, hru: 1, time: 3652)
Coordinates:
  * time                   (time) datetime64[ns] 1991-01-02 ... 2000-12-31
  * hru                    (hru) int64 13313000
  * gru                    (gru) int64 13313000
Data variables:
    pptrate                (time, hru) float64 0.0 0.0 0.0 ... 0.0 0.0 1.268e-05
    airtemp                (time, hru) float64 264.2 264.3 265.5 ... 269.9 269.3
    spechum                (time, hru) float64 0.001973 0.00188 ... 0.003438
    windspd                (time, hru) float64 4.727 2.96 2.83 ... 3.323 1.772
    SWRadAtm               (time, hru) float64 7.986 6.299 7.14 ... 2.079 3.473
    LWRadAtm               (time, hru) float64 204.3 177.2 182.3 ... 271.0 228.7
    airpres                (time, hru) float64 7.792e+04 7.816e+04 ... 7.806e+04
    scalarCanopyWat        (time, hru) float64 0.003413 0.003411 ... 0.1014
    scalarSWE              (time, hru) float64 1.578e-06 1.578e-06 ... 76.58
    scalarTotalSoilWat     (time, hru) float64 764.7 763.2 761.6 ... 615.2 614.9
    scalarSenHeatTotal     (time, hru) float64 -70.53 -22.28 ... 6.6 22.01
    scalarLatHeatTotal     (time, hru) float64 -2.793 -2.126 ... -0.771 -0.06717
    scalarSnowSublimation  (time, hru) float64 0.0 0.0 ... -4.171e-08 3.989e-09
    scalarRainPlusMelt     (time, hru) float64 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0
    scalarInfiltration     (time, hru) float64 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0
    scalarSurfaceRunoff    (time, hru) float64 0.0 0.0 0.0 0.0 ... 0.0 0.0 0.0
    scalarSoilDrainage     (time, hru) float64 1.695e-08 1.695e-08 ... 4.075e-09
    scalarAquiferBaseflow  (time, hru) float64 1.695e-08 1.695e-08 ... 4.079e-09
    scalarTotalET          (time, hru) float64 -1.117e-06 -8.499e-07 ... 0.0 0.0
    scalarTotalRunoff      (time, hru) float64 1.695e-08 1.695e-08 ... 4.079e-09
    scalarNetRadiation     (time, hru) float64 -76.55 -100.7 ... -20.52 -56.76
    hruId                  (hru) int64 13313000
    gruId                  (gru) int64 13313000
Attributes:
    summaVersion:     v3.0.3
    buildTime:        Thu Aug 19 14:07:32 EDT 2021
    gitBranch:        tags/v3.0.3-0-g4ee457d
    gitHash:          4ee457df3d3c0779696c6388c67962ba76736df9
    soilCatTbl:       STAS
    vegeParTbl:       MODIFIED_IGBP_MODIS_NOAH
    soilStress:       NoahType
    stomResist:       BallBerry
    num_method:       itertive
    fDerivMeth:       analytic
    LAI_method:       specified
    f_Richards:       mixdform
    groundwatr:       bigBuckt
    hc_profile:       constant
    bcUpprTdyn:       nrg_flux
    bcLowrTdyn:       zeroFlux
    bcUpprSoiH:       liq_flux
    bcLowrSoiH:       drainage
    veg_traits:       Raupach_BLM1994
    canopyEmis:       difTrans
    snowIncept:       lightSnow
    windPrfile:       logBelowCanopy
    astability:       louisinv
    canopySrad:       BeersLaw
    alb_method:       conDecay
    snowLayers:       CLM_2010
    compaction:       anderson
    thCondSnow:       jrdn1991
    thCondSoil:       funcSoilWet
    spatial_gw:       localColumn
    subRouting:       timeDlay
    notPopulatedYet:  notPopulatedYet

Plot model outputs

In [22]:
output_variable = ['pptrate', 'airtemp', 'spechum', 'windspd', 'SWRadAtm', 'LWRadAtm', 'airpres', 'scalarCanopyWat', 'scalarSWE',
                   'scalarTotalSoilWat', 'scalarSenHeatTotal', 'scalarLatHeatTotal', 'scalarSnowSublimation', 'scalarRainPlusMelt', 
                   'scalarInfiltration', 'scalarSurfaceRunoff', 'scalarSoilDrainage', 'scalarAquiferBaseflow', 'scalarTotalET', 
                   'scalarTotalRunoff', 'scalarNetRadiation' ]
fig = plt.figure(figsize=(18,18))
for i in range(len(output_variable)):
    fig.add_subplot(7, 3, i+1)
    plt.plot(camels_summa.output['time'], camels_summa.output[output_variable[i]], label=output_variable[i])
    plt.legend(fontsize=11, loc=2)
camels_summa.output.close()

Run Ensemble SUMMA model on HPC through CyberGIS-Compute Service

Build Ensemble

In [23]:
decisions = {
    'stomResist': ['Jarvis', 'BallBerry', 'simpleResistance'],
}
In [24]:
parameters = {
    'aquiferBaseflowExp': [1.0, 5.0, 10.0],
    'qSurfScale': [1.0, 100.0],
}
In [25]:
config = ps.ensemble.total_product(dec_conf=decisions, param_trial_conf=parameters)
print(len(config))
18

Create folders for job submission

In [26]:
import tempfile
import shutil, os
workspace_dir = os.path.join(os.getcwd(), 'workspace')
!mkdir -p {workspace_dir}
unzip_dir = tempfile.mkdtemp(dir=workspace_dir)
model_folder_name = "summa_camels"
model_folder = os.path.join(unzip_dir, model_folder_name)
shutil.make_archive(model_folder_name, 'zip', os.getcwd()+"/summa_camels")
!unzip -o {model_folder_name}.zip -d {model_folder}
shutil.rmtree(os.path.join(model_folder, "output"))
!mkdir -p {os.path.join(model_folder, "output")}
Archive:  summa_camels.zip
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/data/
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/output/
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/installTestCases_local.sh  
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/data/forcing/
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/data/forcing/NLDAS_13313000_19910101-20001231.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/data/forcing/__keep_folder.txt  
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/SOILPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/init_cond.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/attributes.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/attributes.camels.v2_meta.xml  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/basinParamInfo.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/attributes.camels.v2.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/trialParams.camels.Oct2020_meta.xml  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/attributes.camels.v2_header_info.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/trialParams.camels.Oct2020_header_info.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/trialParams.camels.Oct2020_resmap.xml  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/parameters.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/GENPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/file_manager.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/modelDecisions.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/trialParams.camels.Oct2020.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/attributes.camels.v2_resmap.xml  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/gen_coldstate.py  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/parameters_header_info.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/VEGPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/localParamInfo.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/MPTABLE.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/output_control.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/template_file_manager.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/forcingFileList.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/forcingFileList.truth.txt  
   creating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/SOILPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/init_cond.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/attributes.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/basinParamInfo.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/parameters.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/GENPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/file_manager.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/modelDecisions.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/VEGPARM.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/localParamInfo.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/MPTABLE.TBL  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/output_control.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/settings/.pysumma/pysumma_run/forcingFileList.txt  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/output/camels_pysumma_run_day.nc  
  inflating: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/output/runinfo.txt  
In [27]:
import json
with open(os.path.join(model_folder, 'summa_options.json'), 'w') as outfile:
    json.dump(config, outfile)

# check ensemble parameters    
print("Number of ensemble runs: {}".format(len(config)))
print(json.dumps(config, indent=4, sort_keys=True)[:800])
print("...")
Number of ensemble runs: 18
{
    "++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=1.0++": {
        "attributes": {},
        "decisions": {
            "stomResist": "BallBerry"
        },
        "parameters": {},
        "trial_parameters": {
            "aquiferBaseflowExp": 1.0,
            "qSurfScale": 1.0
        }
    },
    "++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=100.0++": {
        "attributes": {},
        "decisions": {
            "stomResist": "BallBerry"
        },
        "parameters": {},
        "trial_parameters": {
            "aquiferBaseflowExp": 1.0,
            "qSurfScale": 100.0
        }
    },
    "++BallBerry++aquiferBaseflowExp=10.0++qSurfScale=1.0++": {
        "attributes": {},
        "decisions": {
            "stomResist": "BallBerry"
        },
        "parameters": {},

...

Submit ensemble model to HPC for execution through CyberGIS-Compute Service

In [28]:
from job_supervisor_client import *
communitySummaSession = Session('summa', isJupyter=True)
communitySummaJob = communitySummaSession.job() # create new job
communitySummaJob.upload(model_folder)
📃 created session constructor file [job_supervisor_constructor_summa.json]
Out[28]:
{'file': '1630338526geib'}
In [29]:
communitySummaJob.submit(payload={
    "node": 18,
    "machine": "keeling",
    "file_manager_rel_path": "settings/file_manager.txt"
})
✅ job registered with ID: 1630338527zJND
Out[29]:
<job_supervisor_client.Job.Job at 0x7fcaa8546590>

Monitor Job Status

In [30]:
%%time
communitySummaJob.events(liveOutput=True)
📮Job ID: 1630338527zJND
📍Destination: summa

types message time
JOB_QUEUED job [1630338527zJND] is queued, waiting for registration 2021-08-30T15:48:47.062Z
JOB_REGISTERED job [1630338527zJND] is registered with the supervisor, waiting for initialization2021-08-30T15:48:53.805Z
SUMMA_HPC_CONNECTEDconnected to HPC 2021-08-30T15:49:10.498Z
SUMMA_HPC_SUBMITTEDsubmitted SUMMA job to HPC 2021-08-30T15:49:10.498Z
JOB_INITIALIZED initialized SUMMA job in HPC job queue with remote_id 347565 2021-08-30T15:49:10.498Z
JOB_STATUS RUNNING 2021-08-30T15:49:21.529Z
JOB_STATUS RUNNING 2021-08-30T15:49:31.468Z
JOB_STATUS RUNNING 2021-08-30T15:49:40.799Z
JOB_STATUS RUNNING 2021-08-30T15:49:49.441Z
JOB_STATUS RUNNING 2021-08-30T15:49:58.925Z
JOB_STATUS RUNNING 2021-08-30T15:50:13.052Z
JOB_STATUS RUNNING 2021-08-30T15:50:20.636Z
JOB_STATUS RUNNING 2021-08-30T15:50:31.755Z
JOB_STATUS RUNNING 2021-08-30T15:50:39.700Z
JOB_STATUS RUNNING 2021-08-30T15:50:49.393Z
JOB_ENDED SUMMA job with remote_id 347565 completed 2021-08-30T15:51:07.448Z
CPU times: user 2.53 s, sys: 187 ms, total: 2.72 s
Wall time: 2min 21s

Retrieve Ensemble Model Output

In [31]:
%%time
job_dir = os.path.join(model_folder, "{}".format(communitySummaJob.id))
!mkdir -p {job_dir}/output
communitySummaJob.download(job_dir)
file successfully downloaded under: /home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/1630338527zJND.zip
CPU times: user 175 ms, sys: 111 ms, total: 286 ms
Wall time: 4.5 s
Out[31]:
'/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/1630338527zJND.zip'
In [32]:
!cd {job_dir} && unzip *.zip -d output

# check output directory
output_path = os.path.join(job_dir, "output")
# check SUMMA output file 
name_list = os.listdir(output_path)
full_list = [os.path.join(output_path,i) for i in name_list if i.endswith(".nc")]
sorted_list = sorted(full_list)
sorted_list = sorted(sorted_list, key=lambda v: v.upper())

for f in sorted_list:
    print(f)
print("Number of NC files: {}".format(len(sorted_list)))
Archive:  1630338527zJND.zip
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++BallBerry++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++Jarvis++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc  
  inflating: output/camels_++simpleResistance++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc  
  inflating: output/runinfo.txt      
  inflating: output/slurm-347565.out  
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++BallBerry++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++Jarvis++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=1.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=1.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=10.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=10.0++qSurfScale=100.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=5.0++qSurfScale=1.0++_day.nc
/home/jovyan/work/Downloads/17bc4f0031554944b8ec7558fd9ee3c2/17bc4f0031554944b8ec7558fd9ee3c2/data/contents/workspace/tmpcs8949yt/summa_camels/1630338527zJND/output/camels_++simpleResistance++aquiferBaseflowExp=5.0++qSurfScale=100.0++_day.nc
Number of NC files: 18

Plot Ensemble Model Output

In [33]:
import matplotlib.pyplot as plt
%matplotlib inline

def plot_ensemble_output_var(nc_list, var_name):
    fig = plt.figure(figsize=(18, 10))
    for i in nc_list:
        ds = xr.open_dataset(i)
        plt.plot(ds.time.values, ds[var_name].values, label=i.split("_")[-2])
        plt.legend()
        ds.close()
In [34]:
plot_ensemble_output_var(sorted_list, "scalarTotalRunoff")
In [35]:
plot_ensemble_output_var(sorted_list, "scalarInfiltration")
In [36]:
plot_ensemble_output_var(sorted_list, "scalarAquiferBaseflow")
In [37]:
plot_ensemble_output_var(sorted_list, "scalarTotalSoilWat")

Done