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.
95 lines
2.1 KiB
95 lines
2.1 KiB
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace Kingo.RuleCheck.AEHelper |
|
{ |
|
/// <summary> |
|
/// 工作空间类型枚举 |
|
/// </summary> |
|
public enum WorkspaceTypeEnum |
|
{ |
|
Default, |
|
/// <summary> |
|
/// SDE数据库 |
|
/// </summary> |
|
SDEConn, |
|
/// <summary> |
|
/// SDE文件 |
|
/// </summary> |
|
SDEFile, |
|
/// <summary> |
|
/// Shape文件 |
|
/// </summary> |
|
ShapeFile, |
|
/// <summary> |
|
/// Shape文件 |
|
/// </summary> |
|
CADFile, |
|
/// <summary> |
|
/// MDB文件 |
|
/// </summary> |
|
MDBFile, |
|
/// <summary> |
|
/// GDB文件 |
|
/// </summary> |
|
GDBFile, |
|
/// <summary> |
|
/// 栅格数据文件 |
|
/// </summary> |
|
RasterConn, |
|
/// <summary> |
|
/// 栅格数据文件 |
|
/// </summary> |
|
RasterFile, |
|
/// <summary> |
|
/// SQLite数据库 |
|
/// </summary> |
|
SQLite |
|
} |
|
|
|
/// <summary> |
|
/// 数据输出格式:ShapeFile、FileGDB、PersonalGDB、Coverage、Geotiff、Image、 |
|
/// </summary> |
|
public enum enumDataOutputFormat |
|
{ |
|
/// <summary> |
|
/// SHP格式 |
|
/// </summary> |
|
ShapeFile = 1, |
|
/// <summary> |
|
/// GDB文件型数据库 |
|
/// </summary> |
|
FGDB = 2, |
|
/// <summary> |
|
/// Access个人数据库 |
|
/// </summary> |
|
Access = 3, |
|
/// <summary> |
|
/// Coverage格式 |
|
/// </summary> |
|
Coverage = 4, |
|
/// <summary> |
|
/// Geotiff格式-栅格数据 |
|
/// </summary> |
|
Geotiff = 5, |
|
/// <summary> |
|
/// IMG格式-栅格数据 |
|
/// </summary> |
|
Image = 6, |
|
/// <summary> |
|
/// JPG格式-DOM数据 |
|
/// </summary> |
|
Jpg = 7, |
|
/// <summary> |
|
/// BILL格式-DEM数据 |
|
/// </summary> |
|
Bill = 8, |
|
/// <summary> |
|
/// GRID格式-DEM数据 |
|
/// </summary> |
|
Grid = 9 |
|
} |
|
}
|
|
|