# HG changeset patch # User Ingo Weinzierl # Date 1304575964 0 # Node ID 53cc794fee075ad63d94abfda570652da4b234e1 # Parent 435058da0eaed60c886ec5c47cb5fb2d85d43973 Improved the transition model and added states to enable the 'discharge longitudinal section' computation - NOTE: the work in this computation has not finished yet. flys-artifacts/trunk@1830 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r 435058da0eae -r 53cc794fee07 flys-artifacts/ChangeLog --- a/flys-artifacts/ChangeLog Thu May 05 05:27:41 2011 +0000 +++ b/flys-artifacts/ChangeLog Thu May 05 06:12:44 2011 +0000 @@ -1,3 +1,21 @@ +2011-05-05 Ingo Weinzierl + + * doc/conf/artifacts/winfo.xml: Improved the transition model to reach the + output state for creating 'discharge longitudinal section' charts. + + * src/main/java/de/intevation/flys/artifacts/FLYSArtifact.java: Added a + method that returns all gauges of the selected river based on a the + given kilometer range. + + * src/main/java/de/intevation/flys/artifacts/states/WQAdapted.java: New. + This state creates a set of elements for the DESCRIBE that consist of a + tuple of kilometer values. The number of elements depend on the number + of gauges intersected by the given kilometer range. + + * src/main/java/de/intevation/flys/artifacts/states/DischargeLongitudinalSection.java: + New. This state is the output state that is reached after the 'discharge + longitudinal section' computation has been chosen. + 2011-05-05 Ingo Weinzierl * src/main/java/de/intevation/flys/artifacts/FLYSArtifact.java: Default diff -r 435058da0eae -r 53cc794fee07 flys-artifacts/doc/conf/artifacts/winfo.xml --- a/flys-artifacts/doc/conf/artifacts/winfo.xml Thu May 05 05:27:41 2011 +0000 +++ b/flys-artifacts/doc/conf/artifacts/winfo.xml Thu May 05 06:12:44 2011 +0000 @@ -33,6 +33,12 @@ + + + + + + @@ -63,9 +69,16 @@ - + + + + + + + + @@ -89,6 +102,12 @@ + + + + + + @@ -127,6 +146,11 @@ + + + + + @@ -143,5 +167,15 @@ + + + + + + + + + + diff -r 435058da0eae -r 53cc794fee07 flys-artifacts/src/main/java/de/intevation/flys/artifacts/FLYSArtifact.java --- a/flys-artifacts/src/main/java/de/intevation/flys/artifacts/FLYSArtifact.java Thu May 05 05:27:41 2011 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/FLYSArtifact.java Thu May 05 06:12:44 2011 +0000 @@ -596,6 +596,19 @@ /** + * Returns the gauges that match the selected kilometer range. + * + * @return the gauges based on the selected kilometer range. + */ + public List getGauges() { + River river = getRiver(); + double[] dist = getDistance(); + + return river.determineGauges(dist[0], dist[1]); + } + + + /** * This method returns the Q values. * * @return the selected Q values or null, if no Q values are selected. diff -r 435058da0eae -r 53cc794fee07 flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/DischargeLongitudinalSection.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/DischargeLongitudinalSection.java Thu May 05 06:12:44 2011 +0000 @@ -0,0 +1,30 @@ +package de.intevation.flys.artifacts.states; + +import org.apache.log4j.Logger; + +import org.w3c.dom.Element; + +import de.intevation.artifacts.Artifact; +import de.intevation.artifacts.CallContext; + +import de.intevation.artifacts.common.utils.XMLUtils; + + +public class DischargeLongitudinalSection extends DefaultState { + + /** The logger that is used in this state.*/ + private static Logger logger = + Logger.getLogger(DischargeLongitudinalSection.class); + + + protected Element[] createItems( + XMLUtils.ElementCreator cr, + Artifact artifact, + String name, + CallContext context) + { + logger.debug("DischargeLongitudinalSection.createItems"); + return null; + } +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 : diff -r 435058da0eae -r 53cc794fee07 flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/WQAdapted.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/flys-artifacts/src/main/java/de/intevation/flys/artifacts/states/WQAdapted.java Thu May 05 06:12:44 2011 +0000 @@ -0,0 +1,109 @@ +package de.intevation.flys.artifacts.states; + +import java.util.List; + +import org.apache.log4j.Logger; + +import org.w3c.dom.Element; + +import de.intevation.artifacts.Artifact; +import de.intevation.artifacts.CallContext; + +import de.intevation.artifactdatabase.ProtocolUtils; + +import de.intevation.artifacts.common.utils.XMLUtils; + +import de.intevation.flys.model.Gauge; +import de.intevation.flys.model.Range; + +import de.intevation.flys.artifacts.FLYSArtifact; + + +/** + * @author Ingo Weinzierl + */ +public class WQAdapted extends DefaultState { + + /** The logger used in this state.*/ + private static Logger logger = Logger.getLogger(WQAdapted.class); + + + /** + * This method creates one element for each gauge of the selected river that + * is intersected by the given kilometer range. Each element is a tuple of + * (from;to) where from is the lower bounds of the gauge or the lower + * kilometer range. to is the upper bounds of the gauge or the upper + * kilometer range. + * + * @param cr The ElementCreator. + * @param artifact The FLYS artifact. + * @param name The name of the data item. + * @param context The CallContext. + * + * @return a list of elements that consist of tuples of the intersected + * gauges of the selected river. + */ + protected Element[] createItems( + XMLUtils.ElementCreator cr, + Artifact artifact, + String name, + CallContext context) + { + logger.debug("WQAdapted.createItems"); + + FLYSArtifact flysArtifact = (FLYSArtifact) artifact; + + double[] dist = flysArtifact.getDistance(); + List gauges = flysArtifact.getGauges(); + + int num = gauges != null ? gauges.size() : 0; + + if (num == 0) { + logger.warn("Selected distance matches no gauges."); + return null; + } + + Element[] elements = new Element[num]; + + int idx = 0; + + for (Gauge gauge: gauges) { + Range range = gauge.getRange(); + double lower = range.getA().doubleValue(); + double upper = range.getB().doubleValue(); + + double from = dist[0] < lower ? lower : dist[0]; + double to = dist[1] > upper ? upper : dist[1]; + + String key = Double.toString(from) + ";" + Double.toString(to); + + elements[idx++] = createItem(cr, new String[] {key, ""}); + } + + return elements; + } + + + protected Element createItem(XMLUtils.ElementCreator cr, Object obj) { + Element item = ProtocolUtils.createArtNode(cr, "item", null, null); + Element label = ProtocolUtils.createArtNode(cr, "label", null, null); + Element value = ProtocolUtils.createArtNode(cr, "value", null, null); + + String[] arr = (String[]) obj; + + label.setTextContent(arr[0]); + value.setTextContent(arr[1]); + + item.appendChild(label); + item.appendChild(value); + + return item; + } + + + @Override + protected String getUIProvider() { + return "wq_panel_adapted"; + } +} +// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf-8 :