• 大小: 1.48KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-05-09
  • 语言: Python
  • 标签: 3d  

资源简介

绘制三维直线图,将飞机飞行的航迹用(经度,纬度和高度)来描述

资源截图

代码片段和文件信息

#绘制三维直线图,将飞机飞行的航迹用(经度,纬度和高度)来描述
#*************************************************************
import matplotlib as mpl
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import matplotlib.pyplot as plt
import json

def extractxyz():
    res=[]
    res1=[]
    res2=[]
    res3=[]
    filename=‘D:\\program\\web crawler\\ceshi\\1601381460.json‘#
    with open(filename) as file_obj:
        datas = json.load(file_obj)
    data=datas[‘flight_info‘][‘track‘][1]
    for x in data:
        x1=int(x[‘latitude‘])
        x2=int(x[‘longitude‘])
        x3=int(x[‘altitude‘])
        res1.append(x1)
        res2.append(x2)
        res3

评论

共有 条评论