@@ -55,7 +55,6 @@ def is_flw_path_us_to_ds(
55
55
56
56
return output
57
57
58
- # pytest pending
59
58
def flw_path_reverse (
60
59
self ,
61
60
input_file : str ,
@@ -270,7 +269,6 @@ def point_junctions(
270
269
271
270
return output_gdf
272
271
273
- # pytest pending
274
272
def point_segment_subbasin_drainage (
275
273
self ,
276
274
input_file : str ,
@@ -391,8 +389,7 @@ def point_main_outlets(
391
389
392
390
return outlet_gdf
393
391
394
- # pytest pending
395
- def create_box_touching_selected_segment (
392
+ def box_touch_selected_segment (
396
393
self ,
397
394
input_file : str ,
398
395
column_name : str ,
@@ -402,8 +399,8 @@ def create_box_touching_selected_segment(
402
399
) -> geopandas .GeoDataFrame :
403
400
404
401
'''
405
- Creates a square box polygon that touches a specified stream segment
406
- in the input flow path at a randomly chosen point along the segment.
402
+ Creates a square box polygon that touches a specified segment
403
+ in the stream path at a randomly chosen point along the segment.
407
404
408
405
Parameters
409
406
----------
@@ -429,17 +426,19 @@ def create_box_touching_selected_segment(
429
426
touches the specified stream segment at a random point.
430
427
'''
431
428
429
+ # check validity of output file path
430
+ check_file = Core ().is_valid_ogr_driver (output_file )
431
+ if check_file is True :
432
+ pass
433
+ else :
434
+ raise Exception ('Could not retrieve driver from the file path.' )
435
+
432
436
# input line segment
433
437
gdf = geopandas .read_file (input_file )
434
438
line = gdf [gdf [column_name ].isin ([column_value ])].geometry .iloc [0 ]
435
439
436
440
# line coords
437
- if isinstance (line , shapely .LineString ):
438
- line_coords = line .coords [:]
439
- else :
440
- line_coords = []
441
- for line_split in line .geoms :
442
- line_coords .extend (line_split .coords [:])
441
+ line_coords = line .coords [:] if isinstance (line , shapely .LineString ) else [c for ls in line .geoms for c in ls .coords [:]]
443
442
444
443
while True :
445
444
# choose points
@@ -464,8 +463,6 @@ def create_box_touching_selected_segment(
464
463
check_touch = line .touches (rotate_box ) and not line .crosses (rotate_box )
465
464
if check_touch is True :
466
465
break
467
- else :
468
- pass
469
466
470
467
# saving box geodataframe
471
468
box_gdf = geopandas .GeoDataFrame (
@@ -476,20 +473,19 @@ def create_box_touching_selected_segment(
476
473
477
474
return box_gdf
478
475
479
- # pytest pending
480
- def create_box_crosses_segment_at_endpoint (
476
+ def box_touch_selected_segment_at_endpoint (
481
477
self ,
482
478
input_file : str ,
483
479
column_name : str ,
484
480
column_value : typing .Any ,
485
481
box_length : float ,
486
482
output_file : str ,
487
- downstream_point : bool = True
483
+ upstream_point : bool = True
488
484
) -> geopandas .GeoDataFrame :
489
485
490
486
'''
491
- Creates a square box polygon that crosses a specified stream segment
492
- in the input flow path and passes through an endpoint of the segment .
487
+ Creates a square box polygon that touches an endpoint
488
+ of a specified segment in the input stream path .
493
489
494
490
Parameters
495
491
----------
@@ -508,43 +504,50 @@ def create_box_crosses_segment_at_endpoint(
508
504
output_file : str
509
505
Path to save the output box polygon shapefile.
510
506
511
- downstream_point : bool, optional
512
- If True, the box is positioned to pass through the downstream endpoint
513
- of the segment; if False, it passes through the upstream endpoint. Default is True.
507
+ upstream_point : bool, optional
508
+ If True, the box is positioned to pass through the upstream endpoint
509
+ of the segment; if False, it passes through the downstream endpoint. Default is True.
514
510
515
511
Returns
516
512
-------
517
513
GeoDataFrame
518
- A GeoDataFrame containing the box polygon, which crosses the
519
- specified stream segment and passes through an endpoint of the segment .
514
+ A GeoDataFrame containing the box polygon, which touches an endpoint of
515
+ the specified segment in the input stream path .
520
516
'''
521
517
518
+ # check validity of output file path
519
+ check_file = Core ().is_valid_ogr_driver (output_file )
520
+ if check_file is True :
521
+ pass
522
+ else :
523
+ raise Exception ('Could not retrieve driver from the file path.' )
524
+
522
525
# input line segement
523
526
gdf = geopandas .read_file (input_file )
524
527
line = gdf [gdf [column_name ].isin ([column_value ])].geometry .iloc [0 ]
525
528
526
529
# get point
527
- point_coords = line .coords [- 1 ] if downstream_point is True else line .coords [0 ]
530
+ point_coords = line .coords [0 ] if upstream_point is True else line .coords [- 1 ]
528
531
point = shapely .Point (* point_coords )
529
532
530
533
# create box
531
534
box = shapely .box (
532
535
xmin = point .x ,
533
536
ymin = point .y ,
534
537
xmax = point .x + box_length ,
535
- ymax = point .y + box_length ,
538
+ ymax = point .y + box_length
536
539
)
537
540
538
- # check whether the box crosses the line; otherwise rotate
541
+ # check whether the box touches the line; otherwise rotate
539
542
while True :
540
- if line .crosses (box ):
543
+ box = shapely .affinity .rotate (
544
+ geom = box ,
545
+ angle = random .randint (0 , 360 ),
546
+ origin = point
547
+ )
548
+ check_touch = line .touches (box ) and not line .crosses (box )
549
+ if check_touch :
541
550
break
542
- else :
543
- box = shapely .affinity .rotate (
544
- geom = box ,
545
- angle = random .randint (0 , 360 ),
546
- origin = point
547
- )
548
551
549
552
# saving box geodataframe
550
553
box_gdf = geopandas .GeoDataFrame (
@@ -555,20 +558,19 @@ def create_box_crosses_segment_at_endpoint(
555
558
556
559
return box_gdf
557
560
558
- # pytest pending
559
- def create_box_touch_segment_at_endpoint (
561
+ def box_cross_selected_segment_at_endpoint (
560
562
self ,
561
563
input_file : str ,
562
564
column_name : str ,
563
565
column_value : typing .Any ,
564
566
box_length : float ,
565
567
output_file : str ,
566
- upstream_point : bool = True
568
+ downstream_point : bool = True
567
569
) -> geopandas .GeoDataFrame :
568
570
569
571
'''
570
- Creates a square box polygon that touches an endpoint
571
- of a specified segment in the input stream path .
572
+ Creates a square box polygon that crosses a specified segment
573
+ in the stream path and passes through an endpoint of the segment .
572
574
573
575
Parameters
574
576
----------
@@ -587,44 +589,49 @@ def create_box_touch_segment_at_endpoint(
587
589
output_file : str
588
590
Path to save the output box polygon shapefile.
589
591
590
- upstream_point : bool, optional
591
- If True, the box is positioned to pass through the upstream endpoint
592
- of the segment; if False, it passes through the downstream endpoint. Default is True.
592
+ downstream_point : bool, optional
593
+ If True, the box is positioned to pass through the downstream endpoint
594
+ of the segment; if False, it passes through the upstream endpoint. Default is True.
593
595
594
596
Returns
595
597
-------
596
598
GeoDataFrame
597
- A GeoDataFrame containing the box polygon, which touches an endpoint of
598
- the specified segment in the input stream path .
599
+ A GeoDataFrame containing the box polygon, which crosses the
600
+ specified stream segment and passes through an endpoint of the segment .
599
601
'''
600
602
603
+ # check validity of output file path
604
+ check_file = Core ().is_valid_ogr_driver (output_file )
605
+ if check_file is True :
606
+ pass
607
+ else :
608
+ raise Exception ('Could not retrieve driver from the file path.' )
609
+
601
610
# input line segement
602
611
gdf = geopandas .read_file (input_file )
603
612
line = gdf [gdf [column_name ].isin ([column_value ])].geometry .iloc [0 ]
604
613
605
614
# get point
606
- point_coords = line .coords [0 ] if upstream_point is True else line .coords [- 1 ]
615
+ point_coords = line .coords [- 1 ] if downstream_point is True else line .coords [0 ]
607
616
point = shapely .Point (* point_coords )
608
617
609
618
# create box
610
619
box = shapely .box (
611
620
xmin = point .x ,
612
621
ymin = point .y ,
613
622
xmax = point .x + box_length ,
614
- ymax = point .y + box_length ,
623
+ ymax = point .y + box_length
615
624
)
616
625
617
- # check whether the box touches the line; otherwise rotate
626
+ # check whether the box crosses the line; otherwise rotate
618
627
while True :
619
- check_touch = line .touches (box ) and not line .crosses (box )
620
- if check_touch :
628
+ box = shapely .affinity .rotate (
629
+ geom = box ,
630
+ angle = random .randint (0 , 360 ),
631
+ origin = point
632
+ )
633
+ if line .crosses (box ):
621
634
break
622
- else :
623
- box = shapely .affinity .rotate (
624
- geom = box ,
625
- angle = random .randint (0 , 360 ),
626
- origin = point
627
- )
628
635
629
636
# saving box geodataframe
630
637
box_gdf = geopandas .GeoDataFrame (
0 commit comments