33 lines
960 B
C#
33 lines
960 B
C#
///////////////////////////////////////////////////////////
|
|
// LongitudeHemisphere.cs
|
|
// Implementation of Class LongitudeHemisphere
|
|
//
|
|
// Created on: 24-Nov-2005
|
|
// Object design: John
|
|
// Coded: 24-Nov-2005
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Prime meridian offset for setting defaults in UI for co-ordinate inference
|
|
/// </summary>
|
|
[TypeConverter(typeof(EnumDescConverter))]
|
|
public enum LongitudeHemisphere : int
|
|
{
|
|
/// <summary>
|
|
/// West of the prime meridian
|
|
/// (Royal Astronomical Observatory in Greenwich, England)
|
|
/// </summary>
|
|
[Description("LT:UI.Label.West")] West = 0,
|
|
/// <summary>
|
|
/// East of the prime meridian
|
|
/// (Royal Astronomical Observatory in Greenwich, England)
|
|
/// </summary>
|
|
[Description("LT:UI.Label.East")] East = 1
|
|
}//end LongitudeHemisphere
|
|
}
|