dxf2json

convert dxf file into json or geojson format

Usage no npm install needed!

<script type="module">
  import dxf2json from 'https://cdn.skypack.dev/dxf2json';
</script>

README

dxf2json

[![NPM version][npm-image]][npm-url] [![NPM downloads][downloads-image]][downloads-url] [![Build status][travis-image]][travis-url]

convert dxf file into json or geojson format

Getting started

npm install dxf2json --save
const fs = require('fs')
const { DxfParser, toGeojson } = require('dxf2json')

new DxfParser().init('./sample/file2.dxf' , 'out.json')
.then(result=>{
    return result 
})

const content = fs.readFileSync('./sample/file2.dxf', 'utf-8')
new DxfParser().parseContent(content)
.then(result=>{
    return toGeojson(result) 
})

references: