Skip to content

Releases: cap1tan/wafermap

v0.3.1

07 May 16:17
Compare
Choose a tag to compare
  • fixed bug that was placing images in the inverse location (e.g image at cell (1, -5) was shown at cell (-5, 1))

v0.3.0

26 Apr 06:21
Compare
Choose a tag to compare
  • added functionality to manually define the cells in the grid:
    ...
    cells = [...(wafer_x, wafer_y, cell_x, cell_y)...]
    wm = wafermap.WaferMap(
          wafer_radius=wafer_radius,
          cell_size=cell_size,
          cell_margin=cell_margin,
          edge_exclusion=edge_exclusion,
          coverage="none",
          cells=cells,
    )
  • added option 'none' for coverage: This won't force any boundary checks on the grid cells.

v0.2.9

21 Mar 14:51
Compare
Choose a tag to compare

History

0.2.9

  • Added heatmap functionality:

    data = (np.random.normal(size=(100, 3)) * np.array([[30, 30, 1]])).tolist()
    wm.add_heatmap(data)
  • Bug fixes (edge exclusion now properly excludes cells, margin is respecting wafer boundaries etc.)

  • Small performance improvements

v0.2.8

14 Mar 12:22
Compare
Choose a tag to compare

See HISTORY.md

Full Changelog: v0.2.7...v0.2.8

v0.2.7

11 Mar 17:24
Compare
Choose a tag to compare
  • Separated logic of grid construction to a WaferMapGrid base class
  • Python support: 3.9 - 3.13
  • Updated dependency versions

v0.2.6

14 Aug 09:52
Compare
Choose a tag to compare

Fixed typing for support with python 3.8

v0.2.5

25 Apr 11:38
Compare
Choose a tag to compare
  • added cell_origin and wafer_edge_color, map_bg_color params

v0.2.4

23 Apr 09:04
Compare
Choose a tag to compare
  • Replace selenium with html2image for exporting to png (chromium required).