Package org.apache.sis.storage

Examples of org.apache.sis.storage.StorageConnector


     * @throws IOException If an error occurred while opening the NetCDF file.
     * @throws DataStoreException Should never happen.
     */
    @Test
    public void testDecoderFromUCAR() throws IOException, DataStoreException {
        final StorageConnector c = new StorageConnector(open(NCEP));
        final Decoder decoder = NetcdfStoreProvider.decoder(TestCase.LISTENERS, c);
        assertInstanceOf(NCEP, DecoderWrapper.class, decoder);
        decoder.close();
    }
View Full Code Here


     *
     * @param  dataset The name of the datastore to load.
     * @throws DataStoreException If an error occurred while reading the NetCDF file.
     */
    private static NetcdfStore create(final String dataset) throws DataStoreException {
        return new NetcdfStore(new StorageConnector(IOTestCase.getResource(dataset)));
    }
View Full Code Here

TOP

Related Classes of org.apache.sis.storage.StorageConnector

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.