view flys-backend/src/main/java/de/intevation/flys/importer/parsers/CrossSectionParser.java @ 5084:ca45dd039b54 slt-simplify-cross-sections

Log the number of points of cross sections to see the effect of the simplification.
author Sascha L. Teichmann <teichmann@intevation.de>
date Sun, 24 Feb 2013 21:38:09 +0100
parents e2e615109a2e
children
line wrap: on
line source
package de.intevation.flys.importer.parsers;

import de.intevation.flys.importer.XY;

import java.io.File;
import java.util.List;
import java.util.Map;

public interface CrossSectionParser {

    public String getDescription();

    public Integer getYear();

    public Map<Double,List<XY>> getData();

    public interface Callback {
        boolean accept(File file);
        void    parsed(CrossSectionParser parser);
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org