# HG changeset patch # User mschaefer # Date 1532539645 -7200 # Node ID 45bbd2c232f828a1ed22ca62f442d71f37a382b6 # Parent 8024e51e828a7e3f926d609df36cd0d003e2fae4 S-Info main value themes in flood duration w/q set to initially invisible diff -r 8024e51e828a -r 45bbd2c232f8 artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/SINFOArtifact.java --- a/artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/SINFOArtifact.java Wed Jul 25 18:36:26 2018 +0200 +++ b/artifacts/src/main/java/org/dive4elements/river/artifacts/sinfo/SINFOArtifact.java Wed Jul 25 19:27:25 2018 +0200 @@ -20,6 +20,7 @@ import org.dive4elements.river.artifacts.sinfo.common.FlowDepthProcessor; import org.dive4elements.river.artifacts.sinfo.common.TauProcessor; import org.dive4elements.river.artifacts.sinfo.common.VelocityProcessor; +import org.dive4elements.river.artifacts.sinfo.flood_duration.FloodDurationCurveProcessor; /** * The default SINFO artifact. @@ -95,6 +96,11 @@ if (FlowDepthDevelopmentPerYearProcessor.FACET_FLOW_DEPTH_DEVELOPMENT_PER_YEAR_RAW.equals(name)) return Boolean.FALSE; + if (FloodDurationCurveProcessor.FACET_FLOOD_DURATION_MAINVALUES_W.equals(name)) + return Boolean.FALSE; + if (FloodDurationCurveProcessor.FACET_FLOOD_DURATION_MAINVALUES_Q.equals(name)) + return Boolean.FALSE; + return null; } });