管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-02-08 6eafc81a275b14cc6a2fc653f883e94c0313bc43
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DataLoader.CS
{
    public class StaticData
    {
        /**
         * JP2文件扩展名
         */
        public static List<String> JP2_EXT = new List<String> { "jp2.aux.xml" };
 
        /**
         * MPT文件扩展名
         */
        public static List<String> MPT_EXT = new List<String> { ".midx", ".strmi" };
 
        /**
         * IMG文件扩展名
         */
        public static List<String> IMG_EXT = new List<String> { ".rrd", ".img.aux.xml", ".hdr", ".img.enp", ".img.xml" };
 
        /**
         * TIF文件扩展名
         */
        public static List<String> TIF_EXT = new List<String> { ".prj", ".tfw", ".tif.ovr", ".tif.aux.xml", ".tif.enp", ".tif.xml" };
 
        /**
         * TIFF文件扩展名
         */
        public static List<String> TIFF_EXT = new List<String> { ".prj", ".tfw", ".tiff.ovr", ".tiff.aux.xml", ".tiff.enp", ".tiff.xml" };
 
        /**
         * SHP文件扩展名
         */
        public static List<String> SHP_EXT = new List<String> { ".shx", ".dbf", ".prj", ".cpg" };
 
        /**
         * 所有文件扩展名
         */
        public static List<String> ALL_EXTENSION = new List<String> { ".pdf", ".xls", ".xlsx", ".doc", ".docx", ".ppt", ".pptx", ".shp", ".gdb", ".mdb", ".dwg", ".las", ".laz", ".cpt", ".mpt", ".fly", ".efb", ".g3d", ".fbx", ".obj", ".3dm", ".3dml", ".osgb", ".rvt", ".ifc", ".jpg", ".png", ".img", ".tif", ".tiff", ".bmp", ".gif", ".rmvb", ".rm", ".mp3", ".mp4", ".avi", ".wma", ".wmv", ".7z", ".rar", ".zip", ".db", ".jp2", ".txt", ".xml" };
    }
}