<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
之前我們使用對List將資料封裝進KML經緯度檔案中,今天我們來學習一下如何將經緯度檔案中的經緯度資料讀出來,並儲存在變數中,這個變數可以是list也可以是陣列,只要能儲存資料就可以,我們對KML檔案中的Point資料下面的coordinates資料讀出來即可!!!
設計了兩個選項,可以選擇不同的效果進行提取經緯度資料,第一代表可以把資料提取到TXT文字檔案中,而第二表示不會生成TXT檔案只在文字方塊中展示你的提取資料,可以看後面的程式碼邏輯,有一個函數是專門負責資料的提取,是使用XML讀取的形式讀取指定的標籤資料
目前只展示了不會匯出TXT檔案的效果,只是對資料展示在文字方塊中。你們也可以按照自己的需求接著寫接著新增自己想要的功能,後面有程式碼邏輯,程式碼也有註解,不至於不能懂,有啥問題評論區評論
使用的是XML檔案讀取的形式,利用XML的節點的方式,對資料的標籤遍歷得到,對應的標籤,再對指定的coordinates標籤的資料進行提取並賦值,從而實現提取KML檔案中的經緯度的資料效果。
//自定義類的函數 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Xml; namespace FileConversion { public class DataExtract { /// <summary> /// 對指定路徑的kml檔案,經緯度讀取,並返回經緯度集合MapConfig /// </summary> /// <param name="Path">檔案路徑名</param> /// <returns></returns> public List<String> MapConfigs(string filename) { List<String> mapConfigs = new List<String>();//範例化list集合 string destPath = filename;//賦值檔案路徑 if (destPath == null)//判斷路徑是否為空 { MessageBox.Show("路徑為空"); return null; } XmlDocument xmldoc = new XmlDocument(); try { xmldoc.Load(destPath);//載入kml檔案 XmlElement root = xmldoc.DocumentElement; XmlNodeList xmlmark = root.GetElementsByTagName("coordinates");//獲取coordinates節點 int i = 0; foreach (XmlNode xmlmarkNode in xmlmark)//遍歷所有coordinates節點 { if (xmlmarkNode.Name == "coordinates") { i++; string mapConfig = "";//範例化 string str = xmlmarkNode.InnerText;//獲取節點的值 if (str.Equals("") || str.Contains(",") == false) { MessageBox.Show("第"+i.ToString()+"行資料有誤,將返回NULL值","錯誤"); return null; } string[] strings = str.Split(',');//對節點的值字串進行分割 mapConfig+= strings[0]+",";//經度值 mapConfig+= strings[1]+",";//緯度值 mapConfig+= strings[2];// mapConfigs.Add(mapConfig);//新增在list中 } } return mapConfigs; } catch { MessageBox.Show("檔案載入失敗或coordinates節點資料獲取失敗", "錯誤"); return null;//注:kml檔案如果使用wps或者word開啟會再執行本程式會報錯,文字開啟執行不會報錯 } } } } //上面是我們需要呼叫的類 //這個是我們介面設計呼叫的類 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace FileConversion { public partial class Form4 : Form { public Form4() { InitializeComponent(); } public string KmlPath = ""; private void button6_Click(object sender, EventArgs e) { OpenFileDialog openFile = new OpenFileDialog(); openFile.Filter = "KML檔案(*.kml)|*.kml|所有檔案|*.*"; if (openFile.ShowDialog() != DialogResult.OK)//開啟檔案是否點選了取消 return; KmlPath = openFile.FileName; textBox1.Text = KmlPath; } private void button7_Click(object sender, EventArgs e) { DataExtract data = new DataExtract();//自定義的函數,複製kml檔案經緯度資料提取 if (KmlPath.Equals("") == true) { MessageBox.Show("選擇檔案之後才能匯出"); } else { if (checkBox1.Checked == true && checkBox2.Checked == false || checkBox1.Checked == true && checkBox2.Checked == true) { List<string> list = data.MapConfigs(KmlPath); string localFilePath = "";//檔案路徑 SaveFileDialog save = new SaveFileDialog(); save.Filter = "Txt(*.txt)|*.txt"; //設定檔案型別 save.RestoreDirectory = true; //儲存對話方塊是否記憶上次開啟的目錄 if (save.ShowDialog() == DialogResult.OK)//點了儲存按鈕進入 { localFilePath = save.FileName.ToString(); //獲得檔案路徑 string fileName = localFilePath.Substring(localFilePath.LastIndexOf("") + 1); //獲取檔名,不帶路徑 //FileStream file = new FileStream(localFilePath, FileMode.Create); foreach (string kml in list) { textBox2.Text += kml + "rn"; File.AppendAllText(localFilePath, kml + "rn"); } } } else if (checkBox1.Checked == false && checkBox2.Checked == true) { List<string> list = data.MapConfigs(KmlPath); foreach (string kml in list) { textBox2.Text += kml + "rn"; } } else { MessageBox.Show("選擇你需要的項"); } } } } }
這篇文章比較簡單,裡面也已經寫好了方法讓我們呼叫就可以了,介面製作比較簡單,但是是一個比較實用的一個小工具。
到此這篇關於C#如何提取經緯度檔案中經緯度資料的文章就介紹到這了,更多相關C#提取經緯度資料內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45