mapnik/src/projection.cpp

143 lines
3.1 KiB
C++
Raw Normal View History

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2006 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/projection.hpp>
#include <mapnik/utils.hpp>
2007-10-08 19:42:41 +02:00
// proj4
#include <proj_api.h>
namespace mapnik {
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
boost::mutex projection::mutex_;
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
projection::projection(std::string params)
: params_(params)
{
init(); //
}
2010-06-02 13:03:30 +02:00
projection::projection(projection const& rhs)
: params_(rhs.params_)
{
init(); //
}
2010-06-02 13:03:30 +02:00
projection& projection::operator=(projection const& rhs)
{
projection tmp(rhs);
swap(tmp);
return *this;
}
2010-06-02 13:03:30 +02:00
bool projection::operator==(const projection& other) const
{
return (params_ == other.params_);
}
2010-06-02 13:03:30 +02:00
bool projection::operator!=(const projection& other) const
{
return !(*this == other);
}
2010-06-02 13:03:30 +02:00
bool projection::is_initialized() const
{
return proj_ ? true : false;
}
2010-06-02 13:03:30 +02:00
bool projection::is_geographic() const
{
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
mutex::scoped_lock lock(mutex_);
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
return pj_is_latlong(proj_) ? true : false;
}
2010-06-02 13:03:30 +02:00
std::string const& projection::params() const
{
return params_;
}
2010-06-02 13:03:30 +02:00
void projection::forward(double & x, double &y ) const
{
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
mutex::scoped_lock lock(mutex_);
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
projUV p;
p.u = x * DEG_TO_RAD;
p.v = y * DEG_TO_RAD;
p = pj_fwd(p,proj_);
x = p.u;
y = p.v;
if (pj_is_latlong(proj_))
{
2010-06-02 13:03:30 +02:00
x *=RAD_TO_DEG;
y *=RAD_TO_DEG;
}
}
void projection::inverse(double & x,double & y) const
{
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
mutex::scoped_lock lock(mutex_);
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
if (pj_is_latlong(proj_))
{
2010-06-02 13:03:30 +02:00
x *=DEG_TO_RAD;
y *=DEG_TO_RAD;
}
projUV p;
p.u = x;
p.v = y;
p = pj_inv(p,proj_);
x = RAD_TO_DEG * p.u;
y = RAD_TO_DEG * p.v;
}
projection::~projection()
{
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
mutex::scoped_lock lock(mutex_);
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
if (proj_) pj_free(proj_);
}
2010-06-02 13:03:30 +02:00
void projection::init()
{
2008-02-04 17:12:13 +01:00
#ifdef MAPNIK_THREADSAFE
2010-06-02 13:03:30 +02:00
mutex::scoped_lock lock(mutex_);
2008-02-04 17:12:13 +01:00
#endif
2010-06-02 13:03:30 +02:00
proj_=pj_init_plus(params_.c_str());
if (!proj_) throw proj_init_error(params_);
}
2010-06-02 13:03:30 +02:00
void projection::swap (projection& rhs)
{
std::swap(params_,rhs.params_);
init ();
}
}