We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the example on the main page:
var mapnik = require('mapnik'); mapnik.register_datasource(path.join(mapnik.settings.paths.input_plugins,'shape.input')); var ds = new mapnik.Datasource({type:'shape',file:'test/data/world_merc.shp'}); var featureset = ds.featureset() var geojson = { "type": "FeatureCollection", "features": [ ] } var feat = featureset.next(); while (feat) { geojson.features.push(JSON.parse(feat.toJSON())); feat = featureset.next(); } fs.writeFileSync("output.geojson",JSON.stringify(geojson,null,2));
This fails with NodeJS 18:
Mapnik LOG> 2023-10-20 16:50:49: Shape Plugin: error processing field attributes, Shape Plugin: wrong file code -1532402325
The text was updated successfully, but these errors were encountered:
Related but for another project ZJONSSON/node-unzipper#286. And nodejs/node@654b747
Sorry, something went wrong.
Just checked (master) works with
lts/hydrogen -> v18.20.2 lts/iron -> v20.12.2
lts/hydrogen -> v18.20.2
lts/iron -> v20.12.2
Closing as stale
No branches or pull requests
Using the example on the main page:
This fails with NodeJS 18:
The text was updated successfully, but these errors were encountered: