top | item 28300951

Prettymaps: Small Python library to draw customized maps from OpenStreetMap data

982 points| sebg | 4 years ago |github.com | reply

74 comments

order
[+] willsewell|4 years ago|reply
This are beautiful.

I had a go at doing roughly the same thing a couple of years ago [0]. It was mostly straightforward, but the part I really struggled with were rendering the sea. The encoding of OSM coastline is quite quirky [1]. When the edge of the rendering intersects with the coastline it's very tricky to compute which side of a coastline is sea and which is land. As an example - how would you render this [2]?

I wasn't sure how I could solve this, so I wrote up a more abstract formulation of the problem here [3], and asked for help. I think the proposed solution make sense, but I think I would have to implement it by rendering individual pixels and wouldn't be able to lean on a higher level graphics library.

I'm looking forward to seeing how the author solved this problem.

[0] https://twitter.com/willsewell_/status/1172523752699113473

[1] https://wiki.openstreetmap.org/wiki/Tag:natural%3Dcoastline#...

[2] https://www.openstreetmap.org/#map=15/22.0330/88.8819

[3] https://leetcode.com/discuss/general-discussion/1104642/im-s...

[+] nroets|4 years ago|reply
A simple solution is paint the sea with triangles of which one side is perfectly horizontal. And always work bottom to top.

You will have to pre scan the ways for instance where they change from ascending to descending. Here the sea will spilt into a left and right section. Make a list of these and sort them from top to bottom.

While generating triangles, check that list to where you should split.

[+] mistrial9|4 years ago|reply
make a constant water layer as a seperate process; this is a known pain point, land-use / land cover has some similar challenges
[+] avnigo|4 years ago|reply
I don't know what I was expecting, but those really are pretty maps!

I was hoping for some more documentation apart from the usage examples, although those are much appreciated too.

[+] cabalamat|4 years ago|reply
> I was hoping for some more documentation

Agreed. This is a good library but it is let down by lack of documentation. Reading the source doesn't help, e.g. this is "explaining" the parameters in the plot function:

    # Whether to use a backup for the layers
    backup = None,
    # Custom postprocessing function on layers
    postprocessing = None,
    # Radius (in case of circular plot)
    radius = None,
These sorts of comments merely repeat what's in the code and are worse than useless.
[+] ahmedbaracat|4 years ago|reply
Came here to just say that they are super beautiful. Amazing color palettes and styles.
[+] lifeisstillgood|4 years ago|reply
Knowledge, and capability are like the surface of a balloon. Each day the balloon is expanded and it is only after a while you realise how far away from the surface point you are on, all the other surface points have reached. I mean i toyed with python and maps back in the day, and my intuition for how good looking you could make one of these is completely off.

This stuff is amazing.

I think I want there to be a professional software "continuing-education" [#] service. A course I do each 6 months that just gets me to run something for an hour (from astronomy to 3d-printing).

I know i could do it myself but the 10 -20 hours spent on each install wasted though bad configs seems something I would happily pay to avoid.

[#] Not a "re-education" camp. Although I know few devs I could send to one if someone provides seed funding. ;-)

[+] TekMol|4 years ago|reply

    Install with

    pip install git+https://github.com/abey79/vsketch#egg=vsketch
    pip install git+https://github.com/marceloprates/prettymaps.git
If prettymaps needs vsketch, why does it not put it into its setup.py?
[+] nightpool|4 years ago|reply
Probably because it requires an unreleased HEAD version instead of something from PyPi?
[+] myidealab|4 years ago|reply
Were you able to run the 2nd cell in Google Colab? I get the following error:

    FileNotFoundError: [Errno 2] No such file or directory: '/usr/local/lib/python3.7/dist-packages/numpy-1.19.5.dist-info/METADATA'
[+] mdoms|4 years ago|reply
Add these imports to the top of the readme example to make it work. For the life of me I don't understand people who strip imports out of code examples.

    import matplotlib.pyplot as plt
    from prettymaps import plot
Also use this at the end to save your map.

    plt.savefig('my-map.png')
[+] SundaySetUp|4 years ago|reply
Thanks so much for this. I didn't have a scooby.
[+] pgroves|4 years ago|reply
Looks really nice. The big blob of parameters in the kwargs looks pretty intimidating to get correct. Maybe consider a builder object for the config: https://en.wikipedia.org/wiki/Builder_pattern. It would probably be easier to document, too (document the setter methods of the Builder rather than try to explain the nested dict). Feel free to ignore me.
[+] Freak_NL|4 years ago|reply
The option of not just setting a fixed colour for certain features (like a building), but supplying a palette of colours for the renderer to randomly use is interesting. It makes the output playful. I don't think I've seen that feature before in OpenStreetMap renderers.
[+] anigbrowl|4 years ago|reply
That contributes massively to readability.
[+] twoslide|4 years ago|reply
Beautiful, different from what I've seen with other OSM data. Dying to be made into a web app
[+] jimjimjimjim|4 years ago|reply
Have you thought about building a site where users could order framed posters of any address they like using the output of this library? I think that would be cool
[+] switch007|4 years ago|reply
If they haven’t, I’m sure about 5 MVPs will be online by the end of the week thanks to this comment. It definitely looks like art!
[+] adamhp|4 years ago|reply
Not only cool, but easy to monetize 8-)
[+] amcaskill|4 years ago|reply
I would buy one. These are gorgeous.
[+] hasmanean|4 years ago|reply
I’d love to see hand drawn thematic maps (similar to amusement park maps) for specific regions.

Maybe a marketplace for such maps would allow artists to document their cities/neighborhoods.

[+] NelsonMinar|4 years ago|reply
It's fun to see a fresh new take on how to draw maps in Python. I'm still mired in 10 year old concepts from when this stuff was much harder. This project just looks joyful.
[+] agencies|4 years ago|reply
Does anyone have a simple way to make rendered images from osm data? Usually it involves postgres, but I wish there was a renderer that could use the vector tiles directly...
[+] qwertox|4 years ago|reply
The simplest is to fetch the OSM tiles directly (and cache them!)

   imgurl = "https://a.tile.openstreetmap.org/{0}/{1}/{2}.png".format(zoom, xtile, ytile)
the tricky part is to known which xtile, ytile to fetch, but Stack Overflow has the answer [1].

Then you can draw over them with `PIL` and also `cairo`, in order to lay SVG shapes onto the map. Cairo is somewhat hard to grasp, because it is outdated, but it draws perfectly smooth lines.

[1] https://stackoverflow.com/a/28530369

[+] mistrial9|4 years ago|reply
if you think postgres is challenging, try mapnik directly!
[+] pasabagi|4 years ago|reply
This is great! I played around a bit with openstreetmap data a month ago, and I couldn't find anything so straightforward.
[+] bhelkey|4 years ago|reply
I love the look of this! I don't think I have a use case for this library but it looks fun to play with.
[+] nathancahill|4 years ago|reply
Beautiful. I wish there was a way to simplify OSM roads. For example, southbound/northbound highways are correctly stored as separate roads in OSM. But to draw an atlas, it's often enough to show the single highway.
[+] humanistbot|4 years ago|reply
Is this supposed to take 3-5 minutes each to generate a single map? Because that is what I'm seeing in the colab notebook.
[+] kingofpandora|4 years ago|reply
Are you rendering a large area? OSM data can be big...