modified the message showing reading progress
Project: http://git-wip-us.apache.org/repos/asf/climate/repo Commit: http://git-wip-us.apache.org/repos/asf/climate/commit/7ce0e83f Tree: http://git-wip-us.apache.org/repos/asf/climate/tree/7ce0e83f Diff: http://git-wip-us.apache.org/repos/asf/climate/diff/7ce0e83f Branch: refs/heads/master Commit: 7ce0e83f476f4a31596bc9acbb41e5762716af84 Parents: 26c977a Author: Huikyo Lee <[email protected]> Authored: Wed Oct 7 03:16:08 2015 -0400 Committer: Huikyo Lee <[email protected]> Committed: Wed Oct 7 03:16:08 2015 -0400 ---------------------------------------------------------------------- ocw/data_source/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/climate/blob/7ce0e83f/ocw/data_source/local.py ---------------------------------------------------------------------- diff --git a/ocw/data_source/local.py b/ocw/data_source/local.py index bbc0216..63f70c0 100644 --- a/ocw/data_source/local.py +++ b/ocw/data_source/local.py @@ -364,7 +364,7 @@ def load_WRF_2d_files_RAIN(file_path=None, times = [] nfile = len(WRF_files) for ifile, file in enumerate(WRF_files): - print 'NC file '+str(ifile+1)+'/'+str(nfile) + print 'Reading file '+str(ifile+1)+'/'+str(nfile), file file_object = netCDF4.Dataset(file) time_struct_parsed = strptime(file[-19:],"%Y-%m-%d_%H:%M:%S") for ihour in range(24):
