You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromsiphon.catalogimportTDSCatalogcat=TDSCatalog('http://thredds.ucar.edu/thredds/catalog/grib/NCEP/GFS/Global_0p25deg/catalog.xml')
cat.latest.download() # Don't do this unless you want to use all memory
The problem is that the implementation of download() is pretty naive:
which means for the 0.25 GFS, it will download an entire 20-30GB run, and only then write it to disk. Not sure if a solution to #139 would fix this, but it might be better to just immediately fix this by reading and writing in e.g 1M block sizes.
The text was updated successfully, but these errors were encountered:
Try to include:
The problem is that the implementation of
download()
is pretty naive:which means for the 0.25 GFS, it will download an entire 20-30GB run, and only then write it to disk. Not sure if a solution to #139 would fix this, but it might be better to just immediately fix this by reading and writing in e.g 1M block sizes.
The text was updated successfully, but these errors were encountered: