#!/bin/sh # # USAGE: # ggwget username password # # comment out files you do not want common="wget --http-user=$1 --http-passwd=$2 -r -nd -nH http://www.mpi-hd.mpg.de/galex-gama/downloads/" ####################### # simple match catalogs ${common}simplematch/glx_pricat_v2c-gama_catgama_v4.fits.gz ${common}simplematch/glx_pricat_v2c-gama_catmast_v2.fits.gz ####################### # advanced match catalogs ${common}advancedmatch/matched_galex_Galaxycat_opt.fits.gz ${common}advancedmatch/matched_galex_Mastercat_opt.fits.gz ####################### # curve of growth catalog ${common}cogcat/GalaxyCAT_v8-photometry.fits.gz ####################### # sky background fits images ${common}bkgdmaps/G02-fd-skybg.fits.gz ${common}bkgdmaps/G02-nd-skybg.fits.gz ${common}bkgdmaps/G09-fd-skybg.fits.gz ${common}bkgdmaps/G09-nd-skybg.fits.gz ${common}bkgdmaps/G12-fd-skybg.fits.gz ${common}bkgdmaps/G12-nd-skybg.fits.gz ${common}bkgdmaps/G15-fd-skybg.fits.gz ${common}bkgdmaps/G15-nd-skybg.fits.gz ${common}bkgdmaps/G23-fd-skybg.fits.gz ${common}bkgdmaps/G23-nd-skybg.fits.gz ####################### # sky background healpix files ${common}bkgdmaps/Healpix_G02-fd-skybg.fits.gz ${common}bkgdmaps/Healpix_G02-nd-skybg.fits.gz ${common}bkgdmaps/Healpix_G09-fd-skybg.fits.gz ${common}bkgdmaps/Healpix_G09-nd-skybg.fits.gz ${common}bkgdmaps/Healpix_G12-fd-skybg.fits.gz ${common}bkgdmaps/Healpix_G12-nd-skybg.fits.gz ${common}bkgdmaps/Healpix_G15-fd-skybg.fits.gz ${common}bkgdmaps/Healpix_G15-nd-skybg.fits.gz ${common}bkgdmaps/Healpix_G23-fd-skybg.fits.gz ${common}bkgdmaps/Healpix_G23-nd-skybg.fits.gz ####################### # blind UV catalogs ${common}blindcats/G02_pricat_v2c.fits.gz ${common}blindcats/G02_seccat_v2c.fits.gz ${common}blindcats/G09_pricat_v2c.fits.gz ${common}blindcats/G09_seccat_v2c.fits.gz ${common}blindcats/G12_pricat_v2c.fits.gz ${common}blindcats/G12_seccat_v2c.fits.gz ${common}blindcats/G15_pricat_v2c.fits.gz ${common}blindcats/G15_seccat_v2c.fits.gz ${common}blindcats/G23_pricat_v2c.fits.gz ${common}blindcats/G23_seccat_v2c.fits.gz ####################### # coverage fraction fits images ${common}covfrac/G02-fd-covfrac.fits.gz ${common}covfrac/G02-nd-covfrac.fits.gz ${common}covfrac/G09-fd-covfrac.fits.gz ${common}covfrac/G09-nd-covfrac.fits.gz ${common}covfrac/G12-fd-covfrac.fits.gz ${common}covfrac/G12-nd-covfrac.fits.gz ${common}covfrac/G15-fd-covfrac.fits.gz ${common}covfrac/G15-nd-covfrac.fits.gz ${common}covfrac/G23-fd-covfrac.fits.gz ${common}covfrac/G23-nd-covfrac.fits.gz ####################### # coverage fraction healpix files ${common}covfrac/Healpix_G02-fd-covfrac.fits.gz ${common}covfrac/Healpix_G02-nd-covfrac.fits.gz ${common}covfrac/Healpix_G09-fd-covfrac.fits.gz ${common}covfrac/Healpix_G09-nd-covfrac.fits.gz ${common}covfrac/Healpix_G12-fd-covfrac.fits.gz ${common}covfrac/Healpix_G12-nd-covfrac.fits.gz ${common}covfrac/Healpix_G15-fd-covfrac.fits.gz ${common}covfrac/Healpix_G15-nd-covfrac.fits.gz ${common}covfrac/Healpix_G23-fd-covfrac.fits.gz ${common}covfrac/Healpix_G23-nd-covfrac.fits.gz ####################### # sfd e(b-v) fits images ${common}ebvmaps/G02-sfd_ebv.fits.gz ${common}ebvmaps/G09-sfd_ebv.fits.gz ${common}ebvmaps/G12-sfd_ebv.fits.gz ${common}ebvmaps/G15-sfd_ebv.fits.gz ${common}ebvmaps/G23-sfd_ebv.fits.gz ####################### # sfd e(b-v) healpix files ${common}ebvmaps/Healpix_G02-sfd_ebv.fits.gz ${common}ebvmaps/Healpix_G09-sfd_ebv.fits.gz ${common}ebvmaps/Healpix_G12-sfd_ebv.fits.gz ${common}ebvmaps/Healpix_G15-sfd_ebv.fits.gz ${common}ebvmaps/Healpix_G23-sfd_ebv.fits.gz ####################### # exposure time (relative response) fits images ${common}exptmaps/G02-fd-rr.fits.gz ${common}exptmaps/G02-nd-rr.fits.gz ${common}exptmaps/G09-fd-rr.fits.gz ${common}exptmaps/G09-nd-rr.fits.gz ${common}exptmaps/G12-fd-rr.fits.gz ${common}exptmaps/G12-nd-rr.fits.gz ${common}exptmaps/G15-fd-rr.fits.gz ${common}exptmaps/G15-nd-rr.fits.gz ${common}exptmaps/G23-fd-rr.fits.gz ${common}exptmaps/G23-nd-rr.fits.gz ####################### # exposure time (relative response) healpix files ${common}exptmaps/Healpix_G02-fd-rr.fits.gz ${common}exptmaps/Healpix_G02-nd-rr.fits.gz ${common}exptmaps/Healpix_G09-fd-rr.fits.gz ${common}exptmaps/Healpix_G09-nd-rr.fits.gz ${common}exptmaps/Healpix_G12-fd-rr.fits.gz ${common}exptmaps/Healpix_G12-nd-rr.fits.gz ${common}exptmaps/Healpix_G15-fd-rr.fits.gz ${common}exptmaps/Healpix_G15-nd-rr.fits.gz ${common}exptmaps/Healpix_G23-fd-rr.fits.gz ${common}exptmaps/Healpix_G23-nd-rr.fits.gz ####################### # flag map fits images # *** warning warning warning # *** these contain errors. # *** not suggested for use at this time. # *** use healpix version of flag maps if possible. # ${common}flagmaps/G02-fd-flags.fits.gz # ${common}flagmaps/G02-nd-flags.fits.gz # ${common}flagmaps/G09-fd-flags.fits.gz # ${common}flagmaps/G09-nd-flags.fits.gz # ${common}flagmaps/G12-fd-flags.fits.gz # ${common}flagmaps/G12-nd-flags.fits.gz # ${common}flagmaps/G15-fd-flags.fits.gz # ${common}flagmaps/G15-nd-flags.fits.gz # ${common}flagmaps/G23-fd-flags.fits.gz # ${common}flagmaps/G23-nd-flags.fits.gz ####################### # flag map healpix files ${common}flagmaps/Healpix_G02-fd-flags.fits.gz ${common}flagmaps/Healpix_G02-nd-flags.fits.gz ${common}flagmaps/Healpix_G09-fd-flags.fits.gz ${common}flagmaps/Healpix_G09-nd-flags.fits.gz ${common}flagmaps/Healpix_G12-fd-flags.fits.gz ${common}flagmaps/Healpix_G12-nd-flags.fits.gz ${common}flagmaps/Healpix_G15-fd-flags.fits.gz ${common}flagmaps/Healpix_G15-nd-flags.fits.gz ${common}flagmaps/Healpix_G23-fd-flags.fits.gz ${common}flagmaps/Healpix_G23-nd-flags.fits.gz echo Done. exit 0