GIScience / orstools-qgis-plugin

Plugin for QGIS with a set of tools to use openrouteservice API´s, based on openstreetmap
https://plugins.qgis.org/plugins/ORStools/
MIT License
91 stars 31 forks source link

fix: RequestsException with multi points layers and TSP option selected in point layer proc #224

Closed merydian closed 4 months ago

merydian commented 4 months ago

Input input_points list was appended by lists of points not the points themselves.

koebi commented 4 months ago

Do I read correctly that we're basically going from a list of lists (i.e. [ [], [], [] ]) to a list of list (i.e. [ [ ] ])?

merydian commented 4 months ago

Yes, exactly.