第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

PNG圖像未顯示在Folium地圖上

PNG圖像未顯示在Folium地圖上

拉丁的傳說(shuō) 2022-06-14 15:05:13
我從這里運(yùn)行了這個(gè)在 folium 地圖上顯示圖像的 folium 示例。我在我的 spyder 上運(yùn)行了這個(gè)程序,雖然它在 jupyter 上運(yùn)行良好import numpy as npimport pandas as pdimport numpy.ma as maimport foliumdef make_data():    x = np.linspace(-np.pi, np.pi, 101)    sin = np.sin(x)    cos = np.cos(x)    cos[20:50] = np.NaN    return pd.DataFrame(np.asanyarray([sin, cos]).T, columns=['sin', 'cos'], index=x)df = make_data()resolution, width, height = 75, 7, 3station = '42'lon, lat = -42, -21m = folium.Map(location=[lat, lon], zoom_start=5)import base64import matplotlib.pyplot as pltfig, ax = plt.subplots(figsize=(width, height))ax = df.plot(ax=ax, legend=False)ax.set_ylabel('Sea surface height (m)')png = 'mpld3_{}.png'.format(station)fig.savefig(png, dpi=resolution)encoded = base64.b64encode(open(png, 'rb').read())from folium import IFramehtml = '<img src="data:image/png;base64,{}">'.formatiframe = IFrame(html(encoded), width=(width*resolution)+20, height=(height*resolution)+20)popup = folium.Popup(iframe, max_width=2650)icon = folium.Icon(color="red", icon="ok")marker = folium.Marker(location=[lat-2, lon-1], popup=popup, icon=icon)marker.add_to(m)m.save('test.html')預(yù)期結(jié)果我的輸出
查看完整描述

1 回答

?
SMILET

TA貢獻(xiàn)1796條經(jīng)驗(yàn) 獲得超4個(gè)贊

使用folium-0.10.1,您只需修改這一行:

encoded = base64.b64encode(open(png, 'rb').read())

進(jìn)入

encoded = base64.b64encode(open(png, 'rb').read()).decode()

你得到:

http://img1.sycdn.imooc.com//62a833560001502d10940593.jpg

查看完整回答
反對(duì) 回復(fù) 2022-06-14
  • 1 回答
  • 0 關(guān)注
  • 287 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)