The seeds of this question were planted in my mind and have been growing since I read this answer.
I think it'd be nice to have a database from which some newcommand making use of TikZ picks up coordinates based on a text string to draw (the border of) a country. (I'm thinking of something like \drawcountry[black,fill=red]{Italy}.)
One of the points to address is how to store such coordinates in a way that they can be easily used by TikZ. I'm spontaneously thinking about a two column file with blank lines to indicate non-connected regions (e.g. islands), so that ~\draw plot file{...}` could be used.
On the other hand I read that SVG files can contain several path constructors which work in a similar fashion as TikZ's controls. With this in mind, the idea of the two-column file would be good only if M, L, and z are the only constructors to be used.
So the question becomes: how should I store coordinates retrieved from a SVG file in order to use them in TikZ?
By the way, is someone interested in such pastime? I was thinking about making a GitHub repo.
svgoperation (cf. section 14.11 "The SVG operation" , pgfmanual, p.156, v3.0.1a) – Paul Gaborit Mar 19 '17 at 16:47