LACMTA / metro-api-v2

Docs: https://lacmta.github.io/metro-api-v2/ Dev: https://dev-metro-api-v2.ofhq3vd1r7une.us-west-2.cs.amazonlightsail.com/docs
https://api.metro.net/docs
0 stars 3 forks source link

Refactor get_route_overview function to group and sort results by route_type #542

Closed albertkun closed 3 months ago

albertkun commented 3 months ago

This pull request refactors the get_route_overview function in main.py to group and sort the results by route_type. It introduces a new dictionary, grouped_results, to group the results by route_type. It then sorts the routes within each route_type based on the display_order. Finally, it converts the grouped_results dictionary into a list of dictionaries, final_results, and returns it. This change improves the organization and ordering of the results returned by the get_route_overview function.