0.3.0 • Published 6 years ago

dwg2idf v0.3.0

Weekly downloads
6
License
propriatory
Repository
-
Last release
6 years ago

REST interface that converts dxf files to idf.

install and start with npm install node src/app.js

example to call the REST interface: server.post("/dxf2idf") .field('stories', 3) .field('height_level1', 2700) .field('height_level2', 2700) .field('height_level3', 2700) .field('wall_layer', 'WALL') .field('window_layer', 'WINDOW') .field('door_layer', 'DOOR') .field('units', 'mm') .attach('dxf_level1', "./test/dwgs/WALL_WINDOW_DOOR.dxf") .attach('dxf_level2', "./test/dwgs/WALL_WINDOW_DOOR.dxf") .attach('dxf_level3', "./test/dwgs/WALL_WINDOW_DOOR.dxf")