当前位置:   article > 正文

C#不用ArcEngine,生成Shp文件(二)---------读取.shp文件格式_c# arcgis engine 面导出为shp文件

c# arcgis engine 面导出为shp文件

上一篇介绍了Shape files文件结构,在这一篇,以面文件为例,写一下如何读取.shp文件,以面文件为例。

首先在ArcMap里面新建一个名为  三角形面   的 shp文件,用做测试数据。如下

测试数据下载地址为:http://download.csdn.net/detail/gis0911178/9650967

在Arcmap中显示如下

测试数据准备好之后,就可以在C#里面写代码来读取这个shp文件;代码如下

private void button1_Click(object sender, EventArgs e)
        {
            string shpfilepath = "";
            OpenFileDialog openFileDialog1 = new OpenFileDialog();
            openFileDialog1.Filter = "shapefile(*.shp)|*.shp|All files(*.*)|*.*"; //打开文件路径
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                shpfilepath = openFileDialog1.FileName;
                BinaryReader br = new BinaryReader(openFileDialog1.OpenFile());


                //读取文件过程
                br.ReadBytes(24);
                int FileLength = br.ReadInt32();
                Console.WriteLine("文件长度:" + ChangeByteOrder(FileLength));
                int FileBanben = br.ReadInt32();
                ShapeType = br.ReadInt32();
                xmin = br.ReadDouble();
                ymin = br.ReadDouble();
                xmax = br.ReadDouble();
                ymax = br.ReadDouble();
                Console.WriteLine("Xmin:" + xmin);
                Console.WriteLine("Ymin:" + ymin);
                Console.WriteLine("Xmax:" + xmax);
                Console.WriteLine("Ymax:" + ymax);
                double width = xmax - xmin;
                double height = ymax - ymin;
                n1 = (float)(this.panel1.Width * 0.9 / width);//x轴放大倍数
                n2 = (float)(this.panel1.Height * 0.9 / height);//y轴放大倍数
                br.ReadBytes(32);


                switch (ShapeType)
                {
                    case 1:
                        points.Clear();
       

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/341105
推荐阅读
相关标签
  

闽ICP备14008679号