| 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: ForceCoordinateSystemFeatureReader.java 24278 2007-02-08 16:35:47Z aaime $ |