Ilwis-Objects  1.0
GIS and Remote Sensing framework for data access and processing
 All Classes Functions Enumerations Pages
csytransform.h
1 #ifndef CSYTRANSFORM_H
2 #define CSYTRANSFORM_H
3 
4 namespace Ilwis {
5 class CsyTransform : public geos::geom::CoordinateFilter
6 {
7 public:
8  CsyTransform(const ICoordinateSystem& source, const ICoordinateSystem& target);
9  CsyTransform(CoordinateSystem *source,const ICoordinateSystem& target);
10 
11  void filter_rw(geos::geom::Coordinate *crd) const;
12 private:
13  ICoordinateSystem _source;
14  ICoordinateSystem _target;
15 };
16 }
17 
18 #endif // CSYTRANSFORM_H