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 JP2_EXT = new List { "jp2.aux.xml" }; /** * MPT文件扩展名 */ public static List MPT_EXT = new List { ".midx", ".strmi" }; /** * IMG文件扩展名 */ public static List IMG_EXT = new List { ".rrd", ".img.aux.xml", ".hdr", ".img.enp", ".img.xml" }; /** * TIF文件扩展名 */ public static List TIF_EXT = new List { ".prj", ".tfw", ".tif.ovr", ".tif.aux.xml", ".tif.enp", ".tif.xml" }; /** * TIFF文件扩展名 */ public static List TIFF_EXT = new List { ".prj", ".tfw", ".tiff.ovr", ".tiff.aux.xml", ".tiff.enp", ".tiff.xml" }; /** * SHP文件扩展名 */ public static List SHP_EXT = new List { ".shx", ".dbf", ".prj", ".cpg" }; /** * 所有文件扩展名 */ public static List ALL_EXTENSION = new List { ".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" }; } }