You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace IDEParameter
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 参数对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ProjectParamtersClass
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 自定义地理转换名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CustomGeographicTransformationName
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 自定义地理转换模型: Coordinate_Frame(七参);GEOCENTRIC_TRANSLATION(三参)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CustomGeographicTransformationMethod
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
public int Code
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// X轴平移(米)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double XTranslation
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Y轴平移(米)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double YTranslation
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Z轴平移(米)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double ZTranslation
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// X轴旋转(秒)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double XRotate
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Y轴旋转(秒)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double YRotate
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Z轴旋转(秒)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double ZRotate
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 尺度因子
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double ScaleFactor
|
|
|
|
|
{
|
|
|
|
|
get;
|
|
|
|
|
set;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|