【发布时间】:2019-09-07 09:02:24
【问题描述】:
我正在尝试在 Python3 中创建一个 Choropleth,使用 shapely、fiona 和 bokeh 进行显示。
我有一个包含大约 7000 行的文件,其中包含一个城镇和一个柜台的位置。
例子:
54.7604;9.55827;208
54.4004;9.95918;207
53.8434;9.95271;203
53.5979;10.0013;201
53.728;10.2526;197
53.646;10.0403;196
54.3977;10.1054;193
52.4385;9.39217;193
53.815;10.3476;192
...
我想在 12.5 公里的网格中显示这些,shapefile 可用于 https://opendata-esri-de.opendata.arcgis.com/datasets/3c1f46241cbb4b669e18b002e4893711_0
我的代码有效。
它非常慢,因为它是一种蛮力算法,可以将 7127 个网格点中的每一个与所有 7000 个点进行对比。
import pandas as pd
import fiona
from shapely.geometry import Polygon, Point, MultiPoint, MultiPolygon
from shapely.prepared import prep
sf = r'c:\Temp\geo_de\Hexagone_125_km\Hexagone_125_km.shp'
shp = fiona.open(sf)
district_xy = [ [ xy for xy in feat["geometry"]["coordinates"][0]] for feat in shp]
district_poly = [ Polygon(xy) for xy in district_xy] # coords to Polygon
df_p = pd.read_csv('points_file.csv', sep=';', header=None)
df_p.columns = ('lat', 'lon', 'count')
map_points = [Point(x,y) for x,y in zip(df_p.lon, df_p.lat)] # Convert Points to Shapely Points
all_points = MultiPoint(map_points) # all points
def calc_points_per_poly(poly, points, values): # Returns total for poly
poly = prep(poly)
return sum([v for p, v in zip(points, values) if poly.contains(p)])
# this is the slow part
# for each shape this sums um the points
sum_hex = [calc_points_per_poly(x, all_points, df_p['count']) for x in district_poly]
由于这非常慢,我想知道是否有更快的方法来获取 num_hex 值,特别是因为现实世界中的点列表可能更大而网格更小形状越多,效果越好。
【问题讨论】:
标签: python geopandas shapely choropleth r-tree