Mercurial > dive4elements > river
changeset 3684:3b001c273f1b
issue821 (cross sections beyond 500m).
flys-backend/trunk@5316 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Felix Wolfsteller <felix.wolfsteller@intevation.de> |
---|---|
date | Thu, 30 Aug 2012 13:15:16 +0000 |
parents | 4298ef9bd4a6 |
children | f3686b443d1e |
files | flys-backend/ChangeLog flys-backend/src/main/java/de/intevation/flys/model/CrossSectionLine.java |
diffstat | 2 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-backend/ChangeLog Thu Aug 30 11:06:12 2012 +0000 +++ b/flys-backend/ChangeLog Thu Aug 30 13:15:16 2012 +0000 @@ -1,3 +1,10 @@ +2012-08-30 Felix Wolfsteller <felix.wolfsteller@intevation.de> + + Attempt fix for issue821 (cross sections just till +/-500m). + + * src/main/java/de/intevation/flys/model/CrossSectionLine.java: + Set max value for cross sections to 2500 instead of 500. + 2012-08-30 Ingo Weinzierl <ingo@intevation.de> * contrib/run_geo.sh: New run script for the python based geo importer. @@ -100,6 +107,7 @@ * doc/documentation/de/importer-hydr-morph.tex: Added documentation from README. +>>>>>>> .r5315 2012-08-27 Sascha L. Teichmann <sascha.teichmann@intevation.de> * doc/README.txt: Documented which hydrological files are taken into account.
--- a/flys-backend/src/main/java/de/intevation/flys/model/CrossSectionLine.java Thu Aug 30 11:06:12 2012 +0000 +++ b/flys-backend/src/main/java/de/intevation/flys/model/CrossSectionLine.java Thu Aug 30 13:15:16 2012 +0000 @@ -32,7 +32,7 @@ public static final double EPSILON = 1e-4; public static final double TOO_SMALL = 0.2; - public static final double TOO_BIG = 500; + public static final double TOO_BIG = 2500; private Integer id; private Double km;