Geoviews 绘图显示不正确的经度和纬度/以错误的格式显示它们
Geoviews Plots Displays Incorrect Longitude & Latitude / Displays Them in the Wrong Format
我有一个 longitude = -0.050122
和 latitude = 52.699185
点。
当我在 Geoviews 中绘制时,这个点显示不正确:
pin = gv.Points(gdf_pin,vdims=["avg_cust_dist_trav_km","avg_cust_dist_trav_miles"]
).opts(tools=["hover","tap"],
color="green",size = 15,
line_color="white",hover_color="orange",
hover_line_color="white",line_width=2)
输出:
同样的事情似乎也发生在使用 Geoviews 生成的多边形图上。
这是错误还是我必须执行其他操作才能正确显示经度和纬度?
谢谢
澄清一下,点本身看起来正确显示(绘制在正确的位置),但悬停信息显示在 Web 墨卡托坐标中,而不是更多 human-readable 原生 lat/lon 值。我相信这是一个错误;见 https://github.com/holoviz/geoviews/issues/470 .
(不过不确定悬停中的“th”是什么;我在我的副本中没有看到它。)
我有一个 longitude = -0.050122
和 latitude = 52.699185
点。
当我在 Geoviews 中绘制时,这个点显示不正确:
pin = gv.Points(gdf_pin,vdims=["avg_cust_dist_trav_km","avg_cust_dist_trav_miles"]
).opts(tools=["hover","tap"],
color="green",size = 15,
line_color="white",hover_color="orange",
hover_line_color="white",line_width=2)
输出:
同样的事情似乎也发生在使用 Geoviews 生成的多边形图上。
这是错误还是我必须执行其他操作才能正确显示经度和纬度?
谢谢
澄清一下,点本身看起来正确显示(绘制在正确的位置),但悬停信息显示在 Web 墨卡托坐标中,而不是更多 human-readable 原生 lat/lon 值。我相信这是一个错误;见 https://github.com/holoviz/geoviews/issues/470 .
(不过不确定悬停中的“th”是什么;我在我的副本中没有看到它。)