sis-geotk-plugin/src/test/java/org/gcube/data/transfer/plugins/sis/TestGetMetadata.java

17 lines
561 B
Java

package org.gcube.data.transfer.plugins.sis;
import java.net.MalformedURLException;
import java.net.URL;
import org.apache.sis.storage.DataStoreException;
import org.apache.sis.storage.UnsupportedStorageException;
public class TestGetMetadata {
public static void main(String[] args) throws UnsupportedStorageException, MalformedURLException, DataStoreException {
System.out.println(SisPlugin.getMetaFromFile(new URL("https://github.com/opengeospatial/geoapi/raw/master/geoapi-netcdf/src/test/resources/org/opengis/wrapper/netcdf/NCEP-SST.nc")));
}
}