MCPcopy Create free account
hub / github.com/alandefreitas/matplotplusplus / world_cities

Function world_cities

source/matplot/util/world_cities.cpp:766–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

764 }
765
766 std::tuple<std::vector<double>, std::vector<double>, std::vector<std::string>> world_cities(double min_x_distance_per_char, double min_y_distance) {
767 auto [x,y,names] = world_cities();
768 return clear_overlapping_labels(x,y,names,min_x_distance_per_char,min_y_distance);
769 }
770
771 std::tuple<std::vector<double>, std::vector<double>, std::vector<size_t>> greedy_tsp_with_idx(const std::vector<double>& x, const std::vector<double>& y, size_t starting_city) {
772 std::vector<size_t> route_idx = {starting_city};

Callers 1

mainFunction · 0.85

Calls 1

clear_overlapping_labelsFunction · 0.85

Tested by

no test coverage detected