| ForceCoordinateSystemFeatureReader provides a CoordinateReferenceSystem for
FeatureTypes.
ForceCoordinateSystemFeatureReader is a wrapper used to force
GeometryAttributes to a user supplied CoordinateReferenceSystem rather then
the default supplied by the DataStore.
Example Use:
ForceCoordinateSystemFeatureReader reader =
new ForceCoordinateSystemFeatureReader( originalReader, forceCS );
CoordinateReferenceSystem originalCS =
originalReader.getFeatureType().getDefaultGeometry().getCoordianteSystem();
CoordinateReferenceSystem newCS =
reader.getFeatureType().getDefaultGeometry().getCoordianteSystem();
assertEquals( forceCS, newCS );
author: jgarnett, Refractions Research, Inc. author: aaime author: $Author: jive $ (last modification) version: $Id: ForceCoordinateSystemIterator.java 22755 2006-11-16 03:05:52Z jgarnett $ |