2006-02-01 00:09:52 +01:00
|
|
|
/* This file is part of python_mapnik (c++/python mapping toolkit)
|
2006-02-20 02:34:02 +01:00
|
|
|
* Copyright (C) 2005 Artem Pavlenko, Jean-Francois Doyon
|
2006-02-01 00:09:52 +01:00
|
|
|
*
|
|
|
|
* Mapnik is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
//$Id: mapnik_python.cc 27 2005-03-30 21:45:40Z pavlenko $
|
|
|
|
|
|
|
|
#include <boost/python.hpp>
|
|
|
|
#include <boost/get_pointer.hpp>
|
|
|
|
#include <boost/python/detail/api_placeholder.hpp>
|
|
|
|
|
|
|
|
#include "mapnik.hpp"
|
|
|
|
|
|
|
|
using namespace mapnik;
|
|
|
|
|
|
|
|
void export_color();
|
|
|
|
void export_layer();
|
|
|
|
void export_parameters();
|
|
|
|
void export_envelope();
|
|
|
|
void export_image();
|
|
|
|
void export_map();
|
|
|
|
void export_python();
|
|
|
|
void export_filter();
|
|
|
|
void export_rule();
|
|
|
|
void export_style();
|
|
|
|
void export_stroke();
|
|
|
|
void export_datasource_cache();
|
2006-02-25 12:03:30 +01:00
|
|
|
void export_point_symbolizer();
|
|
|
|
void export_line_symbolizer();
|
|
|
|
void export_line_pattern_symbolizer();
|
|
|
|
void export_polygon_symbolizer();
|
|
|
|
void export_polygon_pattern_symbolizer();
|
|
|
|
void export_raster_symbolizer();
|
|
|
|
void export_text_symbolizer();
|
2006-02-01 00:09:52 +01:00
|
|
|
|
|
|
|
void render_to_file(const Map& map,const std::string& file,const std::string& format)
|
|
|
|
{
|
|
|
|
Image32 image(map.getWidth(),map.getHeight());
|
2006-02-25 12:03:30 +01:00
|
|
|
agg_renderer<Image32> ren(map,image);
|
|
|
|
ren.apply();
|
2006-02-01 00:09:52 +01:00
|
|
|
image.saveToFile(file,format);
|
|
|
|
}
|
|
|
|
|
|
|
|
void render(const Map& map,Image32& image)
|
|
|
|
{
|
2006-02-25 12:03:30 +01:00
|
|
|
agg_renderer<Image32> ren(map,image);
|
|
|
|
ren.apply();
|
2006-02-01 00:09:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOST_PYTHON_MODULE(_mapnik)
|
|
|
|
{
|
|
|
|
using namespace boost::python;
|
|
|
|
|
|
|
|
class_<datasource,boost::shared_ptr<datasource>,
|
2006-02-20 02:34:02 +01:00
|
|
|
boost::noncopyable>("Datasource",no_init)
|
2006-02-01 00:09:52 +01:00
|
|
|
.def("envelope",&datasource::envelope,
|
|
|
|
return_value_policy<reference_existing_object>())
|
|
|
|
;
|
2006-02-25 12:03:30 +01:00
|
|
|
|
2006-02-01 00:09:52 +01:00
|
|
|
export_parameters();
|
|
|
|
export_color();
|
|
|
|
export_envelope();
|
|
|
|
export_image();
|
|
|
|
export_filter();
|
|
|
|
export_rule();
|
|
|
|
export_style();
|
|
|
|
export_layer();
|
|
|
|
export_stroke();
|
|
|
|
export_datasource_cache();
|
2006-02-25 12:03:30 +01:00
|
|
|
export_point_symbolizer();
|
|
|
|
export_line_symbolizer();
|
|
|
|
export_line_pattern_symbolizer();
|
|
|
|
export_polygon_symbolizer();
|
|
|
|
export_polygon_pattern_symbolizer();
|
|
|
|
export_raster_symbolizer();
|
|
|
|
export_text_symbolizer();
|
|
|
|
|
2006-02-20 02:34:02 +01:00
|
|
|
class_<coord<double,2> >("Coord",init<double,double>())
|
2006-02-01 00:09:52 +01:00
|
|
|
.def_readwrite("x", &coord<double,2>::x)
|
|
|
|
.def_readwrite("y", &coord<double,2>::y)
|
|
|
|
;
|
|
|
|
|
|
|
|
export_map();
|
|
|
|
|
|
|
|
def("render_to_file",&render_to_file);
|
|
|
|
def("render",&render);
|
|
|
|
register_ptr_to_python<filter_ptr>();
|
|
|
|
}
|