mvnmgrx / kiutils

Simple and SCM-friendly KiCad file parser based on Python dataclasses for KiCad 6.0 and up.
GNU General Public License v3.0
78 stars 25 forks source link

Error: Dimensions are not yet handled! Please report this bug along with the file being parsed. #107

Open ValtersJZ opened 10 months ago

ValtersJZ commented 10 months ago

The error occurs when reading board layers. """ _ERROR: failed to read C:\Users\valte\PycharmProjects\pcbpr_v2\data\pcb_repos\maxlab-io_tokay-lite-pcb\ai-camera-rev3\ai-camera-rev3.kicadpcb (v6) using PCBParserKiCadV6Plus() Error: Dimensions are not yet handled! Please report this bug along with the file being parsed. """

For example, the error occurs with this file: https://github.com/maxlab-io/tokay-lite-pcb ai-camera-rev3/ai-camera-rev3.kicad_pcb

e.g.

from kiutils.board import Board

board = Board.from_file(layout_path, encoding="utf-8")
print(board.layers)