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

org.hortonmachine.modules.RasterConverter Maven / Gradle / Ivy

/*
 * This file is part of HortonMachine (http://www.hortonmachine.org)
 * (C) HydroloGIS - www.hydrologis.com 
 * 
 * The HortonMachine is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.hortonmachine.modules;

import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_COLS_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_EAST_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_NORTH_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_ROWS_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_SOUTH_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_WEST_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_X_RES_DESCRIPTION;
import static org.hortonmachine.gears.i18n.GearsMessages.GENERIC_P_Y_RES_DESCRIPTION;
import static org.hortonmachine.gears.libs.modules.Variables.TYPE_DOUBLE;
import static org.hortonmachine.gears.libs.modules.Variables.TYPE_FLOAT;
import static org.hortonmachine.gears.libs.modules.Variables.TYPE_INT;

import org.hortonmachine.gears.io.rasterreader.OmsRasterReader;
import org.hortonmachine.gears.libs.modules.HMConstants;
import org.hortonmachine.gears.modules.r.rasterconverter.OmsRasterConverter;

import oms3.annotations.Description;
import oms3.annotations.Execute;
import oms3.annotations.In;
import oms3.annotations.Name;
import oms3.annotations.UI;

@Name("rconvert")
public class RasterConverter extends OmsRasterConverter {

    @Description(OMSRASTERCONVERTER_IN_RASTER_DESCRIPTION)
    @UI(HMConstants.FILEIN_UI_HINT_RASTER)
    @In
    public String inRaster;

    @Description(GENERIC_P_NORTH_DESCRIPTION)
    @UI(HMConstants.PROCESS_NORTH_UI_HINT)
    @In
    public Double pNorth = null;

    @Description(GENERIC_P_SOUTH_DESCRIPTION)
    @UI(HMConstants.PROCESS_SOUTH_UI_HINT)
    @In
    public Double pSouth = null;

    @Description(GENERIC_P_WEST_DESCRIPTION)
    @UI(HMConstants.PROCESS_WEST_UI_HINT)
    @In
    public Double pWest = null;

    @Description(GENERIC_P_EAST_DESCRIPTION)
    @UI(HMConstants.PROCESS_EAST_UI_HINT)
    @In
    public Double pEast = null;
    
    @Description(GENERIC_P_X_RES_DESCRIPTION)
    @UI(HMConstants.PROCESS_XRES_UI_HINT)
    @In
    public Double pXres = null;

    @Description(GENERIC_P_Y_RES_DESCRIPTION)
    @UI(HMConstants.PROCESS_YRES_UI_HINT)
    @In
    public Double pYres = null;

    @Description(GENERIC_P_ROWS_DESCRIPTION)
    @UI(HMConstants.PROCESS_ROWS_UI_HINT)
    @In
    public Integer pRows = null;

    @Description(GENERIC_P_COLS_DESCRIPTION)
    @UI(HMConstants.PROCESS_COLS_UI_HINT)
    @In
    public Integer pCols = null;
    
    @Description(OMSRASTERCONVERTER_OUT_RASTER_TYPE)
    @UI("combo:" + TYPE_INT + "," + TYPE_FLOAT + "," + TYPE_DOUBLE)
    @In
    public String pOutType = "";

    @Description(OMSRASTERCONVERTER_OUT_RASTER_DESCRIPTION)
    @UI(HMConstants.FILEOUT_UI_HINT)
    @In
    public String outRaster;

    @Execute
    public void process() throws Exception {
        
        OmsRasterReader rasterreader = new OmsRasterReader();
        rasterreader.file = inRaster;
        rasterreader.pNorth = pNorth;
        rasterreader.pSouth = pSouth;
        rasterreader.pWest = pWest;
        rasterreader.pEast = pEast;
        rasterreader.pXres = pXres;
        rasterreader.pYres = pYres;
        rasterreader.pRows = pRows;
        rasterreader.pCols = pCols;
        rasterreader.pm = pm;
        rasterreader.process();
        OmsRasterConverter rasterconverter = new OmsRasterConverter();
        rasterconverter.inRaster = rasterreader.outRaster;
        rasterconverter.pOutType = pOutType;
        rasterconverter.pm = pm;
        rasterconverter.doProcess = doProcess;
        rasterconverter.doReset = doReset;
        rasterconverter.process();
        dumpRaster(rasterconverter.outRaster, outRaster);
    }
    
    public static void main( String[] args ) throws Exception {
        org.hortonmachine.modules.RasterConverter _rasterconverter = new org.hortonmachine.modules.RasterConverter();
        _rasterconverter.inRaster = "/home/hydrologis/TMP/PITFILLE/DTM_calvello/dtm_all.asc";
        _rasterconverter.pOutType = "INTEGER";
        _rasterconverter.outRaster = "/home/hydrologis/TMP/PITFILLE/DTM_calvello/dtm_all_int.tiff";
        _rasterconverter.process();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy