2006-10-16 15:44:52 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 Artem Pavlenko, Jean-Francois Doyon
|
|
|
|
*
|
|
|
|
* 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$
|
2006-10-16 23:34:09 +02:00
|
|
|
// boost
|
2006-10-16 15:44:52 +02:00
|
|
|
#include <boost/python.hpp>
|
2006-10-16 23:57:27 +02:00
|
|
|
#include <boost/python/detail/api_placeholder.hpp>
|
2006-10-17 01:26:57 +02:00
|
|
|
// stl
|
|
|
|
#include <sstream>
|
2006-10-16 23:34:09 +02:00
|
|
|
// mapnik
|
2006-10-16 15:44:52 +02:00
|
|
|
#include <mapnik/envelope.hpp>
|
|
|
|
#include <mapnik/datasource.hpp>
|
|
|
|
#include <mapnik/datasource_cache.hpp>
|
2006-10-16 23:34:09 +02:00
|
|
|
#include <mapnik/feature_layer_desc.hpp>
|
2009-01-13 01:56:09 +01:00
|
|
|
#include <mapnik/memory_datasource.hpp>
|
2006-10-16 15:44:52 +02:00
|
|
|
|
2009-02-16 02:53:34 +01:00
|
|
|
|
|
|
|
using mapnik::datasource;
|
|
|
|
using mapnik::point_datasource;
|
|
|
|
|
|
|
|
struct ds_pickle_suite : boost::python::pickle_suite
|
|
|
|
{
|
|
|
|
static boost::python::tuple
|
|
|
|
getinitargs(const datasource& ds)
|
|
|
|
{
|
|
|
|
mapnik::parameters params = ds.params();
|
|
|
|
return boost::python::make_tuple(params);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2006-10-16 15:44:52 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
//user-friendly wrapper that uses Python dictionary
|
|
|
|
using namespace boost::python;
|
|
|
|
boost::shared_ptr<mapnik::datasource> create_datasource(const dict& d)
|
|
|
|
{
|
|
|
|
mapnik::parameters params;
|
|
|
|
boost::python::list keys=d.keys();
|
|
|
|
for (int i=0; i<len(keys); ++i)
|
|
|
|
{
|
|
|
|
std::string key = extract<std::string>(keys[i]);
|
|
|
|
object obj = d[key];
|
2007-06-12 10:59:54 +02:00
|
|
|
extract<std::string> ex0(obj);
|
|
|
|
extract<int> ex1(obj);
|
|
|
|
extract<double> ex2(obj);
|
|
|
|
|
|
|
|
if (ex0.check())
|
2006-10-16 15:44:52 +02:00
|
|
|
{
|
2007-06-12 10:59:54 +02:00
|
|
|
params[key] = ex0();
|
|
|
|
}
|
|
|
|
else if (ex1.check())
|
|
|
|
{
|
|
|
|
params[key] = ex1();
|
|
|
|
}
|
|
|
|
else if (ex2.check())
|
|
|
|
{
|
|
|
|
params[key] = ex2();
|
|
|
|
}
|
2006-10-16 15:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return mapnik::datasource_cache::create(params);
|
|
|
|
}
|
2006-10-16 23:34:09 +02:00
|
|
|
|
|
|
|
std::string describe(boost::shared_ptr<mapnik::datasource> const& ds)
|
|
|
|
{
|
|
|
|
std::stringstream ss;
|
|
|
|
if (ds)
|
|
|
|
{
|
|
|
|
ss << ds->get_descriptor() << "\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ss << "Null\n";
|
|
|
|
}
|
|
|
|
return ss.str();
|
|
|
|
}
|
2006-10-16 15:44:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void export_datasource()
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
2009-02-16 02:53:34 +01:00
|
|
|
|
2006-10-16 15:44:52 +02:00
|
|
|
class_<datasource,boost::shared_ptr<datasource>,
|
|
|
|
boost::noncopyable>("Datasource",no_init)
|
2009-02-16 02:53:34 +01:00
|
|
|
.def_pickle(ds_pickle_suite()
|
|
|
|
)
|
1. hit_test implementation for geometry objects:
bool hit_test(double x, double y, double tol);
2. added image_view(unsigned x, unsigned y, unsigned width, unsigned height)
allowing to select region from image data e.g (in Python):
im = Image(2048,2048)
view = im.view(0,0,256,256)
save_to_file(filename,type, view)
3. changed envelope method to return vy value in datasource classes
4. features_at_point impl for shape and postgis plug-ins
2006-11-25 12:02:59 +01:00
|
|
|
.def("envelope",&datasource::envelope)
|
|
|
|
.def("descriptor",&datasource::get_descriptor) //todo
|
2006-10-16 15:44:52 +02:00
|
|
|
.def("features",&datasource::features)
|
2006-12-01 11:08:13 +01:00
|
|
|
.def("features_at_point",&datasource::features_at_point)
|
2006-10-16 15:44:52 +02:00
|
|
|
.def("params",&datasource::params,return_value_policy<copy_const_reference>(),
|
|
|
|
"The configuration parameters of the data source. "
|
|
|
|
"These vary depending on the type of data source.")
|
|
|
|
;
|
|
|
|
|
2006-10-16 23:34:09 +02:00
|
|
|
def("Describe",&describe);
|
2006-10-16 15:44:52 +02:00
|
|
|
def("CreateDatasource",&create_datasource);
|
2009-01-13 01:56:09 +01:00
|
|
|
|
|
|
|
class_<point_datasource, bases<datasource>, boost::noncopyable>("PointDatasource", init<>())
|
|
|
|
.def("add_point",&point_datasource::add_point)
|
|
|
|
;
|
2006-10-16 15:44:52 +02:00
|
|
|
}
|