diff --git a/README.md b/README.md index 62284df..3b06af5 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,15 @@ As illustrated in the picture below: ![avatar](examples/graph_map.png) +Plotting VCS +---------- +``` +from pycwr.draw.VerticalSectionPlot import VerticalSection +vcs = VerticalSection(PRD) +vcs.section((6500, -27344), (16000, -120000), "dBZ") # (start_x, start_y), (end_x, end_y) units:meters +plt.show() +``` + Launch Graphical interface to show Radar Data ---------- diff --git a/README_CN.md b/README_CN.md index 5e7f839..432af2c 100644 --- a/README_CN.md +++ b/README_CN.md @@ -78,6 +78,15 @@ plt.show() ![avatar](examples/graph_map.png) +画垂直剖面 +---------- +``` +from pycwr.draw.VerticalSectionPlot import VerticalSection +vcs = VerticalSection(PRD) +vcs.section((6500, -27344), (16000, -120000), "dBZ") # (start_x, start_y), (end_x, end_y) units:meters +plt.show() +``` + 启动图形化界面 ----------