mapnik/src/raster_colorizer.cpp

285 lines
7.2 KiB
C++
Raw Normal View History

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2011 Artem Pavlenko
*
* 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
*
*****************************************************************************/
//$Id: $
#include <mapnik/raster_colorizer.hpp>
#include <limits>
namespace mapnik
{
//! \brief Strings for the colorizer_mode enumeration
static const char *colorizer_mode_strings[] = {
"inherit",
"linear",
"discrete",
"exact",
""
};
2011-07-06 01:39:50 +02:00
IMPLEMENT_ENUM( colorizer_mode, colorizer_mode_strings )
2012-01-13 17:30:03 +01:00
colorizer_stop::colorizer_stop(float value, colorizer_mode mode,
color const& _color,
std::string const& label)
: value_(value)
, mode_(mode)
, color_(_color)
, label_(label)
{
}
2012-01-13 17:30:03 +01:00
colorizer_stop::colorizer_stop(colorizer_stop const& stop)
: value_(stop.value_)
, mode_(stop.mode_)
, color_(stop.color_)
, label_(stop.label_)
{
}
colorizer_stop::~colorizer_stop()
{
}
bool colorizer_stop::operator==(colorizer_stop const& other) const
{
return (value_ == other.value_) &&
2012-01-13 17:30:03 +01:00
(color_ == other.color_) &&
(mode_ == other.mode_) &&
(label_ == other.label_);
}
std::string colorizer_stop::to_string() const
{
std::stringstream ss;
ss << color_.to_string() << " " << value_ << " " << mode_.as_string();
return ss.str();
}
2012-01-13 17:30:03 +01:00
raster_colorizer::raster_colorizer(colorizer_mode mode, color const& _color)
: default_mode_(mode)
, default_color_(_color)
, epsilon_(std::numeric_limits<float>::epsilon())
{
}
raster_colorizer::~raster_colorizer()
{
}
2012-01-13 17:30:03 +01:00
bool raster_colorizer::add_stop(colorizer_stop const& stop)
{
//make sure stops are added in order of value
2012-01-13 17:30:03 +01:00
if(stops_.size())
{
if(stop.get_value() <= stops_.back().get_value())
{
return false;
}
}
stops_.push_back(stop);
return true;
}
2012-01-13 17:30:03 +01:00
void raster_colorizer::colorize(raster_ptr const& raster, std::map<std::string,value> const& Props) const
{
unsigned *imageData = raster->data_.getData();
int len = raster->data_.width() * raster->data_.height();
bool hasNoData = false;
float noDataValue = 0;
2012-01-13 17:30:03 +01:00
std::map<std::string,value>::const_iterator fi = Props.find("NODATA");
if (fi != Props.end())
{
hasNoData = true;
2012-01-13 17:30:03 +01:00
noDataValue = static_cast<float>(fi->second.to_double());
}
for (int i=0; i<len; ++i)
{
// the GDAL plugin reads single bands as floats
float value = *reinterpret_cast<float *> (&imageData[i]);
if (hasNoData && noDataValue == value)
imageData[i] = color(0,0,0,0).rgba();
else
imageData[i] = get_color(value).rgba();
}
}
2011-11-29 15:36:39 +01:00
inline unsigned interpolate(unsigned start, unsigned end, float fraction)
{
2011-12-23 15:01:28 +01:00
return static_cast<unsigned>(fraction * ((float)end - (float)start) + start);
}
2012-01-13 17:30:03 +01:00
color raster_colorizer::get_color(float value) const
{
int stopCount = stops_.size();
//use default color if no stops
2012-01-13 17:30:03 +01:00
if(stopCount == 0)
{
return default_color_;
}
//1 - Find the stop that the value is in
int stopIdx = -1;
bool foundStopIdx = false;
2012-01-13 17:30:03 +01:00
for(int i=0; i<stopCount; ++i)
{
if(value < stops_[i].get_value())
{
stopIdx = i-1;
foundStopIdx = true;
break;
}
}
2012-01-13 17:30:03 +01:00
if(!foundStopIdx)
{
stopIdx = stopCount-1;
}
//2 - Find the next stop
int nextStopIdx = stopIdx + 1;
2012-01-13 17:30:03 +01:00
if(nextStopIdx >= stopCount)
{
//there is no next stop
nextStopIdx = stopCount - 1;
}
//3 - Work out the mode
colorizer_mode stopMode;
2012-01-13 17:30:03 +01:00
if( stopIdx == -1 )
{
//before the first stop
stopMode = default_mode_;
}
2012-01-13 17:30:03 +01:00
else
{
stopMode = stops_[stopIdx].get_mode();
2012-01-13 17:30:03 +01:00
if(stopMode == COLORIZER_INHERIT)
{
stopMode = default_mode_;
}
}
//4 - Calculate the colour
color stopColor;
color nextStopColor;
float stopValue = 0;
float nextStopValue = 0;
color outputColor = get_default_color();
2012-01-13 17:30:03 +01:00
if(stopIdx == -1)
{
stopColor = default_color_;
nextStopColor = stops_[nextStopIdx].get_color();
stopValue = value;
nextStopValue = stops_[nextStopIdx].get_value();
}
2012-01-13 17:30:03 +01:00
else
{
stopColor = stops_[stopIdx].get_color();
nextStopColor = stops_[nextStopIdx].get_color();
stopValue = stops_[stopIdx].get_value();
nextStopValue = stops_[nextStopIdx].get_value();
}
2012-01-13 17:30:03 +01:00
switch(stopMode)
{
case COLORIZER_LINEAR:
2012-01-13 17:30:03 +01:00
{
//deal with this separately so we don't have to worry about div0
if(nextStopValue == stopValue)
{
2012-01-13 17:30:03 +01:00
outputColor = stopColor;
}
else
{
float fraction = (value - stopValue) / (nextStopValue - stopValue);
2012-01-13 17:30:03 +01:00
unsigned r = interpolate(stopColor.red(), nextStopColor.red(),fraction);
unsigned g = interpolate(stopColor.green(), nextStopColor.green(),fraction);
unsigned b = interpolate(stopColor.blue(), nextStopColor.blue(),fraction);
unsigned a = interpolate(stopColor.alpha(), nextStopColor.alpha(),fraction);
outputColor.set_red(r);
outputColor.set_green(g);
outputColor.set_blue(b);
outputColor.set_alpha(a);
}
2012-01-13 17:30:03 +01:00
}
break;
case COLORIZER_DISCRETE:
outputColor = stopColor;
break;
case COLORIZER_EXACT:
default:
//approximately equal (within epsilon)
2012-01-13 17:30:03 +01:00
if(fabs(value - stopValue) < epsilon_)
{
outputColor = stopColor;
}
2012-01-13 17:30:03 +01:00
else
{
outputColor = default_color_;
}
break;
}
2012-01-13 17:30:03 +01:00
/*
2012-01-13 17:30:03 +01:00
std::clog << "get_color: " << value << "\n";
std::clog << "\tstopIdx: " << stopIdx << "\n";
std::clog << "\tnextStopIdx: " << nextStopIdx << "\n";
std::clog << "\tstopValue: " << stopValue << "\n";
std::clog << "\tnextStopValue: " << nextStopValue << "\n";
std::clog << "\tstopColor: " << stopColor.to_string() << "\n";
std::clog << "\tnextStopColor: " << nextStopColor.to_string() << "\n";
std::clog << "\tstopMode: " << stopMode.as_string() << "\n";
std::clog << "\toutputColor: " << outputColor.to_string() << "\n";
*/
return outputColor;
}
}