A simple gerber
parser written in rust to be used with the gerber-types
crate.
```rust use std::fs::File; use std::io::{BufRead, BufReader}; use gerberparser::parser::parsegerber;
// open a .gbr file from system let file = File::open(path).unwrap(); let reader = BufReader::new(file);
// Now we parse the file to a GerberDoc let gerberdoc: GerberDoc = parsegerber(reader);
// it is possible to convert to an 'atomic' representation purely
// in terms of Vec
⚠️ Note: this package is still in development and does not cover the full Gerber spec
Currently missing
TD
, TO
commands AM
commandsLM
, LR
, LS
commandsSR
commandsAB
commandsPartial:
TF
and TA
commands only support a limited range of arguments; custom attributes will result in an errorIn addition, comments in the header section of the file (i.e. unit type declaration, format specification and aperture declarations) will be placed below the header when the parsed Gerber is converted back to string via serialisation.
Result
format specification
)