Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/artifacts/access/FlowVelocityAccess.java @ 3762:0c978a80726a
Splitted up facets for porosity and density into two facets: a toplayer and a sublayer facet for each. BedQualityState will now create facets based on the calculation result.
flys-artifacts/trunk@5464 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 14 Sep 2012 07:12:08 +0000 |
parents | e54f8dc222cf |
children | 048a02e29808 |
line wrap: on
line source
package de.intevation.flys.artifacts.access; import de.intevation.flys.artifacts.FLYSArtifact; public class FlowVelocityAccess extends Access { private int[] mainChannels; private int[] totalChannels; private Double lowerKM; private Double upperKM; public FlowVelocityAccess(FLYSArtifact artifact) { super(artifact); } public int[] getMainChannels() { if (mainChannels == null) { mainChannels = getIntArray("main_channel"); } return mainChannels; } public int[] getTotalChannels() { if (totalChannels == null) { totalChannels = getIntArray("total_channel"); } return totalChannels; } public Double getLowerKM() { if (lowerKM == null) { lowerKM = getDouble("ld_from"); } return lowerKM; } public Double getUpperKM() { if (upperKM == null) { upperKM = getDouble("ld_to"); } return upperKM; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :