2007-04-25 21:15:38 +02:00
|
|
|
/*****************************************************************************
|
2011-11-14 04:37:50 +01:00
|
|
|
*
|
2007-04-25 21:15:38 +02:00
|
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
|
|
*
|
2021-01-05 15:39:07 +01:00
|
|
|
* Copyright (C) 2021 Artem Pavlenko
|
2007-04-25 21:15:38 +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,
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-05-17 00:17:50 +02:00
|
|
|
// mapnik
|
2016-03-03 01:48:07 +01:00
|
|
|
#include <mapnik/datasource.hpp>
|
2011-11-08 12:50:56 +01:00
|
|
|
#include <mapnik/global.hpp>
|
2012-04-08 02:20:56 +02:00
|
|
|
#include <mapnik/debug.hpp>
|
2015-01-22 18:39:37 +01:00
|
|
|
#include <mapnik/image.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/raster.hpp>
|
2014-08-28 11:29:04 +02:00
|
|
|
#include <mapnik/view_transform.hpp>
|
2013-01-04 18:23:06 +01:00
|
|
|
#include <mapnik/feature.hpp>
|
2011-05-17 00:17:50 +02:00
|
|
|
#include <mapnik/feature_factory.hpp>
|
2014-10-01 03:35:07 +02:00
|
|
|
|
2013-01-17 22:53:48 +01:00
|
|
|
// stl
|
|
|
|
#include <cmath>
|
2014-01-18 04:13:53 +01:00
|
|
|
#include <memory>
|
2014-10-01 03:35:07 +02:00
|
|
|
#include <sstream>
|
2013-01-17 22:53:48 +01:00
|
|
|
|
2012-04-08 02:20:56 +02:00
|
|
|
#include "gdal_featureset.hpp"
|
|
|
|
#include <gdal_priv.h>
|
|
|
|
|
2009-12-16 21:02:06 +01:00
|
|
|
using mapnik::box2d;
|
2007-04-25 21:15:38 +02:00
|
|
|
using mapnik::feature_ptr;
|
2014-08-28 11:17:15 +02:00
|
|
|
using mapnik::view_transform;
|
2010-09-19 19:52:17 +02:00
|
|
|
using mapnik::datasource_exception;
|
2011-05-17 00:17:50 +02:00
|
|
|
using mapnik::feature_factory;
|
2007-04-25 21:15:38 +02:00
|
|
|
|
2016-06-13 11:14:59 +02:00
|
|
|
#ifdef MAPNIK_LOG
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
void get_overview_meta(GDALRasterBand* band)
|
|
|
|
{
|
|
|
|
int band_overviews = band->GetOverviewCount();
|
|
|
|
if (band_overviews > 0)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: " << band_overviews << " overviews found!";
|
|
|
|
|
|
|
|
for (int b = 0; b < band_overviews; b++)
|
|
|
|
{
|
|
|
|
GDALRasterBand * overview = band->GetOverview(b);
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "Overview= " << b
|
|
|
|
<< " Width=" << overview->GetXSize()
|
|
|
|
<< " Height=" << overview->GetYSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: No overviews found!";
|
|
|
|
}
|
|
|
|
|
|
|
|
int bsx,bsy;
|
|
|
|
double scale;
|
|
|
|
band->GetBlockSize(&bsx, &bsy);
|
|
|
|
scale = band->GetScale();
|
|
|
|
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "Block=" << bsx << "x" << bsy
|
|
|
|
<< " Scale=" << scale
|
|
|
|
<< " Type=" << GDALGetDataTypeName(band->GetRasterDataType())
|
|
|
|
<< "Color=" << GDALGetColorInterpretationName(band->GetColorInterpretation());
|
|
|
|
}
|
|
|
|
} // anonymous ns
|
|
|
|
#endif
|
2011-10-22 02:46:29 +02:00
|
|
|
gdal_featureset::gdal_featureset(GDALDataset& dataset,
|
|
|
|
int band,
|
|
|
|
gdal_query q,
|
|
|
|
mapnik::box2d<double> extent,
|
2012-08-15 21:37:17 +02:00
|
|
|
unsigned width,
|
|
|
|
unsigned height,
|
2011-10-22 02:46:29 +02:00
|
|
|
int nbands,
|
|
|
|
double dx,
|
|
|
|
double dy,
|
2014-01-18 04:13:53 +01:00
|
|
|
boost::optional<double> const& nodata,
|
2018-03-30 22:40:30 +02:00
|
|
|
double nodata_tolerance,
|
|
|
|
int64_t max_image_area)
|
2011-11-14 04:37:50 +01:00
|
|
|
: dataset_(dataset),
|
2013-09-20 15:00:11 +02:00
|
|
|
ctx_(std::make_shared<mapnik::context_type>()),
|
2011-11-14 04:37:50 +01:00
|
|
|
band_(band),
|
|
|
|
gquery_(q),
|
|
|
|
raster_extent_(extent),
|
|
|
|
raster_width_(width),
|
|
|
|
raster_height_(height),
|
|
|
|
dx_(dx),
|
|
|
|
dy_(dy),
|
|
|
|
nbands_(nbands),
|
2012-04-04 01:06:36 +02:00
|
|
|
nodata_value_(nodata),
|
2014-01-18 04:13:53 +01:00
|
|
|
nodata_tolerance_(nodata_tolerance),
|
2018-03-30 22:40:30 +02:00
|
|
|
max_image_area_(max_image_area),
|
2012-01-17 23:58:00 +01:00
|
|
|
first_(true)
|
2010-11-14 15:54:28 +01:00
|
|
|
{
|
2013-09-25 23:37:21 +02:00
|
|
|
ctx_->push("nodata");
|
2010-11-14 15:54:28 +01:00
|
|
|
}
|
2007-04-25 21:15:38 +02:00
|
|
|
|
2010-05-30 05:23:59 +02:00
|
|
|
gdal_featureset::~gdal_featureset()
|
|
|
|
{
|
|
|
|
}
|
2007-04-25 21:15:38 +02:00
|
|
|
|
|
|
|
feature_ptr gdal_featureset::next()
|
|
|
|
{
|
2010-02-03 17:56:42 +01:00
|
|
|
if (first_)
|
|
|
|
{
|
2010-08-18 22:42:00 +02:00
|
|
|
first_ = false;
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Next feature in Dataset=" << &dataset_;
|
2014-08-12 14:40:45 +02:00
|
|
|
return mapnik::util::apply_visitor(query_dispatch(*this), gquery_);
|
2010-02-03 17:56:42 +01:00
|
|
|
}
|
|
|
|
return feature_ptr();
|
2009-09-27 19:23:09 +02:00
|
|
|
}
|
2009-05-15 12:31:49 +02:00
|
|
|
|
2018-06-10 19:36:50 +02:00
|
|
|
void gdal_featureset::find_best_overview(int bandNumber,
|
|
|
|
int ideal_width,
|
|
|
|
int ideal_height,
|
|
|
|
int & current_width,
|
|
|
|
int & current_height) const
|
|
|
|
{
|
|
|
|
GDALRasterBand * band = dataset_.GetRasterBand(bandNumber);
|
|
|
|
int band_overviews = band->GetOverviewCount();
|
|
|
|
if (band_overviews > 0)
|
|
|
|
{
|
|
|
|
for (int b = 0; b < band_overviews; b++)
|
|
|
|
{
|
|
|
|
GDALRasterBand * overview = band->GetOverview(b);
|
|
|
|
int overview_width = overview->GetXSize();
|
|
|
|
int overview_height = overview->GetYSize();
|
|
|
|
if ((overview_width < current_width ||
|
|
|
|
overview_height < current_height) &&
|
|
|
|
ideal_width <= overview_width &&
|
|
|
|
ideal_height <= overview_height)
|
|
|
|
{
|
|
|
|
current_width = overview_width;
|
|
|
|
current_height = overview_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-27 19:23:09 +02:00
|
|
|
feature_ptr gdal_featureset::get_feature(mapnik::query const& q)
|
|
|
|
{
|
2012-01-16 23:55:44 +01:00
|
|
|
feature_ptr feature = feature_factory::create(ctx_,1);
|
2013-09-25 23:37:21 +02:00
|
|
|
int raster_has_nodata = 0;
|
|
|
|
double raster_nodata = 0;
|
2010-02-03 17:56:42 +01:00
|
|
|
GDALRasterBand * red = 0;
|
|
|
|
GDALRasterBand * green = 0;
|
|
|
|
GDALRasterBand * blue = 0;
|
|
|
|
GDALRasterBand * alpha = 0;
|
2011-11-14 04:37:50 +01:00
|
|
|
GDALRasterBand * grey = 0;
|
2014-10-31 04:32:56 +01:00
|
|
|
CPLErr raster_io_error = CE_None;
|
2012-02-02 02:37:35 +01:00
|
|
|
|
2010-09-18 21:19:27 +02:00
|
|
|
/*
|
2012-04-09 12:05:49 +02:00
|
|
|
#ifdef MAPNIK_LOG
|
2011-11-14 04:37:50 +01:00
|
|
|
double tr[6];
|
|
|
|
dataset_.GetGeoTransform(tr);
|
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
const double dx = tr[1];
|
|
|
|
const double dy = tr[5];
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: dx_=" << dx_ << " dx=" << dx << " dy_=" << dy_ << "dy=" << dy;
|
2012-04-08 02:20:56 +02:00
|
|
|
#endif
|
2010-09-18 21:19:27 +02:00
|
|
|
*/
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2014-08-28 11:17:15 +02:00
|
|
|
view_transform t(raster_width_, raster_height_, raster_extent_, 0, 0);
|
2010-09-18 21:19:27 +02:00
|
|
|
box2d<double> intersect = raster_extent_.intersect(q.get_bbox());
|
2010-02-03 17:56:42 +01:00
|
|
|
box2d<double> box = t.forward(intersect);
|
2017-06-13 16:17:54 +02:00
|
|
|
double filter_factor = q.get_filter_factor();
|
2009-09-27 19:23:09 +02:00
|
|
|
|
2010-03-17 09:34:43 +01:00
|
|
|
//size of resized output pixel in source image domain
|
2013-10-11 13:35:34 +02:00
|
|
|
double margin_x = 1.0 / (std::fabs(dx_) * std::get<0>(q.resolution()));
|
|
|
|
double margin_y = 1.0 / (std::fabs(dy_) * std::get<1>(q.resolution()));
|
2018-03-20 22:01:32 +01:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: margin_x=" << margin_x;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: margin_y=" << margin_y;
|
2010-03-17 09:34:43 +01:00
|
|
|
if (margin_x < 1)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-03-17 09:34:43 +01:00
|
|
|
margin_x = 1.0;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
2010-03-17 09:34:43 +01:00
|
|
|
if (margin_y < 1)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-03-17 09:34:43 +01:00
|
|
|
margin_y = 1.0;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
|
|
|
|
2010-03-03 04:23:53 +01:00
|
|
|
//select minimum raster containing whole box
|
2019-03-22 19:23:32 +01:00
|
|
|
int x_off = static_cast<int>(std::floor((box.minx() - margin_x) + .5));
|
|
|
|
int y_off = static_cast<int>(std::floor((box.miny() - margin_y) + .5));
|
|
|
|
int end_x = static_cast<int>(std::floor((box.maxx() + margin_x) + .5));
|
|
|
|
int end_y = static_cast<int>(std::floor((box.maxy() + margin_y) + .5));
|
2018-03-20 22:01:32 +01:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: x_off=" << x_off;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: y_off=" << y_off;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: end_x=" << end_x;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: end_y=" << end_y;
|
2011-10-22 02:46:29 +02:00
|
|
|
|
2010-03-03 04:23:53 +01:00
|
|
|
//clip to available data
|
|
|
|
if (x_off < 0)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-03-03 04:23:53 +01:00
|
|
|
x_off = 0;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
2010-03-03 04:23:53 +01:00
|
|
|
if (y_off < 0)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-03-03 04:23:53 +01:00
|
|
|
y_off = 0;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
2010-09-18 21:19:27 +02:00
|
|
|
if (end_x > (int)raster_width_)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-09-18 21:19:27 +02:00
|
|
|
end_x = raster_width_;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
2010-09-18 21:19:27 +02:00
|
|
|
if (end_y > (int)raster_height_)
|
2011-10-22 02:46:29 +02:00
|
|
|
{
|
2010-09-18 21:19:27 +02:00
|
|
|
end_y = raster_height_;
|
2011-10-22 02:46:29 +02:00
|
|
|
}
|
2018-03-20 22:01:32 +01:00
|
|
|
|
|
|
|
// width and height of the portion of the source image we are requesting
|
2010-03-03 04:23:53 +01:00
|
|
|
int width = end_x - x_off;
|
|
|
|
int height = end_y - y_off;
|
2011-10-22 02:46:29 +02:00
|
|
|
|
2018-03-20 22:01:32 +01:00
|
|
|
// In many cases we want GDAL to simply return the exact image so we
|
|
|
|
// can handle resampling internally in mapnik. In other cases such as
|
|
|
|
// when overviews exist or when the image allocated might be too large
|
|
|
|
// we want to utilize some resampling in GDAL instead.
|
|
|
|
int im_height = height;
|
|
|
|
int im_width = width;
|
|
|
|
double im_offset_x = x_off;
|
|
|
|
double im_offset_y = y_off;
|
2018-06-10 19:36:50 +02:00
|
|
|
int current_width = static_cast<int>(raster_width_);
|
|
|
|
int current_height = static_cast<int>(raster_height_);
|
|
|
|
|
|
|
|
// loop through overviews -- snap up in resolution to closest overview
|
|
|
|
// if necessary we find an image size that most resembles
|
|
|
|
// the resolution of our output image.
|
|
|
|
const double width_res = std::get<0>(q.resolution());
|
|
|
|
const double height_res = std::get<1>(q.resolution());
|
|
|
|
const int ideal_raster_width = static_cast<int>(
|
|
|
|
std::floor(raster_extent_.width() *
|
|
|
|
width_res * filter_factor) + .5);
|
|
|
|
const int ideal_raster_height = static_cast<int>(
|
|
|
|
std::floor(raster_extent_.height() *
|
|
|
|
height_res * filter_factor) + .5);
|
2018-03-20 22:01:32 +01:00
|
|
|
|
|
|
|
if (band_ > 0 && band_ < nbands_)
|
|
|
|
{
|
2018-06-10 19:36:50 +02:00
|
|
|
find_best_overview(band_,
|
|
|
|
ideal_raster_width,
|
|
|
|
ideal_raster_height,
|
|
|
|
current_width,
|
|
|
|
current_height);
|
2018-03-20 22:01:32 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
for (int i = 0; i < nbands_; ++i)
|
|
|
|
{
|
2018-06-10 19:36:50 +02:00
|
|
|
find_best_overview(i + 1,
|
|
|
|
ideal_raster_width,
|
|
|
|
ideal_raster_height,
|
|
|
|
current_width,
|
|
|
|
current_height);
|
2018-03-20 22:01:32 +01:00
|
|
|
}
|
|
|
|
}
|
2018-06-10 19:36:50 +02:00
|
|
|
|
|
|
|
if (current_width != (int)raster_width_ ||
|
|
|
|
current_height != (int)raster_height_)
|
2018-03-20 22:01:32 +01:00
|
|
|
{
|
|
|
|
if (current_width != (int)raster_width_)
|
|
|
|
{
|
|
|
|
double ratio = (double)current_width / (double)raster_width_;
|
2018-05-24 15:23:40 +02:00
|
|
|
im_offset_x = std::floor(ratio * im_offset_x);
|
|
|
|
im_width = static_cast<int>(std::ceil(ratio * im_width));
|
2018-03-20 22:01:32 +01:00
|
|
|
}
|
|
|
|
if (current_height != (int)raster_height_)
|
|
|
|
{
|
|
|
|
double ratio = (double)current_height / (double)raster_height_;
|
2018-05-24 15:23:40 +02:00
|
|
|
im_offset_y = std::floor(ratio * im_offset_y);
|
|
|
|
im_height = static_cast<int>(std::ceil(ratio * im_height));
|
2018-03-20 22:01:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int64_t im_area = (int64_t)im_width * (int64_t)im_height;
|
2018-03-30 22:40:30 +02:00
|
|
|
if (im_area > max_image_area_)
|
2018-03-20 22:01:32 +01:00
|
|
|
{
|
2018-03-30 22:40:30 +02:00
|
|
|
int adjusted_width = static_cast<int>(std::round(std::sqrt(max_image_area_ * ((double)im_width / (double)im_height))));
|
|
|
|
int adjusted_height = static_cast<int>(std::round(std::sqrt(max_image_area_ * ((double)im_height / (double)im_width))));
|
2018-03-20 22:01:32 +01:00
|
|
|
if (adjusted_width < 1)
|
|
|
|
{
|
|
|
|
adjusted_width = 1;
|
|
|
|
}
|
|
|
|
if (adjusted_height < 1)
|
|
|
|
{
|
|
|
|
adjusted_height = 1;
|
|
|
|
}
|
|
|
|
double ratio_x = (double)adjusted_width / (double)im_width;
|
|
|
|
double ratio_y = (double)adjusted_height / (double)im_height;
|
|
|
|
im_offset_x = ratio_x * im_offset_x;
|
|
|
|
im_offset_y = ratio_y * im_offset_y;
|
|
|
|
im_width = adjusted_width;
|
|
|
|
im_height = adjusted_height;
|
|
|
|
current_width = static_cast<int>(std::floor((ratio_x * current_width) + 0.5));
|
|
|
|
current_height = static_cast<int>(std::floor((ratio_y * current_height) + 0.5));
|
|
|
|
}
|
|
|
|
|
2010-03-03 04:23:53 +01:00
|
|
|
//calculate actual box2d of returned raster
|
2018-03-20 22:01:32 +01:00
|
|
|
view_transform t2(current_width, current_height, raster_extent_, 0, 0);
|
|
|
|
box2d<double> feature_raster_extent(im_offset_x, im_offset_y, im_offset_x + im_width, im_offset_y + im_height);
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Feature Raster extent=" << feature_raster_extent;
|
|
|
|
feature_raster_extent = t2.backward(feature_raster_extent);
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Raster extent=" << raster_extent_;
|
2018-03-20 22:01:32 +01:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Feature Raster extent=" << feature_raster_extent;
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: View extent=" << intersect;
|
2013-10-11 13:35:34 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Query resolution=" << std::get<0>(q.resolution()) << "," << std::get<1>(q.resolution());
|
2012-04-09 12:05:49 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: StartX=" << x_off << " StartY=" << y_off << " Width=" << width << " Height=" << height;
|
2018-03-20 22:01:32 +01:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: IM StartX=" << im_offset_x << " StartY=" << im_offset_y << " Width=" << im_width << " Height=" << im_height;
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2010-02-03 17:56:42 +01:00
|
|
|
if (width > 0 && height > 0)
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Requested Image Size=(" << width << "," << height << ")";
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Image Size=(" << im_width << "," << im_height << ")";
|
2017-05-12 15:37:12 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Reading band=" << band_;
|
|
|
|
if (band_ > 0) // we are querying a single band
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
GDALRasterBand * band = dataset_.GetRasterBand(band_);
|
|
|
|
if (band_ > nbands_)
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
std::ostringstream s;
|
|
|
|
s << "GDAL Plugin: " << band_ << " is an invalid band, dataset only has " << nbands_ << "bands";
|
|
|
|
throw datasource_exception(s.str());
|
|
|
|
}
|
|
|
|
GDALDataType band_type = band->GetRasterDataType();
|
|
|
|
switch (band_type)
|
|
|
|
{
|
|
|
|
case GDT_Byte:
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
mapnik::image_gray8 image(im_width, im_height);
|
2017-05-12 15:37:12 +02:00
|
|
|
image.set(std::numeric_limits<std::uint8_t>::max());
|
|
|
|
raster_nodata = band->GetNoDataValue(&raster_has_nodata);
|
|
|
|
raster_io_error = band->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.data(), image.width(), image.height(),
|
|
|
|
GDT_Byte, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure)
|
2015-02-04 22:41:58 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2015-02-04 22:41:58 +01:00
|
|
|
}
|
2017-06-13 16:17:54 +02:00
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
2017-05-12 15:37:12 +02:00
|
|
|
// set nodata value to be used in raster colorizer
|
|
|
|
if (nodata_value_) raster->set_nodata(*nodata_value_);
|
|
|
|
else raster->set_nodata(raster_nodata);
|
|
|
|
feature->set_raster(raster);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GDT_Float64:
|
|
|
|
case GDT_Float32:
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
mapnik::image_gray32f image(im_width, im_height);
|
2017-05-12 15:37:12 +02:00
|
|
|
image.set(std::numeric_limits<float>::max());
|
|
|
|
raster_nodata = band->GetNoDataValue(&raster_has_nodata);
|
|
|
|
raster_io_error = band->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.data(), image.width(), image.height(),
|
|
|
|
GDT_Float32, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure)
|
2014-12-03 18:16:42 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2015-02-04 22:41:58 +01:00
|
|
|
}
|
2017-06-13 16:17:54 +02:00
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
2017-05-12 15:37:12 +02:00
|
|
|
// set nodata value to be used in raster colorizer
|
|
|
|
if (nodata_value_) raster->set_nodata(*nodata_value_);
|
|
|
|
else raster->set_nodata(raster_nodata);
|
|
|
|
feature->set_raster(raster);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GDT_UInt16:
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
mapnik::image_gray16 image(im_width, im_height);
|
2017-05-12 15:37:12 +02:00
|
|
|
image.set(std::numeric_limits<std::uint16_t>::max());
|
|
|
|
raster_nodata = band->GetNoDataValue(&raster_has_nodata);
|
|
|
|
raster_io_error = band->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.data(), image.width(), image.height(),
|
|
|
|
GDT_UInt16, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure)
|
2015-02-04 22:41:58 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2015-02-04 22:41:58 +01:00
|
|
|
}
|
2017-06-13 16:17:54 +02:00
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
2017-05-12 15:37:12 +02:00
|
|
|
// set nodata value to be used in raster colorizer
|
|
|
|
if (nodata_value_) raster->set_nodata(*nodata_value_);
|
|
|
|
else raster->set_nodata(raster_nodata);
|
|
|
|
feature->set_raster(raster);
|
|
|
|
break;
|
|
|
|
}
|
2020-02-07 16:19:59 +01:00
|
|
|
case GDT_Int32:
|
|
|
|
{
|
|
|
|
mapnik::image_gray32s image(im_width, im_height);
|
|
|
|
image.set(std::numeric_limits<std::int32_t>::max());
|
|
|
|
raster_nodata = band->GetNoDataValue(&raster_has_nodata);
|
|
|
|
raster_io_error = band->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.data(), image.width(), image.height(),
|
|
|
|
GDT_Int32, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure)
|
|
|
|
{
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
|
|
|
// set nodata value to be used in raster colorizer
|
|
|
|
if (nodata_value_) raster->set_nodata(*nodata_value_);
|
|
|
|
else raster->set_nodata(raster_nodata);
|
|
|
|
feature->set_raster(raster);
|
|
|
|
break;
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
default:
|
|
|
|
case GDT_Int16:
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
mapnik::image_gray16s image(im_width, im_height);
|
2017-05-12 15:37:12 +02:00
|
|
|
image.set(std::numeric_limits<std::int16_t>::max());
|
|
|
|
raster_nodata = band->GetNoDataValue(&raster_has_nodata);
|
|
|
|
raster_io_error = band->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.data(), image.width(), image.height(),
|
|
|
|
GDT_Int16, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure)
|
2015-02-04 22:41:58 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2017-06-13 16:17:54 +02:00
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
2017-05-12 15:37:12 +02:00
|
|
|
// set nodata value to be used in raster colorizer
|
|
|
|
if (nodata_value_) raster->set_nodata(*nodata_value_);
|
|
|
|
else raster->set_nodata(raster_nodata);
|
|
|
|
feature->set_raster(raster);
|
|
|
|
break;
|
|
|
|
}
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
|
|
|
else // working with all bands
|
|
|
|
{
|
2018-03-20 22:01:32 +01:00
|
|
|
mapnik::image_rgba8 image(im_width, im_height);
|
2017-05-12 15:37:12 +02:00
|
|
|
image.set(std::numeric_limits<std::uint32_t>::max());
|
|
|
|
for (int i = 0; i < nbands_; ++i)
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
GDALRasterBand * band = dataset_.GetRasterBand(i + 1);
|
2012-04-08 02:20:56 +02:00
|
|
|
#ifdef MAPNIK_LOG
|
2017-05-12 15:37:12 +02:00
|
|
|
get_overview_meta(band);
|
2010-08-18 22:42:00 +02:00
|
|
|
#endif
|
2017-05-12 15:37:12 +02:00
|
|
|
GDALColorInterp color_interp = band->GetColorInterpretation();
|
|
|
|
switch (color_interp)
|
|
|
|
{
|
|
|
|
case GCI_RedBand:
|
|
|
|
red = band;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found red band";
|
|
|
|
break;
|
|
|
|
case GCI_GreenBand:
|
|
|
|
green = band;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found green band";
|
|
|
|
break;
|
|
|
|
case GCI_BlueBand:
|
|
|
|
blue = band;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found blue band";
|
|
|
|
break;
|
|
|
|
case GCI_AlphaBand:
|
|
|
|
alpha = band;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found alpha band";
|
|
|
|
break;
|
|
|
|
case GCI_GrayIndex:
|
|
|
|
grey = band;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found gray band";
|
|
|
|
break;
|
|
|
|
case GCI_PaletteIndex:
|
|
|
|
{
|
|
|
|
grey = band;
|
2013-08-20 04:30:23 +02:00
|
|
|
#ifdef MAPNIK_LOG
|
2017-05-12 15:37:12 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found gray band, and colortable...";
|
|
|
|
GDALColorTable *color_table = band->GetColorTable();
|
2011-11-14 04:37:50 +01:00
|
|
|
|
2017-05-12 15:37:12 +02:00
|
|
|
if (color_table)
|
|
|
|
{
|
|
|
|
int count = color_table->GetColorEntryCount();
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Color Table count=" << count;
|
2012-04-09 12:05:49 +02:00
|
|
|
|
2017-05-12 15:37:12 +02:00
|
|
|
for (int j = 0; j < count; j++)
|
|
|
|
{
|
|
|
|
const GDALColorEntry *ce = color_table->GetColorEntry (j);
|
|
|
|
if (! ce) continue;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Color entry RGB=" << ce->c1 << "," <<ce->c2 << "," << ce->c3;
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case GCI_Undefined:
|
2014-07-22 23:33:59 +02:00
|
|
|
#if GDAL_VERSION_NUM <= 1730
|
2017-05-12 15:37:12 +02:00
|
|
|
if (nbands_ == 4)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found undefined band (assumming alpha band)";
|
|
|
|
alpha = band;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-04-09 03:00:51 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found undefined band (assumming gray band)";
|
2010-08-18 22:42:00 +02:00
|
|
|
grey = band;
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
#else
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Found undefined band (assumming gray band)";
|
|
|
|
grey = band;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
MAPNIK_LOG_WARN(gdal) << "gdal_featureset: Band type unknown!";
|
|
|
|
break;
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
|
|
|
if (red && green && blue)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Processing rgb bands...";
|
|
|
|
raster_nodata = red->GetNoDataValue(&raster_has_nodata);
|
|
|
|
GDALColorTable *color_table = red->GetColorTable();
|
|
|
|
bool has_nodata = nodata_value_ || raster_has_nodata;
|
|
|
|
|
|
|
|
// we can deduce the alpha channel from nodata in the Byte case
|
|
|
|
// by reusing the reading of R,G,B bands directly
|
|
|
|
if (has_nodata && !color_table && red->GetRasterDataType() == GDT_Byte)
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
double apply_nodata = nodata_value_ ? *nodata_value_ : raster_nodata;
|
|
|
|
// read the data in and create an alpha channel from the nodata values
|
|
|
|
// TODO - we assume here the nodata value for the red band applies to all bands
|
|
|
|
// more details about this at http://trac.osgeo.org/gdal/ticket/2734
|
|
|
|
float* imageData = (float*)image.bytes();
|
|
|
|
raster_io_error = red->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
imageData, image.width(), image.height(),
|
|
|
|
GDT_Float32, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
int len = image.width() * image.height();
|
|
|
|
for (int i = 0; i < len; ++i)
|
2011-03-11 22:28:18 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
if (std::fabs(apply_nodata - imageData[i]) < nodata_tolerance_)
|
|
|
|
{
|
|
|
|
*reinterpret_cast<unsigned *>(&imageData[i]) = 0;
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
else
|
2011-03-11 22:28:18 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
*reinterpret_cast<unsigned *>(&imageData[i]) = 0xFFFFFFFF;
|
2011-03-11 22:28:18 +01:00
|
|
|
}
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
2015-02-05 20:33:52 +01:00
|
|
|
|
2018-02-19 12:09:56 +01:00
|
|
|
// Use dataset RasterIO in priority in 99.9% of the cases
|
2017-05-12 15:37:12 +02:00
|
|
|
if( red->GetBand() == 1 && green->GetBand() == 2 && blue->GetBand() == 3 )
|
|
|
|
{
|
|
|
|
int nBandsToRead = 3;
|
|
|
|
if( alpha != nullptr && alpha->GetBand() == 4 && !raster_has_nodata )
|
2015-02-05 20:33:52 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
nBandsToRead = 4;
|
|
|
|
alpha = nullptr; // to avoid reading it again afterwards
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = dataset_.RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
image.bytes(),
|
|
|
|
image.width(), image.height(), GDT_Byte,
|
|
|
|
nBandsToRead, nullptr,
|
|
|
|
4, 4 * image.width(), 1);
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
raster_io_error = red->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 0,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
raster_io_error = green->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 1,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
raster_io_error = blue->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 2,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
|
|
|
|
// In the case we skipped initializing the alpha channel
|
|
|
|
if (has_nodata && !color_table && red->GetRasterDataType() == GDT_Byte)
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
double apply_nodata = nodata_value_ ? *nodata_value_ : raster_nodata;
|
|
|
|
if( apply_nodata >= 0 && apply_nodata <= 255 )
|
2011-03-11 22:28:18 +01:00
|
|
|
{
|
|
|
|
int len = image.width() * image.height();
|
2017-05-12 15:37:12 +02:00
|
|
|
GByte* pabyBytes = (GByte*) image.bytes();
|
2011-10-22 02:46:29 +02:00
|
|
|
for (int i = 0; i < len; ++i)
|
2011-03-11 22:28:18 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
// TODO - we assume here the nodata value for the red band applies to all bands
|
|
|
|
// more details about this at http://trac.osgeo.org/gdal/ticket/2734
|
|
|
|
if (std::fabs(apply_nodata - pabyBytes[4*i]) < nodata_tolerance_)
|
|
|
|
pabyBytes[4*i + 3] = 0;
|
2011-03-11 22:28:18 +01:00
|
|
|
else
|
2017-05-12 15:37:12 +02:00
|
|
|
pabyBytes[4*i + 3] = 255;
|
2011-03-11 22:28:18 +01:00
|
|
|
}
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (grey)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Processing gray band...";
|
|
|
|
raster_nodata = grey->GetNoDataValue(&raster_has_nodata);
|
|
|
|
GDALColorTable* color_table = grey->GetColorTable();
|
|
|
|
bool has_nodata = nodata_value_ || raster_has_nodata;
|
|
|
|
if (!color_table && has_nodata)
|
|
|
|
{
|
|
|
|
double apply_nodata = nodata_value_ ? *nodata_value_ : raster_nodata;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: applying nodata value for layer=" << apply_nodata;
|
|
|
|
// first read the data in and create an alpha channel from the nodata values
|
|
|
|
float* imageData = (float*)image.bytes();
|
|
|
|
raster_io_error = grey->RasterIO(GF_Read, x_off, y_off, width, height,
|
|
|
|
imageData, image.width(), image.height(),
|
|
|
|
GDT_Float32, 0, 0);
|
2014-11-28 12:51:23 +01:00
|
|
|
if (raster_io_error == CE_Failure)
|
|
|
|
{
|
2014-10-31 04:32:56 +01:00
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
int len = image.width() * image.height();
|
|
|
|
for (int i = 0; i < len; ++i)
|
2014-11-28 12:51:23 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
if (std::fabs(apply_nodata - imageData[i]) < nodata_tolerance_)
|
|
|
|
{
|
|
|
|
*reinterpret_cast<unsigned *>(&imageData[i]) = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*reinterpret_cast<unsigned *>(&imageData[i]) = 0xFFFFFFFF;
|
|
|
|
}
|
2014-10-31 04:32:56 +01:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
2014-11-28 12:51:23 +01:00
|
|
|
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = grey->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 0,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure)
|
|
|
|
{
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
2014-11-28 12:51:23 +01:00
|
|
|
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = grey->RasterIO(GF_Read,x_off, y_off, width, height, image.bytes() + 1,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure)
|
|
|
|
{
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
2011-01-27 04:11:22 +01:00
|
|
|
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = grey->RasterIO(GF_Read,x_off, y_off, width, height, image.bytes() + 2,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
|
|
|
|
if (raster_io_error == CE_Failure)
|
|
|
|
{
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (color_table)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: Loading color table...";
|
|
|
|
for (unsigned y = 0; y < image.height(); ++y)
|
2011-01-27 04:11:22 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
unsigned int* row = image.get_row(y);
|
|
|
|
for (unsigned x = 0; x < image.width(); ++x)
|
2011-01-27 04:11:22 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
unsigned value = row[x] & 0xff;
|
|
|
|
const GDALColorEntry *ce = color_table->GetColorEntry(value);
|
|
|
|
if (ce)
|
|
|
|
{
|
|
|
|
row[x] = (ce->c4 << 24)| (ce->c3 << 16) | (ce->c2 << 8) | (ce->c1) ;
|
|
|
|
}
|
|
|
|
else
|
2011-01-27 04:11:22 +01:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
// make lacking color entry fully alpha
|
|
|
|
// note - gdal_translate makes black
|
|
|
|
row[x] = 0;
|
2011-01-27 04:11:22 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
}
|
|
|
|
if (alpha)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: processing alpha band...";
|
2017-07-06 19:30:05 +02:00
|
|
|
if (!raster_has_nodata || (red && green && blue))
|
2010-08-18 22:42:00 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = alpha->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 3,
|
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_WARN(gdal) << "warning: nodata value (" << raster_nodata << ") used to set transparency instead of alpha band";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( dataset_.GetRasterCount() > 0 && dataset_.GetRasterBand(1) )
|
|
|
|
{
|
|
|
|
// Check if we have a non-alpha mask band (for example a TIFF internal mask)
|
|
|
|
int flags = dataset_.GetRasterBand(1)->GetMaskFlags();
|
|
|
|
GDALRasterBand* mask = 0;
|
|
|
|
if (flags == GMF_PER_DATASET)
|
|
|
|
{
|
|
|
|
mask = dataset_.GetRasterBand(1)->GetMaskBand();
|
|
|
|
}
|
|
|
|
if (mask)
|
|
|
|
{
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: found and processing mask band...";
|
2014-01-18 04:13:53 +01:00
|
|
|
if (!raster_has_nodata)
|
2013-09-25 23:37:21 +02:00
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
raster_io_error = mask->RasterIO(GF_Read, x_off, y_off, width, height, image.bytes() + 3,
|
2014-10-31 04:32:56 +01:00
|
|
|
image.width(), image.height(), GDT_Byte, 4, 4 * image.width());
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
2014-01-18 04:13:53 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-05-12 15:37:12 +02:00
|
|
|
MAPNIK_LOG_WARN(gdal) << "warning: nodata value (" << raster_nodata << ") used to set transparency instead of mask band";
|
2013-09-25 23:37:21 +02:00
|
|
|
}
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2013-09-25 23:37:21 +02:00
|
|
|
}
|
2017-06-13 16:17:54 +02:00
|
|
|
mapnik::raster_ptr raster = std::make_shared<mapnik::raster>(feature_raster_extent, intersect, image, filter_factor);
|
2017-05-12 15:37:12 +02:00
|
|
|
// set nodata value to be used in raster colorizer
|
2018-02-14 14:56:04 +01:00
|
|
|
if (nodata_value_)
|
|
|
|
{
|
|
|
|
raster->set_nodata(*nodata_value_);
|
|
|
|
}
|
2018-02-19 12:09:56 +01:00
|
|
|
else if (raster_has_nodata && !std::isnan(raster_nodata))
|
2018-02-14 14:56:04 +01:00
|
|
|
{
|
|
|
|
raster->set_nodata(raster_nodata);
|
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
feature->set_raster(raster);
|
|
|
|
}
|
|
|
|
// report actual/original source nodata in feature attributes
|
2018-02-19 12:09:56 +01:00
|
|
|
if (raster_has_nodata && !std::isnan(raster_nodata))
|
2017-05-12 15:37:12 +02:00
|
|
|
{
|
2018-02-19 12:09:56 +01:00
|
|
|
feature->put("nodata", raster_nodata);
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
2017-05-12 15:37:12 +02:00
|
|
|
return feature;
|
2010-08-18 22:42:00 +02:00
|
|
|
}
|
|
|
|
return feature_ptr();
|
2009-09-27 19:23:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
feature_ptr gdal_featureset::get_feature_at_point(mapnik::coord2d const& pt)
|
|
|
|
{
|
2014-10-31 04:32:56 +01:00
|
|
|
CPLErr raster_io_error = CE_None;
|
|
|
|
|
2010-11-14 15:54:28 +01:00
|
|
|
if (band_ > 0)
|
|
|
|
{
|
2010-08-18 22:42:00 +02:00
|
|
|
unsigned raster_xsize = dataset_.GetRasterXSize();
|
|
|
|
unsigned raster_ysize = dataset_.GetRasterYSize();
|
2009-09-27 19:23:09 +02:00
|
|
|
|
2010-08-18 22:42:00 +02:00
|
|
|
double gt[6];
|
|
|
|
dataset_.GetGeoTransform(gt);
|
2009-09-27 19:23:09 +02:00
|
|
|
|
2011-10-22 02:46:29 +02:00
|
|
|
double det = gt[1] * gt[5] - gt[2] * gt[4];
|
2010-08-18 22:42:00 +02:00
|
|
|
// subtract half a pixel width & height because gdal coord reference
|
|
|
|
// is the top-left corner of a pixel, not the center.
|
|
|
|
double X = pt.x - gt[0] - gt[1]/2;
|
|
|
|
double Y = pt.y - gt[3] - gt[5]/2;
|
|
|
|
double det1 = gt[1]*Y + gt[4]*X;
|
|
|
|
double det2 = gt[2]*Y + gt[5]*X;
|
2012-08-15 21:37:17 +02:00
|
|
|
unsigned x = static_cast<unsigned>(det2/det);
|
|
|
|
unsigned y = static_cast<unsigned>(det1/det);
|
2009-09-27 19:23:09 +02:00
|
|
|
|
2010-11-14 15:54:28 +01:00
|
|
|
if (x < raster_xsize && y < raster_ysize)
|
|
|
|
{
|
2012-04-09 12:05:49 +02:00
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: pt.x=" << pt.x << " pt.y=" << pt.y;
|
|
|
|
MAPNIK_LOG_DEBUG(gdal) << "gdal_featureset: x=" << x << " y=" << y;
|
|
|
|
|
2011-10-22 02:46:29 +02:00
|
|
|
GDALRasterBand* band = dataset_.GetRasterBand(band_);
|
2013-09-25 23:37:21 +02:00
|
|
|
int raster_has_nodata;
|
|
|
|
double nodata = band->GetNoDataValue(&raster_has_nodata);
|
2010-08-18 22:42:00 +02:00
|
|
|
double value;
|
2014-10-31 04:32:56 +01:00
|
|
|
raster_io_error = band->RasterIO(GF_Read, x, y, 1, 1, &value, 1, 1, GDT_Float64, 0, 0);
|
|
|
|
if (raster_io_error == CE_Failure) {
|
|
|
|
throw datasource_exception(CPLGetLastErrorMsg());
|
|
|
|
}
|
2018-02-19 13:15:23 +01:00
|
|
|
if (!raster_has_nodata || value != nodata)
|
2010-11-14 15:54:28 +01:00
|
|
|
{
|
2012-02-02 02:37:35 +01:00
|
|
|
// construct feature
|
2012-01-16 23:55:44 +01:00
|
|
|
feature_ptr feature = feature_factory::create(ctx_,1);
|
2015-04-09 22:22:51 +02:00
|
|
|
feature->set_geometry(mapnik::geometry::point<double>(pt.x,pt.y));
|
2013-09-26 00:24:08 +02:00
|
|
|
feature->put_new("value",value);
|
2018-02-19 13:15:23 +01:00
|
|
|
if (raster_has_nodata && !std::isnan(nodata))
|
2013-09-26 00:24:08 +02:00
|
|
|
{
|
2018-02-19 13:15:23 +01:00
|
|
|
feature->put_new("nodata", nodata);
|
2013-09-26 00:24:08 +02:00
|
|
|
}
|
2010-08-18 22:42:00 +02:00
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
}
|
2010-02-03 17:56:42 +01:00
|
|
|
}
|
|
|
|
return feature_ptr();
|
2007-04-25 21:15:38 +02:00
|
|
|
}
|