mapnik/include/mapnik/proj_transform.hpp

75 lines
2.6 KiB
C++
Raw Normal View History

/*****************************************************************************
2012-02-02 02:53:35 +01:00
*
* This file is part of Mapnik (c++ mapping toolkit)
*
2016-12-20 17:57:22 +01:00
* Copyright (C) 2016 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef MAPNIK_PROJ_TRANSFORM_HPP
#define MAPNIK_PROJ_TRANSFORM_HPP
// mapnik
2014-07-23 07:40:39 +02:00
#include <mapnik/config.hpp>
#include <mapnik/util/noncopyable.hpp>
namespace mapnik {
2012-02-02 02:53:35 +01:00
namespace geometry {
2015-04-09 22:22:51 +02:00
template <typename T> struct point;
template <typename T> struct line_string;
}
2014-07-23 07:40:39 +02:00
class projection;
template <typename T> class box2d;
class MAPNIK_DECL proj_transform : private util::noncopyable
2010-06-02 13:03:30 +02:00
{
public:
2012-02-02 02:53:35 +01:00
proj_transform(projection const& source,
2010-06-02 13:03:30 +02:00
projection const& dest);
2012-02-02 02:53:35 +01:00
bool equal() const;
bool is_known() const;
2010-06-02 13:03:30 +02:00
bool forward (double& x, double& y , double& z) const;
bool backward (double& x, double& y , double& z) const;
bool forward (double *x, double *y , double *z, int point_count, int offset = 1) const;
bool backward (double *x, double *y , double *z, int point_count, int offset = 1) const;
2015-04-09 22:22:51 +02:00
bool forward (geometry::point<double> & p) const;
bool backward (geometry::point<double> & p) const;
unsigned int forward (geometry::line_string<double> & ls) const;
unsigned int backward (geometry::line_string<double> & ls) const;
bool forward (box2d<double> & box) const;
bool backward (box2d<double> & box) const;
2011-06-01 00:44:48 +02:00
bool forward (box2d<double> & box, int points) const;
bool backward (box2d<double> & box, int points) const;
2010-06-02 13:03:30 +02:00
mapnik::projection const& source() const;
mapnik::projection const& dest() const;
2012-02-02 02:53:35 +01:00
2010-06-02 13:03:30 +02:00
private:
projection const& source_;
projection const& dest_;
bool is_source_longlat_;
bool is_dest_longlat_;
bool is_source_equal_dest_;
bool wgs84_to_merc_;
bool merc_to_wgs84_;
2010-06-02 13:03:30 +02:00
};
}
#endif // MAPNIK_PROJ_TRANSFORM_HPP