Contour.jl

Calculating contour curves for 2D scalar fields in Julia

OTHER License

Stars
44
Committers
14

Bot releases are hidden (Show)

Contour.jl - 1.0 Compatibility

Published by tomasaschan about 6 years ago

The only change from 0.5.0 is #43, which should not affect end users.

Contour.jl - v0.5.0: Add 0.7 compatibility

Published by darwindarak over 6 years ago

Contour.jl -

Published by KristofferC about 7 years ago

Contour.jl -

Published by KristofferC over 7 years ago

Fix deprecation and drop 0.4 support.

Contour.jl -

Published by tomasaschan about 8 years ago

Remove the old API in favor of the one introduced in v0.1.

Contour.jl -

Published by tomasaschan about 8 years ago

Update to work with Julia 0.5.

Contour.jl -

Published by tomasaschan about 8 years ago

Implements a new API for working with contour levels.

c = contours(xs, ys, zs) # a contour collection with levels selected automatically
for lvl in levels(c)
    l = level(lvl) # the z-value of the current contour level
    for line in lines(lvl) # each contour level might consist of multiple, disjoint paths
       x, y = coordinates(line) # coordinates for the line segment of the current path
       # hypothetical example: plot(x, y; color = l)
    end
end