Contour.jl

Calculating contour curves for 2D scalar fields in Julia

OTHER License

Stars
44
Committers
14

Bot releases are visible (Hide)

Contour.jl - v0.6.3 Latest Release

Published by github-actions[bot] 7 months ago

Contour v0.6.3

Diff since v0.6.2

Merged pull requests:

  • Add the accessor vertices to the API. (#76) (@tpapp)

Closed issues:

  • Contours of discntinuous data (#75)
Contour.jl - v0.6.2

Published by github-actions[bot] over 2 years ago

Contour v0.6.2

Diff since v0.6.1

Closed issues:

  • contour fails on arrays of integers (#73)

Merged pull requests:

  • add support for Integer arrays without conversion (#74) (@sjkelly)
Contour.jl - v0.6.1

Published by github-actions[bot] over 2 years ago

Contour v0.6.1

Diff since v0.5.7

Closed issues:

  • v0.6.0 Documentation Updates (#70)

Merged pull requests:

  • Make interface generic, Drop StaticArrays as hard dependency (#68) (@sjkelly)
  • [ci] switch to GHA (#69) (@sjkelly)
  • Doc Updates for v0.6 (#71) (@sjkelly)
  • update Documenter (#72) (@sjkelly)
Contour.jl - v0.6.0

Published by github-actions[bot] over 2 years ago

Contour v0.6.0

Diff since v0.5.7

Closed issues:

  • v0.6.0 Documentation Updates (#70)

Merged pull requests:

  • Make interface generic, Drop StaticArrays as hard dependency (#68) (@sjkelly)
  • [ci] switch to GHA (#69) (@sjkelly)
  • Doc Updates for v0.6 (#71) (@sjkelly)
Contour.jl - v0.5.7

Published by github-actions[bot] almost 4 years ago

Contour v0.5.7

Diff since v0.5.6

Merged pull requests:

  • CompatHelper: bump compat for "StaticArrays" to "1.0" (#65) (@github-actions[bot])
Contour.jl - v0.5.6

Published by github-actions[bot] almost 4 years ago

Contour v0.5.6

Diff since v0.5.3

Closed issues:

  • display() error (#59)
  • Tests depend on hasing algorithm in Base (#62)

Merged pull requests:

  • fix #59, amiguity in show method (#60) (@sjkelly)
  • Offset array support (#61) (@yha)
  • [tests] remove dependency on hash ordering, closes #62 (#63) (@sjkelly)
Contour.jl - v0.5.3

Published by github-actions[bot] over 4 years ago

Contour v0.5.3

Diff since v0.5.2

Closed issues:

  • accept non-float z (#41)

Merged pull requests:

  • cleanup some of the logic from #50 (#54) (@sjkelly)
  • add length checks for test data (#57) (@sjkelly)
  • Sjk/clean3 (#58) (@sjkelly)
Contour.jl - v0.5.2

Published by github-actions[bot] over 4 years ago

Contour v0.5.2

Diff since v0.5.1

Merged pull requests:

  • WIP: Support for curvilinear coordinates (#16) (@darwindarak)
  • add Project.toml (#44) (@bjarthur)
  • Sjk/staticarraycompat (#46) (@sjkelly)
  • Doc updates (#47) (@sjkelly)
  • Sjk/perf (#48) (@sjkelly)
  • Implement performance improvements using bit masking (#50) (@sjkelly)
  • reenable ranges for X and Y coordinates (#52) (@sjkelly)
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