| | |
| | | variable_dt = true; |
| | | } |
| | | |
| | | public ConfigVo(int duration, int frames, String raingage) { |
| | | public ConfigVo(int duration, int frames, String terrain, String landuse, String station, String raingage) { |
| | | this(); |
| | | |
| | | this.duration = duration; |
| | | this.save_frames = frames; |
| | | this.raingage = raingage; |
| | | this.save_interval = this.duration / frames; |
| | | this.terrain.set(0, terrain); // 地形高程数据 |
| | | this.landuse.set(0, landuse); // 土地利用类型 |
| | | this.station.set(0, station); // 雨量站索引 |
| | | this.raingage = raingage; |
| | | } |
| | | |
| | | public List<Object> getTerrain() { |