Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
359 views
in Technique[技术] by (71.8m points)

matplotlib - How to plot a heatmap of coordinates on a mollweide projection

I have a set of lattitude and longitude coordinates (i.e. a list of lists: [[20,24],[100,-3],...]) that I would like to plot has a heatmap (not just a scatter) on a mollweide projection. Essentially, what I want is a seaborn hist2d plot but as a mollweide. For a reference of what I mean, please see the uploaded picture. Does anyone know how to do this? Mollweide projection of coordinates

question from:https://stackoverflow.com/questions/66051124/how-to-plot-a-heatmap-of-coordinates-on-a-mollweide-projection

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I created some random data and showed the way to generate the histogram plot. I hope this is something you are looking for.

import numpy as np
import matplotlib.pyplot as plt
import matplotlib as mpl

# create some random data for histogram
base = [[-20, 30], [100, -20]]
data = []
for _ in range(10000):
    data.append((
        base[0][0] + np.random.normal(0, 20),
        base[0][1] + np.random.normal(0, 10)
    ))
    data.append((
        base[1][0] + np.random.normal(0, 20),
        base[1][1] + np.random.normal(0, 10)
    ))
data = np.array(data) / 180 * np.pi  # shape (n, 2)

# create bin edges
bin_number = 40
lon_edges = np.linspace(-np.pi, np.pi, bin_number + 1)
lat_edges = np.linspace(-np.pi/2., np.pi/2., bin_number + 1)

# calculate 2D histogram, the shape of hist is (bin_number, bin_number)
hist, lon_edges, lat_edges = np.histogram2d(
    *data.T, bins=[lon_edges, lat_edges], density=True
)

# generate the plot
cmap = plt.cm.Greens

fig = plt.figure()
ax = fig.add_subplot(111, projection='mollweide')

ax.pcolor(
    lon_edges[:-1], lat_edges[:-1],
    hist.T,  # transpose from (row, column) to (x, y)
    cmap=cmap, shading='auto',
    vmin=0, vmax=1
)

# hide the tick labels
ax.set_xticks([])
ax.set_yticks([])

# add the colorbar
cbar = plt.colorbar(
        plt.cm.ScalarMappable(
            norm=mpl.colors.Normalize(0, 1), cmap=cmap
        )
    )
cbar.set_label("Density Distribution")

plt.show()

I get the following figure.

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...