A little helper tool to get Infos and download Layers from a WFS Service.
npm install wfs_queryA little helper tool to get Infos and download Layers from a WFS Service.
This is a node tool base don node > 8.11.
Install via yarn install or npm install
Since it is a node based tool you need to import the wfs tool and then can use the methods.
``
const wfs = require('./wfs');
wfs.getInfo(url).then(function(result) {
});
`
`
const wfs = require('./wfs');
wfs.getFeature(url, typeName, format).then(function(result) {
});
``