无码av一区二区三区无码,在线观看老湿视频福利,日韩经典三级片,成 人色 网 站 欧美大片在线观看

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

GIS開發(fā):csv轉(zhuǎn)空間圖層數(shù)據(jù)

2022-06-22 09:07 作者:地理信息技術(shù)雜談  | 我要投稿

在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è)試是否顯示正確。


GIS開發(fā):csv轉(zhuǎn)空間圖層數(shù)據(jù)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國家法律
汝阳县| 项城市| 松溪县| 清流县| 博乐市| 通江县| 疏勒县| 临安市| 上林县| 滦南县| 清原| 淳化县| 鄯善县| 江都市| 铅山县| 阳山县| 刚察县| 丽江市| 奇台县| 德惠市| 阳朔县| 府谷县| 武鸣县| 岫岩| 海宁市| 丰台区| 新龙县| 镇江市| 宁陵县| 中卫市| 陆河县| 瑞昌市| 兴海县| 高平市| 岳阳县| 青河县| 崇阳县| 鹤壁市| 卢湾区| 博客| 赤峰市|