2009-01-13 16:49:26 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
//$Id$
|
|
|
|
|
|
|
|
// mapnik
|
|
|
|
#include <mapnik/proj_transform.hpp>
|
|
|
|
// boost
|
|
|
|
#include <boost/python.hpp>
|
2009-05-24 08:31:32 +02:00
|
|
|
|
|
|
|
using mapnik::proj_transform;
|
|
|
|
using mapnik::projection;
|
|
|
|
|
|
|
|
struct proj_transform_pickle_suite : boost::python::pickle_suite
|
|
|
|
{
|
|
|
|
static boost::python::tuple
|
|
|
|
getinitargs(const proj_transform& p)
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
return boost::python::make_tuple(p.source(),p.dest());
|
|
|
|
}
|
|
|
|
};
|
2009-01-13 16:49:26 +01:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2009-01-25 20:02:07 +01:00
|
|
|
mapnik::coord2d forward_transform_c(mapnik::proj_transform& t, mapnik::coord2d const& c)
|
2009-01-13 16:49:26 +01:00
|
|
|
{
|
|
|
|
double x = c.x;
|
|
|
|
double y = c.y;
|
|
|
|
double z = 0.0;
|
|
|
|
t.forward(x,y,z);
|
|
|
|
return mapnik::coord2d(x,y);
|
|
|
|
}
|
|
|
|
|
2009-01-25 20:02:07 +01:00
|
|
|
mapnik::coord2d backward_transform_c(mapnik::proj_transform& t, mapnik::coord2d const& c)
|
2009-01-13 16:49:26 +01:00
|
|
|
{
|
|
|
|
double x = c.x;
|
|
|
|
double y = c.y;
|
|
|
|
double z = 0.0;
|
|
|
|
t.backward(x,y,z);
|
|
|
|
return mapnik::coord2d(x,y);
|
|
|
|
}
|
2009-01-25 20:02:07 +01:00
|
|
|
|
|
|
|
mapnik::Envelope<double> forward_transform_env(mapnik::proj_transform& t, mapnik::Envelope<double> const & box)
|
|
|
|
{
|
|
|
|
double minx = box.minx();
|
|
|
|
double miny = box.miny();
|
|
|
|
double maxx = box.maxx();
|
|
|
|
double maxy = box.maxy();
|
|
|
|
double z = 0.0;
|
|
|
|
t.forward(minx,miny,z);
|
|
|
|
t.forward(maxx,maxy,z);
|
|
|
|
return mapnik::Envelope<double>(minx,miny,maxx,maxy);
|
|
|
|
}
|
|
|
|
|
|
|
|
mapnik::Envelope<double> backward_transform_env(mapnik::proj_transform& t, mapnik::Envelope<double> const & box)
|
|
|
|
{
|
|
|
|
double minx = box.minx();
|
|
|
|
double miny = box.miny();
|
|
|
|
double maxx = box.maxx();
|
|
|
|
double maxy = box.maxy();
|
|
|
|
double z = 0.0;
|
|
|
|
t.backward(minx,miny,z);
|
|
|
|
t.backward(maxx,maxy,z);
|
|
|
|
return mapnik::Envelope<double>(minx,miny,maxx,maxy);
|
|
|
|
}
|
2009-01-13 16:49:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void export_proj_transform ()
|
|
|
|
{
|
2009-05-24 08:31:32 +02:00
|
|
|
using namespace boost::python;
|
|
|
|
|
2009-01-13 16:49:26 +01:00
|
|
|
class_<proj_transform, boost::noncopyable>("ProjTransform", init< projection const&, projection const& >())
|
2009-05-24 08:31:32 +02:00
|
|
|
.def_pickle(proj_transform_pickle_suite())
|
2009-01-25 20:02:07 +01:00
|
|
|
.def("forward", forward_transform_c)
|
|
|
|
.def("backward",backward_transform_c)
|
|
|
|
.def("forward", forward_transform_env)
|
|
|
|
.def("backward",backward_transform_env)
|
2009-01-13 16:49:26 +01:00
|
|
|
;
|
|
|
|
|
|
|
|
}
|