From caa02b8b0a3f7403ba77f4064d1dcb8ee68e6f8d Mon Sep 17 00:00:00 2001 From: Pedro Herrera Lormendez Date: Mon, 19 Sep 2022 15:46:54 +0200 Subject: [PATCH] fixed mslp issue --- docs/source/index.rst | 2 +- jcclass/JC_classification.py | 2 +- jcclass/version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index f205a85..48830d0 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,7 +1,7 @@ The automated Jenkinson & Collison classification for Python =================================== -**jcclass** is a Python library to derive automated atmospheric surface circulatons +**jcclass** is a Python library to derive automated atmospheric surface circulations based on Mean Sea Level Pressure data. The circulations are derived using the Jenkinson and Collison automated classification originally derived from the Lamb Weather types. diff --git a/jcclass/JC_classification.py b/jcclass/JC_classification.py index 472caef..ea9f225 100644 --- a/jcclass/JC_classification.py +++ b/jcclass/JC_classification.py @@ -148,7 +148,7 @@ def JC_classification(filename): print('Computing flow terms') #Computing equations of flows and vorticity flows = JC_functions.flows(p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, sc, zwa, zsc, zwb, lat, lon, time, mslp) - del (mslp, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, sc, zwa, zsc, zwb) + del (p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, sc, zwa, zsc, zwb) gc.collect() W = flows[0] #Westerly flow S = flows[1] #Southerly flow diff --git a/jcclass/version.py b/jcclass/version.py index a0235ce..e344246 100644 --- a/jcclass/version.py +++ b/jcclass/version.py @@ -1 +1 @@ -__version__ = "0.0.2" \ No newline at end of file +__version__ = "0.0.3" \ No newline at end of file