What would a minimal example for a choropleth map in Mathematica look like?

后端 未结 5 831
抹茶落季
抹茶落季 2021-02-06 11:19

What would a minimal example for a choropleth map in Mathematica look like?

I can read in a ESRI Shapefile using Import, but do not know how to work with th

5条回答
  •  故里飘歌
    2021-02-06 12:00

    A throw on Minimal in the code golf sense:

    Graphics@Function[f,{Hue[f[#,"Area"]/10^7],f[#,"Polygon"]} &/@ f[]]@CountryData
    

    enter image description here

提交回复
热议问题