-
Notifications
You must be signed in to change notification settings - Fork 129
Dramatically different download speeds between versions #371
Copy link
Copy link
Closed
Labels
Description
Version Checks (indicate both or one)
-
I have confirmed this bug exists on the lastest release of Atlite.
-
I have confirmed this bug exists on the current
masterbranch of Atlite.
Issue Description
It seems like older atlite versions achieved faster downloads... somehow?
I've been comparing download speeds between atlite=0.2.1 and atilite=0.2.13, and the former consistently beats out the latter when it comes to download speeds (tested around half a dozen times).
The difference is quite dramatic: minutes to hours.
Reproducible Example
# with atlite 0.2.1
import atlite
cutout = atlite.Cutout(
path="tmp/cutout.nc",
module="era5",
xs=slice(-15.8, 37),
ys=slice(30, 75),
time=slice("2015-01", "2016-12")
)
cutout.prepare(["runoff"])
#################################
# with atlite 0.2.13
import atlite
cutout = atlite.Cutout(
path="tmp/cutout.nc",
module=["era5"],
x=slice(-15.8, 37),
y=slice(30, 75),
time=slice("2015-01", "2016-12")
)
cutout.prepare(["runoff"])Expected Behavior
Download speeds should generally improve between versions, or remain unchanged.
Installed Versions
Details
old: 0.2.1
new: 0.2.13
Reactions are currently unavailable