Skip to content

Commit

Permalink
fixed mslp issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Herrera Lormendez authored and Pedro Herrera Lormendez committed Sep 19, 2022
1 parent 6ac732f commit caa02b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion jcclass/JC_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jcclass/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.2"
__version__ = "0.0.3"

0 comments on commit caa02b8

Please sign in to comment.