mifheader.cs
来自「实现SHP」· CS 代码 · 共 51 行
CS
51 行
///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 + =
减小字号Ctrl + -
显示快捷键?