Module Maintainer: |
Martin Desruisseaux |
|
Status: |
|
|
Email Help: |
Geotools-gt2-users@lists.sourceforge.net |
|
Volunteer: |
geotools-devel@lists.sourceforge.net |
The Sample Data Module provides a data repository for different formats (shapefile, gml, sql, ...) which will enable you to make your own tests with GeoTools libraries.
The data available in this module is accessed via the TestData class; this class is able to smoothly access and unpack data that has been bundled up into a jar; it is able to handle some of the platform differences that have cropped up over the years.
Example use:
InputStream in = TestData.openStream( this, "my_data.properties" );
Properties properties = new Properties( in );
in.close();
assertTrue( properties.contains("something") );
|
For more information please review out developers guide entry:
Contributions of new data are welcome:
Java utility classes that are useful when writing test cases.
The following data is available when writing your own test cases.