Is your feature request related to a problem?
II wish I could use geopandas to do reverse the order of points in a geometry.
Describe the solution you'd like
This is possible by applying a shapely function on a python list of points : LineString(list(line.coords)[::-1]). But it may be faster if implemented natively.
Describe alternatives you've considered
Apply shapely / python list function
Is your feature request related to a problem?
II wish I could use geopandas to do reverse the order of points in a geometry.
Describe the solution you'd like
This is possible by applying a shapely function on a python list of points : LineString(list(line.coords)[::-1]). But it may be faster if implemented natively.
Describe alternatives you've considered
Apply shapely / python list function