-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot.py
69 lines (47 loc) · 1.96 KB
/
plot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from matplotlib import pyplot
from mpl_toolkits.mplot3d import Axes3D
import numpy as np
import json
import sys
def plotConfig(ax, configFile):
'''Plot the structures and the vehicle path, as defined in the config file'''
path = np.empty((0,4))
with open(configFile) as json_file:
data = json.load(json_file)
#get vehicle path
for waypoint in data['vehiclePath']:
path = np.append(path, np.array([[waypoint['t'], waypoint['x'], waypoint['y'], waypoint['z']]]), axis=0)
#plot structures
for structure in data['structures']:
polygon = np.empty((0,3))
for point in structure:
polygon = np.append(polygon, np.array([[point['x'], point['y'], point['z']]]), axis=0)
polygon = np.append(polygon, np.array([polygon[0,:]]), axis=0)
ax.plot(polygon[:,0], polygon[:,1], polygon[:,2])
ax.plot(path[:,1], path[:,2], path[:,3], 'r-*')
def plotOutput(ax, outputFile):
''' Plot the beam intersection points, as outputted by the simulator'''
points = np.empty((0,3))
with open(outputFile) as json_file:
data = json.load(json_file)
#get intersection points
for line in data:
for beam in line['beams']:
if 'point' in beam:
point = beam['point']
points = np.append(points, np.array([[point['x'], point['y'], point['z']]]), axis=0)
ax.scatter(points[:,0], points[:,1], points[:,2])
def plotData(configFile, outputFile):
'''Create complete plot with configuration and sensor output'''
fig = pyplot.figure()
ax = Axes3D(fig)
plotConfig(ax, configFile)
plotOutput(ax, outputFile)
pyplot.show()
if __name__ == "__main__":
if ( len( sys.argv ) != 3 ):
print("ERROR, need to pass config file and output file")
sys.exit(-1)
configFile = sys.argv[1]
outputFile = sys.argv[2]
plotData(configFile, outputFile)