Skip to content

Commit 3eb84f5

Browse files
author
arcticsnow
committed
typo order of arguments in fetch_era5()
1 parent 5a50b7f commit 3eb84f5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

TopoPyScale/fetch_era5.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -605,10 +605,10 @@ def retrieve_era5(product, startDate, endDate, eraDir, latN, latS, lonE, lonW, s
605605
list(download.target_file),
606606
list(download.product_type),
607607
list(download.time_steps),
608+
list(download.verify_flag),
608609
list(download.output_format),
609610
list(download.download_format),
610-
list(download.surf_varoi),
611-
list(download.verify_flag)))
611+
list(download.surf_varoi)))
612612
pool.close()
613613
pool.join()
614614
elif surf_plev == 'plev':
@@ -622,10 +622,10 @@ def retrieve_era5(product, startDate, endDate, eraDir, latN, latS, lonE, lonW, s
622622
list(download.product_type),
623623
list(download.time_steps),
624624
list(download.plevels),
625+
list(download.verify_flag),
625626
list(download.output_format),
626627
list(download.download_format),
627-
list(download.plev_varoi),
628-
list(download.verify_flag)))
628+
list(download.plev_varoi)))
629629
pool.close()
630630
pool.join()
631631
else:

0 commit comments

Comments
 (0)