溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖

發(fā)布時(shí)間:2021-07-29 18:58:15 來(lái)源:億速云 閱讀:231 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要介紹“怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖”,在日常操作中,相信很多人在怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖

訪問應(yīng)用(AK)下即是我們這次所需的秘鑰

二、整理公交車地理數(shù)據(jù)

這個(gè)公交車地理數(shù)據(jù)著實(shí)有點(diǎn)坑,echarts官方給的數(shù)據(jù)長(zhǎng)這樣:

看起來(lái)好像密碼,真讓人頭大

只好硬著頭皮去研究一下官方代碼:

$.getJSON(uploadedDataURL, function(data) {
    var hStep = 300 / (data.length - 1);
    var busLines = [].concat.apply([], data.map(function (busLine, idx) {
        var prevPt;
        var points = [];
        for (var i = 0; i < busLine.length; i += 2) {
            var pt = [busLine[i], busLine[i + 1]];
            if (i > 0) {
                pt = [
                    prevPt[0] + pt[0],
                    prevPt[1] + pt[1]
                ];
            }
            prevPt = pt;

            points.push([pt[0] / 1e4, pt[1] / 1e4]);
        }
        return {
            coords: points,
            lineStyle: {
                normal: {
                    color: echarts.color.modifyHSL('#5A94DF', Math.round(hStep * idx))
                }
            }
        }

這是一段java代碼,如果看不懂就不要看了,大致意思是把數(shù)據(jù)都除以10000,然后列表奇數(shù)位依次相加、偶數(shù)位依次相加,兩兩一組即為各個(gè)公交站點(diǎn)地理坐標(biāo),每個(gè)列表代表1個(gè)線路。

用python實(shí)現(xiàn)以上過(guò)程,代碼如下:

import json
with open('1.json','r') as f:
    datas=json.load(f)
result=[]
for data in datas:
    data = [float(i / 10000) for i in data]
    a=[]
    for i in range(2,len(data),2):
        data[i]=data[i-2]+data[i]
        data[i+1] = data[i - 1] + data[i+1]
        a.append([data[i],data[i+1]])
    result.append(a)

感覺還是python的代碼要少一些

三、畫圖

這里給大家提供兩種方式

1.帶地圖背景的

BAIDU_MAP_AK = "輸入你自己的秘鑰"

c = (
    BMap(init_opts=opts.InitOpts(width="1200px", height="800px"))
    .add_schema(
        baidu_ak=BAIDU_MAP_AK,
        center=[116.40, 40.04],
        zoom=10,
        is_roam=True,
    )
    .add(
        "",
        type_="lines",
        is_polyline=True,
        data_pair=result,
        linestyle_opts=opts.LineStyleOpts(opacity=0.2, width=0.5,color='red'),
        # 如果不是最新版本的話可以注釋下面的參數(shù)(效果差距不大)
        progressive=200,
        progressive_threshold=500,
    )
)
c.render_notebook()

怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖

2.不帶地圖背景的

BAIDU_MAP_AK = "輸入你自己的秘鑰"

c = (
    BMap(init_opts=opts.InitOpts(width="1200px", height="800px"))
    .add_schema(
        baidu_ak=BAIDU_MAP_AK,
        center=[116.40, 40.04],
        zoom=10,
        is_roam=True,
        map_style={
            "styleJson": [
                {
                    "featureType": "water",
                    "elementType": "all",
                    "stylers": {"color": "#031628"},
                },
               
           “省略部分修飾代碼”
    )
    .add(
        "",
        type_="lines",
        is_polyline=True,
        data_pair=result,
        linestyle_opts=opts.LineStyleOpts(opacity=0.2, width=0.5,color='red'),
        # 如果不是最新版本的話可以注釋下面的參數(shù)(效果差距不大)
        progressive=200,
        progressive_threshold=500,
    )
)
c.render_notebook()

到此,關(guān)于“怎么用Python實(shí)現(xiàn)可視化動(dòng)態(tài)公交線路圖”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI