Package org.opengis.wrapper.netcdf

Show UML class diagram
Tests the GeoAPI-NetCDF bindings.

See:
          Description

Class Summary
ConformanceTest Runs all supported tests from the geoapi-conformance module.
IOTestCase Base class of NetCDF test cases performing I/O operations.
NetcdfCRSTest Tests the NetcdfCRS class using Coordinate Systems built from test files.
NetcdfMetadataTest Tests the NetcdfMetadata class.
NetcdfProjectionTest Tests the NetcdfProjection class using the geoapi-conformance module.
NetcdfTransformFactoryTest Tests the NetcdfTransformFactory class.
 

Package org.opengis.wrapper.netcdf Description

Tests the GeoAPI-NetCDF bindings. Other projects can leverage the test cases defined in this package by sub-classing and overriding the wrap(...) method. For example an other NetCDF wrapper implementation could test their metadata wrapper as below:

public class MyTest extends NetcdfMetadataTest {
    @Override
    protected Metadata wrap(NetcdfFile file) throws IOException {
        return new MyWrapper(file);
    }
}

Since:
3.1


Copyright © 1994-2013 Open Geospatial Consortium. All Rights Reserved.