package com.lf.server.service.data;
|
|
import com.lf.server.config.PropertiesConfig;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* FME服务类
|
* @author WWW
|
*/
|
@Service
|
public class FmeService {
|
@Autowired
|
PropertiesConfig propertiesConfig;
|
|
/**
|
* OSGB检查:.osgb + .xls/.xlsx
|
*/
|
public void checkOsgb() {
|
|
}
|
|
/**
|
* 表格数据检查:.xls/.xlsx
|
*/
|
public void checkXls() {
|
|
}
|
|
/**
|
* 点云检查:.laz + .xls/.xlsx
|
*/
|
public void checkLaz() {
|
|
}
|
|
/**
|
* 高程检查:.tif/.prj/.tfw/.tif.ovr + .dwg
|
*/
|
public void checkDem() {
|
|
}
|
|
/**
|
* 属性检查:*dlg*.gdb + *地形图*.dwg
|
*/
|
public void checkAttrs() {
|
|
}
|
|
/**
|
* 拓扑检查:*地形图*.dwg
|
*/
|
public void checkTopology() {
|
|
}
|
|
/**
|
* 图面整饰检查:.dwg
|
*/
|
public void checkDecorate() {
|
|
}
|
|
/**
|
* 原点检查:*剖面图*.dwg
|
*/
|
public void checkOrigin() {
|
|
}
|
|
/**
|
* 栅格检查:.tif/.prj/.tfw/.tif.ovr + .xls/.xlsx
|
*/
|
public void checkDom() {
|
|
}
|
|
/**
|
* 数学基础检查:.shp, .gdb, .xls/.xlsx
|
*/
|
public void checkMath() {
|
|
}
|
|
/**
|
* 元数据检查:*元数据*.xls/.xlsx
|
*/
|
public void checkMeta() {
|
|
}
|
}
|