| | |
| | | /** |
| | | * nodata设置,数组,数组大小和波段数等同 |
| | | */ |
| | | private List<String> nodata; |
| | | private List<Integer> nodata; |
| | | |
| | | /** |
| | | * 投影或者坐标:EPSG:4326 |
| | |
| | | start_scale = 1000000000.0; |
| | | stats_type = 1; |
| | | enhance_type = 0; |
| | | enhance_factor= 0.02; |
| | | enhance_factor = 0.02; |
| | | boundary_cal_mode = 0; |
| | | } |
| | | |
| | |
| | | this.name = name; |
| | | } |
| | | |
| | | public List<String> getNodata() { |
| | | public List<Integer> getNodata() { |
| | | return nodata; |
| | | } |
| | | |
| | | public void setNodata(List<String> nodata) { |
| | | public void setNodata(List<Integer> nodata) { |
| | | this.nodata = nodata; |
| | | } |
| | | |
| | |
| | | public class Config { |
| | | private Process process; |
| | | |
| | | public Config(Integer type, List<GradientColorTableEntity> levels) { |
| | | public Config(Integer type, List<?> levels) { |
| | | process = new Process(type, levels); |
| | | } |
| | | |