5

I have data in the format (latitude, longitude, value). I want to plot (lat, long) -> value on a map of the city. Something like the following images: enter image description here enter image description here

I've already tried the following:

  1. Python's Matplotlib: Unable to find required functions
  2. Plotly
  3. r-barplots on map, RG-histogram-bar-chart-over-map.
  4. plot-3d-bars-on-a-map-in-matlab: This will do, but I'm trying to find a similar thing in python
  5. D3 map histogram: This allows me to plot city-wise, but not within a city.
Shubham Agrawal
  • 182
  • 2
  • 12

2 Answers2

1

I posted above question and then, found interesting plotting libraries.

Cesium : An open-source JavaScript library for 3D globes and maps.

ArcGIS: This one is paid (60 days free trial is available), but provide a wide variety of beautiful visualizations on 2D maps and 3D globes

Shubham Agrawal
  • 182
  • 2
  • 12
0

How about Basemap? It is a matplotlib extension, so it has got all its features to create data visualizations and adds the geographical projections and some datasets to be able to plot coastlines, countries directly from the library.

enter image description here

shin
  • 31,901
  • 69
  • 184
  • 271