Plot @hpcreery/tracespace-parser ASTs into image trees.
npm install @hpcreery/tracespace-plotter[![npm][npm badge]][npm package]
Plot [@hpcreery/tracespace-parser][] ASTs into image trees. Part of the [tracespace][] collection of PCB visualization tools.
This module is one part of the tracespace render pipeline, and you may not need to use it directly. See [@tracespace/core][] to integrate the full render pipeline into your project.
``shell`
npm install @hpcreery/tracespace-plotter@next
[tracespace]: https://github.com/tracespace/tracespace
[@hpcreery/tracespace-parser]: ../parser
[@tracespace/core]: ../core
[npm package]: https://www.npmjs.com/package/@hpcreery/tracespace-plotter/v/next
[npm badge]: https://img.shields.io/npm/v/@hpcreery/tracespace-plotter/next?style=flat-square
`js
import fs from 'node:fs/promises'
import {parse} from '@hpcreery/tracespace-parser'
import {plot} from '@hpcreery/tracespace-plotter'
const gerberContents = await fs.readFile('gerber.gbr', 'utf-8')
const syntaxTree = parse(gerberContents)
const imageTree = plot(syntaxTree)
await fs.writeFile('plot.json', JSON.stringify(imageTree, null, 2), 'utf-8')
``