File tree Expand file tree Collapse file tree 2 files changed +0
-307
lines changed
Expand file tree Collapse file tree 2 files changed +0
-307
lines changed Original file line number Diff line number Diff line change @@ -277,28 +277,3 @@ def substring_3d(
277277 result_coords .append (end_point .coords [0 ])
278278
279279 return LineString (result_coords )
280-
281-
282- def interpolate_3d_series (geometry_series , distance_series ):
283- """Apply interpolate_3d to a pandas Series of geometries and distances."""
284- return geometry_series .apply (distance_series , interpolate_3d )
285-
286-
287- def substring_3d_series (geometry_series , start_series , end_series ):
288- """Apply substring_3d to a pandas Series of geometries and distance pairs."""
289-
290- def apply_substring (geom , start , end ):
291- return substring_3d (geom , start , end )
292-
293- return geometry_series .combine (
294- start_series ,
295- lambda g , s : substring_3d (
296- g ,
297- s ,
298- end_series [
299- geometry_series .index .get_loc (
300- geometry_series [geometry_series == g ].index [0 ]
301- )
302- ],
303- ),
304- )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments