Dijkstra Cartography

使用 Dijkstra 算法("寻找图中节点间的最短路径")绘制地图 🌍。「Using Dijkstra's algorithm ("finding the shortest paths between nodes in a graph") to draw maps 🌍.」

Github星跟踪图

Dijkstra Cartography

Introduction

I was fascinated by the project "Roads to Rome" by Moovellab but sad that it isn't opensource. Helped by this project (thanks @tristramg ) I started to build my own map.

I did not have any GIS background but it was very interesting to discover what we can do with. The code isn't very good (I'm not a C++ guru).

The project is named "Dijkstra Cartography" but sometimes BFS algorithm is better (if all the edges have the same weight).

This code can be useful for cartographer, as I found a lot of errors for the river Amazon (see here) or.. to have your own poster ?.

Extract

You may not want to use the planet.osm file (644GB - all the openstreetmap data in one file).
Choose the right file here and extract what you really need with openstreetmap's tools : osmconvert, osmfilter, osmosis, osmium...

One interesting way is that you can extract all the data within a polygon with osmconvert, and here are some cities polygons.

Routing, Map, Routing system used, -----------, ----------------------------------------------------------, Paris, Graphhopper - "Dijkstrabi", Amazon, Dijkstra's algorithm, Railway, OSRM, Flights, Dijkstra's algorithm

The first thing to do is to gather the statistics of usage of all paths :
for each location, execute the routing algorithm you chose to your root location (your home for example).
Merge all and sort the data by the most used path.

Projections, Map, Projection, -----------, -----------------------------------------------, Paris, Lambert 93-I EPSG:27571, Amazon, ESRI:102032 (South America Equidistant Conic), Railway, Mercator, Flights, WSG84, You can follow this guide, search SpatialReference or ESPG.io.

Drawing

Considering the data is sorted and well projected.

The width and height of the image are defined like this :

width = (maxX-minX)/scale;
height = (maxY-minY)/scale;

To draw these paths, I used this function (plotted using R) :
./results/function.jpg

as it gives me a percent (between [0;1] here) of how the line width must be important. Also I can accentuate the decreasing by modifying parameters inside exp().

I used cairo and I was really suprised that I can understand these map without using any shapefile.

Details for each map

Bonus

./results/paris.gif

License

See here.

主要指标

概览
名称与所有者ibaaj/dijkstra-cartography
主编程语言C++
编程语言C++ (语言数: 5)
平台
许可证Other
所有者活动
创建于2016-04-11 20:19:57
推送于2016-10-27 21:56:18
最后一次提交2016-10-27 23:56:18
发布数0
用户参与
星数1.2k
关注者数38
派生数76
提交数8
已启用问题?
问题数3
打开的问题数0
拉请求数1
打开的拉请求数0
关闭的拉请求数0
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?