最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(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)遵守國家法律
黄平县| 卓尼县| 铜川市| 宝应县| 井研县| 北票市| 都昌县| 芷江| 鄱阳县| 新泰市| 固安县| 南通市| 平江县| 平定县| 祥云县| 法库县| 乐清市| 石狮市| 佛冈县| 福贡县| 天峨县| 隆尧县| 香河县| 洛宁县| 漳平市| 万州区| 平泉县| 襄樊市| 巴马| 武冈市| 蚌埠市| 杭州市| 株洲县| 元朗区| 永寿县| 库伦旗| 同德县| 阿坝县| 永修县| 濮阳县| 泸水县|