⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mifheader.cs

📁 实现SHP
💻 CS
字号:
///GeoCon, free tool to create gml & svg from gis files. 
///Copyright(C) 2005 Amri Rosyada
///Distributed under GNU-LGPL, see a copy of the license in root directory
using System;

namespace GeoCon.mif
{

	/// <summary>
	/// Header for *.mif file
	/// </summary>
	public struct FeatureHeader
	{
		public double version;
		public string charset;
		public string delimiter;
		public mif.CoordSys coordSys;
	}

	public struct CoordSys
	{
		public string Name;

		public int ProjNumber;
		public int ProjDatum;
		public string ProjUnits;
		public double ProjOrgLng;	//original longitude
		public double ProjOrgLat;	//original latitude
		public double ProjSclRed;
		public double ProjOffsetX;
		public double ProjOffsetY;

		public double left;
		public double top;
		public double right;
		public double bottom;
	}

		/// <summary>
		/// Header for *.mid file
		/// </summary>
		public class DataHeader
		{
			public DataHeader()
			{
			}
		}


	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -