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.Text;
|
|
|
|
|
|
|
|
|
|
namespace Kingo.DataAnalysis.Model
|
|
|
|
|
{
|
|
|
|
|
public class AnalysisConfig
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否涉密
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool SFSM { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否截取矢量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ShpScreen { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否截取影像
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool ImgScreen { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 矢量比例
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double ShpResolution { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 影像比例
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double ImgResolution { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 照片最大尺寸
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int MaxSize { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 照片最小尺寸
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int MinSize { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 外扩范围倍数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double GeoBuffSize { get; set; }
|
|
|
|
|
|
|
|
|
|
public string? SavePath { get; set; }
|
|
|
|
|
public string? GeoType { get; set; }
|
|
|
|
|
public int ImgWKID { get; set; }
|
|
|
|
|
public int ShpWKID { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|