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
* download sfd98 map in build step
* siwtch sfd98maps to use call method
* bump project version to 0.6.0
* update documentation for dustmap changes
* whitespace fix
* add unitful support for sfd and test measurement/unitful support for sfd
* gather exports into one location
* add `extinct` and `extinc!` function.
* update documentation
* update readme with new dustmap usage and extinct method
* add more verbosity to build download step
* add a hack to find build.log in travis
* fix dir in durty hack
* fix error with julia 1.0 tests which don't have `eachcol`
* refactor documentation, make simpler docstrings, remove extinct! method, add logo and color law plot
* update readme
* fix travis documenter build step
* update CI for running julia 1.2 and add codecov to travis
* add codecov badge to readme
* add separate citation files and tidy up docs
* add polynomials for ccm89 law which led to type stability and beefed up the test suite for type stability
* add hack to deploy pull request docs
* tidy up every doc string
* fix doc strings
* test out windows builds on travis
* change travis 32-bit to jobs not matrix
* fix broken doctests
* add ColorLaw type and relevant structs
* Revert "fix broken doctests"
This reverts commit 84b4d3e.
* reforganize files
* refactor code into new files for simplicity
* update documentation
* clean up docstrings
* fix dangling html
* remove new CI changes
* add julia 1.3 to CI suite
* small changes from review
for fname in ["SFD_dust_4096_ngp.fits", "SFD_dust_4096_sgp.fits"]
8
+
dest =joinpath(destdir, fname)
9
+
ifisfile(dest)
10
+
@info"$dest already exists, skipping download."
11
+
else
12
+
download(SFD98_BASEURL * fname, dest)
13
+
@info"downloaded $dest successfully."
14
+
end
15
+
end
16
+
catch
17
+
@error"There was an error downloading the SFD98 Dust Maps. Please re-build or manually download the maps and set the \"SFD98_DIR\" environment variable."
0 commit comments