node将geojson转shp须要挪用[ogr2ogr][1]库来完成,在挪用ogr2ogr库时,由于其经由过程挪用gdal的东西来完成将
geojson转shp,所以须要装置gdal并设置环境变量,概况可参考此链接。环境设置完,能够举行代码完成了。
起首引入ogr2ogr库
const ogr2ogr = require('ogr2ogr')
天生shp文件压缩包
// 声明一个geojson变量也能够是geojson文件目次
var geojson = {
type: 'FeatureCollection',
features: [
{
type: 'Feature',
geometry
}
]
}
// shp保留目次
const zipPath = './export/shpfile.zip'
// 建立文件写入流
var file = fs.createWriteStream(zipPath)
// 挪用ogr2ogr举行转化
var ogr = ogr2ogr(geojson).project('EPSG:4326')
.format('ESRI Shapefile')
.skipfailures()
.stream()
ogr.pipe(file)
然后将shp压缩文件传给前端,这里能够经由过程差别的要领举行通报
(1) 经由过程sendFile直接举行通报
var resPath = path.join(__dirname, '..', zipPath)
res.sendFile(resPath)
(2)经由过程流的体式格局举行通报
var resPath = path.join(__dirname, '..', zipPath)
// 文件写入完成触发事宜
file.on('finish', function() {
res.set({
'Content-Type': 'application/zip',
'Content-Disposition':
'attachment; filename=' + encodeURI(name) + '.zip',
'Content-Length': fs.statSync(zipPath).size
})
let fReadStream = fs.createReadStream(zipPath)
fReadStream.pipe(res)
fReadStream.on('end', function() {
fs.unlinkSync(resPath)
})
fReadStream.on('error', function(err) {
console.log(err)
})
})
末了是前端发送要求吸收的代码
axios.post('http://localhost:3000/jsontoshp', {
responseType: 'blob'
}).then(res => {
const blobUrl = URL.createObjectURL(res.data)
const a = document.createElement('a')
a.style.display = 'none'
a.download = '文件名称'
a.href = blobUrl
a.click()
URL.revokeObjectURL(blobUrl)
})
这里须要注重的处所是前端发送要求时须要设置一个参数responseType: ‘blob’,这里用到了Blob对象,这里是从服务器吸收到的文件流建立blob对象并运用该blob 建立一个指向范例数组的URL,将该url作为a标签的链接目的,然后去触发a标签的点击事宜从而文件下载。