You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Find the centerline and width of rivers based on the latitude and longitude posi
24
24
* centerline_voronoi
25
25
* centerline_equal_distance
26
26
* centerline_evenly_spaced
27
-
*centerlineSmoothed
27
+
*centerline_smoothed
28
28
* centerlineLength
29
29
***Return river features**
30
30
* rightBankLength
@@ -228,7 +228,7 @@ The red pins represent the equal distance centerline coordinates produced by cen
228
228
* centerline_voronoi (list of tuples): List of the latitude and longitude coordinates of the centerline generated by Voronoi diagrams
229
229
* centerline_equal_distance (list of tuples): List of the latitude and longitude coordinates of the centerline generated by equal distances between coordinates from the Voronoi diagrams
230
230
* centerline_evenly_spaced (list of tuples): List of the latitude and longitude coordinates of the centerline generated by evenly spacing out points generated by the Voronoi diagrams
231
-
*centerlineSmoothed (list of tuples): List of the latitude and longitude coordinates of the centerline generated by smoothing out the evenly spaced-out points generated by the Voronoi diagrams
231
+
*centerline_smoothed (list of tuples): List of the latitude and longitude coordinates of the centerline generated by smoothing out the evenly spaced-out points generated by the Voronoi diagrams
232
232
* centerlineLength (float): Length of the centerline of the river (in km)
233
233
* rightBankLength (float): Length of the right bank of the river (in km)
234
234
* leftBankLength (float): Length of the left bank of the river (in km)
The smoothed centerline (`river_object.centerlineSmoothed`) can end up lying outside the river if the centerline data points are sparse in a narrow river. If more than two points in the smoothed centerline lie outside the river, a warning will be thrown
780
+
The smoothed centerline (`river_object.centerline_smoothed`) can end up lying outside the river if the centerline data points are sparse in a narrow river. If more than two points in the smoothed centerline lie outside the river, a warning will be thrown
781
781
782
782
Example Error: `WARNING: Partially invalid smoothed centerline due to sparse centerline data (6 points lie outside the polygon), fix recommendation: rerun CenterlineWidth to create river object with interpolate_n_centerpoints set to 62+`
0 commit comments