mapnik/plugins/input/rasterlite/rasterlite_featureset.cpp

147 lines
5.2 KiB
C++
Raw Normal View History

2009-12-16 21:02:06 +01:00
/*****************************************************************************
*
2009-12-16 21:02:06 +01:00
* This file is part of Mapnik (c++ mapping toolkit)
*
2014-11-20 15:25:50 +01:00
* Copyright (C) 2014 Artem Pavlenko
2009-12-16 21:02:06 +01: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,
* 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
*
*****************************************************************************/
#include "rasterlite_featureset.hpp"
// mapnik
2012-04-08 02:20:56 +02:00
#include <mapnik/debug.hpp>
2013-03-13 02:36:03 +01:00
#include <mapnik/image_data.hpp>
2009-12-16 21:02:06 +01:00
#include <mapnik/image_util.hpp>
2013-03-13 02:36:03 +01:00
#include <mapnik/query.hpp>
#include <mapnik/raster.hpp>
#include <mapnik/feature.hpp>
#include <mapnik/feature_factory.hpp>
2014-01-29 00:05:10 +01:00
#include <cstring>
2009-12-16 21:02:06 +01:00
using mapnik::coord2d;
using mapnik::box2d;
using mapnik::feature_ptr;
using mapnik::geometry_type;
2009-12-16 21:02:06 +01:00
using mapnik::query;
using mapnik::feature_factory;
2009-12-16 21:02:06 +01:00
rasterlite_featureset::rasterlite_featureset(void* dataset,
rasterlite_query q)
: dataset_(dataset),
gquery_(q),
2012-02-02 18:00:02 +01:00
first_(true),
ctx_(std::make_shared<mapnik::context_type>())
2009-12-16 21:02:06 +01:00
{
rasterliteSetBackgroundColor(dataset_, 255, 0, 255);
rasterliteSetTransparentColor(dataset_, 255, 0, 255);
}
rasterlite_featureset::~rasterlite_featureset()
{
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Closing";
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
rasterliteClose(dataset_);
2009-12-16 21:02:06 +01:00
}
feature_ptr rasterlite_featureset::next()
{
2010-11-14 15:58:29 +01:00
if (first_)
{
first_ = false;
2013-10-22 22:05:44 +02:00
MAPNIK_LOG_DEBUG(gdal) << "rasterlite_featureset: Next feature in Dataset=" << &dataset_;
return mapnik::util::apply_visitor(query_dispatch(*this), gquery_);
2010-11-14 15:58:29 +01:00
}
return feature_ptr();
2009-12-16 21:02:06 +01:00
}
feature_ptr rasterlite_featureset::get_feature(mapnik::query const& q)
{
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Running get_feature";
2009-12-16 21:02:06 +01:00
2012-02-02 18:00:02 +01:00
feature_ptr feature(feature_factory::create(ctx_,1));
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
double x0, y0, x1, y1;
rasterliteGetExtent (dataset_, &x0, &y0, &x1, &y1);
2009-12-16 21:02:06 +01:00
box2d<double> raster_extent(x0, y0, x1, y1);
2010-11-14 15:58:29 +01:00
box2d<double> intersect = raster_extent.intersect(q.get_bbox());
2009-12-16 21:02:06 +01:00
const int width = static_cast<int>(std::get<0>(q.resolution()) * intersect.width() + 0.5);
const int height = static_cast<int>(std::get<0>(q.resolution()) * intersect.height() + 0.5);
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
const double pixel_size = (intersect.width() >= intersect.height()) ?
(intersect.width() / (double) width) : (intersect.height() / (double) height);
2009-12-16 21:02:06 +01:00
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Raster extent=" << raster_extent;
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: View extent=" << q.get_bbox();
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Intersect extent=" << intersect;
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Query resolution=" << std::get<0>(q.resolution()) << "," << std::get<1>(q.resolution());
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Size=" << width << " " << height;
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Pixel Size=" << pixel_size;
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
if (width > 0 && height > 0)
{
2010-11-19 00:03:00 +01:00
int size = 0;
void* raster = 0;
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
if (rasterliteGetRawImageByRect(dataset_,
intersect.minx(),
intersect.miny(),
intersect.maxx(),
intersect.maxy(),
pixel_size,
width,
height,
GAIA_RGBA_ARRAY,
&raster,
&size) == RASTERLITE_OK)
2010-11-14 15:58:29 +01:00
{
if (size > 0)
{
mapnik::raster_ptr rasterp = std::make_shared<mapnik::raster>(intersect, width, height, 1.0);
2013-03-13 02:36:03 +01:00
mapnik::image_data_32 & image = rasterp->data_;
2010-11-14 15:58:29 +01:00
image.set(0xffffffff);
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
unsigned char* raster_data = static_cast<unsigned char*>(raster);
unsigned char* image_data = image.getBytes();
2009-12-16 21:02:06 +01:00
2014-01-29 00:05:10 +01:00
std::memcpy(image_data, raster_data, size);
2009-12-16 21:02:06 +01:00
2013-03-13 02:36:03 +01:00
feature->set_raster(rasterp);
2009-12-16 21:02:06 +01:00
2010-11-14 15:58:29 +01:00
free (raster);
2009-12-16 21:02:06 +01:00
MAPNIK_LOG_DEBUG(rasterlite) << "rasterlite_featureset: Done";
2010-11-14 15:58:29 +01:00
}
else
{
MAPNIK_LOG_ERROR(rasterlite) << "Rasterlite Plugin: Error " << rasterliteGetLastError (dataset_);
2010-11-14 15:58:29 +01:00
}
}
2010-11-14 15:58:29 +01:00
return feature;
}
return feature_ptr();
2009-12-16 21:02:06 +01:00
}
feature_ptr rasterlite_featureset::get_feature_at_point(mapnik::coord2d const& pt)
{
2010-11-14 15:58:29 +01:00
return feature_ptr();
2009-12-16 21:02:06 +01:00
}