From 5977b242efcd479f9fd26aa57d0ed8cf78adbe2a Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Tue, 3 Dec 2019 17:04:27 +1100 Subject: [PATCH] Do not plot output --- SydneyTide-python.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/SydneyTide-python.py b/SydneyTide-python.py index c1ff4b9..041febc 100644 --- a/SydneyTide-python.py +++ b/SydneyTide-python.py @@ -1,7 +1,6 @@ import datetime import time import math -from pylab import * # Brett Miller 9th October 2015. # This program reads Harmonics for Fort Denison as provided by BOM on the 9th October 2015 @@ -256,9 +255,3 @@ while (t < end_time): x.append(t) y.append(z) t = t + time_step - -F.close -plt.figure() -plot(x, y, c='g', label='Sample') -plt.gcf().autofmt_xdate() -show()