def munros(edge_length=10):
"""Number of munros in different rectangular areas of Scotland.
Parameters
----------
edge_length : float
Size of the rectangular grid in minutes.
Returns
-------
h : physt.histogram_nd.Histogram2D
Histogram in latitude and longitude.
"""
data = load_dataset("munros")
return h2(data["lat"], data["long"], "fixed_width", edge_length / 60, name="munros", title="Munros of Scotland")
评论列表
文章目录