-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_xsection.py
50 lines (39 loc) · 1.22 KB
/
test_xsection.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
# title: civil information model
# author: kang taewook
# email: [email protected]
# description: version 1.0. alignment calculation. line, arc combination support.
#
import os, sys, re, json, random, traceback, math, pandas as pd, numpy as np, numpy as np
import matplotlib.pyplot as plt
import landxml_parser as lxml, civil_geo_engine as cge
from civil_geo_engine import civil_model
def plot_xsection(cm):
align = cm.get_alignment(0)
if align == None:
print("No alignment")
return
xsections = align.get_xsections()
num_subplot = len(xsections) > 6 and 6 or len(xsections)
fig, axes = plt.subplots(2, 3, figsize=(20, 20))
fig.suptitle('Cross Section')
for index, xsec in enumerate(xsections):
if index >= 6:
break
name = xsec.get_attrib('name')
sta_name = xsec.get_attrib('sta')
ax = axes[index//3][index%3]
ax.set_aspect('equal', 'box')
ax.set_title(name)
ax.grid(True)
xsec.plot_parts(plt, ax)
plt.show()
input()
def main():
lp = lxml.landxml()
model = lp.load('./landxml_railway_sample.xml')
# model = lp.load('./landxml_road_sample.xml')
cm = civil_model(model)
cm.initialize()
plot_xsection(cm)
if __name__ == "__main__":
main()