I have a list of latitude and longitude coordinates and respective Received Signal strength values at each coordinate. How would I plot a kernel density estimation (kde) 2D heatmap for these signal strengths at each lat-lon in python(matplotlib)?
Asked
Active
Viewed 2,583 times
0
-
It's unclear if you have researched or tried something before posting here – ᴍᴇʜᴏᴠ Sep 28 '16 at 13:58
1 Answers
4
You can use the python library seaborn. It has a handy function that plots kernel density estimation for your heatmaps.
Check this out :
import seaborn as sns
lat = [list_of_values]
long = [list_of_values]
ax = sns.kdeplot(lat, long, cmap="Blues", shade=True, shade_lowest=False)

MMF
- 5,750
- 3
- 16
- 20