Package org.apache.sis.storage.netcdf

Examples of org.apache.sis.storage.netcdf.NetcdfStore


        final String file = files.get(0);
        if (file.endsWith(".xml")) {
            final Object obj = XML.unmarshal(new File(file));
            metadata = (obj instanceof Metadata) ? (Metadata) obj : null;
        } else {
            final NetcdfStore store = new NetcdfStore(new StorageConnector(file));
            try {
                metadata = store.getMetadata();
            } finally {
                store.close();
            }
        }
        /*
         * Format metadata to the standard output stream.
         */
 
View Full Code Here

TOP

Related Classes of org.apache.sis.storage.netcdf.NetcdfStore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.