Files
ShrlAlgoToolkit/Sai.RvKits/RvIndependent/MetroGauges/LandXMLData/CoordinateSystem.cs

29 lines
659 B
C#
Raw Normal View History

2024-09-22 11:05:41 +08:00
using System;
using System.Xml.Serialization;
namespace Sai.Toolkit.Core.LandXMLData
{
[XmlType("CoordinateSystem")]
[Serializable]
public class CoordinateSystem
{
[XmlAttribute("fileLocation")]
public string FileLocation { get; set; }
[XmlAttribute("horizontalCoordinateSystemName")]
public string HorizontalCoordinateSystemName { get; set; }
[XmlAttribute("horizontalDatum")]
public string HorizontalDatum { get; set; }
[XmlAttribute("ogcWktCode")]
public string OgcWktCode { get; set; }
[XmlAttribute("epsgCode")]
public string EpsgCode { get; set; }
[XmlAttribute("desc")]
public string Description { get; set; }
}
}