@@ -466,7 +466,7 @@ def terrain_modifications(self) -> GeoDataFrame: # noqa D102
466
466
raise NotImplementedError
467
467
468
468
def cross_sections (self , datetime_to_str : bool = False ) -> GeoDataFrame :
469
- """Returns the model 1D cross sections
469
+ """Return the model 1D cross sections.
470
470
471
471
Returns
472
472
-------
@@ -512,7 +512,7 @@ def cross_sections(self, datetime_to_str: bool = False) -> GeoDataFrame:
512
512
return xs_gdf
513
513
514
514
def river_reaches (self , datetime_to_str : bool = False ) -> GeoDataFrame :
515
- """Returns the model 1D river reach lines
515
+ """Return the model 1D river reach lines.
516
516
517
517
Returns
518
518
-------
@@ -576,7 +576,7 @@ def blocked_obstructions(self) -> GeoDataFrame: # noqa D102
576
576
raise NotImplementedError
577
577
578
578
def steady_flow_names (self ) -> list :
579
- """Returns the profile information for each steady flow event
579
+ """Return the profile information for each steady flow event.
580
580
581
581
Returns
582
582
-------
@@ -594,7 +594,7 @@ def steady_flow_names(self) -> list:
594
594
return profilenames
595
595
596
596
def cross_sections_wsel (self ) -> pd .DataFrame :
597
- """Returns the WSEL information for each 1D Cross Section
597
+ """Return the WSEL information for each 1D Cross Section.
598
598
599
599
Returns
600
600
-------
@@ -621,7 +621,7 @@ def cross_sections_wsel(self) -> pd.DataFrame:
621
621
return wsel_df_t
622
622
623
623
def cross_sections_elevations (self ) -> pd .DataFrame :
624
- """Returns the model cross section elevation information
624
+ """Return the model cross section elevation information.
625
625
626
626
Returns
627
627
-------
@@ -653,7 +653,7 @@ def cross_sections_elevations(self) -> pd.DataFrame:
653
653
def cross_sections_encroachments (
654
654
self , side : str , floodway : str = "floodway"
655
655
) -> pd .DataFrame :
656
- """Returns the encroachment information for a floodway plan hdf.
656
+ """Return the encroachment information for a floodway plan hdf.
657
657
658
658
Returns
659
659
-------
@@ -684,7 +684,7 @@ def cross_sections_encroachments(
684
684
return df
685
685
686
686
def cross_sections_area (self ) -> pd .DataFrame :
687
- """Returns the cross section area for each profile
687
+ """Return the cross section area for each profile.
688
688
689
689
Returns
690
690
-------
@@ -708,7 +708,7 @@ def cross_sections_area(self) -> pd.DataFrame:
708
708
return df_xsarea_t
709
709
710
710
def cross_sections_velocity (self ) -> pd .DataFrame :
711
- """Returns the cross section velocity for each profile
711
+ """Return the cross section velocity for each profile.
712
712
713
713
Returns
714
714
-------
0 commit comments