05/21/2018 **** for /Level1a_v02, /Level1b_v02, and /Level0 **** To download the whole data set, or selected years, use the script in this web site "get_avdc_data_pub.sh" Run it on your Linux machine To download the whole data by year Example: for year 2015 ./get_avdc_data_pub.sh https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level1b_v02/2015/ Adjust the directory level to download selected month Example: for June of 2015 Modify the script, " --cut-dirs=4 " to download 2015/06 ./get_avdc_data_pub.sh https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level1b_v02/2015/06/ For specific files (epic_1b_20180427* for example) wget -r -m -e robots=off -nH --no-parent --cut-dirs=5 -A "epic_1b_20180427*" --no-glob https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level1b_v02/2018/04/ ... If you are using windows and have trouble running the script, make sure you have wget installed, copy and paste the text inside the script and run it on the command line. Example: wget -r -m -e robots=off -nH --no-parent --cut-dirs=4 --reject "*.html*" https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level1b_v02/2015/06/ Example of read file for Windows PC echo Format Year = yyyy Month = mm Day = dd echo EXAMPLE 2018 04 27 echo Level = 1a or 1b echo off set /p Year="Enter Year; " set /p Month="Enter Month; " set /p Day="Enter Day; " set /p Level="Enter Level; " :: CHANGE DIRECTORY TO THE LOCATION OF WGET.EXE cd C:\Program Files (x86)\GnuWin32\bin :: EXECUTE WGET COMMAND wget -r -m -e robots=off -nH --no-check-certificate --no-parent --cut-dirs=5 -A "epic_%Level%_%Year%%Month%%Day%*" --no-glob https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level%Level%_v02/%Year%/%Month%/ :: ORIGINAL COMMAND :: wget -r -m -e robots=off -nH --no-check-certificate --no-parent --cut-dirs=5 -A "epic_1b_20180427*" --no-glob https://avdc.gsfc.nasa.gov/pub/DSCOVR/Level1b_v02/2018/04/ dir /s :: LOCATION OF DOWNLOADED FILES COPY FILES TO DESIRE LOCATION AND DELETE DOWNLOADED FILES cd C:\Users\jrherman\AppData\Local\VirtualStore\Program Files (x86)\GnuWin32\bin\ copy *.HDF5 g:\DSCOVR\EPIC_HDF5_FILES del *.HDF5 del *.MET dir /s :: DIRECTORY LISTING cd g:\DSCOVR\EPIC_HDF5_FILES dir /s cmd