| | |
| | | private List<ImagePathList> image_path_list; |
| | | |
| | | /** |
| | | * 影像列表 |
| | | */ |
| | | private List<ImageList> image_list; |
| | | |
| | | /** |
| | | * 金字塔配置 |
| | | */ |
| | | private ImageOvr image_ovr; |
| | |
| | | create_service = 0; |
| | | layer = new Layer(); |
| | | image_ovr = new ImageOvr(); |
| | | image_list = new ArrayList<>(); |
| | | image_path_list = new ArrayList<>(); |
| | | } |
| | | |
| | |
| | | |
| | | public void setImage_path_list(List<ImagePathList> image_path_list) { |
| | | this.image_path_list = image_path_list; |
| | | } |
| | | |
| | | public List<ImageList> getImage_list() { |
| | | return image_list; |
| | | } |
| | | |
| | | public void setImage_list(List<ImageList> image_list) { |
| | | this.image_list = image_list; |
| | | } |
| | | |
| | | public ImageOvr getImage_ovr() { |
| | |
| | | private Integer boundary_cal_mode; |
| | | |
| | | public Layer() { |
| | | projection = "ESRI:104903"; |
| | | trans_color = "-1,-1,-1"; |
| | | tile_rgb = "1,2,3"; |
| | | end_scale = 1.0; |
| | | start_scale = 1000000000.0; |
| | | start_scale = 1048576000.0; |
| | | stats_type = 1; |
| | | enhance_type = 0; |
| | | enhance_factor = 0.02; |
| | | enhance_factor = null; |
| | | boundary_cal_mode = 0; |
| | | } |
| | | |
| | |
| | | |
| | | public ImagePathList() { |
| | | datasource = "Local"; |
| | | recursion = 0; |
| | | recursion = 1; |
| | | filter = new ArrayList<>(); |
| | | } |
| | | |
| | | public String getDatasource() { |
| | |
| | | } |
| | | |
| | | public void setAttr_filter(Object attr_filter) { |
| | | this.attr_filter = attr_filter; |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 影像列表 |
| | | */ |
| | | public class ImageList { |
| | | /** |
| | | * 数据源:当前只能为Local |
| | | */ |
| | | private String datasource; |
| | | |
| | | /** |
| | | * 影像目录 |
| | | */ |
| | | private String path; |
| | | |
| | | /** |
| | | * 影像时间 |
| | | */ |
| | | private String image_time; |
| | | |
| | | /** |
| | | * 属性过滤 |
| | | */ |
| | | private String attr_filter; |
| | | |
| | | public ImageList() { |
| | | datasource = "Local"; |
| | | } |
| | | |
| | | public String getDatasource() { |
| | | return datasource; |
| | | } |
| | | |
| | | public void setDatasource(String datasource) { |
| | | this.datasource = datasource; |
| | | } |
| | | |
| | | public String getPath() { |
| | | return path; |
| | | } |
| | | |
| | | public void setPath(String path) { |
| | | this.path = path; |
| | | } |
| | | |
| | | public String getImage_time() { |
| | | return image_time; |
| | | } |
| | | |
| | | public void setImage_time(String image_time) { |
| | | this.image_time = image_time; |
| | | } |
| | | |
| | | public String getAttr_filter() { |
| | | return attr_filter; |
| | | } |
| | | |
| | | public void setAttr_filter(String attr_filter) { |
| | | this.attr_filter = attr_filter; |
| | | } |
| | | } |