Releases: ziotom78/Healpix.jl
Releases · ziotom78/Healpix.jl
v2.3.0
v2.2.0
v2.1.0
Version 2.0.0
This release brings a few important changes with respect to v1:
- RecipesBase is used to provide plotting capabilities without the need of installing too many dependencies
- Access to pixels in a map can be done immediately, i.e.,
m[3]
is the same asm.pixels[3]
Version 1.1.1
This bugfix release fixes a bug when setindex!
was used with a Healpix map.
Version 1.1.0
- Maps implement the iterator interface, so it is possible to treat a
map like an array. This should make Healpix.jl more similar to healpy.
Version 1.0.1
- Missing values are treated properly by
project
(usingismissing
) tod2map
properly skipsmissing
valuestod2map
should be slightly more performant, as it uses@inbounds
- Keyword
numfmt
has been added toproject
,equirectangular
,
mollweide
,orthographic
. The value of the keyword can be any
function taking a number and returning a string; the default isx -> @sprintf("%g", x)
.
First beta release
First beta release of the library. Currently it includes:
- Basic pixel functions (
ang2pixRing
and so on) - Map functions
- Spherical harmonics (I/O functions only)
- Visualization
- Sketchy documentation