GIS開發(fā):csv轉(zhuǎn)空間圖層數(shù)據(jù)
在arcmap中,可以將excel或者csv數(shù)據(jù)處理成空間點(diǎn)數(shù)據(jù),使用nodejs語言,開發(fā)將csv文件轉(zhuǎn)換成geojson空間圖層數(shù)據(jù)。

具體實(shí)現(xiàn)的代碼如下:
//excel文件可以另存為csv文件
const?fs?=?require('fs');
//npm install csv,導(dǎo)入csv的開發(fā)包
const?csv?=?require('csv');
//定義geojson的數(shù)據(jù)集節(jié)點(diǎn)
let?geojsondata?=?{
????type:?"FeatureCollection",
????features:?[],
};
//讀取csv文件
fs.readFile('csv文件路徑',?{
????encoding:?'utf-8'
},?(err,?res)?=>?{
????csv.parse(res,?{
? ??//設(shè)置csv文件的分隔符
????????delimiter:?','
????},?(err,?records,?info)?=>?{
?//根據(jù)每條記錄中,坐標(biāo)點(diǎn)的順序構(gòu)建點(diǎn)feature
????????for?(let?_idx?=?1;?_idx?<?info.records;?_idx++)?{
????????????try?{
????????????????let?_coordx?=?parseFloat(records[_idx][3]);
????????????????let?_coordy?=?parseFloat(records[_idx][4]);
? //構(gòu)建點(diǎn)feature,空間類型為點(diǎn)數(shù)據(jù)
????????????????let?pointfeature?=?{
????????????????????type:?"Feature",
????????????????????geometry:?{
????????????????????????type:?"point",
????????????????????????coordinates:?[_coordx,?_coordy],
????????????????????},
???//屬性根據(jù)需求進(jìn)行添加
????????????????????properties:?{
????????????????????????id:?String(new?Date().getTime()),
????????????????????????prop1:?records[_idx][0],
????????????????????????prop2:?records[_idx][1]
????????????????????},
????????????????};
//將feature加入到集合中
????????????????geojsondata.features.push(pointfeature);
????????????}?catch?(error)?{
????????????????console.log(_idx);
????????????}
????????}
??//將geojson的結(jié)果輸出到文件
????????fs.writeFile("geojson文件輸出",?JSON.stringify(geojsondata),?()?=>?{
????????});
????});
});
另外坐標(biāo)系(crs)等信息,可以在geojson的根文件中進(jìn)行添加。
輸出的geojson文件,在qgis中測(cè)試是否顯示正確。