~ubuntu-branches/debian/sid/osgearth/sid

« back to all changes in this revision

Viewing changes to src/osgEarthFeatures/TransformFilter

  • Committer: Bazaar Package Importer
  • Author(s): Pirmin Kalberer
  • Date: 2011-07-14 22:13:36 UTC
  • Revision ID: james.westby@ubuntu.com-20110714221336-94igk9rskxveh794
Tags: upstream-2.0+dfsg
ImportĀ upstreamĀ versionĀ 2.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*-c++-*- */
 
2
/* osgEarth - Dynamic map generation toolkit for OpenSceneGraph
 
3
 * Copyright 2008-2010 Pelican Mapping
 
4
 * http://osgearth.org
 
5
 *
 
6
 * osgEarth is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU Lesser General Public License as published by
 
8
 * the Free Software Foundation; either version 2 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
 
18
 */
 
19
 
 
20
#ifndef OSGEARTHFEATURES_TRANSFORM_FILTER_H
 
21
#define OSGEARTHFEATURES_TRANSFORM_FILTER_H 1
 
22
 
 
23
#include <osgEarthFeatures/Common>
 
24
#include <osgEarthFeatures/Feature>
 
25
#include <osgEarthFeatures/Filter>
 
26
#include <osg/BoundingBox>
 
27
 
 
28
namespace osgEarth { namespace Features
 
29
{
 
30
    using namespace osgEarth;
 
31
 
 
32
    /**
 
33
     * Feature filter that transforms features from one FeatureProfile to 
 
34
     * another.
 
35
     */
 
36
    class OSGEARTHFEATURES_EXPORT TransformFilter : public FeatureFilter
 
37
    {
 
38
    public:
 
39
        TransformFilter();
 
40
        TransformFilter( const SpatialReference* outputSRS );
 
41
 
 
42
        /** Height offset to apply after doing the SRS transformation. Output SRS units. */
 
43
        void setHeightOffset( double value ) { _heightOffset = value; }
 
44
        double getHeightOffset() const { return _heightOffset; }
 
45
 
 
46
        /** Whether to convert the transformed coordinates into geocentric (default = false ) */
 
47
        void setMakeGeocentric( bool value ) { _makeGeocentric = value; }
 
48
        bool getMakeGeocentric() const { return _makeGeocentric; }
 
49
 
 
50
        /** Whether to localize coordinates to the bounding box centroid (to avoid precision jitter
 
51
            when turning the data into OSG geometry) */
 
52
        void setLocalizeCoordinates( bool value ) { _localize = value; }
 
53
        bool getLocalizeCoordinates() const { return _localize; }
 
54
 
 
55
    public:
 
56
        FilterContext push( FeatureList& features, const FilterContext& context );
 
57
 
 
58
    protected:
 
59
        osg::ref_ptr<const SpatialReference> _outputSRS;
 
60
        bool _makeGeocentric;
 
61
        double _heightOffset;
 
62
        osg::BoundingBoxd _bbox;
 
63
        bool _localize;
 
64
        
 
65
        bool push( Feature* feature, const FilterContext& context );
 
66
    };
 
67
 
 
68
} } // namespace osgEarth::Features
 
69
 
 
70
#endif // OSGEARTHFEATURES_TRANSFORM_FILTER_H