-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.log
2900 lines (2884 loc) · 463 KB
/
example.log
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
03/05/2019 07:32:59 PM hey!
03/05/2019 07:32:59 PM Entering env context: <rasterio.env.Env object at 0x000002B1F92C98D0>
03/05/2019 07:32:59 PM Starting outermost env
03/05/2019 07:32:59 PM No GDAL environment exists
03/05/2019 07:32:59 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B1FB424978> created
03/05/2019 07:32:59 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:32:59 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B1FB424978>.
03/05/2019 07:32:59 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1FB424978> options
03/05/2019 07:32:59 PM Entered env context: <rasterio.env.Env object at 0x000002B1F92C98D0>
03/05/2019 07:33:04 PM Nodata success: 1, Nodata value: -32768.000000
03/05/2019 07:33:04 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem.tif' mode='r'> is started.
03/05/2019 07:33:04 PM Exiting env context: <rasterio.env.Env object at 0x000002B1F92C98D0>
03/05/2019 07:33:04 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B1FB424978> options
03/05/2019 07:33:04 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B1FB424978>.
03/05/2019 07:33:04 PM Exiting outermost env
03/05/2019 07:33:04 PM Exited env context: <rasterio.env.Env object at 0x000002B1F92C98D0>
03/05/2019 07:33:04 PM Entering env context: <rasterio.env.Env object at 0x000002B1FB16F5F8>
03/05/2019 07:33:04 PM Starting outermost env
03/05/2019 07:33:04 PM No GDAL environment exists
03/05/2019 07:33:04 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B1FB424978> created
03/05/2019 07:33:04 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:33:04 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B1FB424978>.
03/05/2019 07:33:04 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1FB424978> options
03/05/2019 07:33:04 PM Entered env context: <rasterio.env.Env object at 0x000002B1FB16F5F8>
03/05/2019 07:33:04 PM Exiting env context: <rasterio.env.Env object at 0x000002B1FB16F5F8>
03/05/2019 07:33:04 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B1FB424978> options
03/05/2019 07:33:04 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B1FB424978>.
03/05/2019 07:33:04 PM Exiting outermost env
03/05/2019 07:33:04 PM Exited env context: <rasterio.env.Env object at 0x000002B1FB16F5F8>
03/05/2019 07:33:04 PM Reading the stream network coordinates from the csv file...
03/05/2019 07:33:05 PM Entering env context: <fiona.env.Env object at 0x000002B1F48C6A90>
03/05/2019 07:33:05 PM Starting outermost env
03/05/2019 07:33:05 PM No GDAL environment exists
03/05/2019 07:33:05 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B1F25D04E0> created
03/05/2019 07:33:05 PM Logging error handler pushed.
03/05/2019 07:33:05 PM All drivers registered.
03/05/2019 07:33:05 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:33:05 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B1F25D04E0>.
03/05/2019 07:33:05 PM Updated existing <fiona._env.GDALEnv object at 0x000002B1F25D04E0> with options {}
03/05/2019 07:33:05 PM Entered env context: <fiona.env.Env object at 0x000002B1F48C6A90>
03/05/2019 07:33:05 PM Got a copy of environment <fiona._env.GDALEnv object at 0x000002B1F25D04E0> options
03/05/2019 07:33:05 PM Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'}
03/05/2019 07:33:05 PM Set option b'ENCODING': b''
03/05/2019 07:33:05 PM Exiting env context: <fiona.env.Env object at 0x000002B1F48C6A90>
03/05/2019 07:33:05 PM Cleared existing <fiona._env.GDALEnv object at 0x000002B1F25D04E0> options
03/05/2019 07:33:05 PM Stopping GDALEnv <fiona._env.GDALEnv object at 0x000002B1F25D04E0>.
03/05/2019 07:33:05 PM Error handler popped.
03/05/2019 07:33:05 PM Stopped GDALEnv <fiona._env.GDALEnv object at 0x000002B1F25D04E0>.
03/05/2019 07:33:05 PM Exiting outermost env
03/05/2019 07:33:05 PM Exited env context: <fiona.env.Env object at 0x000002B1F48C6A90>
03/05/2019 07:33:05 PM Got coordinate system
03/05/2019 07:33:05 PM Got coordinate system
03/05/2019 07:33:05 PM Index: 0
03/05/2019 07:33:06 PM Flushed buffer
03/05/2019 07:33:06 PM Stopped session
03/05/2019 07:33:06 PM Entering env context: <rasterio.env.Env object at 0x000002B1F3232860>
03/05/2019 07:33:06 PM Starting outermost env
03/05/2019 07:33:06 PM No GDAL environment exists
03/05/2019 07:33:06 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> created
03/05/2019 07:33:06 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:33:06 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:33:06 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:06 PM Entered env context: <rasterio.env.Env object at 0x000002B1F3232860>
03/05/2019 07:33:07 PM Nodata success: 1, Nodata value: -340282346638528859811704183484516925440.000000
03/05/2019 07:33:07 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem_breach_hand.tif' mode='r'> is started.
03/05/2019 07:33:07 PM Exiting env context: <rasterio.env.Env object at 0x000002B1F3232860>
03/05/2019 07:33:07 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:33:07 PM Exiting outermost env
03/05/2019 07:33:07 PM Exited env context: <rasterio.env.Env object at 0x000002B1F3232860>
03/05/2019 07:33:07 PM Entering env context: <rasterio.env.Env object at 0x000002B1F32255F8>
03/05/2019 07:33:07 PM Starting outermost env
03/05/2019 07:33:07 PM No GDAL environment exists
03/05/2019 07:33:07 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> created
03/05/2019 07:33:07 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:33:07 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:33:07 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Entered env context: <rasterio.env.Env object at 0x000002B1F32255F8>
03/05/2019 07:33:07 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Entering env context: <rasterio.env.Env object at 0x000002B1FB424C50>
03/05/2019 07:33:07 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Entered env context: <rasterio.env.Env object at 0x000002B1FB424C50>
03/05/2019 07:33:07 PM Nodata success: 1, Nodata value: 0.000000
03/05/2019 07:33:07 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_breach_net.tif' mode='r'> is started.
03/05/2019 07:33:07 PM Exiting env context: <rasterio.env.Env object at 0x000002B1FB424C50>
03/05/2019 07:33:07 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:33:07 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:33:07 PM No GDAL environment exists
03/05/2019 07:33:07 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B1F32328D0> created
03/05/2019 07:33:07 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:33:07 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:33:07 PM Exited env context: <rasterio.env.Env object at 0x000002B1FB424C50>
03/05/2019 07:33:07 PM 10901
03/05/2019 07:33:07 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:33:07 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:33:07 PM all_valid: False
03/05/2019 07:33:07 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:33:07 PM Jump straight to _read()
03/05/2019 07:33:07 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:33:07 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:33:07 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:33:07 PM Output nodata value read from file: 0.0
03/05/2019 07:33:07 PM Output nodata values: [0.0]
03/05/2019 07:33:07 PM all_valid: False
03/05/2019 07:33:07 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:33:07 PM Jump straight to _read()
03/05/2019 07:33:07 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:33:07 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:33:07 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:38:10 PM Error with segment 10901; skipping.
03/05/2019 07:38:10 PM 10902
03/05/2019 07:38:10 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:10 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:10 PM all_valid: False
03/05/2019 07:38:10 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:10 PM Jump straight to _read()
03/05/2019 07:38:10 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:38:10 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:38:15 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:38:15 PM Output nodata value read from file: 0.0
03/05/2019 07:38:15 PM Output nodata values: [0.0]
03/05/2019 07:38:15 PM all_valid: False
03/05/2019 07:38:15 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:15 PM Jump straight to _read()
03/05/2019 07:38:15 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:38:15 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:38:15 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:38:15 PM 10903
03/05/2019 07:38:15 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:15 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:15 PM all_valid: False
03/05/2019 07:38:15 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:15 PM Jump straight to _read()
03/05/2019 07:38:15 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:38:15 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:38:16 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:38:16 PM Output nodata value read from file: 0.0
03/05/2019 07:38:16 PM Output nodata values: [0.0]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:38:16 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:38:16 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:38:16 PM 10904
03/05/2019 07:38:16 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:16 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:38:16 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:38:16 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:38:16 PM Output nodata value read from file: 0.0
03/05/2019 07:38:16 PM Output nodata values: [0.0]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:38:16 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:38:16 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:38:16 PM 10905
03/05/2019 07:38:16 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:16 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:38:16 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:38:16 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:38:16 PM Output nodata value read from file: 0.0
03/05/2019 07:38:16 PM Output nodata values: [0.0]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:38:16 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:38:16 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:38:16 PM 10906
03/05/2019 07:38:16 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:16 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:38:16 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:38:16 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:38:16 PM Output nodata value read from file: 0.0
03/05/2019 07:38:16 PM Output nodata values: [0.0]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:38:16 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:38:16 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:38:16 PM 10907
03/05/2019 07:38:16 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:38:16 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:38:16 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:38:16 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:38:16 PM Output nodata value read from file: 0.0
03/05/2019 07:38:16 PM Output nodata values: [0.0]
03/05/2019 07:38:16 PM all_valid: False
03/05/2019 07:38:16 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:38:16 PM Jump straight to _read()
03/05/2019 07:38:16 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:38:16 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:38:16 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:38:16 PM Creating a not-responsible GDALEnv in drivers()
03/05/2019 07:38:16 PM Entering env context: <fiona.env.Env object at 0x000002B180256CC0>
03/05/2019 07:38:16 PM Starting outermost env
03/05/2019 07:38:16 PM No GDAL environment exists
03/05/2019 07:38:16 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B180256400> created
03/05/2019 07:38:16 PM Logging error handler pushed.
03/05/2019 07:38:16 PM All drivers registered.
03/05/2019 07:38:16 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:38:16 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B180256400>.
03/05/2019 07:38:16 PM Updated existing <fiona._env.GDALEnv object at 0x000002B180256400> with options {}
03/05/2019 07:38:16 PM Entered env context: <fiona.env.Env object at 0x000002B180256CC0>
03/05/2019 07:38:16 PM Set option b'ENCODING': b''
03/05/2019 07:38:16 PM Init: epsg:26918
03/05/2019 07:38:16 PM Setting EPSG: 26918
03/05/2019 07:38:16 PM Deleted pre-existing layer at 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:38:16 PM Set option b'ENCODING': b''
03/05/2019 07:38:16 PM Created layer 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:38:16 PM Begin creating field: 'bnk_ht2' value: 'float'
03/05/2019 07:38:16 PM End creating field 'bnk_ht2'
03/05/2019 07:38:16 PM Begin creating field: 'chn_shp' value: 'float'
03/05/2019 07:38:16 PM End creating field 'chn_shp'
03/05/2019 07:38:16 PM Begin creating field: 'chn_wid2' value: 'float'
03/05/2019 07:38:16 PM End creating field 'chn_wid2'
03/05/2019 07:38:16 PM Begin creating field: 'linkno' value: 'int'
03/05/2019 07:38:16 PM End creating field 'linkno'
03/05/2019 07:38:16 PM Writing started
03/05/2019 07:38:16 PM Starting transaction (initial)
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '0', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474922.0, 4640507.9969039), (474920.80382166576, 4640505.245693731), (474919.60764333146, 4640502.494483562), (474918.4114649973, 4640499.743273394), (474917.215286663, 4640496.992063225), (474916.01910832885, 4640494.240853056), (474914.8229299946, 4640491.489642886), (474913.6267516603, 4640488.738432718), (474912.43057332607, 4640485.98722255), (474911.23439499177, 4640483.2360123815), (474910.0382166576, 4640480.4848022135), (474908.84203832346, 4640477.733592044), (474907.64585998905, 4640474.982381875), (474906.4496816549, 4640472.231171707), (474905.2535033206, 4640469.479961538), (474904.0573249863, 4640466.728751369), (474902.8611466521, 4640463.9775412), (474901.66496831784, 4640461.226331031), (474900.4687899836, 4640458.475120862), (474899.27261164936, 4640455.723910694), (474898.07643331506, 4640452.972700525), (474896.88025498093, 4640450.221490356), (474895.6840766466, 4640447.470280187), (474894.48789831245, 4640444.719070018), (474893.2917199782, 4640441.96785985), (474892.0955416439, 4640439.216649681), (474890.16610150225, 4640436.93376809), (474888.17300998577, 4640434.691540134), (474886.1799184693, 4640432.449312178), (474884.1868269528, 4640430.207084222), (474882.1937354363, 4640427.964856266), (474880.20064391976, 4640425.722628308), (474878.20755240327, 4640423.480400354), (474876.2144608868, 4640421.238172398), (474874.2213693703, 4640418.995944441), (474872.2282778538, 4640416.7537164865), (474870.23518633726, 4640414.51148853), (474868.2420948208, 4640412.269260573), (474867.42825829366, 4640409.424066221), (474866.77746692026, 4640406.495505041), (474866.1266755468, 4640403.566943862), (474865.4758841733, 4640400.63838268), (474864.8250927999, 4640397.7098215), (474864.1743014264, 4640394.781260319), (474863.523510053, 4640391.852699138), (474862.87271867954, 4640388.924137956), (474862.22192730603, 4640385.9955767775), (474860.9225767415, 4640383.339329656), (474859.2876116897, 4640380.823998807), (474857.6526466379, 4640378.308667959), (474856.01768158615, 4640375.7933371095), (474854.38271653437, 4640373.27800626), (474852.7477514826, 4640370.762675412), (474851.1127864308, 4640368.247344563), (474849.47782137897, 4640365.732013714), (474847.8428563272, 4640363.216682865), (474846.2078912754, 4640360.701352016), (474844.57292622357, 4640358.186021167), (474842.93796117185, 4640355.670690319), (474841.30299612007, 4640353.155359468), (474839.6680310683, 4640350.64002862), (474838.0330660165, 4640348.124697772), (474836.39810096467, 4640345.609366924), (474834.76313591294, 4640343.094036073), (474833.12817086116, 4640340.578705225), (474831.4932058093, 4640338.063374376), (474829.8582407576, 4640335.548043527), (474828.22327570576, 4640333.032712678), (474826.588310654, 4640330.517381829), (474824.9533456022, 4640328.00205098), (474823.31838055036, 4640325.486720132), (474822.63265979564, 4640322.609192572), (474822.1764882428, 4640319.644077478), (474821.7203166901, 4640316.678962385), (474821.2641451373, 4640313.7138472935), (474820.8079735846, 4640310.7487322), (474820.3518020318, 4640307.783617106), (474819.895630479, 4640304.818502014), (474819.4394589263, 4640301.853386921), (474818.9832873735, 4640298.888271828), (474818.5271158207, 4640295.923156735), (474818.07094426797, 4640292.958041642), (474817.61477271526, 4640289.992926549), (474817.15860116243, 4640287.0278114565), (474816.16673065524, 4640284.226206542), (474814.88933954615, 4640281.511750435), (474813.6119484372, 4640278.797294329), (474812.3345573282, 4640276.082838221), (474811.0571662192, 4640273.368382116), (474809.7797751103, 4640270.653926008), (474808.50238400133, 4640267.939469903), (474807.2249928922, 4640265.225013796), (474805.94760178326, 4640262.51055769), (474804.6702106743, 4640259.796101583), (474803.3928195653, 4640257.081645477), (474802.11542845634, 4640254.36718937), (474800.83803734725, 4640251.652733264), (474799.5606462383, 4640248.938277156), (474798.28325512935, 4640246.22382105), (474797.0058640203, 4640243.509364943))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: -9999.0
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: -9999.0
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: -9999.0
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '1', 'type': 'Feature', 'properties': {'bnk_ht2': 2.1891066882075094, 'chn_shp': 0.10173778609454419, 'chn_wid2': 21.44285536239233, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474795.7284729114, 4640240.7949088365), (474794.4510818024, 4640238.08045273), (474793.17369069345, 4640235.365996623), (474792.84778776154, 4640232.409295847), (474792.6716216957, 4640229.414472726), (474792.4954556298, 4640226.419649607), (474792.319289564, 4640223.424826488), (474792.1431234981, 4640220.430003368), (474791.9669574323, 4640217.435180249), (474791.7907913664, 4640214.440357129), (474791.61462530063, 4640211.4455340095), (474791.43845923466, 4640208.45071089), (474791.2622931689, 4640205.45588777), (474791.08612710296, 4640202.461064652), (474790.9099610371, 4640199.466241531), (474790.7337949713, 4640196.4714184115), (474790.5576289054, 4640193.476595292), (474790.3814628396, 4640190.481772173), (474790.2052967737, 4640187.486949054), (474790.0291307078, 4640184.492125934), (474789.85296464205, 4640181.497302813), (474789.6767985762, 4640178.502479695), (474789.5006325103, 4640175.507656575), (474789.32446644455, 4640172.5128334565), (474789.1483003786, 4640169.518010336), (474788.97213431273, 4640166.523187216), (474788.7959682469, 4640163.528364097), (474788.619802181, 4640160.533540977), (474788.44363611523, 4640157.5387178585), (474788.2674700493, 4640154.543894739), (474788.0913039834, 4640151.549071618), (474787.91513791756, 4640148.5542485), (474787.7389718518, 4640145.55942538), (474787.5628057859, 4640142.5646022605), (474787.38663972006, 4640139.569779141), (474787.2104736542, 4640136.574956021), (474787.0343075884, 4640133.580132902), (474786.29662259313, 4640130.685806707), (474785.42313774576, 4640127.815785063), (474784.5496528985, 4640124.945763423), (474783.6761680511, 4640122.075741782), (474782.80268320366, 4640119.2057201415), (474781.9291983564, 4640116.335698498), (474781.055713509, 4640113.465676858), (474780.1822286617, 4640110.595655217), (474779.30874381436, 4640107.7256335765), (474778.43525896705, 4640104.855611933), (474777.5617741196, 4640101.985590293), (474776.68828927225, 4640099.115568652), (474775.814804425, 4640096.2455470115), (474774.94131957757, 4640093.375525368), (474774.0678347303, 4640090.505503728), (474773.1943498829, 4640087.635482087), (474772.32086503546, 4640084.7654604465), (474771.4473801882, 4640081.895438803), (474770.5738953408, 4640079.025417163), (474769.70041049353, 4640076.155395522), (474768.82692564616, 4640073.2853738805), (474767.95344079885, 4640070.415352238), (474767.0799559515, 4640067.545330598), (474766.20647110406, 4640064.675308957), (474764.6684581954, 4640062.132745374), (474762.9247436143, 4640059.69154496), (474761.18102903315, 4640057.2503445465), (474759.437314452, 4640054.809144133), (474757.6935998708, 4640052.367943719), (474755.9498852897, 4640049.926743305), (474754.2061707085, 4640047.485542892), (474752.4624561274, 4640045.044342479), (474750.71874154615, 4640042.603142065), (474748.975026965, 4640040.161941651), (474747.23131238384, 4640037.7207412375), (474745.4875978027, 4640035.279540824), (474743.74388322147, 4640032.83834041), (474742.0001686404, 4640030.397139996), (474740.2564540592, 4640027.9559395835), (474738.51273947814, 4640025.51473917), (474736.7690248969, 4640023.073538756), (474735.0253103158, 4640020.632338342), (474733.2815957346, 4640018.1911379285), (474731.5378811535, 4640015.749937515), (474729.7941665723, 4640013.308737101), (474728.05045199115, 4640010.867536687), (474726.30673741, 4640008.426336274), (474724.56302282884, 4640005.985135862), (474722.8193082477, 4640003.543935447), (474721.07559366646, 4640001.102735033), (474719.33187908534, 4639998.66153462), (474717.5881645042, 4639996.220334207), (474715.84444992297, 4639993.779133792), (474714.1007353418, 4639991.337933378), (474712.3570207607, 4639988.8967329655), (474710.6133061795, 4639986.455532552), (474708.86959159846, 4639984.014332138), (474707.1258770172, 4639981.573131723), (474705.3821624361, 4639979.131931311), (474703.6384478549, 4639976.690730897), (474701.89473327383, 4639974.249530483), (474700.1510186926, 4639971.808330068), (474698.4073041114, 4639969.3671296565))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 2.1891066882075094
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.10173778609454419
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 21.44285536239233
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '2', 'type': 'Feature', 'properties': {'bnk_ht2': 2.3992922646658763, 'chn_shp': 0.08182658979406524, 'chn_wid2': 29.2561988201902, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474696.66358953033, 4639966.925929243), (474694.9198749492, 4639964.484728829), (474693.17616036796, 4639962.043528415), (474691.4324457869, 4639959.6023280015), (474689.50120040396, 4639957.310754354), (474687.5081088875, 4639955.068526398), (474685.51501737104, 4639952.826298443), (474683.52192585455, 4639950.584070486), (474681.52883433795, 4639948.34184253), (474679.53574282146, 4639946.099614575), (474677.542651305, 4639943.857386618), (474675.5495597886, 4639941.615158662), (474673.5564682721, 4639939.3729307065), (474671.5633767556, 4639937.13070275), (474669.5702852391, 4639934.888474794), (474667.5771937226, 4639932.646246838), (474665.5841022061, 4639930.404018882), (474663.5910106896, 4639928.161790926), (474661.59791917313, 4639925.919562968), (474659.6048276566, 4639923.677335014), (474657.6117361402, 4639921.435107058), (474655.61864462367, 4639919.192879101), (474653.6255531071, 4639916.9506511465), (474651.63246159063, 4639914.70842319), (474649.6393700742, 4639912.466195233), (474647.6462785577, 4639910.2239672765), (474645.65318704117, 4639907.981739322), (474643.6600955247, 4639905.739511365), (474641.6670040082, 4639903.497283408), (474639.6739124917, 4639901.255055454), (474637.6808209752, 4639899.012827497), (474635.6877294587, 4639896.770599541), (474633.6946379422, 4639894.5283715855), (474631.70154642576, 4639892.286143629), (474629.70845490927, 4639890.043915673), (474627.71536339284, 4639887.8016877165), (474625.72227187635, 4639885.559459761), (474623.72918035975, 4639883.317231805), (474621.73608884326, 4639881.075003848), (474619.7429973268, 4639878.832775893), (474617.7499058104, 4639876.590547937), (474615.75681429385, 4639874.34831998), (474613.7637227774, 4639872.106092025), (474611.77063126094, 4639869.863864069), (474609.7775397444, 4639867.621636112), (474607.7844482279, 4639865.3794081565), (474605.7913567114, 4639863.137180202), (474603.7982651949, 4639860.894952244), (474601.80517367844, 4639858.652724288), (474599.812082162, 4639856.410496333), (474597.81899064546, 4639854.168268376), (474595.8258991289, 4639851.92604042), (474593.56323091156, 4639849.985844172), (474591.1098116537, 4639848.259363953), (474588.6563923958, 4639846.5328837335), (474586.2029731379, 4639844.806403516), (474583.74955388, 4639843.079923297), (474581.2961346221, 4639841.353443079), (474578.84271536424, 4639839.62696286), (474576.38929610635, 4639837.9004826415), (474573.9358768484, 4639836.174002423), (474571.48245759046, 4639834.447522203), (474569.0290383326, 4639832.721041986), (474566.57561907463, 4639830.994561767), (474564.1221998168, 4639829.268081549), (474561.6687805589, 4639827.54160133), (474559.21536130103, 4639825.815121111), (474556.76194204297, 4639824.088640893), (474554.3085227851, 4639822.362160675), (474551.85510352725, 4639820.635680457), (474549.40168426937, 4639818.909200238), (474546.9482650114, 4639817.18272002), (474544.4948457536, 4639815.456239801), (474542.0414264957, 4639813.729759582), (474539.5880072378, 4639812.003279364), (474537.13458797976, 4639810.276799145), (474534.6811687219, 4639808.550318927), (474532.227749464, 4639806.823838708), (474529.7743302061, 4639805.0973584885), (474527.3209109482, 4639803.370878271), (474524.8674916903, 4639801.644398052), (474522.4140724325, 4639799.917917834), (474519.96065317455, 4639798.191437615), (474517.50723391655, 4639796.4649573965), (474515.05381465866, 4639794.738477179), (474512.3050081121, 4639793.7603934035), (474509.333793426, 4639793.345805309), (474506.36257873994, 4639792.931217212), (474503.3913640538, 4639792.516629117), (474500.4201493677, 4639792.102041021), (474497.44893468154, 4639791.687452925), (474494.4777199955, 4639791.27286483), (474491.5065053094, 4639790.858276734), (474488.53529062326, 4639790.443688639), (474485.5640759372, 4639790.029100543), (474482.5928612511, 4639789.614512446), (474479.621646565, 4639789.199924352), (474476.6504318789, 4639788.785336255), (474473.6792171928, 4639788.37074816), (474470.7080025067, 4639787.956160064))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 2.3992922646658763
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.08182658979406524
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 29.2561988201902
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '3', 'type': 'Feature', 'properties': {'bnk_ht2': 1.1254548442607024, 'chn_shp': 0.06382369071013894, 'chn_wid2': 17.60986007218857, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474467.73678782064, 4639787.541571968), (474464.76557313453, 4639787.126983874), (474461.7943584484, 4639786.712395777), (474458.82314376225, 4639786.29780768), (474455.8519290762, 4639785.883219585), (474452.8807143901, 4639785.468631489), (474449.90949970396, 4639785.054043394), (474446.93828501797, 4639784.639455298), (474443.96707033186, 4639784.224867201), (474440.9958556458, 4639783.810279107), (474438.02464095963, 4639783.395691011), (474435.0534262736, 4639782.981102915), (474432.0822115874, 4639782.566514819), (474429.1109969014, 4639782.151926723), (474426.1397822153, 4639781.737338628), (474423.16856752924, 4639781.322750532), (474420.1973528431, 4639780.908162436), (474417.226138157, 4639780.493574341), (474414.25492347096, 4639780.078986245), (474411.2837087848, 4639779.664398149), (474408.3124940987, 4639779.249810053), (474405.34127941256, 4639778.8352219565), (474402.3700647265, 4639778.420633862), (474399.3988500404, 4639778.006045766), (474396.4276353543, 4639777.5914576715), (474393.4564206682, 4639777.176869575), (474390.4852059821, 4639776.762281478), (474387.513991296, 4639776.347693383), (474384.6868699565, 4639775.657679686), (474382.6520296482, 4639773.453269352), (474380.61718934006, 4639771.248859018), (474378.5823490319, 4639769.044448685), (474376.5475087237, 4639766.840038352), (474374.5126684155, 4639764.635628017), (474372.47782810725, 4639762.4312176835), (474370.44298779906, 4639760.226807348), (474368.40814749093, 4639758.022397015), (474366.37330718274, 4639755.817986681), (474364.33846687456, 4639753.613576347), (474362.3036265663, 4639751.409166014), (474360.2687862581, 4639749.20475568), (474358.23394594993, 4639747.0003453465), (474356.19910564175, 4639744.7959350115), (474354.1642653335, 4639742.591524678), (474352.1294250253, 4639740.387114344), (474350.094584717, 4639738.18270401), (474347.72332299955, 4639736.4567713225), (474344.9604212463, 4639735.28785135), (474342.1975194931, 4639734.118931378), (474339.4346177399, 4639732.950011405), (474336.67171598674, 4639731.781091433), (474333.9088142335, 4639730.61217146), (474331.14591248025, 4639729.443251488), (474328.3830107271, 4639728.274331517), (474325.62010897393, 4639727.1054115435), (474322.85720722063, 4639725.93649157), (474320.09430546744, 4639724.767571596), (474317.3314037143, 4639723.598651625), (474314.568501961, 4639722.429731653), (474311.8056002078, 4639721.26081168), (474309.04269845464, 4639720.091891708), (474306.2797967015, 4639718.922971737), (474303.5168949482, 4639717.754051764), (474300.753993195, 4639716.585131791), (474297.99109144177, 4639715.4162118165), (474295.2281896886, 4639714.247291845), (474292.4652879354, 4639713.078371873), (474289.7023861822, 4639711.9094519), (474286.93948442896, 4639710.740531928), (474284.1765826758, 4639709.571611955), (474281.4136809226, 4639708.402691983), (474278.6507791693, 4639707.2337720115), (474275.88787741616, 4639706.0648520375), (474273.12497566297, 4639704.895932065), (474270.5340599517, 4639703.484369847), (474268.5160415696, 4639701.264549627), (474266.49802318774, 4639699.044729407), (474264.4800048057, 4639696.824909186), (474262.46198642364, 4639694.605088966), (474260.44396804174, 4639692.385268746), (474258.42594965966, 4639690.165448526), (474256.40793127776, 4639687.945628306), (474254.3899128957, 4639685.725808085), (474252.37189451366, 4639683.505987865), (474250.3538761318, 4639681.286167645), (474248.33585774974, 4639679.066347425), (474246.31783936784, 4639676.846527205), (474244.29982098576, 4639674.626706985), (474242.2818026038, 4639672.406886764), (474240.1163399372, 4639670.351152317), (474237.6941665704, 4639668.581102547), (474235.27199320367, 4639666.81105278), (474232.84981983685, 4639665.041003012), (474230.4276464701, 4639663.270953244), (474228.00547310343, 4639661.500903476), (474225.58329973655, 4639659.730853708), (474223.1611263698, 4639657.96080394), (474220.73895300296, 4639656.190754171), (474218.3167796362, 4639654.420704404), (474215.89460626955, 4639652.650654635))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 1.1254548442607024
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.06382369071013894
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 17.60986007218857
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '4', 'type': 'Feature', 'properties': {'bnk_ht2': 1.5470083392396263, 'chn_shp': 0.06130326999736827, 'chn_wid2': 25.203711334538696, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474213.4724329027, 4639650.880604868), (474211.050259536, 4639649.110555098), (474208.6280861692, 4639647.340505332), (474206.2059128024, 4639645.570455563), (474203.7837394356, 4639643.800405797), (474201.36156606884, 4639642.030356027), (474198.93939270213, 4639640.26030626), (474196.5172193353, 4639638.490256491), (474194.09504596854, 4639636.720206724), (474191.6728726018, 4639634.950156955), (474189.250699235, 4639633.180107188), (474186.8285258682, 4639631.410057419), (474184.4063525014, 4639629.640007651), (474181.9841791346, 4639627.869957883), (474179.5620057679, 4639626.099908115), (474177.13983240107, 4639624.329858347), (474174.71765903436, 4639622.559808578), (474172.2954856675, 4639620.789758812), (474169.87331230077, 4639619.019709043), (474167.451138934, 4639617.249659275), (474165.0289655672, 4639615.479609507), (474162.5146719429, 4639613.956459897), (474159.5250346681, 4639613.707323456), (474156.53539739345, 4639613.458187017), (474153.5457601186, 4639613.209050576), (474150.55612284393, 4639612.959914137), (474147.56648556923, 4639612.710777697), (474144.57684829435, 4639612.461641259), (474141.5872110197, 4639612.212504818), (474138.597573745, 4639611.963368379), (474135.6079364703, 4639611.714231939), (474132.6182991955, 4639611.4650955), (474129.6286619208, 4639611.21595906), (474126.639024646, 4639610.9668226205), (474123.6493873713, 4639610.717686181), (474120.65975009656, 4639610.468549741), (474117.6701128218, 4639610.219413302), (474114.6804755471, 4639609.970276861), (474111.6908382723, 4639609.721140423), (474108.7012009976, 4639609.472003983), (474105.71156372287, 4639609.222867544), (474102.7219264482, 4639608.973731103), (474099.73228917347, 4639608.724594665), (474096.7426518986, 4639608.475458225), (474093.753014624, 4639608.226321787), (474090.79864887794, 4639608.122748352), (474088.254653966, 4639609.712745171), (474085.71065905393, 4639611.302741991), (474083.16666414187, 4639612.892738812), (474080.6226692299, 4639614.482735631), (474078.0786743179, 4639616.072732451), (474075.5346794059, 4639617.662729272), (474072.99068449385, 4639619.252726091), (474070.4466895818, 4639620.842722911), (474067.9026946698, 4639622.432719732), (474065.0645005604, 4639622.9969039), (474062.0645005604, 4639622.9969039), (474059.0645005604, 4639622.9969039), (474056.0645005604, 4639622.9969039), (474053.0645005604, 4639622.9969039), (474050.0645005604, 4639622.9969039), (474047.0645005604, 4639622.9969039), (474044.0645005604, 4639622.9969039), (474041.5905693222, 4639621.670380909), (474039.4059693442, 4639619.614286812), (474037.2213693661, 4639617.558192715), (474035.03676938795, 4639615.502098618), (474032.8521694099, 4639613.446004521), (474030.6675694318, 4639611.389910424), (474028.48296945385, 4639609.333816327), (474026.2983694757, 4639607.27772223), (474024.1137694976, 4639605.221628133), (474021.9291695195, 4639603.165534036), (474019.7445695415, 4639601.109439938), (474017.55996956344, 4639599.053345842), (474015.3753695853, 4639596.997251745), (474013.1907696072, 4639594.941157648), (474011.0061696292, 4639592.885063551), (474008.8215696511, 4639590.828969453), (474006.636969673, 4639588.7728753565), (474004.45236969495, 4639586.71678126), (474002.26776971685, 4639584.6606871635), (474000.0831697388, 4639582.6045930665), (473997.8985697607, 4639580.548498969), (473995.7139697826, 4639578.492404872), (473993.52936980454, 4639576.436310775), (473991.12707134703, 4639574.778671737), (473988.21664384654, 4639574.051064862), (473985.3062163461, 4639573.323457987), (473982.3957888457, 4639572.595851111), (473979.4853613452, 4639571.868244236), (473976.5749338448, 4639571.140637361), (473973.66450634436, 4639570.413030487), (473970.7540788439, 4639569.685423612), (473967.84365134354, 4639568.957816736), (473964.9332238431, 4639568.230209861), (473962.02279634256, 4639567.502602986), (473959.1123688422, 4639566.77499611), (473956.2019413418, 4639566.047389235), (473953.2915138413, 4639565.31978236))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 1.5470083392396263
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.06130326999736827
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 25.203711334538696
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '5', 'type': 'Feature', 'properties': {'bnk_ht2': 1.5979516165597099, 'chn_shp': 0.07676367231131259, 'chn_wid2': 20.775603948511563, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((473950.38108634093, 4639564.5921754865), (473947.4706588405, 4639563.86456861), (473944.56023134, 4639563.136961735), (473941.6498038396, 4639562.40935486), (473938.7393763391, 4639561.681747985), (473935.8289488387, 4639560.95414111), (473932.91852133826, 4639560.226534233), (473930.0080938378, 4639559.49892736), (473927.09766633745, 4639558.771320485), (473924.187238837, 4639558.04371361), (473921.27681133646, 4639557.316106734), (473918.5560736658, 4639556.130548099), (473915.98359488865, 4639554.587060833), (473913.4111161115, 4639553.043573567), (473910.83863733435, 4639551.500086301), (473908.26615855726, 4639549.956599033), (473905.69367978006, 4639548.413111768), (473903.12120100297, 4639546.869624502), (473900.54872222577, 4639545.326137235), (473897.9762434487, 4639543.78264997), (473895.4037646715, 4639542.239162703), (473892.8312858944, 4639540.695675436), (473890.2588071173, 4639539.152188172), (473888.04124780424, 4639537.141243925), (473885.8633897525, 4639535.078009982), (473883.6855317007, 4639533.014776038), (473881.507673649, 4639530.951542093), (473879.3298155973, 4639528.88830815), (473877.1519575456, 4639526.825074206), (473874.97409949393, 4639524.7618402615), (473872.7962414422, 4639522.698606319), (473870.61838339036, 4639520.635372375), (473868.4405253387, 4639518.5721384315), (473866.262667287, 4639516.508904488), (473864.0848092353, 4639514.445670544), (473861.90695118357, 4639512.3824366005), (473859.7290931318, 4639510.319202657), (473857.55123508006, 4639508.255968713), (473855.37337702845, 4639506.192734769), (473853.1955189767, 4639504.129500825), (473851.017660925, 4639502.066266881), (473848.83980287326, 4639500.003032939), (473846.66194482154, 4639497.939798994), (473844.48408676975, 4639495.87656505), (473842.30622871814, 4639493.813331107), (473840.1283706664, 4639491.750097163), (473837.9505126147, 4639489.686863218), (473835.77265456296, 4639487.623629277), (473833.59479651117, 4639485.560395332), (473831.8187294201, 4639483.163897828), (473830.193625419, 4639480.642184722), (473828.5685214178, 4639478.120471617), (473826.94341741654, 4639475.598758512), (473825.3183134154, 4639473.077045407), (473823.6932094143, 4639470.555332301), (473822.068105413, 4639468.033619196), (473820.44300141186, 4639465.511906091), (473818.8178974107, 4639462.990192986), (473817.1927934095, 4639460.46847988), (473815.56768940843, 4639457.946766775), (473813.9425854072, 4639455.42505367), (473812.31748140603, 4639452.903340564), (473810.6923774048, 4639450.381627459), (473809.0672734036, 4639447.859914354), (473807.44216940243, 4639445.338201249), (473805.81706540135, 4639442.816488143), (473804.1919614001, 4639440.294775038), (473802.5668573989, 4639437.773061933), (473800.94175339775, 4639435.251348828), (473799.31664939655, 4639432.729635722), (473797.6915453954, 4639430.207922617), (473796.0664413942, 4639427.686209512), (473794.44133739296, 4639425.164496406), (473792.8162333918, 4639422.642783301), (473791.1911293906, 4639420.121070196), (473789.56602538953, 4639417.599357091), (473787.9409213883, 4639415.077643985), (473786.31581738713, 4639412.55593088), (473784.69071338593, 4639410.034217775), (473783.0656093848, 4639407.51250467), (473781.44050538354, 4639404.990791564), (473779.8154013824, 4639402.469078459), (473778.1902973812, 4639399.947365354), (473776.56519338, 4639397.425652249), (473774.94008937886, 4639394.903939143), (473773.3149853777, 4639392.382226038), (473771.68988137646, 4639389.860512933), (473770.0647773753, 4639387.338799827), (473768.43967337406, 4639384.817086722), (473766.8145693729, 4639382.295373617), (473765.1894653717, 4639379.773660512), (473763.56436137063, 4639377.251947407), (473761.9392573694, 4639374.730234302), (473760.3141533682, 4639372.208521197), (473758.68904936704, 4639369.686808092), (473757.0639453658, 4639367.165094985), (473755.43884136464, 4639364.64338188), (473753.8137373635, 4639362.121668775), (473752.18863336224, 4639359.599955669), (473750.5635293611, 4639357.078242564))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 1.5979516165597099
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.07676367231131259
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 20.775603948511563
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Creating feature in layer: {'id': '6', 'type': 'Feature', 'properties': {'bnk_ht2': 4.756555284772601, 'chn_shp': 0.1289946332857043, 'chn_wid2': 36.66930503023145, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((473748.93842536, 4639354.556529459), (473747.3133213588, 4639352.034816354), (473745.6383531082, 4639349.549150607), (473743.753341787, 4639347.215327065), (473741.8683304658, 4639344.881503523), (473739.9833191445, 4639342.547679984), (473738.0983078232, 4639340.213856443), (473736.213296502, 4639337.8800329035), (473734.32828518073, 4639335.546209361), (473732.4432738594, 4639333.212385821), (473730.5582625382, 4639330.878562281), (473728.6732512169, 4639328.54473874), (473726.7882398957, 4639326.2109152), (473724.9032285744, 4639323.877091658), (473723.01821725315, 4639321.543268118), (473721.13320593187, 4639319.209444578), (473719.24819461064, 4639316.875621037), (473717.3631832893, 4639314.541797496), (473715.47817196813, 4639312.207973956), (473713.5931606468, 4639309.874150415), (473711.7081493256, 4639307.540326875), (473709.8231380043, 4639305.2065033335), (473707.93812668294, 4639302.872679793), (473706.0531153618, 4639300.538856253), (473704.1681040405, 4639298.205032712), (473702.2830927192, 4639295.871209172), (473700.398081398, 4639293.53738563), (473698.5130700767, 4639291.20356209), (473696.62805875536, 4639288.86973855), (473694.7430474342, 4639286.535915009), (473692.8580361129, 4639284.2020914685), (473690.9730247916, 4639281.868267928), (473689.0880134704, 4639279.534444387), (473687.20300214906, 4639277.200620847), (473685.31799082784, 4639274.866797307), (473683.43297950656, 4639272.532973765), (473681.29006354173, 4639270.442416212), (473679.0702433215, 4639268.424397829), (473676.85042310134, 4639266.406379446), (473674.6306028811, 4639264.388361065), (473672.410782661, 4639262.370342683), (473670.1909624408, 4639260.3523242995), (473667.9711422205, 4639258.334305919), (473665.7513220004, 4639256.316287537), (473663.5315017802, 4639254.2982691545), (473661.31168156, 4639252.280250773), (473659.09186133975, 4639250.262232391), (473656.8720411196, 4639248.244214009), (473654.65222089936, 4639246.226195627), (473652.4324006793, 4639244.208177245), (473650.2125804591, 4639242.190158864), (473647.3916683683, 4639241.251666292), (473644.5070965254, 4639240.427502907), (473641.6225246825, 4639239.603339524), (473638.7379528396, 4639238.77917614), (473635.85338099656, 4639237.955012756), (473632.96880915365, 4639237.1308493735), (473630.0842373108, 4639236.306685989), (473627.1996654679, 4639235.482522605), (473624.31509362493, 4639234.658359221), (473621.430521782, 4639233.834195836), (473618.54594993906, 4639233.010032455), (473615.66137809615, 4639232.185869072), (473612.7768062533, 4639231.361705687), (473609.89223441033, 4639230.537542303), (473607.0076625674, 4639229.713378918), (473604.1230907245, 4639228.889215536), (473601.23851888155, 4639228.065052152), (473598.3539470386, 4639227.240888768), (473595.4693751957, 4639226.416725385), (473592.58480335283, 4639225.592562001), (473589.70023150975, 4639224.768398616))}}
03/05/2019 07:38:16 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field bnk_ht2: 4.756555284772601
03/05/2019 07:38:16 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_shp: 0.1289946332857043
03/05/2019 07:38:16 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:38:16 PM Set field chn_wid2: 36.66930503023145
03/05/2019 07:38:16 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:38:16 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:38:16 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:38:16 PM Set field linkno: 3343
03/05/2019 07:38:16 PM Comitting transaction (final)
03/05/2019 07:38:16 PM Flushed data source cache
03/05/2019 07:38:16 PM Flushed buffer
03/05/2019 07:38:16 PM Stopped session
03/05/2019 07:38:16 PM Exiting env context: <fiona.env.Env object at 0x000002B180256CC0>
03/05/2019 07:38:16 PM Cleared existing <fiona._env.GDALEnv object at 0x000002B180256400> options
03/05/2019 07:38:16 PM Stopping GDALEnv <fiona._env.GDALEnv object at 0x000002B180256400>.
03/05/2019 07:38:16 PM Error handler popped.
03/05/2019 07:38:16 PM Stopped GDALEnv <fiona._env.GDALEnv object at 0x000002B180256400>.
03/05/2019 07:38:16 PM Exiting outermost env
03/05/2019 07:38:16 PM Exited env context: <fiona.env.Env object at 0x000002B180256CC0>
03/05/2019 07:38:16 PM Exiting env context: <rasterio.env.Env object at 0x000002B1F32255F8>
03/05/2019 07:38:16 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B1F32328D0> options
03/05/2019 07:38:16 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B1F32328D0>.
03/05/2019 07:38:16 PM Exiting outermost env
03/05/2019 07:38:16 PM Exited env context: <rasterio.env.Env object at 0x000002B1F32255F8>
03/05/2019 07:38:16 PM
<<< End >>>
03/05/2019 07:38:16 PM Total Run Time: 5.287272784866962 mins
03/05/2019 07:39:29 PM hey!
03/05/2019 07:39:29 PM Entering env context: <rasterio.env.Env object at 0x000002B180254C18>
03/05/2019 07:39:29 PM Starting outermost env
03/05/2019 07:39:29 PM No GDAL environment exists
03/05/2019 07:39:29 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B180254EF0> created
03/05/2019 07:39:29 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:29 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B180254EF0>.
03/05/2019 07:39:29 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180254EF0> options
03/05/2019 07:39:29 PM Entered env context: <rasterio.env.Env object at 0x000002B180254C18>
03/05/2019 07:39:29 PM Nodata success: 1, Nodata value: -32768.000000
03/05/2019 07:39:29 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem.tif' mode='r'> is started.
03/05/2019 07:39:29 PM Exiting env context: <rasterio.env.Env object at 0x000002B180254C18>
03/05/2019 07:39:29 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B180254EF0> options
03/05/2019 07:39:29 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B180254EF0>.
03/05/2019 07:39:29 PM Exiting outermost env
03/05/2019 07:39:29 PM Exited env context: <rasterio.env.Env object at 0x000002B180254C18>
03/05/2019 07:39:29 PM Entering env context: <rasterio.env.Env object at 0x000002B180254DA0>
03/05/2019 07:39:29 PM Starting outermost env
03/05/2019 07:39:29 PM No GDAL environment exists
03/05/2019 07:39:29 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B180254EF0> created
03/05/2019 07:39:29 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:29 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B180254EF0>.
03/05/2019 07:39:29 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180254EF0> options
03/05/2019 07:39:29 PM Entered env context: <rasterio.env.Env object at 0x000002B180254DA0>
03/05/2019 07:39:29 PM Exiting env context: <rasterio.env.Env object at 0x000002B180254DA0>
03/05/2019 07:39:29 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B180254EF0> options
03/05/2019 07:39:29 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B180254EF0>.
03/05/2019 07:39:29 PM Exiting outermost env
03/05/2019 07:39:29 PM Exited env context: <rasterio.env.Env object at 0x000002B180254DA0>
03/05/2019 07:39:29 PM Reading the stream network coordinates from the csv file...
03/05/2019 07:39:30 PM Entering env context: <fiona.env.Env object at 0x000002B1FB4249B0>
03/05/2019 07:39:30 PM Starting outermost env
03/05/2019 07:39:30 PM No GDAL environment exists
03/05/2019 07:39:30 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B1FB4249E8> created
03/05/2019 07:39:30 PM Logging error handler pushed.
03/05/2019 07:39:30 PM All drivers registered.
03/05/2019 07:39:30 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:30 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B1FB4249E8>.
03/05/2019 07:39:30 PM Updated existing <fiona._env.GDALEnv object at 0x000002B1FB4249E8> with options {}
03/05/2019 07:39:30 PM Entered env context: <fiona.env.Env object at 0x000002B1FB4249B0>
03/05/2019 07:39:30 PM Got a copy of environment <fiona._env.GDALEnv object at 0x000002B1FB4249E8> options
03/05/2019 07:39:30 PM Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'}
03/05/2019 07:39:30 PM Set option b'ENCODING': b''
03/05/2019 07:39:30 PM Exiting env context: <fiona.env.Env object at 0x000002B1FB4249B0>
03/05/2019 07:39:30 PM Cleared existing <fiona._env.GDALEnv object at 0x000002B1FB4249E8> options
03/05/2019 07:39:30 PM Stopping GDALEnv <fiona._env.GDALEnv object at 0x000002B1FB4249E8>.
03/05/2019 07:39:30 PM Error handler popped.
03/05/2019 07:39:30 PM Stopped GDALEnv <fiona._env.GDALEnv object at 0x000002B1FB4249E8>.
03/05/2019 07:39:30 PM Exiting outermost env
03/05/2019 07:39:30 PM Exited env context: <fiona.env.Env object at 0x000002B1FB4249B0>
03/05/2019 07:39:30 PM Got coordinate system
03/05/2019 07:39:30 PM Got coordinate system
03/05/2019 07:39:30 PM Index: 0
03/05/2019 07:39:32 PM Flushed buffer
03/05/2019 07:39:32 PM Stopped session
03/05/2019 07:39:32 PM Entering env context: <rasterio.env.Env object at 0x000002B180262550>
03/05/2019 07:39:32 PM Starting outermost env
03/05/2019 07:39:32 PM No GDAL environment exists
03/05/2019 07:39:32 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B180262278> created
03/05/2019 07:39:32 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:32 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:39:32 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Entered env context: <rasterio.env.Env object at 0x000002B180262550>
03/05/2019 07:39:32 PM Nodata success: 1, Nodata value: -340282346638528859811704183484516925440.000000
03/05/2019 07:39:32 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem_breach_hand.tif' mode='r'> is started.
03/05/2019 07:39:32 PM Exiting env context: <rasterio.env.Env object at 0x000002B180262550>
03/05/2019 07:39:32 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:39:32 PM Exiting outermost env
03/05/2019 07:39:32 PM Exited env context: <rasterio.env.Env object at 0x000002B180262550>
03/05/2019 07:39:32 PM Entering env context: <rasterio.env.Env object at 0x000002B1FB4249E8>
03/05/2019 07:39:32 PM Starting outermost env
03/05/2019 07:39:32 PM No GDAL environment exists
03/05/2019 07:39:32 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B180262278> created
03/05/2019 07:39:32 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:32 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:39:32 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Entered env context: <rasterio.env.Env object at 0x000002B1FB4249E8>
03/05/2019 07:39:32 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Entering env context: <rasterio.env.Env object at 0x000002B1802620F0>
03/05/2019 07:39:32 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Entered env context: <rasterio.env.Env object at 0x000002B1802620F0>
03/05/2019 07:39:32 PM Nodata success: 1, Nodata value: 0.000000
03/05/2019 07:39:32 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_breach_net.tif' mode='r'> is started.
03/05/2019 07:39:32 PM Exiting env context: <rasterio.env.Env object at 0x000002B1802620F0>
03/05/2019 07:39:32 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:39:32 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:39:32 PM No GDAL environment exists
03/05/2019 07:39:32 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B180262278> created
03/05/2019 07:39:32 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:39:32 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:39:32 PM Exited env context: <rasterio.env.Env object at 0x000002B1802620F0>
03/05/2019 07:39:32 PM 10901
03/05/2019 07:39:32 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:39:32 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:39:32 PM all_valid: False
03/05/2019 07:39:32 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:39:32 PM Jump straight to _read()
03/05/2019 07:39:32 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:39:32 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:39:32 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:39:32 PM Output nodata value read from file: 0.0
03/05/2019 07:39:32 PM Output nodata values: [0.0]
03/05/2019 07:39:32 PM all_valid: False
03/05/2019 07:39:32 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:39:32 PM Jump straight to _read()
03/05/2019 07:39:32 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:39:32 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:39:32 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:54:13 PM Error with segment 10901; skipping.
03/05/2019 07:54:13 PM 10902
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:54:13 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:54:13 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:54:13 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:54:13 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:54:13 PM Error with segment 10902; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM 10903
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:54:13 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:54:13 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:54:13 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:54:13 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:54:13 PM Error with segment 10903; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM 10904
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:54:13 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:54:13 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:54:13 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:54:13 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:54:13 PM Error with segment 10904; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM 10905
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:54:13 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:54:13 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:54:13 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:54:13 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:54:13 PM Error with segment 10905; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM 10906
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:54:13 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:54:13 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:54:13 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:54:13 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:54:13 PM Error with segment 10906; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM 10907
03/05/2019 07:54:13 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:13 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:54:13 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:54:13 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:54:13 PM Output nodata value read from file: 0.0
03/05/2019 07:54:13 PM Output nodata values: [0.0]
03/05/2019 07:54:13 PM all_valid: False
03/05/2019 07:54:13 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:13 PM Jump straight to _read()
03/05/2019 07:54:13 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:54:13 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:54:13 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:54:13 PM Error with segment 10907; skipping. unhashable type: 'set'
03/05/2019 07:54:13 PM Creating a not-responsible GDALEnv in drivers()
03/05/2019 07:54:13 PM Entering env context: <fiona.env.Env object at 0x000002B19C4D97F0>
03/05/2019 07:54:13 PM Starting outermost env
03/05/2019 07:54:13 PM No GDAL environment exists
03/05/2019 07:54:13 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B19C031E48> created
03/05/2019 07:54:13 PM Logging error handler pushed.
03/05/2019 07:54:13 PM All drivers registered.
03/05/2019 07:54:13 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:13 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B19C031E48>.
03/05/2019 07:54:13 PM Updated existing <fiona._env.GDALEnv object at 0x000002B19C031E48> with options {}
03/05/2019 07:54:13 PM Entered env context: <fiona.env.Env object at 0x000002B19C4D97F0>
03/05/2019 07:54:13 PM Set option b'ENCODING': b''
03/05/2019 07:54:13 PM Init: epsg:26918
03/05/2019 07:54:13 PM Setting EPSG: 26918
03/05/2019 07:54:13 PM Deleted pre-existing layer at 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:54:19 PM Set option b'ENCODING': b''
03/05/2019 07:54:19 PM Created layer 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:54:19 PM Begin creating field: 'bnk_ht2' value: 'float'
03/05/2019 07:54:19 PM End creating field 'bnk_ht2'
03/05/2019 07:54:19 PM Begin creating field: 'chn_shp' value: 'float'
03/05/2019 07:54:19 PM End creating field 'chn_shp'
03/05/2019 07:54:19 PM Begin creating field: 'chn_wid2' value: 'float'
03/05/2019 07:54:19 PM End creating field 'chn_wid2'
03/05/2019 07:54:19 PM Begin creating field: 'linkno' value: 'int'
03/05/2019 07:54:19 PM End creating field 'linkno'
03/05/2019 07:54:19 PM Writing started
03/05/2019 07:54:19 PM Starting transaction (initial)
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '0', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474922.0, 4640507.9969039), (474920.80382166576, 4640505.245693731), (474919.60764333146, 4640502.494483562), (474918.4114649973, 4640499.743273394), (474917.215286663, 4640496.992063225), (474916.01910832885, 4640494.240853056), (474914.8229299946, 4640491.489642886), (474913.6267516603, 4640488.738432718), (474912.43057332607, 4640485.98722255), (474911.23439499177, 4640483.2360123815), (474910.0382166576, 4640480.4848022135), (474908.84203832346, 4640477.733592044), (474907.64585998905, 4640474.982381875), (474906.4496816549, 4640472.231171707), (474905.2535033206, 4640469.479961538), (474904.0573249863, 4640466.728751369), (474902.8611466521, 4640463.9775412), (474901.66496831784, 4640461.226331031), (474900.4687899836, 4640458.475120862), (474899.27261164936, 4640455.723910694), (474898.07643331506, 4640452.972700525), (474896.88025498093, 4640450.221490356), (474895.6840766466, 4640447.470280187), (474894.48789831245, 4640444.719070018), (474893.2917199782, 4640441.96785985), (474892.0955416439, 4640439.216649681), (474890.16610150225, 4640436.93376809), (474888.17300998577, 4640434.691540134), (474886.1799184693, 4640432.449312178), (474884.1868269528, 4640430.207084222), (474882.1937354363, 4640427.964856266), (474880.20064391976, 4640425.722628308), (474878.20755240327, 4640423.480400354), (474876.2144608868, 4640421.238172398), (474874.2213693703, 4640418.995944441), (474872.2282778538, 4640416.7537164865), (474870.23518633726, 4640414.51148853), (474868.2420948208, 4640412.269260573), (474867.42825829366, 4640409.424066221), (474866.77746692026, 4640406.495505041), (474866.1266755468, 4640403.566943862), (474865.4758841733, 4640400.63838268), (474864.8250927999, 4640397.7098215), (474864.1743014264, 4640394.781260319), (474863.523510053, 4640391.852699138), (474862.87271867954, 4640388.924137956), (474862.22192730603, 4640385.9955767775), (474860.9225767415, 4640383.339329656), (474859.2876116897, 4640380.823998807), (474857.6526466379, 4640378.308667959), (474856.01768158615, 4640375.7933371095), (474854.38271653437, 4640373.27800626), (474852.7477514826, 4640370.762675412), (474851.1127864308, 4640368.247344563), (474849.47782137897, 4640365.732013714), (474847.8428563272, 4640363.216682865), (474846.2078912754, 4640360.701352016), (474844.57292622357, 4640358.186021167), (474842.93796117185, 4640355.670690319), (474841.30299612007, 4640353.155359468), (474839.6680310683, 4640350.64002862), (474838.0330660165, 4640348.124697772), (474836.39810096467, 4640345.609366924), (474834.76313591294, 4640343.094036073), (474833.12817086116, 4640340.578705225), (474831.4932058093, 4640338.063374376), (474829.8582407576, 4640335.548043527), (474828.22327570576, 4640333.032712678), (474826.588310654, 4640330.517381829), (474824.9533456022, 4640328.00205098), (474823.31838055036, 4640325.486720132), (474822.63265979564, 4640322.609192572), (474822.1764882428, 4640319.644077478), (474821.7203166901, 4640316.678962385), (474821.2641451373, 4640313.7138472935), (474820.8079735846, 4640310.7487322), (474820.3518020318, 4640307.783617106), (474819.895630479, 4640304.818502014), (474819.4394589263, 4640301.853386921), (474818.9832873735, 4640298.888271828), (474818.5271158207, 4640295.923156735), (474818.07094426797, 4640292.958041642), (474817.61477271526, 4640289.992926549), (474817.15860116243, 4640287.0278114565), (474816.16673065524, 4640284.226206542), (474814.88933954615, 4640281.511750435), (474813.6119484372, 4640278.797294329), (474812.3345573282, 4640276.082838221), (474811.0571662192, 4640273.368382116), (474809.7797751103, 4640270.653926008), (474808.50238400133, 4640267.939469903), (474807.2249928922, 4640265.225013796), (474805.94760178326, 4640262.51055769), (474804.6702106743, 4640259.796101583), (474803.3928195653, 4640257.081645477), (474802.11542845634, 4640254.36718937), (474800.83803734725, 4640251.652733264), (474799.5606462383, 4640248.938277156), (474798.28325512935, 4640246.22382105), (474797.0058640203, 4640243.509364943))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '1', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474795.7284729114, 4640240.7949088365), (474794.4510818024, 4640238.08045273), (474793.17369069345, 4640235.365996623), (474792.84778776154, 4640232.409295847), (474792.6716216957, 4640229.414472726), (474792.4954556298, 4640226.419649607), (474792.319289564, 4640223.424826488), (474792.1431234981, 4640220.430003368), (474791.9669574323, 4640217.435180249), (474791.7907913664, 4640214.440357129), (474791.61462530063, 4640211.4455340095), (474791.43845923466, 4640208.45071089), (474791.2622931689, 4640205.45588777), (474791.08612710296, 4640202.461064652), (474790.9099610371, 4640199.466241531), (474790.7337949713, 4640196.4714184115), (474790.5576289054, 4640193.476595292), (474790.3814628396, 4640190.481772173), (474790.2052967737, 4640187.486949054), (474790.0291307078, 4640184.492125934), (474789.85296464205, 4640181.497302813), (474789.6767985762, 4640178.502479695), (474789.5006325103, 4640175.507656575), (474789.32446644455, 4640172.5128334565), (474789.1483003786, 4640169.518010336), (474788.97213431273, 4640166.523187216), (474788.7959682469, 4640163.528364097), (474788.619802181, 4640160.533540977), (474788.44363611523, 4640157.5387178585), (474788.2674700493, 4640154.543894739), (474788.0913039834, 4640151.549071618), (474787.91513791756, 4640148.5542485), (474787.7389718518, 4640145.55942538), (474787.5628057859, 4640142.5646022605), (474787.38663972006, 4640139.569779141), (474787.2104736542, 4640136.574956021), (474787.0343075884, 4640133.580132902), (474786.29662259313, 4640130.685806707), (474785.42313774576, 4640127.815785063), (474784.5496528985, 4640124.945763423), (474783.6761680511, 4640122.075741782), (474782.80268320366, 4640119.2057201415), (474781.9291983564, 4640116.335698498), (474781.055713509, 4640113.465676858), (474780.1822286617, 4640110.595655217), (474779.30874381436, 4640107.7256335765), (474778.43525896705, 4640104.855611933), (474777.5617741196, 4640101.985590293), (474776.68828927225, 4640099.115568652), (474775.814804425, 4640096.2455470115), (474774.94131957757, 4640093.375525368), (474774.0678347303, 4640090.505503728), (474773.1943498829, 4640087.635482087), (474772.32086503546, 4640084.7654604465), (474771.4473801882, 4640081.895438803), (474770.5738953408, 4640079.025417163), (474769.70041049353, 4640076.155395522), (474768.82692564616, 4640073.2853738805), (474767.95344079885, 4640070.415352238), (474767.0799559515, 4640067.545330598), (474766.20647110406, 4640064.675308957), (474764.6684581954, 4640062.132745374), (474762.9247436143, 4640059.69154496), (474761.18102903315, 4640057.2503445465), (474759.437314452, 4640054.809144133), (474757.6935998708, 4640052.367943719), (474755.9498852897, 4640049.926743305), (474754.2061707085, 4640047.485542892), (474752.4624561274, 4640045.044342479), (474750.71874154615, 4640042.603142065), (474748.975026965, 4640040.161941651), (474747.23131238384, 4640037.7207412375), (474745.4875978027, 4640035.279540824), (474743.74388322147, 4640032.83834041), (474742.0001686404, 4640030.397139996), (474740.2564540592, 4640027.9559395835), (474738.51273947814, 4640025.51473917), (474736.7690248969, 4640023.073538756), (474735.0253103158, 4640020.632338342), (474733.2815957346, 4640018.1911379285), (474731.5378811535, 4640015.749937515), (474729.7941665723, 4640013.308737101), (474728.05045199115, 4640010.867536687), (474726.30673741, 4640008.426336274), (474724.56302282884, 4640005.985135862), (474722.8193082477, 4640003.543935447), (474721.07559366646, 4640001.102735033), (474719.33187908534, 4639998.66153462), (474717.5881645042, 4639996.220334207), (474715.84444992297, 4639993.779133792), (474714.1007353418, 4639991.337933378), (474712.3570207607, 4639988.8967329655), (474710.6133061795, 4639986.455532552), (474708.86959159846, 4639984.014332138), (474707.1258770172, 4639981.573131723), (474705.3821624361, 4639979.131931311), (474703.6384478549, 4639976.690730897), (474701.89473327383, 4639974.249530483), (474700.1510186926, 4639971.808330068), (474698.4073041114, 4639969.3671296565))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '2', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474696.66358953033, 4639966.925929243), (474694.9198749492, 4639964.484728829), (474693.17616036796, 4639962.043528415), (474691.4324457869, 4639959.6023280015), (474689.50120040396, 4639957.310754354), (474687.5081088875, 4639955.068526398), (474685.51501737104, 4639952.826298443), (474683.52192585455, 4639950.584070486), (474681.52883433795, 4639948.34184253), (474679.53574282146, 4639946.099614575), (474677.542651305, 4639943.857386618), (474675.5495597886, 4639941.615158662), (474673.5564682721, 4639939.3729307065), (474671.5633767556, 4639937.13070275), (474669.5702852391, 4639934.888474794), (474667.5771937226, 4639932.646246838), (474665.5841022061, 4639930.404018882), (474663.5910106896, 4639928.161790926), (474661.59791917313, 4639925.919562968), (474659.6048276566, 4639923.677335014), (474657.6117361402, 4639921.435107058), (474655.61864462367, 4639919.192879101), (474653.6255531071, 4639916.9506511465), (474651.63246159063, 4639914.70842319), (474649.6393700742, 4639912.466195233), (474647.6462785577, 4639910.2239672765), (474645.65318704117, 4639907.981739322), (474643.6600955247, 4639905.739511365), (474641.6670040082, 4639903.497283408), (474639.6739124917, 4639901.255055454), (474637.6808209752, 4639899.012827497), (474635.6877294587, 4639896.770599541), (474633.6946379422, 4639894.5283715855), (474631.70154642576, 4639892.286143629), (474629.70845490927, 4639890.043915673), (474627.71536339284, 4639887.8016877165), (474625.72227187635, 4639885.559459761), (474623.72918035975, 4639883.317231805), (474621.73608884326, 4639881.075003848), (474619.7429973268, 4639878.832775893), (474617.7499058104, 4639876.590547937), (474615.75681429385, 4639874.34831998), (474613.7637227774, 4639872.106092025), (474611.77063126094, 4639869.863864069), (474609.7775397444, 4639867.621636112), (474607.7844482279, 4639865.3794081565), (474605.7913567114, 4639863.137180202), (474603.7982651949, 4639860.894952244), (474601.80517367844, 4639858.652724288), (474599.812082162, 4639856.410496333), (474597.81899064546, 4639854.168268376), (474595.8258991289, 4639851.92604042), (474593.56323091156, 4639849.985844172), (474591.1098116537, 4639848.259363953), (474588.6563923958, 4639846.5328837335), (474586.2029731379, 4639844.806403516), (474583.74955388, 4639843.079923297), (474581.2961346221, 4639841.353443079), (474578.84271536424, 4639839.62696286), (474576.38929610635, 4639837.9004826415), (474573.9358768484, 4639836.174002423), (474571.48245759046, 4639834.447522203), (474569.0290383326, 4639832.721041986), (474566.57561907463, 4639830.994561767), (474564.1221998168, 4639829.268081549), (474561.6687805589, 4639827.54160133), (474559.21536130103, 4639825.815121111), (474556.76194204297, 4639824.088640893), (474554.3085227851, 4639822.362160675), (474551.85510352725, 4639820.635680457), (474549.40168426937, 4639818.909200238), (474546.9482650114, 4639817.18272002), (474544.4948457536, 4639815.456239801), (474542.0414264957, 4639813.729759582), (474539.5880072378, 4639812.003279364), (474537.13458797976, 4639810.276799145), (474534.6811687219, 4639808.550318927), (474532.227749464, 4639806.823838708), (474529.7743302061, 4639805.0973584885), (474527.3209109482, 4639803.370878271), (474524.8674916903, 4639801.644398052), (474522.4140724325, 4639799.917917834), (474519.96065317455, 4639798.191437615), (474517.50723391655, 4639796.4649573965), (474515.05381465866, 4639794.738477179), (474512.3050081121, 4639793.7603934035), (474509.333793426, 4639793.345805309), (474506.36257873994, 4639792.931217212), (474503.3913640538, 4639792.516629117), (474500.4201493677, 4639792.102041021), (474497.44893468154, 4639791.687452925), (474494.4777199955, 4639791.27286483), (474491.5065053094, 4639790.858276734), (474488.53529062326, 4639790.443688639), (474485.5640759372, 4639790.029100543), (474482.5928612511, 4639789.614512446), (474479.621646565, 4639789.199924352), (474476.6504318789, 4639788.785336255), (474473.6792171928, 4639788.37074816), (474470.7080025067, 4639787.956160064))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '3', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474467.73678782064, 4639787.541571968), (474464.76557313453, 4639787.126983874), (474461.7943584484, 4639786.712395777), (474458.82314376225, 4639786.29780768), (474455.8519290762, 4639785.883219585), (474452.8807143901, 4639785.468631489), (474449.90949970396, 4639785.054043394), (474446.93828501797, 4639784.639455298), (474443.96707033186, 4639784.224867201), (474440.9958556458, 4639783.810279107), (474438.02464095963, 4639783.395691011), (474435.0534262736, 4639782.981102915), (474432.0822115874, 4639782.566514819), (474429.1109969014, 4639782.151926723), (474426.1397822153, 4639781.737338628), (474423.16856752924, 4639781.322750532), (474420.1973528431, 4639780.908162436), (474417.226138157, 4639780.493574341), (474414.25492347096, 4639780.078986245), (474411.2837087848, 4639779.664398149), (474408.3124940987, 4639779.249810053), (474405.34127941256, 4639778.8352219565), (474402.3700647265, 4639778.420633862), (474399.3988500404, 4639778.006045766), (474396.4276353543, 4639777.5914576715), (474393.4564206682, 4639777.176869575), (474390.4852059821, 4639776.762281478), (474387.513991296, 4639776.347693383), (474384.6868699565, 4639775.657679686), (474382.6520296482, 4639773.453269352), (474380.61718934006, 4639771.248859018), (474378.5823490319, 4639769.044448685), (474376.5475087237, 4639766.840038352), (474374.5126684155, 4639764.635628017), (474372.47782810725, 4639762.4312176835), (474370.44298779906, 4639760.226807348), (474368.40814749093, 4639758.022397015), (474366.37330718274, 4639755.817986681), (474364.33846687456, 4639753.613576347), (474362.3036265663, 4639751.409166014), (474360.2687862581, 4639749.20475568), (474358.23394594993, 4639747.0003453465), (474356.19910564175, 4639744.7959350115), (474354.1642653335, 4639742.591524678), (474352.1294250253, 4639740.387114344), (474350.094584717, 4639738.18270401), (474347.72332299955, 4639736.4567713225), (474344.9604212463, 4639735.28785135), (474342.1975194931, 4639734.118931378), (474339.4346177399, 4639732.950011405), (474336.67171598674, 4639731.781091433), (474333.9088142335, 4639730.61217146), (474331.14591248025, 4639729.443251488), (474328.3830107271, 4639728.274331517), (474325.62010897393, 4639727.1054115435), (474322.85720722063, 4639725.93649157), (474320.09430546744, 4639724.767571596), (474317.3314037143, 4639723.598651625), (474314.568501961, 4639722.429731653), (474311.8056002078, 4639721.26081168), (474309.04269845464, 4639720.091891708), (474306.2797967015, 4639718.922971737), (474303.5168949482, 4639717.754051764), (474300.753993195, 4639716.585131791), (474297.99109144177, 4639715.4162118165), (474295.2281896886, 4639714.247291845), (474292.4652879354, 4639713.078371873), (474289.7023861822, 4639711.9094519), (474286.93948442896, 4639710.740531928), (474284.1765826758, 4639709.571611955), (474281.4136809226, 4639708.402691983), (474278.6507791693, 4639707.2337720115), (474275.88787741616, 4639706.0648520375), (474273.12497566297, 4639704.895932065), (474270.5340599517, 4639703.484369847), (474268.5160415696, 4639701.264549627), (474266.49802318774, 4639699.044729407), (474264.4800048057, 4639696.824909186), (474262.46198642364, 4639694.605088966), (474260.44396804174, 4639692.385268746), (474258.42594965966, 4639690.165448526), (474256.40793127776, 4639687.945628306), (474254.3899128957, 4639685.725808085), (474252.37189451366, 4639683.505987865), (474250.3538761318, 4639681.286167645), (474248.33585774974, 4639679.066347425), (474246.31783936784, 4639676.846527205), (474244.29982098576, 4639674.626706985), (474242.2818026038, 4639672.406886764), (474240.1163399372, 4639670.351152317), (474237.6941665704, 4639668.581102547), (474235.27199320367, 4639666.81105278), (474232.84981983685, 4639665.041003012), (474230.4276464701, 4639663.270953244), (474228.00547310343, 4639661.500903476), (474225.58329973655, 4639659.730853708), (474223.1611263698, 4639657.96080394), (474220.73895300296, 4639656.190754171), (474218.3167796362, 4639654.420704404), (474215.89460626955, 4639652.650654635))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '4', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474213.4724329027, 4639650.880604868), (474211.050259536, 4639649.110555098), (474208.6280861692, 4639647.340505332), (474206.2059128024, 4639645.570455563), (474203.7837394356, 4639643.800405797), (474201.36156606884, 4639642.030356027), (474198.93939270213, 4639640.26030626), (474196.5172193353, 4639638.490256491), (474194.09504596854, 4639636.720206724), (474191.6728726018, 4639634.950156955), (474189.250699235, 4639633.180107188), (474186.8285258682, 4639631.410057419), (474184.4063525014, 4639629.640007651), (474181.9841791346, 4639627.869957883), (474179.5620057679, 4639626.099908115), (474177.13983240107, 4639624.329858347), (474174.71765903436, 4639622.559808578), (474172.2954856675, 4639620.789758812), (474169.87331230077, 4639619.019709043), (474167.451138934, 4639617.249659275), (474165.0289655672, 4639615.479609507), (474162.5146719429, 4639613.956459897), (474159.5250346681, 4639613.707323456), (474156.53539739345, 4639613.458187017), (474153.5457601186, 4639613.209050576), (474150.55612284393, 4639612.959914137), (474147.56648556923, 4639612.710777697), (474144.57684829435, 4639612.461641259), (474141.5872110197, 4639612.212504818), (474138.597573745, 4639611.963368379), (474135.6079364703, 4639611.714231939), (474132.6182991955, 4639611.4650955), (474129.6286619208, 4639611.21595906), (474126.639024646, 4639610.9668226205), (474123.6493873713, 4639610.717686181), (474120.65975009656, 4639610.468549741), (474117.6701128218, 4639610.219413302), (474114.6804755471, 4639609.970276861), (474111.6908382723, 4639609.721140423), (474108.7012009976, 4639609.472003983), (474105.71156372287, 4639609.222867544), (474102.7219264482, 4639608.973731103), (474099.73228917347, 4639608.724594665), (474096.7426518986, 4639608.475458225), (474093.753014624, 4639608.226321787), (474090.79864887794, 4639608.122748352), (474088.254653966, 4639609.712745171), (474085.71065905393, 4639611.302741991), (474083.16666414187, 4639612.892738812), (474080.6226692299, 4639614.482735631), (474078.0786743179, 4639616.072732451), (474075.5346794059, 4639617.662729272), (474072.99068449385, 4639619.252726091), (474070.4466895818, 4639620.842722911), (474067.9026946698, 4639622.432719732), (474065.0645005604, 4639622.9969039), (474062.0645005604, 4639622.9969039), (474059.0645005604, 4639622.9969039), (474056.0645005604, 4639622.9969039), (474053.0645005604, 4639622.9969039), (474050.0645005604, 4639622.9969039), (474047.0645005604, 4639622.9969039), (474044.0645005604, 4639622.9969039), (474041.5905693222, 4639621.670380909), (474039.4059693442, 4639619.614286812), (474037.2213693661, 4639617.558192715), (474035.03676938795, 4639615.502098618), (474032.8521694099, 4639613.446004521), (474030.6675694318, 4639611.389910424), (474028.48296945385, 4639609.333816327), (474026.2983694757, 4639607.27772223), (474024.1137694976, 4639605.221628133), (474021.9291695195, 4639603.165534036), (474019.7445695415, 4639601.109439938), (474017.55996956344, 4639599.053345842), (474015.3753695853, 4639596.997251745), (474013.1907696072, 4639594.941157648), (474011.0061696292, 4639592.885063551), (474008.8215696511, 4639590.828969453), (474006.636969673, 4639588.7728753565), (474004.45236969495, 4639586.71678126), (474002.26776971685, 4639584.6606871635), (474000.0831697388, 4639582.6045930665), (473997.8985697607, 4639580.548498969), (473995.7139697826, 4639578.492404872), (473993.52936980454, 4639576.436310775), (473991.12707134703, 4639574.778671737), (473988.21664384654, 4639574.051064862), (473985.3062163461, 4639573.323457987), (473982.3957888457, 4639572.595851111), (473979.4853613452, 4639571.868244236), (473976.5749338448, 4639571.140637361), (473973.66450634436, 4639570.413030487), (473970.7540788439, 4639569.685423612), (473967.84365134354, 4639568.957816736), (473964.9332238431, 4639568.230209861), (473962.02279634256, 4639567.502602986), (473959.1123688422, 4639566.77499611), (473956.2019413418, 4639566.047389235), (473953.2915138413, 4639565.31978236))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '5', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((473950.38108634093, 4639564.5921754865), (473947.4706588405, 4639563.86456861), (473944.56023134, 4639563.136961735), (473941.6498038396, 4639562.40935486), (473938.7393763391, 4639561.681747985), (473935.8289488387, 4639560.95414111), (473932.91852133826, 4639560.226534233), (473930.0080938378, 4639559.49892736), (473927.09766633745, 4639558.771320485), (473924.187238837, 4639558.04371361), (473921.27681133646, 4639557.316106734), (473918.5560736658, 4639556.130548099), (473915.98359488865, 4639554.587060833), (473913.4111161115, 4639553.043573567), (473910.83863733435, 4639551.500086301), (473908.26615855726, 4639549.956599033), (473905.69367978006, 4639548.413111768), (473903.12120100297, 4639546.869624502), (473900.54872222577, 4639545.326137235), (473897.9762434487, 4639543.78264997), (473895.4037646715, 4639542.239162703), (473892.8312858944, 4639540.695675436), (473890.2588071173, 4639539.152188172), (473888.04124780424, 4639537.141243925), (473885.8633897525, 4639535.078009982), (473883.6855317007, 4639533.014776038), (473881.507673649, 4639530.951542093), (473879.3298155973, 4639528.88830815), (473877.1519575456, 4639526.825074206), (473874.97409949393, 4639524.7618402615), (473872.7962414422, 4639522.698606319), (473870.61838339036, 4639520.635372375), (473868.4405253387, 4639518.5721384315), (473866.262667287, 4639516.508904488), (473864.0848092353, 4639514.445670544), (473861.90695118357, 4639512.3824366005), (473859.7290931318, 4639510.319202657), (473857.55123508006, 4639508.255968713), (473855.37337702845, 4639506.192734769), (473853.1955189767, 4639504.129500825), (473851.017660925, 4639502.066266881), (473848.83980287326, 4639500.003032939), (473846.66194482154, 4639497.939798994), (473844.48408676975, 4639495.87656505), (473842.30622871814, 4639493.813331107), (473840.1283706664, 4639491.750097163), (473837.9505126147, 4639489.686863218), (473835.77265456296, 4639487.623629277), (473833.59479651117, 4639485.560395332), (473831.8187294201, 4639483.163897828), (473830.193625419, 4639480.642184722), (473828.5685214178, 4639478.120471617), (473826.94341741654, 4639475.598758512), (473825.3183134154, 4639473.077045407), (473823.6932094143, 4639470.555332301), (473822.068105413, 4639468.033619196), (473820.44300141186, 4639465.511906091), (473818.8178974107, 4639462.990192986), (473817.1927934095, 4639460.46847988), (473815.56768940843, 4639457.946766775), (473813.9425854072, 4639455.42505367), (473812.31748140603, 4639452.903340564), (473810.6923774048, 4639450.381627459), (473809.0672734036, 4639447.859914354), (473807.44216940243, 4639445.338201249), (473805.81706540135, 4639442.816488143), (473804.1919614001, 4639440.294775038), (473802.5668573989, 4639437.773061933), (473800.94175339775, 4639435.251348828), (473799.31664939655, 4639432.729635722), (473797.6915453954, 4639430.207922617), (473796.0664413942, 4639427.686209512), (473794.44133739296, 4639425.164496406), (473792.8162333918, 4639422.642783301), (473791.1911293906, 4639420.121070196), (473789.56602538953, 4639417.599357091), (473787.9409213883, 4639415.077643985), (473786.31581738713, 4639412.55593088), (473784.69071338593, 4639410.034217775), (473783.0656093848, 4639407.51250467), (473781.44050538354, 4639404.990791564), (473779.8154013824, 4639402.469078459), (473778.1902973812, 4639399.947365354), (473776.56519338, 4639397.425652249), (473774.94008937886, 4639394.903939143), (473773.3149853777, 4639392.382226038), (473771.68988137646, 4639389.860512933), (473770.0647773753, 4639387.338799827), (473768.43967337406, 4639384.817086722), (473766.8145693729, 4639382.295373617), (473765.1894653717, 4639379.773660512), (473763.56436137063, 4639377.251947407), (473761.9392573694, 4639374.730234302), (473760.3141533682, 4639372.208521197), (473758.68904936704, 4639369.686808092), (473757.0639453658, 4639367.165094985), (473755.43884136464, 4639364.64338188), (473753.8137373635, 4639362.121668775), (473752.18863336224, 4639359.599955669), (473750.5635293611, 4639357.078242564))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Creating feature in layer: {'id': '6', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((473748.93842536, 4639354.556529459), (473747.3133213588, 4639352.034816354), (473745.6383531082, 4639349.549150607), (473743.753341787, 4639347.215327065), (473741.8683304658, 4639344.881503523), (473739.9833191445, 4639342.547679984), (473738.0983078232, 4639340.213856443), (473736.213296502, 4639337.8800329035), (473734.32828518073, 4639335.546209361), (473732.4432738594, 4639333.212385821), (473730.5582625382, 4639330.878562281), (473728.6732512169, 4639328.54473874), (473726.7882398957, 4639326.2109152), (473724.9032285744, 4639323.877091658), (473723.01821725315, 4639321.543268118), (473721.13320593187, 4639319.209444578), (473719.24819461064, 4639316.875621037), (473717.3631832893, 4639314.541797496), (473715.47817196813, 4639312.207973956), (473713.5931606468, 4639309.874150415), (473711.7081493256, 4639307.540326875), (473709.8231380043, 4639305.2065033335), (473707.93812668294, 4639302.872679793), (473706.0531153618, 4639300.538856253), (473704.1681040405, 4639298.205032712), (473702.2830927192, 4639295.871209172), (473700.398081398, 4639293.53738563), (473698.5130700767, 4639291.20356209), (473696.62805875536, 4639288.86973855), (473694.7430474342, 4639286.535915009), (473692.8580361129, 4639284.2020914685), (473690.9730247916, 4639281.868267928), (473689.0880134704, 4639279.534444387), (473687.20300214906, 4639277.200620847), (473685.31799082784, 4639274.866797307), (473683.43297950656, 4639272.532973765), (473681.29006354173, 4639270.442416212), (473679.0702433215, 4639268.424397829), (473676.85042310134, 4639266.406379446), (473674.6306028811, 4639264.388361065), (473672.410782661, 4639262.370342683), (473670.1909624408, 4639260.3523242995), (473667.9711422205, 4639258.334305919), (473665.7513220004, 4639256.316287537), (473663.5315017802, 4639254.2982691545), (473661.31168156, 4639252.280250773), (473659.09186133975, 4639250.262232391), (473656.8720411196, 4639248.244214009), (473654.65222089936, 4639246.226195627), (473652.4324006793, 4639244.208177245), (473650.2125804591, 4639242.190158864), (473647.3916683683, 4639241.251666292), (473644.5070965254, 4639240.427502907), (473641.6225246825, 4639239.603339524), (473638.7379528396, 4639238.77917614), (473635.85338099656, 4639237.955012756), (473632.96880915365, 4639237.1308493735), (473630.0842373108, 4639236.306685989), (473627.1996654679, 4639235.482522605), (473624.31509362493, 4639234.658359221), (473621.430521782, 4639233.834195836), (473618.54594993906, 4639233.010032455), (473615.66137809615, 4639232.185869072), (473612.7768062533, 4639231.361705687), (473609.89223441033, 4639230.537542303), (473607.0076625674, 4639229.713378918), (473604.1230907245, 4639228.889215536), (473601.23851888155, 4639228.065052152), (473598.3539470386, 4639227.240888768), (473595.4693751957, 4639226.416725385), (473592.58480335283, 4639225.592562001), (473589.70023150975, 4639224.768398616))}}
03/05/2019 07:54:19 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field bnk_ht2: -9999.0
03/05/2019 07:54:19 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_shp: -9999.0
03/05/2019 07:54:19 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:54:19 PM Set field chn_wid2: -9999.0
03/05/2019 07:54:19 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:54:19 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:54:19 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:54:19 PM Set field linkno: 3343
03/05/2019 07:54:19 PM Comitting transaction (final)
03/05/2019 07:54:19 PM Flushed data source cache
03/05/2019 07:54:19 PM Flushed buffer
03/05/2019 07:54:19 PM Stopped session
03/05/2019 07:54:19 PM Exiting env context: <fiona.env.Env object at 0x000002B19C4D97F0>
03/05/2019 07:54:19 PM Cleared existing <fiona._env.GDALEnv object at 0x000002B19C031E48> options
03/05/2019 07:54:19 PM Stopping GDALEnv <fiona._env.GDALEnv object at 0x000002B19C031E48>.
03/05/2019 07:54:19 PM Error handler popped.
03/05/2019 07:54:19 PM Stopped GDALEnv <fiona._env.GDALEnv object at 0x000002B19C031E48>.
03/05/2019 07:54:19 PM Exiting outermost env
03/05/2019 07:54:19 PM Exited env context: <fiona.env.Env object at 0x000002B19C4D97F0>
03/05/2019 07:54:19 PM Exiting env context: <rasterio.env.Env object at 0x000002B1FB4249E8>
03/05/2019 07:54:19 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B180262278> options
03/05/2019 07:54:19 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B180262278>.
03/05/2019 07:54:19 PM Exiting outermost env
03/05/2019 07:54:19 PM Exited env context: <rasterio.env.Env object at 0x000002B1FB4249E8>
03/05/2019 07:54:19 PM
<<< End >>>
03/05/2019 07:54:19 PM Total Run Time: 14.826058629050344 mins
03/05/2019 07:54:53 PM hey!
03/05/2019 07:54:53 PM Entering env context: <rasterio.env.Env object at 0x000002B19C031240>
03/05/2019 07:54:53 PM Starting outermost env
03/05/2019 07:54:53 PM No GDAL environment exists
03/05/2019 07:54:53 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B19C031208> created
03/05/2019 07:54:53 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:53 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B19C031208>.
03/05/2019 07:54:53 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19C031208> options
03/05/2019 07:54:53 PM Entered env context: <rasterio.env.Env object at 0x000002B19C031240>
03/05/2019 07:54:53 PM Nodata success: 1, Nodata value: -32768.000000
03/05/2019 07:54:53 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem.tif' mode='r'> is started.
03/05/2019 07:54:53 PM Exiting env context: <rasterio.env.Env object at 0x000002B19C031240>
03/05/2019 07:54:53 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B19C031208> options
03/05/2019 07:54:53 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B19C031208>.
03/05/2019 07:54:53 PM Exiting outermost env
03/05/2019 07:54:53 PM Exited env context: <rasterio.env.Env object at 0x000002B19C031240>
03/05/2019 07:54:53 PM Entering env context: <rasterio.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:53 PM Starting outermost env
03/05/2019 07:54:53 PM No GDAL environment exists
03/05/2019 07:54:53 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B19C031208> created
03/05/2019 07:54:53 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:53 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B19C031208>.
03/05/2019 07:54:53 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19C031208> options
03/05/2019 07:54:53 PM Entered env context: <rasterio.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:53 PM Exiting env context: <rasterio.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:53 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B19C031208> options
03/05/2019 07:54:53 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B19C031208>.
03/05/2019 07:54:53 PM Exiting outermost env
03/05/2019 07:54:53 PM Exited env context: <rasterio.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:53 PM Reading the stream network coordinates from the csv file...
03/05/2019 07:54:54 PM Entering env context: <fiona.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:54 PM Starting outermost env
03/05/2019 07:54:54 PM No GDAL environment exists
03/05/2019 07:54:54 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B199DA6CC0> created
03/05/2019 07:54:54 PM Logging error handler pushed.
03/05/2019 07:54:54 PM All drivers registered.
03/05/2019 07:54:54 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:54 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B199DA6CC0>.
03/05/2019 07:54:54 PM Updated existing <fiona._env.GDALEnv object at 0x000002B199DA6CC0> with options {}
03/05/2019 07:54:54 PM Entered env context: <fiona.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:54 PM Got a copy of environment <fiona._env.GDALEnv object at 0x000002B199DA6CC0> options
03/05/2019 07:54:54 PM Credentialized: {'CHECK_WITH_INVERT_PROJ': True, 'GTIFF_IMPLICIT_JPEG_OVR': False, 'FIONA_ENV': True, 'GDAL_DATA': 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'}
03/05/2019 07:54:54 PM Set option b'ENCODING': b''
03/05/2019 07:54:54 PM Exiting env context: <fiona.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:54 PM Cleared existing <fiona._env.GDALEnv object at 0x000002B199DA6CC0> options
03/05/2019 07:54:54 PM Stopping GDALEnv <fiona._env.GDALEnv object at 0x000002B199DA6CC0>.
03/05/2019 07:54:54 PM Error handler popped.
03/05/2019 07:54:54 PM Stopped GDALEnv <fiona._env.GDALEnv object at 0x000002B199DA6CC0>.
03/05/2019 07:54:54 PM Exiting outermost env
03/05/2019 07:54:54 PM Exited env context: <fiona.env.Env object at 0x000002B19C0311D0>
03/05/2019 07:54:54 PM Got coordinate system
03/05/2019 07:54:54 PM Got coordinate system
03/05/2019 07:54:54 PM Index: 0
03/05/2019 07:54:55 PM Flushed buffer
03/05/2019 07:54:55 PM Stopped session
03/05/2019 07:54:55 PM Entering env context: <rasterio.env.Env object at 0x000002B19A7C4EF0>
03/05/2019 07:54:55 PM Starting outermost env
03/05/2019 07:54:55 PM No GDAL environment exists
03/05/2019 07:54:55 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> created
03/05/2019 07:54:55 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:55 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8>.
03/05/2019 07:54:55 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Entered env context: <rasterio.env.Env object at 0x000002B19A7C4EF0>
03/05/2019 07:54:55 PM Nodata success: 1, Nodata value: -340282346638528859811704183484516925440.000000
03/05/2019 07:54:55 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_dem_breach_hand.tif' mode='r'> is started.
03/05/2019 07:54:55 PM Exiting env context: <rasterio.env.Env object at 0x000002B19A7C4EF0>
03/05/2019 07:54:55 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8>.
03/05/2019 07:54:55 PM Exiting outermost env
03/05/2019 07:54:55 PM Exited env context: <rasterio.env.Env object at 0x000002B19A7C4EF0>
03/05/2019 07:54:55 PM Entering env context: <rasterio.env.Env object at 0x000002B19A7C4FD0>
03/05/2019 07:54:55 PM Starting outermost env
03/05/2019 07:54:55 PM No GDAL environment exists
03/05/2019 07:54:55 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> created
03/05/2019 07:54:55 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:55 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8>.
03/05/2019 07:54:55 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Entered env context: <rasterio.env.Env object at 0x000002B19A7C4FD0>
03/05/2019 07:54:55 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Entering env context: <rasterio.env.Env object at 0x000002B19A7C4F28>
03/05/2019 07:54:55 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Got a copy of environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Entered env context: <rasterio.env.Env object at 0x000002B19A7C4F28>
03/05/2019 07:54:55 PM Nodata success: 1, Nodata value: 0.000000
03/05/2019 07:54:55 PM Dataset <open DatasetReader name='E:\bulk_processing\02040101\02040101_breach_net.tif' mode='r'> is started.
03/05/2019 07:54:55 PM Exiting env context: <rasterio.env.Env object at 0x000002B19A7C4F28>
03/05/2019 07:54:55 PM Cleared existing <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> options
03/05/2019 07:54:55 PM Stopped GDALEnv <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8>.
03/05/2019 07:54:55 PM No GDAL environment exists
03/05/2019 07:54:55 PM New GDAL environment <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8> created
03/05/2019 07:54:55 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:54:55 PM Started GDALEnv <rasterio._env.GDALEnv object at 0x000002B19A7C4EB8>.
03/05/2019 07:54:55 PM Exited env context: <rasterio.env.Env object at 0x000002B19A7C4F28>
03/05/2019 07:54:55 PM 10901
03/05/2019 07:54:55 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:54:55 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:54:55 PM all_valid: False
03/05/2019 07:54:55 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:55 PM Jump straight to _read()
03/05/2019 07:54:55 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:54:55 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:54:55 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:54:56 PM Output nodata value read from file: 0.0
03/05/2019 07:54:56 PM Output nodata values: [0.0]
03/05/2019 07:54:56 PM all_valid: False
03/05/2019 07:54:56 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:54:56 PM Jump straight to _read()
03/05/2019 07:54:56 PM Window: Window(col_off=7534, row_off=20391, width=67, height=101)
03/05/2019 07:54:56 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:54:56 PM IO window xoff=7534.0 yoff=20391.0 width=67.0 height=101.0
03/05/2019 07:56:01 PM Error with segment 10901; skipping.
03/05/2019 07:56:01 PM 10902
03/05/2019 07:56:01 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:01 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:56:01 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:56:01 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:56:01 PM Output nodata value read from file: 0.0
03/05/2019 07:56:01 PM Output nodata values: [0.0]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7511, row_off=20485, width=59, height=101)
03/05/2019 07:56:01 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:56:01 PM IO window xoff=7511.0 yoff=20485.0 width=59.0 height=101.0
03/05/2019 07:56:01 PM 10903
03/05/2019 07:56:01 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:01 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:56:01 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:56:01 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:56:01 PM Output nodata value read from file: 0.0
03/05/2019 07:56:01 PM Output nodata values: [0.0]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7435, row_off=20575, width=93, height=81)
03/05/2019 07:56:01 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:56:01 PM IO window xoff=7435.0 yoff=20575.0 width=93.0 height=81.0
03/05/2019 07:56:01 PM 10904
03/05/2019 07:56:01 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:01 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:56:01 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:56:01 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:56:01 PM Output nodata value read from file: 0.0
03/05/2019 07:56:01 PM Output nodata values: [0.0]
03/05/2019 07:56:01 PM all_valid: False
03/05/2019 07:56:01 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:01 PM Jump straight to _read()
03/05/2019 07:56:01 PM Window: Window(col_off=7346, row_off=20622, width=97, height=69)
03/05/2019 07:56:01 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:56:01 PM IO window xoff=7346.0 yoff=20622.0 width=97.0 height=69.0
03/05/2019 07:56:02 PM 10905
03/05/2019 07:56:02 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:02 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:56:02 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:56:02 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:56:02 PM Output nodata value read from file: 0.0
03/05/2019 07:56:02 PM Output nodata values: [0.0]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7260, row_off=20667, width=96, height=55)
03/05/2019 07:56:02 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:56:02 PM IO window xoff=7260.0 yoff=20667.0 width=96.0 height=55.0
03/05/2019 07:56:02 PM 10906
03/05/2019 07:56:02 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:02 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:56:02 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:56:02 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:56:02 PM Output nodata value read from file: 0.0
03/05/2019 07:56:02 PM Output nodata values: [0.0]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7182, row_off=20696, width=87, height=88)
03/05/2019 07:56:02 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:56:02 PM IO window xoff=7182.0 yoff=20696.0 width=87.0 height=88.0
03/05/2019 07:56:02 PM 10907
03/05/2019 07:56:02 PM Output nodata value read from file: -3.4028234663852886e+38
03/05/2019 07:56:02 PM Output nodata values: [-3.4028234663852886e+38]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:56:02 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:56:02 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:56:02 PM Output nodata value read from file: 0.0
03/05/2019 07:56:02 PM Output nodata values: [0.0]
03/05/2019 07:56:02 PM all_valid: False
03/05/2019 07:56:02 PM mask_flags: ([<MaskFlags.nodata: 8>],)
03/05/2019 07:56:02 PM Jump straight to _read()
03/05/2019 07:56:02 PM Window: Window(col_off=7140, row_off=20778, width=71, height=64)
03/05/2019 07:56:02 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:56:02 PM IO window xoff=7140.0 yoff=20778.0 width=71.0 height=64.0
03/05/2019 07:56:02 PM Creating a not-responsible GDALEnv in drivers()
03/05/2019 07:56:02 PM Entering env context: <fiona.env.Env object at 0x000002B193D12EB8>
03/05/2019 07:56:02 PM Starting outermost env
03/05/2019 07:56:02 PM No GDAL environment exists
03/05/2019 07:56:02 PM New GDAL environment <fiona._env.GDALEnv object at 0x000002B193D12FD0> created
03/05/2019 07:56:02 PM Logging error handler pushed.
03/05/2019 07:56:02 PM All drivers registered.
03/05/2019 07:56:02 PM GDAL_DATA found in environment: 'C:\\Users\\lamon\\Miniconda3\\envs\\facet36\\Library\\share\\gdal'.
03/05/2019 07:56:02 PM Started GDALEnv <fiona._env.GDALEnv object at 0x000002B193D12FD0>.
03/05/2019 07:56:02 PM Updated existing <fiona._env.GDALEnv object at 0x000002B193D12FD0> with options {}
03/05/2019 07:56:02 PM Entered env context: <fiona.env.Env object at 0x000002B193D12EB8>
03/05/2019 07:56:02 PM Set option b'ENCODING': b''
03/05/2019 07:56:02 PM Init: epsg:26918
03/05/2019 07:56:02 PM Setting EPSG: 26918
03/05/2019 07:56:02 PM Deleted pre-existing layer at 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:56:02 PM Set option b'ENCODING': b''
03/05/2019 07:56:02 PM Created layer 02040101_breach_net_ch_width_TEST_HAND_ANALYSIS
03/05/2019 07:56:02 PM Begin creating field: 'bnk_ht2' value: 'float'
03/05/2019 07:56:02 PM End creating field 'bnk_ht2'
03/05/2019 07:56:02 PM Begin creating field: 'chn_shp' value: 'float'
03/05/2019 07:56:02 PM End creating field 'chn_shp'
03/05/2019 07:56:02 PM Begin creating field: 'chn_wid2' value: 'float'
03/05/2019 07:56:02 PM End creating field 'chn_wid2'
03/05/2019 07:56:02 PM Begin creating field: 'linkno' value: 'int'
03/05/2019 07:56:02 PM End creating field 'linkno'
03/05/2019 07:56:02 PM Writing started
03/05/2019 07:56:02 PM Starting transaction (initial)
03/05/2019 07:56:02 PM Creating feature in layer: {'id': '0', 'type': 'Feature', 'properties': {'bnk_ht2': -9999.0, 'chn_shp': -9999.0, 'chn_wid2': -9999.0, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474922.0, 4640507.9969039), (474920.80382166576, 4640505.245693731), (474919.60764333146, 4640502.494483562), (474918.4114649973, 4640499.743273394), (474917.215286663, 4640496.992063225), (474916.01910832885, 4640494.240853056), (474914.8229299946, 4640491.489642886), (474913.6267516603, 4640488.738432718), (474912.43057332607, 4640485.98722255), (474911.23439499177, 4640483.2360123815), (474910.0382166576, 4640480.4848022135), (474908.84203832346, 4640477.733592044), (474907.64585998905, 4640474.982381875), (474906.4496816549, 4640472.231171707), (474905.2535033206, 4640469.479961538), (474904.0573249863, 4640466.728751369), (474902.8611466521, 4640463.9775412), (474901.66496831784, 4640461.226331031), (474900.4687899836, 4640458.475120862), (474899.27261164936, 4640455.723910694), (474898.07643331506, 4640452.972700525), (474896.88025498093, 4640450.221490356), (474895.6840766466, 4640447.470280187), (474894.48789831245, 4640444.719070018), (474893.2917199782, 4640441.96785985), (474892.0955416439, 4640439.216649681), (474890.16610150225, 4640436.93376809), (474888.17300998577, 4640434.691540134), (474886.1799184693, 4640432.449312178), (474884.1868269528, 4640430.207084222), (474882.1937354363, 4640427.964856266), (474880.20064391976, 4640425.722628308), (474878.20755240327, 4640423.480400354), (474876.2144608868, 4640421.238172398), (474874.2213693703, 4640418.995944441), (474872.2282778538, 4640416.7537164865), (474870.23518633726, 4640414.51148853), (474868.2420948208, 4640412.269260573), (474867.42825829366, 4640409.424066221), (474866.77746692026, 4640406.495505041), (474866.1266755468, 4640403.566943862), (474865.4758841733, 4640400.63838268), (474864.8250927999, 4640397.7098215), (474864.1743014264, 4640394.781260319), (474863.523510053, 4640391.852699138), (474862.87271867954, 4640388.924137956), (474862.22192730603, 4640385.9955767775), (474860.9225767415, 4640383.339329656), (474859.2876116897, 4640380.823998807), (474857.6526466379, 4640378.308667959), (474856.01768158615, 4640375.7933371095), (474854.38271653437, 4640373.27800626), (474852.7477514826, 4640370.762675412), (474851.1127864308, 4640368.247344563), (474849.47782137897, 4640365.732013714), (474847.8428563272, 4640363.216682865), (474846.2078912754, 4640360.701352016), (474844.57292622357, 4640358.186021167), (474842.93796117185, 4640355.670690319), (474841.30299612007, 4640353.155359468), (474839.6680310683, 4640350.64002862), (474838.0330660165, 4640348.124697772), (474836.39810096467, 4640345.609366924), (474834.76313591294, 4640343.094036073), (474833.12817086116, 4640340.578705225), (474831.4932058093, 4640338.063374376), (474829.8582407576, 4640335.548043527), (474828.22327570576, 4640333.032712678), (474826.588310654, 4640330.517381829), (474824.9533456022, 4640328.00205098), (474823.31838055036, 4640325.486720132), (474822.63265979564, 4640322.609192572), (474822.1764882428, 4640319.644077478), (474821.7203166901, 4640316.678962385), (474821.2641451373, 4640313.7138472935), (474820.8079735846, 4640310.7487322), (474820.3518020318, 4640307.783617106), (474819.895630479, 4640304.818502014), (474819.4394589263, 4640301.853386921), (474818.9832873735, 4640298.888271828), (474818.5271158207, 4640295.923156735), (474818.07094426797, 4640292.958041642), (474817.61477271526, 4640289.992926549), (474817.15860116243, 4640287.0278114565), (474816.16673065524, 4640284.226206542), (474814.88933954615, 4640281.511750435), (474813.6119484372, 4640278.797294329), (474812.3345573282, 4640276.082838221), (474811.0571662192, 4640273.368382116), (474809.7797751103, 4640270.653926008), (474808.50238400133, 4640267.939469903), (474807.2249928922, 4640265.225013796), (474805.94760178326, 4640262.51055769), (474804.6702106743, 4640259.796101583), (474803.3928195653, 4640257.081645477), (474802.11542845634, 4640254.36718937), (474800.83803734725, 4640251.652733264), (474799.5606462383, 4640248.938277156), (474798.28325512935, 4640246.22382105), (474797.0058640203, 4640243.509364943))}}
03/05/2019 07:56:02 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field bnk_ht2: -9999.0
03/05/2019 07:56:02 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_shp: -9999.0
03/05/2019 07:56:02 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_wid2: -9999.0
03/05/2019 07:56:02 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:56:02 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:56:02 PM Set field linkno: 3343
03/05/2019 07:56:02 PM Creating feature in layer: {'id': '1', 'type': 'Feature', 'properties': {'bnk_ht2': 2.1891066882075094, 'chn_shp': 0.10173778609454419, 'chn_wid2': 21.44285536239233, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474795.7284729114, 4640240.7949088365), (474794.4510818024, 4640238.08045273), (474793.17369069345, 4640235.365996623), (474792.84778776154, 4640232.409295847), (474792.6716216957, 4640229.414472726), (474792.4954556298, 4640226.419649607), (474792.319289564, 4640223.424826488), (474792.1431234981, 4640220.430003368), (474791.9669574323, 4640217.435180249), (474791.7907913664, 4640214.440357129), (474791.61462530063, 4640211.4455340095), (474791.43845923466, 4640208.45071089), (474791.2622931689, 4640205.45588777), (474791.08612710296, 4640202.461064652), (474790.9099610371, 4640199.466241531), (474790.7337949713, 4640196.4714184115), (474790.5576289054, 4640193.476595292), (474790.3814628396, 4640190.481772173), (474790.2052967737, 4640187.486949054), (474790.0291307078, 4640184.492125934), (474789.85296464205, 4640181.497302813), (474789.6767985762, 4640178.502479695), (474789.5006325103, 4640175.507656575), (474789.32446644455, 4640172.5128334565), (474789.1483003786, 4640169.518010336), (474788.97213431273, 4640166.523187216), (474788.7959682469, 4640163.528364097), (474788.619802181, 4640160.533540977), (474788.44363611523, 4640157.5387178585), (474788.2674700493, 4640154.543894739), (474788.0913039834, 4640151.549071618), (474787.91513791756, 4640148.5542485), (474787.7389718518, 4640145.55942538), (474787.5628057859, 4640142.5646022605), (474787.38663972006, 4640139.569779141), (474787.2104736542, 4640136.574956021), (474787.0343075884, 4640133.580132902), (474786.29662259313, 4640130.685806707), (474785.42313774576, 4640127.815785063), (474784.5496528985, 4640124.945763423), (474783.6761680511, 4640122.075741782), (474782.80268320366, 4640119.2057201415), (474781.9291983564, 4640116.335698498), (474781.055713509, 4640113.465676858), (474780.1822286617, 4640110.595655217), (474779.30874381436, 4640107.7256335765), (474778.43525896705, 4640104.855611933), (474777.5617741196, 4640101.985590293), (474776.68828927225, 4640099.115568652), (474775.814804425, 4640096.2455470115), (474774.94131957757, 4640093.375525368), (474774.0678347303, 4640090.505503728), (474773.1943498829, 4640087.635482087), (474772.32086503546, 4640084.7654604465), (474771.4473801882, 4640081.895438803), (474770.5738953408, 4640079.025417163), (474769.70041049353, 4640076.155395522), (474768.82692564616, 4640073.2853738805), (474767.95344079885, 4640070.415352238), (474767.0799559515, 4640067.545330598), (474766.20647110406, 4640064.675308957), (474764.6684581954, 4640062.132745374), (474762.9247436143, 4640059.69154496), (474761.18102903315, 4640057.2503445465), (474759.437314452, 4640054.809144133), (474757.6935998708, 4640052.367943719), (474755.9498852897, 4640049.926743305), (474754.2061707085, 4640047.485542892), (474752.4624561274, 4640045.044342479), (474750.71874154615, 4640042.603142065), (474748.975026965, 4640040.161941651), (474747.23131238384, 4640037.7207412375), (474745.4875978027, 4640035.279540824), (474743.74388322147, 4640032.83834041), (474742.0001686404, 4640030.397139996), (474740.2564540592, 4640027.9559395835), (474738.51273947814, 4640025.51473917), (474736.7690248969, 4640023.073538756), (474735.0253103158, 4640020.632338342), (474733.2815957346, 4640018.1911379285), (474731.5378811535, 4640015.749937515), (474729.7941665723, 4640013.308737101), (474728.05045199115, 4640010.867536687), (474726.30673741, 4640008.426336274), (474724.56302282884, 4640005.985135862), (474722.8193082477, 4640003.543935447), (474721.07559366646, 4640001.102735033), (474719.33187908534, 4639998.66153462), (474717.5881645042, 4639996.220334207), (474715.84444992297, 4639993.779133792), (474714.1007353418, 4639991.337933378), (474712.3570207607, 4639988.8967329655), (474710.6133061795, 4639986.455532552), (474708.86959159846, 4639984.014332138), (474707.1258770172, 4639981.573131723), (474705.3821624361, 4639979.131931311), (474703.6384478549, 4639976.690730897), (474701.89473327383, 4639974.249530483), (474700.1510186926, 4639971.808330068), (474698.4073041114, 4639969.3671296565))}}
03/05/2019 07:56:02 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field bnk_ht2: 2.1891066882075094
03/05/2019 07:56:02 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_shp: 0.10173778609454419
03/05/2019 07:56:02 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_wid2: 21.44285536239233
03/05/2019 07:56:02 PM Looking up linkno in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'linkno' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'int64'
03/05/2019 07:56:02 PM Setting field 3, type 'int64', to value 3343
03/05/2019 07:56:02 PM Set field linkno: 3343
03/05/2019 07:56:02 PM Creating feature in layer: {'id': '2', 'type': 'Feature', 'properties': {'bnk_ht2': 2.3992922646658763, 'chn_shp': 0.08182658979406524, 'chn_wid2': 29.2561988201902, 'linkno': 3343}, 'geometry': {'type': 'LineString', 'coordinates': ((474696.66358953033, 4639966.925929243), (474694.9198749492, 4639964.484728829), (474693.17616036796, 4639962.043528415), (474691.4324457869, 4639959.6023280015), (474689.50120040396, 4639957.310754354), (474687.5081088875, 4639955.068526398), (474685.51501737104, 4639952.826298443), (474683.52192585455, 4639950.584070486), (474681.52883433795, 4639948.34184253), (474679.53574282146, 4639946.099614575), (474677.542651305, 4639943.857386618), (474675.5495597886, 4639941.615158662), (474673.5564682721, 4639939.3729307065), (474671.5633767556, 4639937.13070275), (474669.5702852391, 4639934.888474794), (474667.5771937226, 4639932.646246838), (474665.5841022061, 4639930.404018882), (474663.5910106896, 4639928.161790926), (474661.59791917313, 4639925.919562968), (474659.6048276566, 4639923.677335014), (474657.6117361402, 4639921.435107058), (474655.61864462367, 4639919.192879101), (474653.6255531071, 4639916.9506511465), (474651.63246159063, 4639914.70842319), (474649.6393700742, 4639912.466195233), (474647.6462785577, 4639910.2239672765), (474645.65318704117, 4639907.981739322), (474643.6600955247, 4639905.739511365), (474641.6670040082, 4639903.497283408), (474639.6739124917, 4639901.255055454), (474637.6808209752, 4639899.012827497), (474635.6877294587, 4639896.770599541), (474633.6946379422, 4639894.5283715855), (474631.70154642576, 4639892.286143629), (474629.70845490927, 4639890.043915673), (474627.71536339284, 4639887.8016877165), (474625.72227187635, 4639885.559459761), (474623.72918035975, 4639883.317231805), (474621.73608884326, 4639881.075003848), (474619.7429973268, 4639878.832775893), (474617.7499058104, 4639876.590547937), (474615.75681429385, 4639874.34831998), (474613.7637227774, 4639872.106092025), (474611.77063126094, 4639869.863864069), (474609.7775397444, 4639867.621636112), (474607.7844482279, 4639865.3794081565), (474605.7913567114, 4639863.137180202), (474603.7982651949, 4639860.894952244), (474601.80517367844, 4639858.652724288), (474599.812082162, 4639856.410496333), (474597.81899064546, 4639854.168268376), (474595.8258991289, 4639851.92604042), (474593.56323091156, 4639849.985844172), (474591.1098116537, 4639848.259363953), (474588.6563923958, 4639846.5328837335), (474586.2029731379, 4639844.806403516), (474583.74955388, 4639843.079923297), (474581.2961346221, 4639841.353443079), (474578.84271536424, 4639839.62696286), (474576.38929610635, 4639837.9004826415), (474573.9358768484, 4639836.174002423), (474571.48245759046, 4639834.447522203), (474569.0290383326, 4639832.721041986), (474566.57561907463, 4639830.994561767), (474564.1221998168, 4639829.268081549), (474561.6687805589, 4639827.54160133), (474559.21536130103, 4639825.815121111), (474556.76194204297, 4639824.088640893), (474554.3085227851, 4639822.362160675), (474551.85510352725, 4639820.635680457), (474549.40168426937, 4639818.909200238), (474546.9482650114, 4639817.18272002), (474544.4948457536, 4639815.456239801), (474542.0414264957, 4639813.729759582), (474539.5880072378, 4639812.003279364), (474537.13458797976, 4639810.276799145), (474534.6811687219, 4639808.550318927), (474532.227749464, 4639806.823838708), (474529.7743302061, 4639805.0973584885), (474527.3209109482, 4639803.370878271), (474524.8674916903, 4639801.644398052), (474522.4140724325, 4639799.917917834), (474519.96065317455, 4639798.191437615), (474517.50723391655, 4639796.4649573965), (474515.05381465866, 4639794.738477179), (474512.3050081121, 4639793.7603934035), (474509.333793426, 4639793.345805309), (474506.36257873994, 4639792.931217212), (474503.3913640538, 4639792.516629117), (474500.4201493677, 4639792.102041021), (474497.44893468154, 4639791.687452925), (474494.4777199955, 4639791.27286483), (474491.5065053094, 4639790.858276734), (474488.53529062326, 4639790.443688639), (474485.5640759372, 4639790.029100543), (474482.5928612511, 4639789.614512446), (474479.621646565, 4639789.199924352), (474476.6504318789, 4639788.785336255), (474473.6792171928, 4639788.37074816), (474470.7080025067, 4639787.956160064))}}
03/05/2019 07:56:02 PM Looking up bnk_ht2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'bnk_ht2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field bnk_ht2: 2.3992922646658763
03/05/2019 07:56:02 PM Looking up chn_shp in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_shp' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_shp: 0.08182658979406524
03/05/2019 07:56:02 PM Looking up chn_wid2 in {'bnk_ht2': 'bnk_ht2', 'chn_shp': 'chn_shp', 'chn_wid2': 'chn_wid2', 'linkno': 'linkno'}
03/05/2019 07:56:02 PM Normalizing schema type for key 'chn_wid2' in schema OrderedDict([('bnk_ht2', 'float'), ('chn_shp', 'float'), ('chn_wid2', 'float'), ('linkno', 'int')]) to 'float'
03/05/2019 07:56:02 PM Set field chn_wid2: 29.2561988201902