Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elan-parser

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elan-parser

A parser for the ELAN NRW XML/GML files

  • 0.3.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by400%
Maintainers
1
Weekly downloads
 
Created
Source

ELAN Parser

A simple parsing library for the ELAN NRW XML files. Consumed by the Fruchtfolge model.

Installation

npm install elan-parser

Usage

Standalone usage

const parser = require('elan-parser')
const { readFileSync } = require('fs')

try {
  const xml = readFileSync('path/to/xml')
  const gml = readFileSync('path/to/gml')
  const data = elan.join(elan.parseXML(xml), elan.parseGML(gml))
  
  // do something with the data (e.g. store in Database)
} catch (e) {
  throw new Error(e)
} 

In combination with the elan-api

const elanGet = require('elan-api');
const parser = require('elan-parser')

async function getLatestInvekosData(farmNo, pass) {
  const xml = await elanGet(farmNo, pass)
  const gml = await elanGet(farmNo, pass, {type: 'Geometrien'})
  
    return parser.join(parser.parseXML(xml), parser.parseGML(gml))
}

Testing

Place your testing XML files in the test/data directory. Upon first run, uncomment the following line in test/test.js

fs.writeFileSync(`test/results/${fileName}.json`,JSON.stringify(data))

and comment out the following lines. Inspect the resulting .json files for correctness, then revert test/test.js to its original state. Once the setup has been completed, you can npm test as always.

Contribution

Contribution is highly appreciated! When submitting a PR, make sure to npm test.

License

MIT

Keywords

FAQs

Package last updated on 24 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc