1

我正在尝试使用 Goeviews 中的路径对象在 Jupyter Notebook 中可视化一些 LINESTRINGS。路径应根据流量进行颜色编码(参见下面的示例)。我阅读了相关的文章Displaying Paths with Geoviews并且给定的示例对我有用。

但是,着色似乎不适用于线串。我错过了什么吗?任何帮助深表感谢!

import requests
import geopandas as gpd
import json

import holoviews as hv
import geoviews as gv
hv.extension('bokeh')

url = 'http://stadtplan.bonn.de/geojson?Thema=19584'
r = requests.get(url)
data = r.json()
gdf_traffic = gpd.GeoDataFrame.from_features(data['features'])
gdf_traffic.head(1)



#'geschwindigkeit' = 'traffic' in German
%%opts Path [width=500 height=500 color_index="geschwindigkeit"] (cmap='inferno')

gv.Path(gdf_traffic, vdims=["geschwindigkeit"])
4

1 回答 1

0

如果有人仍然想知道如何为 LineStrings 着色,这对我有用:

gv.Path(gdf_traffic, vdims["geschwindigkeit"]).opts(opts.Path(color="yellow",line_width=2))
于 2019-09-30T14:16:14.973 回答