| | |
| | | package com.moon.server.entity.shujian; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 数简.创建图层类 |
| | |
| | | /** |
| | | * 影像目录列表 |
| | | */ |
| | | private ImagePathList[] image_path_list; |
| | | private List<ImagePathList> image_path_list; |
| | | |
| | | /** |
| | | * 影像列表 |
| | | */ |
| | | private ImageList[] image_list; |
| | | private List<ImageList> image_list; |
| | | |
| | | /** |
| | | * 金字塔配置 |
| | |
| | | |
| | | public CreateLayerEntity(int pathCount, int imageCount) { |
| | | this(); |
| | | image_list = new ImageList[imageCount]; |
| | | image_path_list = new ImagePathList[pathCount]; |
| | | image_list = new ArrayList<>(); |
| | | image_path_list = new ArrayList<>(); |
| | | } |
| | | |
| | | public Layer getLayer() { |
| | |
| | | this.layer = layer; |
| | | } |
| | | |
| | | public ImagePathList[] getImage_path_list() { |
| | | public List<ImagePathList> getImage_path_list() { |
| | | return image_path_list; |
| | | } |
| | | |
| | | public void setImage_path_list(ImagePathList[] image_path_list) { |
| | | public void setImage_path_list(List<ImagePathList> image_path_list) { |
| | | this.image_path_list = image_path_list; |
| | | } |
| | | |
| | | public ImageList[] getImage_list() { |
| | | public List<ImageList> getImage_list() { |
| | | return image_list; |
| | | } |
| | | |
| | | public void setImage_list(ImageList[] image_list) { |
| | | public void setImage_list(List<ImageList> image_list) { |
| | | this.image_list = image_list; |
| | | } |
| | | |
| | |
| | | public Layer() { |
| | | end_scale = 1.0; |
| | | start_scale = 1000000000.0; |
| | | stats_type = 0; |
| | | stats_type = 1; |
| | | enhance_type = 0; |
| | | boundary_cal_mode = 0; |
| | | config = new Object(); |
| | |
| | | |
| | | public ImagePathList() { |
| | | datasource = "Local"; |
| | | recursion = 1; |
| | | recursion = 0; |
| | | image_time = null; |
| | | } |
| | | |