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

au.gov.amsa.risky.format.NetcdfFixesWriterMain Maven / Gradle / Ivy

There is a newer version: 0.6.19
Show newest version
package au.gov.amsa.risky.format;

import java.io.File;
import java.util.regex.Pattern;

public class NetcdfFixesWriterMain {

    public static void main(String[] args) {
        try {
            File input = new File(System.getProperty("input"));
            File output = new File(System.getProperty("output"));
            Pattern pattern = Pattern.compile(System.getProperty("pattern"));
            NetcdfFixesWriter.convertToNetcdf(input, output, pattern).count().toBlocking().single();
        } catch (RuntimeException e) {
            e.printStackTrace();
            System.out
                    .println("Usage: -Dinput= -Doutput= -Dpattern=");
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy