-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patherrorHandling.html
1698 lines (1680 loc) · 74.7 KB
/
errorHandling.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="writer-html5" lang="en" >
<head>
<meta charset="utf-8" /><meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>6. Error handling — Community Water Model</title>
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
<link rel="stylesheet" href="_static/graphviz.css" type="text/css" />
<link rel="stylesheet" href="_static/iiasa.css" type="text/css" />
<!--[if lt IE 9]>
<script src="_static/js/html5shiv.min.js"></script>
<![endif]-->
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
<script src="_static/doctools.js"></script>
<script src="_static/sphinx_highlight.js"></script>
<script src="_static/js/theme.js"></script>
<link rel="index" title="Index" href="genindex.html" />
<link rel="search" title="Search" href="search.html" />
<link rel="next" title="7. List of output variables" href="listVariables.html" />
<link rel="prev" title="5. Tutorial" href="tutorial.html" />
</head>
<body class="wy-body-for-nav">
<div class="wy-grid-for-nav">
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
<div class="wy-side-scroll">
<div class="wy-side-nav-search" >
<a href="index.html" class="icon icon-home">
Community Water Model
<img src="_static/IIASA_logo_white.png" class="logo" alt="Logo"/>
</a>
<div class="version">
1.0.6
</div>
<div role="search">
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
<input type="text" name="q" placeholder="Search docs" aria-label="Search docs" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
<ul class="current">
<li class="toctree-l1"><a class="reference internal" href="intro.html">1. Introduction</a></li>
<li class="toctree-l1"><a class="reference internal" href="modeldesign.html">2. Model Design</a></li>
<li class="toctree-l1"><a class="reference internal" href="publication.html">3. Publication</a></li>
<li class="toctree-l1"><a class="reference internal" href="setup.html">4. Setup of the model</a></li>
<li class="toctree-l1"><a class="reference internal" href="tutorial.html">5. Tutorial</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">6. Error handling</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#e101">E101</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e102">E102</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e103">E103</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e104">E104</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e105">E105</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e106">E106</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e107">E107</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e108">E108</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e109">E109</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e110">E110</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e111">E111</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e112">E112</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e113">E113</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e114">E114</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e115">E115</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e116">E116</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e117">E117</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e118">E118</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e119">E119</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e120">E120</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e121">E121</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e122">E122</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e123">E123</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e124">E124</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e125">E125</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e127">E127</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e128">E128</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e129">E129</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e130">E130</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e131">E131</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e132">E132</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e201">E201</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e202">E202</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e203">E203</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e204">E204</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e205">E205</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e206">E206</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e207">E207</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e208">E208</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e209">E209</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e210">E210</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e211">E211</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e212">E212</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e213">E213</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e214">E214</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e215">E215</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e216">E216</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e217">E217</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e218">E218</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e219">E219</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e220">E220</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e221">E221</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e301">E301</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e302">E302</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e303">E303</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e304">E304</a></li>
<li class="toctree-l2"><a class="reference internal" href="#e305">E305</a></li>
</ul>
</li>
<li class="toctree-l1"><a class="reference internal" href="listVariables.html">7. List of output variables</a></li>
<li class="toctree-l1"><a class="reference internal" href="results.html">8. Demo of the model</a></li>
<li class="toctree-l1"><a class="reference internal" href="todo.html">9. The Model Itself</a></li>
<li class="toctree-l1"><a class="reference internal" href="data.html">10. Data</a></li>
<li class="toctree-l1"><a class="reference internal" href="calibration.html">11. Calibration tool</a></li>
<li class="toctree-l1"><a class="reference internal" href="calibration_tutorial.html">12. Calibration tutorial</a></li>
<li class="toctree-l1"><a class="reference internal" href="resolution.html">13. Increasing resolution</a></li>
<li class="toctree-l1"><a class="reference internal" href="zambezi.html">14. Example Zambezi</a></li>
<li class="toctree-l1"><a class="reference internal" href="license.html">15. License and download info</a></li>
<li class="toctree-l1"><a class="reference internal" href="sourcecode.html">16. Source code</a></li>
<li class="toctree-l1"><a class="reference internal" href="forum.html">17. Forum</a></li>
</ul>
</div>
</div>
</nav>
<section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"><nav class="wy-nav-top" aria-label="Mobile navigation menu" >
<i data-toggle="wy-nav-top" class="fa fa-bars"></i>
<a href="index.html">Community Water Model</a>
</nav>
<div class="wy-nav-content">
<div class="rst-content">
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="index.html" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active"><span class="section-number">6. </span>Error handling</li>
<li class="wy-breadcrumbs-aside">
<a href="_sources/errorHandling.rst.txt" rel="nofollow"> View page source</a>
</li>
</ul>
<hr/>
</div>
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">
<section id="error-handling">
<span id="rst-error"></span><h1><span class="section-number">6. </span>Error handling<a class="headerlink" href="#error-handling" title="Permalink to this heading"></a></h1>
<p>We try to make our program behave properly when encountering unexpected conditions. The problematic situations that a program can encounter fall into two categories.</p>
<ul class="simple">
<li><p>Programmer mistakes: If someone forgets to pass a required argument to a function</p></li>
<li><p>Genuine problems: If the program asks the user to enter a name and it gets back an empty string, that is something the programmer can not prevent.</p></li>
</ul>
<p>This part deals with genuine problems. Please look for your error number</p>
<table class="docutils align-default">
<thead>
<tr class="row-odd"><th class="head"><p>Error No</p></th>
<th class="head"><p>Description</p></th>
<th class="head"><p>Settingsfile</p></th>
<th class="head"><p>Measure</p></th>
<th class="head"><p>Module</p></th>
<th class="head"><p>Procedure</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="#e101">E101</a></p></td>
<td><p>Gauges in settingsfile is not a coordinate e.g. Gauges = bad bad</p></td>
<td><p>Gauges</p></td>
<td><p>Put in pairs of coordinates or a map with coordinates</p></td>
<td><p>datahandling</p></td>
<td><p>valuecell</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e102">E102</a></p></td>
<td><p>One of the gauges is outside the map extend of the mask map</p></td>
<td><p>Gauges</p></td>
<td><p>Make sure that all gauges are inside the mask map area</p></td>
<td><p>datahandling</p></td>
<td><p>valuecell</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e103">E103</a></p></td>
<td><p>Maskmap is not a valid mask map nor valid coordinates nor valid point e.g. MaskMap = 1 2 3 4 5 6</p></td>
<td><p>MaskMap</p></td>
<td><p>Put in a pair of coordinates, a defined rectangle (5 numbers) or a filename</p></td>
<td><p>datahandling</p></td>
<td><p>loadsetclone</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e104">E104</a></p></td>
<td><p>MaskMap point does not have a valid value in the river network (LDD)</p></td>
<td><p>MaskMap</p></td>
<td><p>You put in a coordinate as MaskMap, but at this coordinate there is no valid river network value</p></td>
<td><p>datahandling</p></td>
<td><p>maskfrompoint</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e105">E105</a></p></td>
<td><p>The map you are loading has a different shape (different cols,rows) than the other maps</p></td>
<td><p>Any map</p></td>
<td><p>Make sure your map has the same resolution, rows, cols than the river network map</p></td>
<td><p>datahandling</p></td>
<td><p>compressArray</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e106">E106</a></p></td>
<td><p>The map you are loading has missing cell values (NaNs) where the river network and the mask map has valid values</p></td>
<td><p>Any map</p></td>
<td><p>Check the map and include cell values where the river network map has valid (non NaNs) values</p></td>
<td><p>datahandling</p></td>
<td><p>compressArray</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e107">E107</a></p></td>
<td><p>The netCDF map has different attributes (resolution, rows,cols) than your standard map</p></td>
<td><p>Any netCDF map</p></td>
<td><p>Make sure your map has the same resolution, rows, cols as the river network map</p></td>
<td><p>datahandling</p></td>
<td><p>mapattrNetCDF</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e108">E108</a></p></td>
<td><p>The tif map has different attributes (resolution, rows,cols) than your standard map</p></td>
<td><p>Any tif map</p></td>
<td><p>Make sure your map has the same resolution, rows, cols as the river network map</p></td>
<td><p>datahandling</p></td>
<td><p>mapattrTiff</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e109">E109</a></p></td>
<td><p>The meteo map (e.g. temperature, precipitation, evaporation..) has different attributes (resolution, rows,cols) than your standard map</p></td>
<td><p>Meteo netCDF map</p></td>
<td><p>Make sure your meteo input maps have the same resolution, rows, cols as the river network map. If it is the ET maps, it might be from another run with different mask. Please look at the option: calc_evaporation</p></td>
<td><p>datahandling</p></td>
<td><p>readmeteodata</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e110">E110</a></p></td>
<td><p>The netcdf map with a time variable (e.g. waterdemand, land cover, lakes..) has different attributes (resolution, rows,cols) than your standard map</p></td>
<td><p>All time depending netCDF maps appart from meteo maps</p></td>
<td><p>Make sure your netCDF input maps have the same resolution, rows, cols as the river network map</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdf2</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e111">E111</a></p></td>
<td><p>The netcdf maps without time is turned upside dowm</p></td>
<td><p>Any netCDF map without time</p></td>
<td><p>Make sure your map is in right order e.g. latitude coordinate are turned</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfWithoutTime</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e112">E112</a></p></td>
<td><p>The initial map (load_initial) stack is turned upside down</p></td>
<td><p>Initload</p></td>
<td><p>Make sure your initial map (in initial_load) is in right order e.g. latitude coordinate are turned</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfInitial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e113">E113</a></p></td>
<td><p>The initial map stack (initial_load) has different attributes (resolution, rows,cols) than your standard map</p></td>
<td><p>Initload</p></td>
<td><p>Make sure your initial maps (in initial_load)has the same attributes. Maybe your initial maps are from a different run with a different mask?</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfInitial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e114">E114</a></p></td>
<td><p>Problem reading initial maps</p></td>
<td><p>Initload</p></td>
<td><p>Initial maps has maybe not the same shape as the mask map. Maybe put load_initial = False</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfInitial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e115">E115</a></p></td>
<td><p>Variable with a True or False value can not be read</p></td>
<td><p>Any flag (True or False)</p></td>
<td><p>Make sure the variable has either: varname = False or varname = True. Ttrue or faalse is not working!</p></td>
<td><p>datahandling</p></td>
<td><p>returnBool</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e116">E116</a></p></td>
<td><p>One of the variable names in [Option] is written wrong</p></td>
<td><p>Any variable in [Option]</p></td>
<td><p>A keyword in option is maybe written wrong e.g. CaaapillarRise instead CapillarRise</p></td>
<td><p>datahandling</p></td>
<td><p>checkOption</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e117">E117</a></p></td>
<td><p>One of the variable names is written wrong</p></td>
<td><p>Any variable after [Option]</p></td>
<td><p>A keyword in option is maybe written wrong e.g. MaaaskMap instead MaskMap. Pay attention: in Linux words are case sensitive!</p></td>
<td><p>datahandling</p></td>
<td><p>cbinding</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e118">E118</a></p></td>
<td><p>Timing in the section TIME-RELATED_CONSTANTS is wrong</p></td>
<td><p>StepStart, SpinUp, StepEnd</p></td>
<td><p>Please check the variables StepStart, SpinUp, StartEnd</p></td>
<td><p>timestep</p></td>
<td><p>ctbinding</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e119">E119</a></p></td>
<td><p><a href="#id1"><span class="problematic" id="id2">`</span></a>Either date in StepStart is not a date or in SpinUp or StepEnd it is neither a number or a date</p></td>
<td><p>StepStart, SpinUp, StepEnd</p></td>
<td><p>Please check the variables StepStart, SpinUp, StartEnd - A date is missing</p></td>
<td><p>timestep</p></td>
<td><p>Calendar</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e120">E120</a></p></td>
<td><p>First date in StepInit is neither a number or a date</p></td>
<td><p>StepInit</p></td>
<td><p>Check StepInit in INITITIAL CONDITIONS. It is not a date or a number</p></td>
<td><p>timestep</p></td>
<td><p>Calendar</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e121">E121</a></p></td>
<td><p>Second value in StepInit is not a number or date nor indicating a repetition of year(y), month(m) or day(d) e.g. 2y for every 2 years or 6m for every 6 month</p></td>
<td><p>StepInit</p></td>
<td><p>Check StepInit. The second part is neither a date or d,m,y</p></td>
<td><p>timestep</p></td>
<td><p>datetosaveInit</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e122">E122</a></p></td>
<td><p>Third value in StepInit is not an integer after ‘y’ or ‘m’ or ‘d’</p></td>
<td><p>StepInit</p></td>
<td><p>Check StepInit. The third part after d,m,y is not an integer</p></td>
<td><p>timestep</p></td>
<td><p>datetosaveInit</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e123">E123</a></p></td>
<td><p>StepStart has to be a valid date</p></td>
<td><p>StepStart</p></td>
<td><p>Check StepStart. It has to be a date e.g. 01/01/2009</p></td>
<td><p>timestep</p></td>
<td><p>checkifDate</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e124">E124</a></p></td>
<td><p>StepEnd is earlier than StepStart</p></td>
<td><p>StepStart, StepEnd</p></td>
<td><p>Check StepStart and StepEnd. StepEnd has to be later than StepStart</p></td>
<td><p>timestep</p></td>
<td><p>checkifDate</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e125">E125</a></p></td>
<td><p>Spin Date is smaller/bigger than the first/last time step date</p></td>
<td><p>StepStart, SpinUp, StepEnd</p></td>
<td><p>Check that SpinDate is in between StepStart and StepEnd</p></td>
<td><p>timestep</p></td>
<td><p>checkifDate</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e127">E127</a></p></td>
<td><p>Coordinates are not pairs</p></td>
<td><p>InflowPoints</p></td>
<td><p>Check that location in InflowPoints comes in pairs</p></td>
<td><p>inflow</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e128">E128</a></p></td>
<td><p>OUT_MAP_Daily = discharge may be not defined in [OUTPUT]</p></td>
<td><p>calc_ef_afterRun, Out_MAP_Daily</p></td>
<td><p>Make sure that you define Out_MAP_Daily = discharge. Is seems daily discharge is not stored</p></td>
<td><p><a href="#id3"><span class="problematic" id="id4">`</span></a>Environflow</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e129">E129</a></p></td>
<td><p>Output points in Gauges are not pairs e.g. Gauges = 17.5 55.6 18.5</p></td>
<td><p>Gauges</p></td>
<td><p>Check that output-points in Gauges are of coordinate e.g. Gauges = 6.25 51.75</p></td>
<td><p>output</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e130">E130</a></p></td>
<td><p>Out_TSS or Out_MAP is not one of these: daily, monthend, monthtot, monthavg, annualend, annualtot, annualavg</p></td>
<td><p>Out_TSS, Out_MAP</p></td>
<td><p>Please check that the wording after Out_TSS or Out_MAP is correct. Only a few keywords are valid e.g. Out_MAP_Daily, Out_TSS_monthavg</p></td>
<td><p>output</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e131">E131</a></p></td>
<td><p>Second keyword after TSS or MAP is wrong</p></td>
<td><p>Out_TSS, Out_MAP</p></td>
<td><p>Use TSS for point value, AreaSum for sum of area, AreaAvg for average of area e.g. OUT_TSS_AreaSum_Daily</p></td>
<td><p>output</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e132">E132</a></p></td>
<td><p>Variable is not defined in list of variables</p></td>
<td><p>Out_TSS, Out_MAP</p></td>
<td><p>Please correct the writing of the variable name, check also case sensitive e.g. Precipitation instead precipitation</p></td>
<td><p>output</p></td>
<td><p>dynamic</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e201">E201</a></p></td>
<td><p>Cannot load the maskmap as a file e.g. MaskMap = notexisting.tif</p></td>
<td><p>MaskMap</p></td>
<td><p>Make sure the file you put in MaskMap is existing and is a map e.g. <a href="#id5"><span class="problematic" id="id6">*</span></a>.nc, <a href="#id7"><span class="problematic" id="id8">*</span></a>.map, <a href="#id9"><span class="problematic" id="id10">*</span></a>.tif</p></td>
<td><p>datahandling</p></td>
<td><p>loadsetclone</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e202">E202</a></p></td>
<td><p>Your map is upside down</p></td>
<td><p>Any map</p></td>
<td><p>Make sure your map is in right order e.g. latitude coordinate are turned</p></td>
<td><p>datahandling</p></td>
<td><p>loadmap</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e203">E203</a></p></td>
<td><p>Cannot find the map, filename does not exists at this location</p></td>
<td><p>Any map</p></td>
<td><p>the datafile cannot be found, the location is wrong or the file is missing</p></td>
<td><p>datahandling</p></td>
<td><p>loadmap</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e204">E204</a></p></td>
<td><p>Trying to read the precipitation map metadata</p></td>
<td><p>Precipitation map</p></td>
<td><p>Make sure the precipitation netcdf are existing and correct</p></td>
<td><p>datahandling</p></td>
<td><p>metaNetCDF</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e205">E205</a></p></td>
<td><p>Read error while reading netcdf map</p></td>
<td><p>any netcdf map</p></td>
<td><p>Make sure netcdf map is existing and correct</p></td>
<td><p>datahandling</p></td>
<td><p>readCoordNetCDF</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e206">E206</a></p></td>
<td><p>read error while reading meteo maps</p></td>
<td><p>any meteo maps</p></td>
<td><p>Make sure the meteo input maps are in the right location and chave correct attributes</p></td>
<td><p>datahandling</p></td>
<td><p>checkMeteo_Wordclim</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e207">E207</a></p></td>
<td><p>read error while reading the wordclim map for downscaling meteo maps</p></td>
<td><p>Wordlclim maps</p></td>
<td><p>Make sure the wordclim maps are in the right location and chave correct attributes</p></td>
<td><p>datahandling</p></td>
<td><p>checkMeteo_Wordclim</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e208">E208</a></p></td>
<td><p>Cannot find meteomaps</p></td>
<td><p>any meteomap</p></td>
<td><p>Make sure the meteo input maps are at the right location</p></td>
<td><p>datahandling</p></td>
<td><p>multinetdf</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e209">E209</a></p></td>
<td><p><a href="#id11"><span class="problematic" id="id12">`</span></a>Error loading meteomaps</p></td>
<td><p>any meteomap</p></td>
<td><p>Check if the filenames of the meteomaps are ok. Does the filename exist at this location</p></td>
<td><p>datahandling</p></td>
<td><p>multinetdf</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e210">E210</a></p></td>
<td><p>Meteomap does not have this date</p></td>
<td><p>any meteomap</p></td>
<td><p>The netCDF file does not contain this date. Check your start and end date</p></td>
<td><p>datahandling</p></td>
<td><p>readmeteodata</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e211">E211</a></p></td>
<td><p><a href="#id13"><span class="problematic" id="id14">`</span></a>Error loading meteomaps</p></td>
<td><p>any meteomap</p></td>
<td><p>Check if the filenames of the meteomaps are ok. Does the filename exist at this location</p></td>
<td><p>datahandling</p></td>
<td><p>readmeteodata</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e212">E212</a></p></td>
<td><p><a href="#id15"><span class="problematic" id="id16">`</span></a>Error loading any other time depending map but not meteomaps</p></td>
<td><p>any time dependending netCDF map</p></td>
<td><p>Check if the filenames of the map is ok. Does the filename exist at this location</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdf2</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e213">E213</a></p></td>
<td><p><a href="#id17"><span class="problematic" id="id18">`</span></a>Error loading netCDF maps without time</p></td>
<td><p>any non time depending netCDF map</p></td>
<td><p>Check if the filenames of the map is ok. Does the filename exist at this location</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfWithoutTime</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e214">E214</a></p></td>
<td><p><a href="#id19"><span class="problematic" id="id20">`</span></a>Error loading the initial map</p></td>
<td><p>initial netCDF map</p></td>
<td><p>Check if the loaction of the initial map is o. Please check filename in initLoad</p></td>
<td><p>datahandling</p></td>
<td><p>readnetcdfInitial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e215">E215</a></p></td>
<td><p>Trying to read the precipitation map metadata</p></td>
<td><p>Precipitation map</p></td>
<td><p>Make sure the precipitation netcdf are existing and correct</p></td>
<td><p>timestep</p></td>
<td><p>checkifDate</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e216">E216</a></p></td>
<td><p>Outflow/Inflow point file cannot be loaded</p></td>
<td><p>InflowPoints</p></td>
<td><p>Check if filename of InflowPoints exists</p></td>
<td><p>inflow</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e217">E217</a></p></td>
<td><p>Mistake reading inflow file, name of inflow points are used twice</p></td>
<td><p>In_Dir</p></td>
<td><p>Check inflow file header</p></td>
<td><p>inflow</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e218">E218</a></p></td>
<td><p>Mistake reading inflow file</p></td>
<td><p>In_Dir</p></td>
<td><p>Check if filename of inflow file exists</p></td>
<td><p>inflow</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e219">E219</a></p></td>
<td><p>Mistake in discharge daily netcdf file</p></td>
<td><p>Out_MAP_Daily = discharge</p></td>
<td><p>Something is wrong with the daily discharge file. Check location and content</p></td>
<td><p><a href="#id21"><span class="problematic" id="id22">`</span></a>Environment</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e220">E220</a></p></td>
<td><p>Output file path is wrong</p></td>
<td><p>OUT_Dir, PathOut</p></td>
<td><p>Check OUT_Dir and PathOut. OUT_Dir can be used several times in the settings file.</p></td>
<td><p>output</p></td>
<td><p>appendinfo</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e221">E221</a></p></td>
<td><p><a href="#id23"><span class="problematic" id="id24">`</span></a>Error using file in Gauges</p></td>
<td><p>Gauges</p></td>
<td><p>Please check if file in Gauges exists and is correct</p></td>
<td><p>output</p></td>
<td><p>initial</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e301">E301</a></p></td>
<td><p>Python version is not 64 bit</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>Make sure that you use a 64 bit version of Python</p></td>
<td><p>global</p></td>
<td><p>main</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e302">E302</a></p></td>
<td><p>Settingsfile not found</p></td>
<td><ul class="simple">
<li></li>
</ul>
</td>
<td><p>Make sure the settings file exists and is at the right location</p></td>
<td><p>configuration</p></td>
<td><p>parse_configuration</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e303">E303</a></p></td>
<td><p>An error occured while reading metaNetcdf.xml</p></td>
<td><p>metaNetcdfFile</p></td>
<td><p>Please check that metaNetcdf is a valid .xml file</p></td>
<td><p>configuration</p></td>
<td><p>read_metanetcdf</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#e304">E304</a></p></td>
<td><p>Cannot find alternative option file metaNetcdf.xml not found</p></td>
<td><p>metaNetcdfFile</p></td>
<td><p>Please check in metaNetcdfFile that the file exists</p></td>
<td><p>configuration</p></td>
<td><p>read_metanetcdf</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#e305">E305</a></p></td>
<td><p>An error occured while reading alternative metaNetcdf.xml</p></td>
<td><p>metaNetcdfFile</p></td>
<td><p>Please check that metaNetcdf is a valid .xml file</p></td>
<td><p>configuration</p></td>
<td><p>read_metanetcdf</p></td>
</tr>
</tbody>
</table>
<section id="e101">
<h2>E101<a class="headerlink" href="#e101" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Gauges in settingsfile is not a coordinate e.g. Gauges = bad bad</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Gauges</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Put in pairs of coordinates or a map with coordinates</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, valuecell</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e102">
<h2>E102<a class="headerlink" href="#e102" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>One of the gauges is outside the map extend of the mask map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Gauges</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure that all gauges are inside the mask map area</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, valuecell</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e103">
<h2>E103<a class="headerlink" href="#e103" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Maskmap is not a valid mask map nor valid coordinates nor valid point e.g. MaskMap = 1 2 3 4 5 6</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>MaskMap</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Put in a pair of coordinates, a defined rectangle (5 numbers) or a filename</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, loadsetclone</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e104">
<h2>E104<a class="headerlink" href="#e104" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>MaskMap point does not have a valid value in the river network (LDD)</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>MaskMap</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>You put in a coordinate as MaskMap, but at this coordinate there is no valid river network value</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, maskfrompoint</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e105">
<h2>E105<a class="headerlink" href="#e105" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The map you are loading has a different shape (different cols,rows) than the other maps</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any map</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your map has the same resolution, rows, cols than the river network map</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, compressArray</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e106">
<h2>E106<a class="headerlink" href="#e106" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The map you are loading has missing cell values (NaNs) where the river network and the mask map has valid values</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any map</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Check the map and include cell values where the river network map has valid (non NaNs) values</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, compressArray</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e107">
<h2>E107<a class="headerlink" href="#e107" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The netCDF map has different attributes (resolution, rows,cols) than your standard map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any netCDF map</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your map has the same resolution, rows, cols as the river network map</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, mapattrNetCDF</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e108">
<h2>E108<a class="headerlink" href="#e108" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The tif map has different attributes (resolution, rows,cols) than your standard map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any tif map</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your map has the same resolution, rows, cols as the river network map</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, mapattrTiff</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e109">
<h2>E109<a class="headerlink" href="#e109" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The meteo map (e.g. temperature, precipitation, evaporation..) has different attributes (resolution, rows,cols) than your standard map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Meteo netCDF map</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your meteo input maps have the same resolution, rows, cols as the river network map. If it is the ET maps, it might be from another run with different mask. Please look at the option: calc_evaporation</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readmeteodata</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e110">
<h2>E110<a class="headerlink" href="#e110" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The netcdf map with a time variable (e.g. waterdemand, land cover, lakes..) has different attributes (resolution, rows,cols) than your standard map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>All time depending netCDF maps appart from meteo maps</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your netCDF input maps have the same resolution, rows, cols as the river network map</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readnetcdf2</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e111">
<h2>E111<a class="headerlink" href="#e111" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The netcdf maps without time is turned upside dowm</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any netCDF map without time</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your map is in right order e.g. latitude coordinate are turned</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readnetcdfWithoutTime</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e112">
<h2>E112<a class="headerlink" href="#e112" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The initial map (load_initial) stack is turned upside down</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Initload</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your initial map (in initial_load) is in right order e.g. latitude coordinate are turned</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readnetcdfInitial</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e113">
<h2>E113<a class="headerlink" href="#e113" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>The initial map stack (initial_load) has different attributes (resolution, rows,cols) than your standard map</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Initload</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure your initial maps (in initial_load)has the same attributes. Maybe your initial maps are from a different run with a different mask?</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readnetcdfInitial</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e114">
<h2>E114<a class="headerlink" href="#e114" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Problem reading initial maps</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Initload</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Initial maps has maybe not the same shape as the mask map. Maybe put load_initial = False</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, readnetcdfInitial</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e115">
<h2>E115<a class="headerlink" href="#e115" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Variable with a True or False value can not be read</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any flag (True or False)</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Make sure the variable has either: varname = False or varname = True. Ttrue or faalse is not working!</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, returnBool</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e116">
<h2>E116<a class="headerlink" href="#e116" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>One of the variable names in [Option] is written wrong</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any variable in [Option]</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>A keyword in option is maybe written wrong e.g. CaaapillarRise instead CapillarRise</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, checkOption</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e117">
<h2>E117<a class="headerlink" href="#e117" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>One of the variable names is written wrong</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>Any variable after [Option]</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>A keyword in option is maybe written wrong e.g. MaaaskMap instead MaskMap. Pay attention: in Linux words are case sensitive!</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>datahandling, cbinding</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e118">
<h2>E118<a class="headerlink" href="#e118" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Timing in the section TIME-RELATED_CONSTANTS is wrong</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>StepStart, SpinUp, StepEnd</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Please check the variables StepStart, SpinUp, StartEnd</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>timestep, ctbinding</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e119">
<h2>E119<a class="headerlink" href="#e119" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Either date in StepStart is not a date or in SpinUp or StepEnd it is neither a number or a date</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>StepStart, SpinUp, StepEnd</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Please check the variables StepStart, SpinUp, StartEnd - A date is missing</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>timestep, Calendar</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e120">
<h2>E120<a class="headerlink" href="#e120" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>First date in StepInit is neither a number or a date</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>StepInit</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Check StepInit in INITITIAL CONDITIONS. It is not a date or a number</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>timestep, Calendar</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e121">
<h2>E121<a class="headerlink" href="#e121" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Second value in StepInit is not a number or date nor indicating a repetition of year(y), month(m) or day(d) e.g. 2y for every 2 years or 6m for every 6 month</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>StepInit</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Check StepInit. The second part is neither a date or d,m,y</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>timestep, datetosaveInit</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e122">
<h2>E122<a class="headerlink" href="#e122" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>
<dd class="field-odd"><p>Third value in StepInit is not an integer after ‘y’ or ‘m’ or ‘d’</p>
</dd>
<dt class="field-even">Where<span class="colon">:</span></dt>
<dd class="field-even"><p>StepInit</p>
</dd>
<dt class="field-odd">What to do<span class="colon">:</span></dt>
<dd class="field-odd"><p>Check StepInit. The third part after d,m,y is not an integer</p>
</dd>
<dt class="field-even">Module<span class="colon">:</span></dt>
<dd class="field-even"><p>timestep, datetosaveInit</p>
</dd>
</dl>
</div></blockquote>
</section>
<section id="e123">
<h2>E123<a class="headerlink" href="#e123" title="Permalink to this heading"></a></h2>
<blockquote>
<div><dl class="field-list simple">
<dt class="field-odd">Description<span class="colon">:</span></dt>