Class IOTools


  • public class IOTools
    extends Object
    • Constructor Detail

      • IOTools

        public IOTools()
    • Method Detail

      • saveCSV

        public static void saveCSV​(JTable table,
                                   String filename)
                            throws Exception
        Export jtable to csv file using commas as separators
        Parameters:
        table - the JTable containing the data to save to CSV file
        filename - the target file name
        Throws:
        Exception - if an Exception occurs
      • saveCSV

        public static void saveCSV​(JTable table,
                                   String filename,
                                   String cellseparator)
                            throws Exception
        Export jtable to csv file using a cell separator
        Parameters:
        table - JTable
        filename - output file name: C:\folder\file.csv
        cellseparator - cell break to separate values: "," ";" tab etc
        Throws:
        Exception - if an Exception occurs
      • saveSimbology_Jump

        public static void saveSimbology_Jump​(File file,
                                              Layer layer)
                                       throws Exception
        Method to save Openjump symbology of a layer to a XML file
        Parameters:
        file - file to save (ex. file.style.xml)
        layer - source layer
        Throws:
        Exception - if an Exception occurs
      • copyFileToFolder

        public static void copyFileToFolder​(File inputFile,
                                            String outputDir)
                                     throws IOException
        Simple method to copy a file to a folder
        Parameters:
        inputFile - input File
        outputDir - output directory
        Throws:
        IOException - if an IOException occurs
      • convertPathToSystemIndependentPath

        public static String convertPathToSystemIndependentPath​(String oldPath)
        Converts a system-dependent path into an independent one
        Parameters:
        oldPath - the old path
        Returns:
        the new path
      • loadSimbology_Jump

        public static void loadSimbology_Jump​(File file,
                                              Layer layer)
                                       throws Exception
        Method to load an OpenJUMP symbology file (xml jump) into a layer
        Parameters:
        file - file to load (ex. file.style.xml)
        layer - target layer
        Throws:
        Exception - if an Exception occurs
      • saveSimbology_SLD

        public static void saveSimbology_SLD​(File file,
                                             Layer layer)
                                      throws Exception
        Method to save the style of a layer as SLD (Spatial layer descriptor) file
        Parameters:
        file - file to save (ex. file.style.sld)
        layer - source layer
        Throws:
        Exception - if an Exception occurs
      • loadImageAsLayer

        public static void loadImageAsLayer​(File file,
                                            WorkbenchContext wcontext,
                                            String extension)
                                     throws Exception
        Load an image file as ReferenceImageLayer.class defining its extension
        Parameters:
        file - File to load
        wcontext - WorkbenchContext
        extension - extension of the file, eg. "tif"
        Throws:
        Exception - if an Exception occurs
      • saveGeoTIFF

        public static void saveGeoTIFF​(BufferedImage image,
                                       org.locationtech.jts.geom.Envelope envelope,
                                       File file)
                                throws IOException
        Save a BufferedImage and envelope to GeoTIFF file. cellsize is calculate from parameters (raster and envelope) nodata is set to SAGA standard value (-99999.00) compression is set to packbits
        Parameters:
        image - BufferedImage to save
        envelope - an Envelope
        file - output file
        Throws:
        IOException - if an IOException occurs
      • saveGeoTIFF

        public static void saveGeoTIFF​(BufferedImage image,
                                       org.locationtech.jts.geom.Envelope envelope,
                                       double cellsizex,
                                       double cellsizey,
                                       int compression,
                                       double nodata,
                                       File file)
        Save a given BufferedImage and envelope to GeoTIFF file, giving nodata value, x and y values of cell size and compsession
        Parameters:
        image - BufferedImage to save
        envelope - an Envelope
        cellsizex - Double cell size in x direction
        cellsizey - Double cell size in y direction
        nodata - Double nodata value
        compression - Integer, see com.sun.media.jai.codec.TIFFEncodeParam
        file - output file
        Throws:
        IOException - if an IOException occurs