Skip to content

txt和shp格式的坐标文件互转(Text format coordinate file and shape file convert to each other, using GDAL)

Notifications You must be signed in to change notification settings

Windr07/Txt-ShpConverter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Txt-ShpConverter

txt和shp格式的坐标文件互转工具,使用开源库GDAL读shp文件(Text format coordinate file and shape file convert to each other, using GDAL) 下载工具

说明


本工具主要用于将txt格式的“勘测定界界址点坐标交换格式”坐标文件 与ArcGIS提供的Shapefile文件进行互转,默认支持坐标系为西安80坐标和国家2000坐标(可配置)

txt坐标文件格式规范可官方网站或百度查阅:

环境


运行环境

  • .NET Framework 2.0
  • Microsoft Visual C++ (已附带安装包Vcredist_x86.exe)

开发环境

运行


  1. 下载代码,在Visual Studio打开项目,生成项目
  2. DLL.rar(包含GDAL库的各类dll、SplitButton.dll、System.Core.dll)的全部文件解压到生成目录中;
  3. 将Data.rar的全部文件解压缩到生成目录的Data文件夹下;
  4. 启动项目

使用


WLib.CoordCoverter.RedLineManager.ShpToTxt方法将txt坐标文件转成shp文件; WLib.CoordCoverter.RedLineManager.TxtToShp方法将shp文件转成txt坐标文件; 在使用这两个坐标转换方法之前,需要先在程序启动的Main方法中调用GdalHelper.GdalInit对GDAL环境进行初始化。

using System;
using OSGeo.GDAL;
using WLib.CoordCoverter;
using WLib.CoordCoverter.Utility;
static void Main()
{
    GdalHelper.GdalInit();//初始化Gdal,注册所有驱动并支持中文
    Gdal.SetConfigOption("SHAPE_RESTORE_SHX", "YES"); //尝试还原/生成缺少的.shx文件
    
    RedLineManager.ShpToTxt(@"c:\source.shp", @"c:\result.txt");//txt转shp
    RedLineManager.TxtToShp(@"c:\source.txt", @"c:\result.shp");//shp转txt
    
    Console.WriteLine("Conversion completed!");
}

About

txt和shp格式的坐标文件互转(Text format coordinate file and shape file convert to each other, using GDAL)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages