ishp
v1.0.0
Published
A spatial indexed (qix) Shapefile reader
Downloads
2
Maintainers
Readme
ishp
A spatial indexed (qix file) Shapefile reader.
ishp uses qix quadtree file, you can use mapserver or QGIS to create a qix file.
- A little example:
var ishp = require('ishp');
var brazil = new ishp.ShapeFile('brazil.shp');
brazil.intersects(geometry, function(err, feature) {
if (err)
console.log(err);
else {
console.log(feature.properties);
}
})...