All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jgrasstools.gears.io.eicalculator.OmsEIEnergyWriter Maven / Gradle / Ivy

The newest version!
/*
 * JGrass - Free Open Source Java GIS http://www.jgrass.org 
 * (C) HydroloGIS - www.hydrologis.com 
 * 
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Library General Public License as published by the Free
 * Software Foundation; either version 2 of the License, or (at your option) any
 * later version.
 * 
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more
 * details.
 * 
 * You should have received a copy of the GNU Library General Public License
 * along with this library; if not, write to the Free Foundation, Inc., 59
 * Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */
package org.jgrasstools.gears.io.eicalculator;

import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_AUTHORCONTACTS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_AUTHORNAMES;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_KEYWORDS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_LABEL;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_LICENSE;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_NAME;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_STATUS;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_FILE_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_IN_ENERGY_DESCRIPTION;
import static org.jgrasstools.gears.i18n.GearsMessages.OMSEIENERGYWRITER_P_SEPARATOR_DESCRIPTION;

import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.List;

import oms3.annotations.Author;
import oms3.annotations.Description;
import oms3.annotations.Execute;
import oms3.annotations.Finalize;
import oms3.annotations.In;
import oms3.annotations.Keywords;
import oms3.annotations.Label;
import oms3.annotations.License;
import oms3.annotations.Name;
import oms3.annotations.Status;
import oms3.annotations.UI;

import org.jgrasstools.gears.libs.modules.JGTConstants;
import org.jgrasstools.gears.libs.modules.JGTModel;

@Description(OMSEIENERGYWRITER_DESCRIPTION)
@Author(name = OMSEIENERGYWRITER_AUTHORNAMES, contact = OMSEIENERGYWRITER_AUTHORCONTACTS)
@Keywords(OMSEIENERGYWRITER_KEYWORDS)
@Label(OMSEIENERGYWRITER_LABEL)
@Name(OMSEIENERGYWRITER_NAME)
@Status(OMSEIENERGYWRITER_STATUS)
@License(OMSEIENERGYWRITER_LICENSE)
public class OmsEIEnergyWriter extends JGTModel {

    @Description(OMSEIENERGYWRITER_IN_ENERGY_DESCRIPTION)
    @In
    public List inEnergy;

    @Description(OMSEIENERGYWRITER_FILE_DESCRIPTION)
    @UI(JGTConstants.FILEOUT_UI_HINT)
    @In
    public String file = null;

    @Description(OMSEIENERGYWRITER_P_SEPARATOR_DESCRIPTION)
    @In
    public String pSeparator = ",";

    private BufferedWriter csvWriter;

    private void ensureOpen() throws IOException {
        if (csvWriter == null)
            csvWriter = new BufferedWriter(new FileWriter(file));
    }

    @Finalize
    public void close() throws IOException {
        csvWriter.close();
    }

    @Execute
    public void write() throws IOException {
        ensureOpen();

        csvWriter.write("# EIEnergy writer output\n");
        for( EIEnergy energy : inEnergy ) {
            StringBuilder sb = new StringBuilder();
            sb.append(energy.basinId);
            sb.append(pSeparator);
            sb.append(energy.energeticBandId);
            sb.append(pSeparator);
            sb.append(energy.virtualMonth);
            sb.append(pSeparator);
            sb.append(energy.energyValue);
            sb.append("\n");
            csvWriter.write(sb.toString());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy