mapnik/plugins/input/raster/raster_datasource.cpp

228 lines
7.4 KiB
C++
Raw Normal View History

2006-03-31 12:32:02 +02:00
/*****************************************************************************
*
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
*
2015-06-16 12:49:16 +02:00
* Copyright (C) 2015 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
*
*****************************************************************************/
2010-11-14 15:41:49 +01:00
// boost
// mapnik
#include <mapnik/util/fs.hpp>
2012-04-08 02:20:56 +02:00
#include <mapnik/debug.hpp>
#include <mapnik/view_transform.hpp>
#include <mapnik/image_util.hpp>
#include <mapnik/image_reader.hpp>
2012-04-08 02:20:56 +02:00
#include <mapnik/boolean.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::layer_descriptor;
using mapnik::featureset_ptr;
using mapnik::query;
using mapnik::coord2d;
using mapnik::datasource_exception;
using mapnik::datasource;
using mapnik::parameters;
using mapnik::image_reader;
DATASOURCE_PLUGIN(raster_datasource)
2005-09-21 22:27:37 +02:00
raster_datasource::raster_datasource(parameters const& params)
: datasource(params),
desc_(raster_datasource::name(), "utf-8"),
extent_initialized_(false)
2005-06-14 17:06:59 +02:00
{
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Initializing...";
2010-11-14 15:41:49 +01:00
boost::optional<std::string> file = params.get<std::string>("file");
2010-11-19 00:15:59 +01:00
if (! file) throw datasource_exception("Raster Plugin: missing <file> parameter ");
2010-11-14 15:41:49 +01:00
boost::optional<std::string> base = params.get<std::string>("base");
if (base)
filename_ = *base + "/" + *file;
2010-11-14 15:41:49 +01:00
else
filename_ = *file;
2010-11-14 15:41:49 +01:00
multi_tiles_ = *params.get<mapnik::boolean_type>("multi", false);
tile_size_ = *params.get<mapnik::value_integer>("tile_size", 256);
tile_stride_ = *params.get<mapnik::value_integer>("tile_stride", 1);
boost::optional<std::string> format_from_filename = mapnik::type_from_filename(*file);
format_ = *params.get<std::string>("format",format_from_filename?(*format_from_filename) : "tiff");
2010-11-14 15:41:49 +01:00
boost::optional<mapnik::value_double> lox = params.get<mapnik::value_double>("lox");
boost::optional<mapnik::value_double> loy = params.get<mapnik::value_double>("loy");
boost::optional<mapnik::value_double> hix = params.get<mapnik::value_double>("hix");
boost::optional<mapnik::value_double> hiy = params.get<mapnik::value_double>("hiy");
boost::optional<std::string> ext = params.get<std::string>("extent");
2010-11-14 15:41:49 +01:00
if (lox && loy && hix && hiy)
{
extent_.init(*lox, *loy, *hix, *hiy);
extent_initialized_ = true;
}
else if (ext)
{
extent_initialized_ = extent_.from_string(*ext);
}
else //bounding box from image_reader
{
std::unique_ptr<image_reader> reader(mapnik::get_image_reader(*file));
auto bbox = reader->bounding_box();
if (bbox)
{
extent_ = *bbox;
extent_initialized_ = true;
}
}
2010-11-14 15:41:49 +01:00
if (! extent_initialized_)
{
2011-04-13 19:50:40 +02:00
throw datasource_exception("Raster Plugin: valid <extent> or <lox> <loy> <hix> <hiy> are required");
}
if (multi_tiles_)
{
boost::optional<mapnik::value_integer> x_width = params.get<mapnik::value_integer>("x_width");
boost::optional<mapnik::value_integer> y_width = params.get<mapnik::value_integer>("y_width");
if (! x_width)
{
throw datasource_exception("Raster Plugin: x-width parameter not supplied for multi-tiled data source.");
}
if (! y_width)
{
throw datasource_exception("Raster Plugin: y-width parameter not supplied for multi-tiled data source.");
}
width_ = x_width.get() * tile_size_;
height_ = y_width.get() * tile_size_;
}
else
2010-11-14 15:41:49 +01:00
{
if (!mapnik::util::exists(filename_))
{
throw datasource_exception("Raster Plugin: " + filename_ + " does not exist");
}
try
{
std::unique_ptr<image_reader> reader(mapnik::get_image_reader(filename_, format_));
if (reader.get())
{
width_ = reader->width();
height_ = reader->height();
}
}
catch (mapnik::image_reader_exception const& ex)
{
throw datasource_exception("Raster Plugin: image reader exception: " + std::string(ex.what()));
}
2011-10-31 18:43:56 +01:00
catch (std::exception const& ex)
{
throw datasource_exception("Raster Plugin: " + std::string(ex.what()));
}
catch (...)
{
throw datasource_exception("Raster Plugin: image reader unknown exception caught");
}
2010-11-14 15:41:49 +01:00
}
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Raster size=" << width_ << "," << height_;
2005-06-14 17:06:59 +02:00
}
2010-11-14 15:41:49 +01:00
raster_datasource::~raster_datasource()
{
}
2005-06-14 17:06:59 +02:00
mapnik::datasource::datasource_t raster_datasource::type() const
2005-06-14 17:06:59 +02:00
{
return datasource::Raster;
}
const char * raster_datasource::name()
2005-06-14 17:06:59 +02:00
{
2010-11-14 15:41:49 +01:00
return "raster";
2005-06-14 17:06:59 +02:00
}
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_;
}
boost::optional<mapnik::datasource_geometry_t> raster_datasource::get_geometry_type() const
{
return boost::optional<mapnik::datasource_geometry_t>();
}
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
{
mapnik::view_transform t(width_, height_, extent_, 0, 0);
2010-11-14 15:41:49 +01:00
mapnik::box2d<double> intersect = extent_.intersect(q.get_bbox());
mapnik::box2d<double> ext = t.forward(intersect);
2010-11-14 15:41:49 +01:00
const int width = int(ext.maxx() + 0.5) - int(ext.minx() + 0.5);
const int height = int(ext.maxy() + 0.5) - int(ext.miny() + 0.5);
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Box size=" << width << "," << height;
2010-11-14 15:41:49 +01:00
if (multi_tiles_)
{
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Multi-Tiled policy";
tiled_multi_file_policy policy(filename_, format_, tile_size_, extent_, q.get_bbox(), width_, height_, tile_stride_);
return std::make_shared<raster_featureset<tiled_multi_file_policy> >(policy, extent_, q);
}
else if (width * height > static_cast<int>(tile_size_ * tile_size_ << 2))
2010-11-14 15:41:49 +01:00
{
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Tiled policy";
2010-11-14 15:41:49 +01:00
tiled_file_policy policy(filename_, format_, tile_size_, extent_, q.get_bbox(), width_, height_);
return std::make_shared<raster_featureset<tiled_file_policy> >(policy, extent_, q);
2010-11-14 15:41:49 +01:00
}
else
{
MAPNIK_LOG_DEBUG(raster) << "raster_datasource: Single file";
2010-11-14 15:41:49 +01:00
raster_info info(filename_, format_, extent_, width_, height_);
single_file_policy policy(info);
return std::make_shared<raster_featureset<single_file_policy> >(policy, extent_, q);
2010-11-14 15:41:49 +01:00
}
2005-06-14 17:06:59 +02:00
}
featureset_ptr raster_datasource::features_at_point(coord2d const&, double tol) const
{
MAPNIK_LOG_WARN(raster) << "raster_datasource: feature_at_point not supported";
return featureset_ptr();
}