forked from ecjoliver/eddyTracking
-
Notifications
You must be signed in to change notification settings - Fork 1
/
find_T.py
21 lines (19 loc) · 789 Bytes
/
find_T.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Author: Christopher Bull.
# Affiliation: Climate Change Research Centre and ARC Centre of Excellence for Climate System Science.
# Level 4, Mathews Building
# University of New South Wales
# Sydney, NSW, Australia, 2052
# Contact: [email protected]
# www: christopherbull.com.au
# Date created: Mon, 07 Dec 2015 18:23:21
# Machine created on: ccrc165
#
"""
Short script to find the number of time steps for the 'active' NEMO experiment (will return the one called NAME in params).
"""
from eddy_functions import raw_nemo_globber_specifytpe
import pandas as pd
import params
if __name__ == "__main__":
#put useful code here!
print 'T=',len(raw_nemo_globber_specifytpe(params.pathroot,return_dates=True))