Skip to content

Commit

Permalink
- changes in example usage
Browse files Browse the repository at this point in the history
  • Loading branch information
fzaussin committed Jan 21, 2019
1 parent 32c42ec commit c5a9e4f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions merra/reshuffling_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# data path definitions

in_path = '/home/fzaussin/shares/radar/Datapool_raw/Earth2Observe/MERRA2/datasets/M2T1NXLND.5.12.4'
out_path = '/home/fzaussin/shares/radar/Datapool_processed/Earth2Observe/MERRA2/datasets/M2T1NXLND.5.12.4_1h_temporal_sampling_test'
out_path = '/home/fzaussin/shares/radar/Datapool_processed/Earth2Observe/MERRA2/datasets/M2T1NXLND.5.12.4_6h_temporal_sampling_test'

# define date range as datetime (!) objects
start_date = datetime(1980, 1, 1)
Expand All @@ -28,7 +28,7 @@
'GWETPROF', 'GWETROOT', 'GWETTOP',
'SNOMAS', 'PRECSNOLAND', 'PRECTOTLAND']

param_list = ['SFMC']
#param_list = ['SFMC']

if __name__ == '__main__':
import time, datetime
Expand All @@ -41,7 +41,7 @@
parameters=param_list,
img_buffer=240,
# specify time resolution
temporal_sampling=1)
temporal_sampling=6)

toc = time.clock()
print("Elapsed time: ", str(datetime.timedelta(seconds=toc - tic)))

0 comments on commit c5a9e4f

Please sign in to comment.