annotate backend/src/main/java/org/dive4elements/river/model/uinfo/VegetationZone.java @ 9401:361de818f76e

Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
author mschaefer
date Tue, 14 Aug 2018 14:02:26 +0200
parents 201817aa7b1c
children
rev   line source
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
1 /* Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
2 * Software engineering by
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
3 * Björnsen Beratende Ingenieure GmbH
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
4 * Dr. Schumacher Ingenieurbüro für Wasser und Umwelt
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
5 *
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
6 * This file is Free Software under the GNU AGPL (>=v3)
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
7 * and comes with ABSOLUTELY NO WARRANTY! Check out the
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
8 * documentation coming with Dive4Elements River for details.
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
9 */
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
10
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
11 package org.dive4elements.river.model.uinfo;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
12
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
13 import java.io.Serializable;
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
14 import java.util.List;
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
15
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
16 import javax.persistence.Column;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
17 import javax.persistence.Entity;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
18 import javax.persistence.GeneratedValue;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
19 import javax.persistence.GenerationType;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
20 import javax.persistence.Id;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
21 import javax.persistence.JoinColumn;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
22 import javax.persistence.OneToOne;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
23 import javax.persistence.SequenceGenerator;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
24 import javax.persistence.Table;
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
25 import javax.persistence.Transient;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
26
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
27 import org.dive4elements.river.backend.SessionHolder;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
28 import org.dive4elements.river.model.River;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
29 import org.hibernate.Query;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
30 import org.hibernate.Session;
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
31
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
32
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
33 /**
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
34 * Hibernate binding for the DB table vegetation_zone
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
35 *
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
36 * @author Matthias Schäfer
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
37 *
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
38 */
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
39 @Entity
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
40 @Table(name = "vegetation_zone")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
41 public class VegetationZone implements Serializable {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
42
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
43 /***** FIELDS *****/
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
44
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
45 private static final long serialVersionUID = -6579828019873800147L;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
46
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
47 private Integer id;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
48
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
49 private Vegetation vegetation;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
50
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
51 private VegetationType vegetationType;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
52
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
53 private Integer min_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
54
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
55 private Integer max_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
56
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
57 private Integer color_r;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
58
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
59 private Integer color_g;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
60
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
61 private Integer color_b;
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
62
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
63 /***** CONSTRUCTORS *****/
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
64
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
65 public VegetationZone() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
66 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
67
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
68 public VegetationZone(final Vegetation vegetation, final VegetationType vegetationType, final Integer min_overflow_days, final Integer max_overflow_days,
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
69 final Integer color_r,
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
70 final Integer color_g, final Integer color_b) {
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
71 this.vegetation = vegetation;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
72 this.vegetationType = vegetationType;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
73 this.min_overflow_days = min_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
74 this.max_overflow_days = max_overflow_days;
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
75 this.color_r = color_r;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
76 this.color_g = color_g;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
77 this.color_b = color_b;
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
78 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
79
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
80
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
81 /***** METHODS *****/
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
82
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
83 @Id
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
84 @SequenceGenerator(name = "SEQUENCE_VEGETATION_ZONE_ID_SEQ", sequenceName = "VEGETATION_ZONE_ID_SEQ", allocationSize = 1)
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
85 @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQUENCE_VEGETATION_ZONE_ID_SEQ")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
86 @Column(name = "id")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
87 public Integer getId() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
88 return this.id;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
89 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
90
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
91 public void setId(final Integer id) {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
92 this.id = id;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
93 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
94
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
95 @OneToOne
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
96 @JoinColumn(name = "vegetation_id")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
97 public Vegetation getVegetation() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
98 return this.vegetation;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
99 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
100
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
101 public void setVegetation(final Vegetation vegetation) {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
102 this.vegetation = vegetation;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
103 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
104
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
105 @OneToOne
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
106 @JoinColumn(name = "vegetation_type_id")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
107 public VegetationType getVegetationType() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
108 return this.vegetationType;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
109 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
110
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
111 public void setVegetationType(final VegetationType vegetationType) {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
112 this.vegetationType = vegetationType;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
113 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
114
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
115 @Column(name = "min_overflow_days")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
116 public Integer getMin_overflow_days() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
117 return this.min_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
118 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
119
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
120 public void setMin_overflow_days(final Integer min_overflow_days) {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
121 this.min_overflow_days = min_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
122 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
123
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
124 @Column(name = "max_overflow_days")
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
125 public Integer getMax_overflow_days() {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
126 return this.max_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
127 }
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
128
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
129 public void setMax_overflow_days(final Integer max_overflow_days) {
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
130 this.max_overflow_days = max_overflow_days;
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
131 }
9401
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
132
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
133 @Column(name = "color_r")
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
134 public Integer getColor_r() {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
135 return this.color_r;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
136 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
137
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
138 public void setColor_r(final Integer color_r) {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
139 this.color_r = color_r;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
140 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
141
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
142 @Column(name = "color_g")
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
143 public Integer getColor_g() {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
144 return this.color_g;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
145 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
146
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
147 public void setColor_g(final Integer color_g) {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
148 this.color_g = color_g;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
149 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
150
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
151 @Column(name = "color_b")
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
152 public Integer getColor_b() {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
153 return this.color_b;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
154 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
155
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
156 public void setColor_b(final Integer color_b) {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
157 this.color_b = color_b;
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
158 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
159
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
160 @Transient
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
161 public String getColor() {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
162 return String.format("#%02x%02x%02x", getColor_r(), getColor_g(), getColor_b());
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
163 }
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
164
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
165 /**
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
166 * Selects from the database the vegetation zones of a river
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
167 */
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
168 public static List<VegetationZone> getValues(final River river) {
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
169 final Session session = SessionHolder.HOLDER.get();
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
170 final Query query = session.createQuery("SELECT v"
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
171 + " FROM VegetationZone AS v JOIN v.vegetation AS s"
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
172 + " WHERE (s.river.id=:riverid)"
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
173 + " ORDER BY v.vegetationType.id");
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
174 query.setParameter("riverid", river.getId());
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
175 return query.list();
361de818f76e Added color fields to the vegetation zone database table and importer, max days field changed from exclusive to inclusive
mschaefer
parents: 9014
diff changeset
176 }
9014
201817aa7b1c Added the missing vegetation import classes
mschaefer
parents:
diff changeset
177 }

http://dive4elements.wald.intevation.org