mapnik/plugins/input/raster/raster_datasource.cpp

173 lines
4.8 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* Copyright (C) 2006 Artem Pavlenko
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* 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,
2005-06-14 17:06:59 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
2006-03-31 12:32:02 +02:00
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
2005-06-14 17:06:59 +02:00
*
2006-03-31 12:32:02 +02:00
* 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
*
*****************************************************************************/
2005-06-14 17:06:59 +02:00
//$Id: raster_datasource.cc 44 2005-04-22 18:53:54Z pavlenko $
// boost
#include <boost/lexical_cast.hpp>
#include <boost/filesystem/operations.hpp>
// mapnik
#include <mapnik/image_reader.hpp>
2005-06-14 17:06:59 +02:00
2005-09-21 22:27:37 +02:00
#include "raster_featureset.hpp"
#include "raster_info.hpp"
#include "raster_datasource.hpp"
2005-06-14 17:06:59 +02:00
using mapnik::datasource;
using mapnik::parameters;
2009-12-16 21:02:06 +01:00
using mapnik::image_reader;
DATASOURCE_PLUGIN(raster_datasource)
2005-06-14 17:06:59 +02:00
using std::clog;
2005-09-21 22:27:37 +02:00
using std::endl;
using boost::lexical_cast;
using boost::bad_lexical_cast;
using mapnik::layer_descriptor;
using mapnik::featureset_ptr;
using mapnik::query;
using mapnik::coord2d;
using mapnik::datasource_exception;
2005-09-21 22:27:37 +02:00
raster_datasource::raster_datasource(const parameters& params, bool bind)
: datasource(params),
desc_(*params.get<std::string>("type"),"utf-8")
2005-06-14 17:06:59 +02:00
{
#ifdef MAPNIK_DEBUG
std::cout << "\nRaster Plugin: Initializing...\n";
#endif
boost::optional<std::string> file=params.get<std::string>("file");
if (!file) throw datasource_exception("missing <file> parameter ");
boost::optional<std::string> base=params.get<std::string>("base");
if (base)
filename_ = *base + "/" + *file;
else
filename_ = *file;
format_=*params_.get<std::string>("format","tiff");
boost::optional<double> lox = params_.get<double>("lox");
boost::optional<double> loy = params_.get<double>("loy");
boost::optional<double> hix = params_.get<double>("hix");
boost::optional<double> hiy = params_.get<double>("hiy");
if (lox && loy && hix && hiy)
{
extent_.init(*lox,*loy,*hix,*hiy);
}
else throw datasource_exception("<lox> <loy> <hix> <hiy> are required");
if (bind)
{
this->bind();
}
}
void raster_datasource::bind() const
{
if (is_bound_) return;
if (!boost::filesystem::exists(filename_)) throw datasource_exception(filename_ + " does not exist");
try
{
2009-12-16 21:02:06 +01:00
std::auto_ptr<image_reader> reader(mapnik::get_image_reader(filename_, format_));
if (reader.get())
{
width_ = reader->width();
height_ = reader->height();
#ifdef MAPNIK_DEBUG
std::cout << "Raster Plugin: RASTER SIZE(" << width_ << "," << height_ << ")\n";
#endif
}
}
catch (...)
{
std::cerr << "Exception caught\n";
}
is_bound_ = true;
2005-06-14 17:06:59 +02:00
}
raster_datasource::~raster_datasource() {}
2005-06-14 17:06:59 +02:00
int raster_datasource::type() const
{
return datasource::Raster;
}
2005-09-21 22:27:37 +02:00
std::string raster_datasource::name_="raster";
2005-06-14 17:06:59 +02:00
std::string raster_datasource::name()
{
return name_;
}
2009-12-16 21:02:06 +01:00
mapnik::box2d<double> raster_datasource::envelope() const
2005-06-14 17:06:59 +02:00
{
return extent_;
}
layer_descriptor raster_datasource::get_descriptor() const
2005-06-14 17:06:59 +02:00
{
2005-09-21 22:27:37 +02:00
return desc_;
2005-06-14 17:06:59 +02:00
}
2005-09-21 22:27:37 +02:00
featureset_ptr raster_datasource::features(query const& q) const
2005-06-14 17:06:59 +02:00
{
if (!is_bound_) bind();
mapnik::CoordTransform t(width_,height_,extent_,0,0);
2009-12-16 21:02:06 +01:00
mapnik::box2d<double> intersect=extent_.intersect(q.get_bbox());
mapnik::box2d<double> ext=t.forward(intersect);
int width = int(ext.maxx() + 0.5) - int(ext.minx() + 0.5);
int height = int(ext.maxy() + 0.5) - int(ext.miny() + 0.5);
#ifdef MAPNIK_DEBUG
std::cout << "Raster Plugin: BOX SIZE(" << width << " " << height << ")\n";
#endif
if (width * height > 512*512)
{
#ifdef MAPNIK_DEBUG
std::cout << "Raster Plugin: TILED policy\n";
#endif
tiled_file_policy policy(filename_,format_, 256 , extent_,q.get_bbox(), width_,height_);
return featureset_ptr(new raster_featureset<tiled_file_policy>(policy,extent_,q));
}
else
{
#ifdef MAPNIK_DEBUG
std::cout << "Raster Plugin: SINGLE FILE\n";
#endif
raster_info info(filename_,format_,extent_,width_,height_);
single_file_policy policy(info);
return featureset_ptr(new raster_featureset<single_file_policy>(policy,extent_,q));
}
2005-06-14 17:06:59 +02:00
}
featureset_ptr raster_datasource::features_at_point(coord2d const&) const
{
return featureset_ptr();
}